meistericons-react
Version:
React icon library of meistericons.
6,691 lines • 1.71 MB
JavaScript
import 'node:fs';
import 'node:path';
import 'node:url';
const u=e=>e.replace(/^([A-Z])|[\s-_]+(\w)/g,((e,t,n)=>n?n.toUpperCase():t.toLowerCase())),f=e=>u(e).charAt(0).toUpperCase()+u(e).slice(1);
var react = {exports: {}};
var react_production = {};
/**
* @license React
* react.production.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
var hasRequiredReact_production;
function requireReact_production () {
if (hasRequiredReact_production) return react_production;
hasRequiredReact_production = 1;
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
REACT_PROFILER_TYPE = Symbol.for("react.profiler"),
REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
REACT_MEMO_TYPE = Symbol.for("react.memo"),
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
function getIteratorFn(maybeIterable) {
if (null === maybeIterable || "object" !== typeof maybeIterable) return null;
maybeIterable =
(MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
maybeIterable["@@iterator"];
return "function" === typeof maybeIterable ? maybeIterable : null;
}
var ReactNoopUpdateQueue = {
isMounted: function () {
return false;
},
enqueueForceUpdate: function () {},
enqueueReplaceState: function () {},
enqueueSetState: function () {}
},
assign = Object.assign,
emptyObject = {};
function Component(props, context, updater) {
this.props = props;
this.context = context;
this.refs = emptyObject;
this.updater = updater || ReactNoopUpdateQueue;
}
Component.prototype.isReactComponent = {};
Component.prototype.setState = function (partialState, callback) {
if (
"object" !== typeof partialState &&
"function" !== typeof partialState &&
null != partialState
)
throw Error(
"takes an object of state variables to update or a function which returns an object of state variables."
);
this.updater.enqueueSetState(this, partialState, callback, "setState");
};
Component.prototype.forceUpdate = function (callback) {
this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
};
function ComponentDummy() {}
ComponentDummy.prototype = Component.prototype;
function PureComponent(props, context, updater) {
this.props = props;
this.context = context;
this.refs = emptyObject;
this.updater = updater || ReactNoopUpdateQueue;
}
var pureComponentPrototype = (PureComponent.prototype = new ComponentDummy());
pureComponentPrototype.constructor = PureComponent;
assign(pureComponentPrototype, Component.prototype);
pureComponentPrototype.isPureReactComponent = true;
var isArrayImpl = Array.isArray,
ReactSharedInternals = { H: null, A: null, T: null, S: null },
hasOwnProperty = Object.prototype.hasOwnProperty;
function ReactElement(type, key, self, source, owner, props) {
self = props.ref;
return {
$$typeof: REACT_ELEMENT_TYPE,
type: type,
key: key,
ref: void 0 !== self ? self : null,
props: props
};
}
function cloneAndReplaceKey(oldElement, newKey) {
return ReactElement(
oldElement.type,
newKey,
void 0,
void 0,
void 0,
oldElement.props
);
}
function isValidElement(object) {
return (
"object" === typeof object &&
null !== object &&
object.$$typeof === REACT_ELEMENT_TYPE
);
}
function escape(key) {
var escaperLookup = { "=": "=0", ":": "=2" };
return (
"$" +
key.replace(/[=:]/g, function (match) {
return escaperLookup[match];
})
);
}
var userProvidedKeyEscapeRegex = /\/+/g;
function getElementKey(element, index) {
return "object" === typeof element && null !== element && null != element.key
? escape("" + element.key)
: index.toString(36);
}
function noop$1() {}
function resolveThenable(thenable) {
switch (thenable.status) {
case "fulfilled":
return thenable.value;
case "rejected":
throw thenable.reason;
default:
switch (
("string" === typeof thenable.status
? thenable.then(noop$1, noop$1)
: ((thenable.status = "pending"),
thenable.then(
function (fulfilledValue) {
"pending" === thenable.status &&
((thenable.status = "fulfilled"),
(thenable.value = fulfilledValue));
},
function (error) {
"pending" === thenable.status &&
((thenable.status = "rejected"), (thenable.reason = error));
}
)),
thenable.status)
) {
case "fulfilled":
return thenable.value;
case "rejected":
throw thenable.reason;
}
}
throw thenable;
}
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
var type = typeof children;
if ("undefined" === type || "boolean" === type) children = null;
var invokeCallback = false;
if (null === children) invokeCallback = true;
else
switch (type) {
case "bigint":
case "string":
case "number":
invokeCallback = true;
break;
case "object":
switch (children.$$typeof) {
case REACT_ELEMENT_TYPE:
case REACT_PORTAL_TYPE:
invokeCallback = true;
break;
case REACT_LAZY_TYPE:
return (
(invokeCallback = children._init),
mapIntoArray(
invokeCallback(children._payload),
array,
escapedPrefix,
nameSoFar,
callback
)
);
}
}
if (invokeCallback)
return (
(callback = callback(children)),
(invokeCallback =
"" === nameSoFar ? "." + getElementKey(children, 0) : nameSoFar),
isArrayImpl(callback)
? ((escapedPrefix = ""),
null != invokeCallback &&
(escapedPrefix =
invokeCallback.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
mapIntoArray(callback, array, escapedPrefix, "", function (c) {
return c;
}))
: null != callback &&
(isValidElement(callback) &&
(callback = cloneAndReplaceKey(
callback,
escapedPrefix +
(null == callback.key ||
(children && children.key === callback.key)
? ""
: ("" + callback.key).replace(
userProvidedKeyEscapeRegex,
"$&/"
) + "/") +
invokeCallback
)),
array.push(callback)),
1
);
invokeCallback = 0;
var nextNamePrefix = "" === nameSoFar ? "." : nameSoFar + ":";
if (isArrayImpl(children))
for (var i = 0; i < children.length; i++)
(nameSoFar = children[i]),
(type = nextNamePrefix + getElementKey(nameSoFar, i)),
(invokeCallback += mapIntoArray(
nameSoFar,
array,
escapedPrefix,
type,
callback
));
else if (((i = getIteratorFn(children)), "function" === typeof i))
for (
children = i.call(children), i = 0;
!(nameSoFar = children.next()).done;
)
(nameSoFar = nameSoFar.value),
(type = nextNamePrefix + getElementKey(nameSoFar, i++)),
(invokeCallback += mapIntoArray(
nameSoFar,
array,
escapedPrefix,
type,
callback
));
else if ("object" === type) {
if ("function" === typeof children.then)
return mapIntoArray(
resolveThenable(children),
array,
escapedPrefix,
nameSoFar,
callback
);
array = String(children);
throw Error(
"Objects are not valid as a React child (found: " +
("[object Object]" === array
? "object with keys {" + Object.keys(children).join(", ") + "}"
: array) +
"). If you meant to render a collection of children, use an array instead."
);
}
return invokeCallback;
}
function mapChildren(children, func, context) {
if (null == children) return children;
var result = [],
count = 0;
mapIntoArray(children, result, "", "", function (child) {
return func.call(context, child, count++);
});
return result;
}
function lazyInitializer(payload) {
if (-1 === payload._status) {
var ctor = payload._result;
ctor = ctor();
ctor.then(
function (moduleObject) {
if (0 === payload._status || -1 === payload._status)
(payload._status = 1), (payload._result = moduleObject);
},
function (error) {
if (0 === payload._status || -1 === payload._status)
(payload._status = 2), (payload._result = error);
}
);
-1 === payload._status && ((payload._status = 0), (payload._result = ctor));
}
if (1 === payload._status) return payload._result.default;
throw payload._result;
}
var reportGlobalError =
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: true,
cancelable: true,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
};
function noop() {}
react_production.Children = {
map: mapChildren,
forEach: function (children, forEachFunc, forEachContext) {
mapChildren(
children,
function () {
forEachFunc.apply(this, arguments);
},
forEachContext
);
},
count: function (children) {
var n = 0;
mapChildren(children, function () {
n++;
});
return n;
},
toArray: function (children) {
return (
mapChildren(children, function (child) {
return child;
}) || []
);
},
only: function (children) {
if (!isValidElement(children))
throw Error(
"React.Children.only expected to receive a single React element child."
);
return children;
}
};
react_production.Component = Component;
react_production.Fragment = REACT_FRAGMENT_TYPE;
react_production.Profiler = REACT_PROFILER_TYPE;
react_production.PureComponent = PureComponent;
react_production.StrictMode = REACT_STRICT_MODE_TYPE;
react_production.Suspense = REACT_SUSPENSE_TYPE;
react_production.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
ReactSharedInternals;
react_production.act = function () {
throw Error("act(...) is not supported in production builds of React.");
};
react_production.cache = function (fn) {
return function () {
return fn.apply(null, arguments);
};
};
react_production.cloneElement = function (element, config, children) {
if (null === element || void 0 === element)
throw Error(
"The argument must be a React element, but you passed " + element + "."
);
var props = assign({}, element.props),
key = element.key,
owner = void 0;
if (null != config)
for (propName in (void 0 !== config.ref && (owner = void 0),
void 0 !== config.key && (key = "" + config.key),
config))
!hasOwnProperty.call(config, propName) ||
"key" === propName ||
"__self" === propName ||
"__source" === propName ||
("ref" === propName && void 0 === config.ref) ||
(props[propName] = config[propName]);
var propName = arguments.length - 2;
if (1 === propName) props.children = children;
else if (1 < propName) {
for (var childArray = Array(propName), i = 0; i < propName; i++)
childArray[i] = arguments[i + 2];
props.children = childArray;
}
return ReactElement(element.type, key, void 0, void 0, owner, props);
};
react_production.createContext = function (defaultValue) {
defaultValue = {
$$typeof: REACT_CONTEXT_TYPE,
_currentValue: defaultValue,
_currentValue2: defaultValue,
_threadCount: 0,
Provider: null,
Consumer: null
};
defaultValue.Provider = defaultValue;
defaultValue.Consumer = {
$$typeof: REACT_CONSUMER_TYPE,
_context: defaultValue
};
return defaultValue;
};
react_production.createElement = function (type, config, children) {
var propName,
props = {},
key = null;
if (null != config)
for (propName in (void 0 !== config.key && (key = "" + config.key), config))
hasOwnProperty.call(config, propName) &&
"key" !== propName &&
"__self" !== propName &&
"__source" !== propName &&
(props[propName] = config[propName]);
var childrenLength = arguments.length - 2;
if (1 === childrenLength) props.children = children;
else if (1 < childrenLength) {
for (var childArray = Array(childrenLength), i = 0; i < childrenLength; i++)
childArray[i] = arguments[i + 2];
props.children = childArray;
}
if (type && type.defaultProps)
for (propName in ((childrenLength = type.defaultProps), childrenLength))
void 0 === props[propName] &&
(props[propName] = childrenLength[propName]);
return ReactElement(type, key, void 0, void 0, null, props);
};
react_production.createRef = function () {
return { current: null };
};
react_production.forwardRef = function (render) {
return { $$typeof: REACT_FORWARD_REF_TYPE, render: render };
};
react_production.isValidElement = isValidElement;
react_production.lazy = function (ctor) {
return {
$$typeof: REACT_LAZY_TYPE,
_payload: { _status: -1, _result: ctor },
_init: lazyInitializer
};
};
react_production.memo = function (type, compare) {
return {
$$typeof: REACT_MEMO_TYPE,
type: type,
compare: void 0 === compare ? null : compare
};
};
react_production.startTransition = function (scope) {
var prevTransition = ReactSharedInternals.T,
currentTransition = {};
ReactSharedInternals.T = currentTransition;
try {
var returnValue = scope(),
onStartTransitionFinish = ReactSharedInternals.S;
null !== onStartTransitionFinish &&
onStartTransitionFinish(currentTransition, returnValue);
"object" === typeof returnValue &&
null !== returnValue &&
"function" === typeof returnValue.then &&
returnValue.then(noop, reportGlobalError);
} catch (error) {
reportGlobalError(error);
} finally {
ReactSharedInternals.T = prevTransition;
}
};
react_production.unstable_useCacheRefresh = function () {
return ReactSharedInternals.H.useCacheRefresh();
};
react_production.use = function (usable) {
return ReactSharedInternals.H.use(usable);
};
react_production.useActionState = function (action, initialState, permalink) {
return ReactSharedInternals.H.useActionState(action, initialState, permalink);
};
react_production.useCallback = function (callback, deps) {
return ReactSharedInternals.H.useCallback(callback, deps);
};
react_production.useContext = function (Context) {
return ReactSharedInternals.H.useContext(Context);
};
react_production.useDebugValue = function () {};
react_production.useDeferredValue = function (value, initialValue) {
return ReactSharedInternals.H.useDeferredValue(value, initialValue);
};
react_production.useEffect = function (create, deps) {
return ReactSharedInternals.H.useEffect(create, deps);
};
react_production.useId = function () {
return ReactSharedInternals.H.useId();
};
react_production.useImperativeHandle = function (ref, create, deps) {
return ReactSharedInternals.H.useImperativeHandle(ref, create, deps);
};
react_production.useInsertionEffect = function (create, deps) {
return ReactSharedInternals.H.useInsertionEffect(create, deps);
};
react_production.useLayoutEffect = function (create, deps) {
return ReactSharedInternals.H.useLayoutEffect(create, deps);
};
react_production.useMemo = function (create, deps) {
return ReactSharedInternals.H.useMemo(create, deps);
};
react_production.useOptimistic = function (passthrough, reducer) {
return ReactSharedInternals.H.useOptimistic(passthrough, reducer);
};
react_production.useReducer = function (reducer, initialArg, init) {
return ReactSharedInternals.H.useReducer(reducer, initialArg, init);
};
react_production.useRef = function (initialValue) {
return ReactSharedInternals.H.useRef(initialValue);
};
react_production.useState = function (initialState) {
return ReactSharedInternals.H.useState(initialState);
};
react_production.useSyncExternalStore = function (
subscribe,
getSnapshot,
getServerSnapshot
) {
return ReactSharedInternals.H.useSyncExternalStore(
subscribe,
getSnapshot,
getServerSnapshot
);
};
react_production.useTransition = function () {
return ReactSharedInternals.H.useTransition();
};
react_production.version = "19.0.0";
return react_production;
}
var react_development = {exports: {}};
/**
* @license React
* react.development.js
*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
react_development.exports;
var hasRequiredReact_development;
function requireReact_development () {
if (hasRequiredReact_development) return react_development.exports;
hasRequiredReact_development = 1;
(function (module, exports) {
"production" !== process.env.NODE_ENV &&
(function () {
function defineDeprecationWarning(methodName, info) {
Object.defineProperty(Component.prototype, methodName, {
get: function () {
console.warn(
"%s(...) is deprecated in plain JavaScript React classes. %s",
info[0],
info[1]
);
}
});
}
function getIteratorFn(maybeIterable) {
if (null === maybeIterable || "object" !== typeof maybeIterable)
return null;
maybeIterable =
(MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL]) ||
maybeIterable["@@iterator"];
return "function" === typeof maybeIterable ? maybeIterable : null;
}
function warnNoop(publicInstance, callerName) {
publicInstance =
((publicInstance = publicInstance.constructor) &&
(publicInstance.displayName || publicInstance.name)) ||
"ReactClass";
var warningKey = publicInstance + "." + callerName;
didWarnStateUpdateForUnmountedComponent[warningKey] ||
(console.error(
"Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.",
callerName,
publicInstance
),
(didWarnStateUpdateForUnmountedComponent[warningKey] = true));
}
function Component(props, context, updater) {
this.props = props;
this.context = context;
this.refs = emptyObject;
this.updater = updater || ReactNoopUpdateQueue;
}
function ComponentDummy() {}
function PureComponent(props, context, updater) {
this.props = props;
this.context = context;
this.refs = emptyObject;
this.updater = updater || ReactNoopUpdateQueue;
}
function testStringCoercion(value) {
return "" + value;
}
function checkKeyStringCoercion(value) {
try {
testStringCoercion(value);
var JSCompiler_inline_result = !1;
} catch (e) {
JSCompiler_inline_result = true;
}
if (JSCompiler_inline_result) {
JSCompiler_inline_result = console;
var JSCompiler_temp_const = JSCompiler_inline_result.error;
var JSCompiler_inline_result$jscomp$0 =
("function" === typeof Symbol &&
Symbol.toStringTag &&
value[Symbol.toStringTag]) ||
value.constructor.name ||
"Object";
JSCompiler_temp_const.call(
JSCompiler_inline_result,
"The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
JSCompiler_inline_result$jscomp$0
);
return testStringCoercion(value);
}
}
function getComponentNameFromType(type) {
if (null == type) return null;
if ("function" === typeof type)
return type.$$typeof === REACT_CLIENT_REFERENCE$2
? null
: type.displayName || type.name || null;
if ("string" === typeof type) return type;
switch (type) {
case REACT_FRAGMENT_TYPE:
return "Fragment";
case REACT_PORTAL_TYPE:
return "Portal";
case REACT_PROFILER_TYPE:
return "Profiler";
case REACT_STRICT_MODE_TYPE:
return "StrictMode";
case REACT_SUSPENSE_TYPE:
return "Suspense";
case REACT_SUSPENSE_LIST_TYPE:
return "SuspenseList";
}
if ("object" === typeof type)
switch (
("number" === typeof type.tag &&
console.error(
"Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
),
type.$$typeof)
) {
case REACT_CONTEXT_TYPE:
return (type.displayName || "Context") + ".Provider";
case REACT_CONSUMER_TYPE:
return (type._context.displayName || "Context") + ".Consumer";
case REACT_FORWARD_REF_TYPE:
var innerType = type.render;
type = type.displayName;
type ||
((type = innerType.displayName || innerType.name || ""),
(type = "" !== type ? "ForwardRef(" + type + ")" : "ForwardRef"));
return type;
case REACT_MEMO_TYPE:
return (
(innerType = type.displayName || null),
null !== innerType
? innerType
: getComponentNameFromType(type.type) || "Memo"
);
case REACT_LAZY_TYPE:
innerType = type._payload;
type = type._init;
try {
return getComponentNameFromType(type(innerType));
} catch (x) {}
}
return null;
}
function isValidElementType(type) {
return "string" === typeof type ||
"function" === typeof type ||
type === REACT_FRAGMENT_TYPE ||
type === REACT_PROFILER_TYPE ||
type === REACT_STRICT_MODE_TYPE ||
type === REACT_SUSPENSE_TYPE ||
type === REACT_SUSPENSE_LIST_TYPE ||
type === REACT_OFFSCREEN_TYPE ||
("object" === typeof type &&
null !== type &&
(type.$$typeof === REACT_LAZY_TYPE ||
type.$$typeof === REACT_MEMO_TYPE ||
type.$$typeof === REACT_CONTEXT_TYPE ||
type.$$typeof === REACT_CONSUMER_TYPE ||
type.$$typeof === REACT_FORWARD_REF_TYPE ||
type.$$typeof === REACT_CLIENT_REFERENCE$1 ||
void 0 !== type.getModuleId))
? true
: false;
}
function disabledLog() {}
function disableLogs() {
if (0 === disabledDepth) {
prevLog = console.log;
prevInfo = console.info;
prevWarn = console.warn;
prevError = console.error;
prevGroup = console.group;
prevGroupCollapsed = console.groupCollapsed;
prevGroupEnd = console.groupEnd;
var props = {
configurable: true,
enumerable: true,
value: disabledLog,
writable: true
};
Object.defineProperties(console, {
info: props,
log: props,
warn: props,
error: props,
group: props,
groupCollapsed: props,
groupEnd: props
});
}
disabledDepth++;
}
function reenableLogs() {
disabledDepth--;
if (0 === disabledDepth) {
var props = { configurable: true, enumerable: true, writable: true };
Object.defineProperties(console, {
log: assign({}, props, { value: prevLog }),
info: assign({}, props, { value: prevInfo }),
warn: assign({}, props, { value: prevWarn }),
error: assign({}, props, { value: prevError }),
group: assign({}, props, { value: prevGroup }),
groupCollapsed: assign({}, props, { value: prevGroupCollapsed }),
groupEnd: assign({}, props, { value: prevGroupEnd })
});
}
0 > disabledDepth &&
console.error(
"disabledDepth fell below zero. This is a bug in React. Please file an issue."
);
}
function describeBuiltInComponentFrame(name) {
if (void 0 === prefix)
try {
throw Error();
} catch (x) {
var match = x.stack.trim().match(/\n( *(at )?)/);
prefix = (match && match[1]) || "";
suffix =
-1 < x.stack.indexOf("\n at")
? " (<anonymous>)"
: -1 < x.stack.indexOf("@")
? "@unknown:0:0"
: "";
}
return "\n" + prefix + name + suffix;
}
function describeNativeComponentFrame(fn, construct) {
if (!fn || reentry) return "";
var frame = componentFrameCache.get(fn);
if (void 0 !== frame) return frame;
reentry = true;
frame = Error.prepareStackTrace;
Error.prepareStackTrace = void 0;
var previousDispatcher = null;
previousDispatcher = ReactSharedInternals.H;
ReactSharedInternals.H = null;
disableLogs();
try {
var RunInRootFrame = {
DetermineComponentFrameRoot: function () {
try {
if (construct) {
var Fake = function () {
throw Error();
};
Object.defineProperty(Fake.prototype, "props", {
set: function () {
throw Error();
}
});
if ("object" === typeof Reflect && Reflect.construct) {
try {
Reflect.construct(Fake, []);
} catch (x) {
var control = x;
}
Reflect.construct(fn, [], Fake);
} else {
try {
Fake.call();
} catch (x$0) {
control = x$0;
}
fn.call(Fake.prototype);
}
} else {
try {
throw Error();
} catch (x$1) {
control = x$1;
}
(Fake = fn()) &&
"function" === typeof Fake.catch &&
Fake.catch(function () {});
}
} catch (sample) {
if (sample && control && "string" === typeof sample.stack)
return [sample.stack, control.stack];
}
return [null, null];
}
};
RunInRootFrame.DetermineComponentFrameRoot.displayName =
"DetermineComponentFrameRoot";
var namePropDescriptor = Object.getOwnPropertyDescriptor(
RunInRootFrame.DetermineComponentFrameRoot,
"name"
);
namePropDescriptor &&
namePropDescriptor.configurable &&
Object.defineProperty(
RunInRootFrame.DetermineComponentFrameRoot,
"name",
{ value: "DetermineComponentFrameRoot" }
);
var _RunInRootFrame$Deter =
RunInRootFrame.DetermineComponentFrameRoot(),
sampleStack = _RunInRootFrame$Deter[0],
controlStack = _RunInRootFrame$Deter[1];
if (sampleStack && controlStack) {
var sampleLines = sampleStack.split("\n"),
controlLines = controlStack.split("\n");
for (
_RunInRootFrame$Deter = namePropDescriptor = 0;
namePropDescriptor < sampleLines.length &&
!sampleLines[namePropDescriptor].includes(
"DetermineComponentFrameRoot"
);
)
namePropDescriptor++;
for (
;
_RunInRootFrame$Deter < controlLines.length &&
!controlLines[_RunInRootFrame$Deter].includes(
"DetermineComponentFrameRoot"
);
)
_RunInRootFrame$Deter++;
if (
namePropDescriptor === sampleLines.length ||
_RunInRootFrame$Deter === controlLines.length
)
for (
namePropDescriptor = sampleLines.length - 1,
_RunInRootFrame$Deter = controlLines.length - 1;
1 <= namePropDescriptor &&
0 <= _RunInRootFrame$Deter &&
sampleLines[namePropDescriptor] !==
controlLines[_RunInRootFrame$Deter];
)
_RunInRootFrame$Deter--;
for (
;
1 <= namePropDescriptor && 0 <= _RunInRootFrame$Deter;
namePropDescriptor--, _RunInRootFrame$Deter--
)
if (
sampleLines[namePropDescriptor] !==
controlLines[_RunInRootFrame$Deter]
) {
if (1 !== namePropDescriptor || 1 !== _RunInRootFrame$Deter) {
do
if (
(namePropDescriptor--,
_RunInRootFrame$Deter--,
0 > _RunInRootFrame$Deter ||
sampleLines[namePropDescriptor] !==
controlLines[_RunInRootFrame$Deter])
) {
var _frame =
"\n" +
sampleLines[namePropDescriptor].replace(
" at new ",
" at "
);
fn.displayName &&
_frame.includes("<anonymous>") &&
(_frame = _frame.replace("<anonymous>", fn.displayName));
"function" === typeof fn &&
componentFrameCache.set(fn, _frame);
return _frame;
}
while (1 <= namePropDescriptor && 0 <= _RunInRootFrame$Deter);
}
break;
}
}
} finally {
(reentry = false),
(ReactSharedInternals.H = previousDispatcher),
reenableLogs(),
(Error.prepareStackTrace = frame);
}
sampleLines = (sampleLines = fn ? fn.displayName || fn.name : "")
? describeBuiltInComponentFrame(sampleLines)
: "";
"function" === typeof fn && componentFrameCache.set(fn, sampleLines);
return sampleLines;
}
function describeUnknownElementTypeFrameInDEV(type) {
if (null == type) return "";
if ("function" === typeof type) {
var prototype = type.prototype;
return describeNativeComponentFrame(
type,
!(!prototype || !prototype.isReactComponent)
);
}
if ("string" === typeof type) return describeBuiltInComponentFrame(type);
switch (type) {
case REACT_SUSPENSE_TYPE:
return describeBuiltInComponentFrame("Suspense");
case REACT_SUSPENSE_LIST_TYPE:
return describeBuiltInComponentFrame("SuspenseList");
}
if ("object" === typeof type)
switch (type.$$typeof) {
case REACT_FORWARD_REF_TYPE:
return (type = describeNativeComponentFrame(type.render, false)), type;
case REACT_MEMO_TYPE:
return describeUnknownElementTypeFrameInDEV(type.type);
case REACT_LAZY_TYPE:
prototype = type._payload;
type = type._init;
try {
return describeUnknownElementTypeFrameInDEV(type(prototype));
} catch (x) {}
}
return "";
}
function getOwner() {
var dispatcher = ReactSharedInternals.A;
return null === dispatcher ? null : dispatcher.getOwner();
}
function hasValidKey(config) {
if (hasOwnProperty.call(config, "key")) {
var getter = Object.getOwnPropertyDescriptor(config, "key").get;
if (getter && getter.isReactWarning) return false;
}
return void 0 !== config.key;
}
function defineKeyPropWarningGetter(props, displayName) {
function warnAboutAccessingKey() {
specialPropKeyWarningShown ||
((specialPropKeyWarningShown = true),
console.error(
"%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
displayName
));
}
warnAboutAccessingKey.isReactWarning = true;
Object.defineProperty(props, "key", {
get: warnAboutAccessingKey,
configurable: true
});
}
function elementRefGetterWithDeprecationWarning() {
var componentName = getComponentNameFromType(this.type);
didWarnAboutElementRef[componentName] ||
((didWarnAboutElementRef[componentName] = true),
console.error(
"Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
));
componentName = this.props.ref;
return void 0 !== componentName ? componentName : null;
}
function ReactElement(type, key, self, source, owner, props) {
self = props.ref;
type = {
$$typeof: REACT_ELEMENT_TYPE,
type: type,
key: key,
props: props,
_owner: owner
};
null !== (void 0 !== self ? self : null)
? Object.defineProperty(type, "ref", {
enumerable: false,
get: elementRefGetterWithDeprecationWarning
})
: Object.defineProperty(type, "ref", { enumerable: false, value: null });
type._store = {};
Object.defineProperty(type._store, "validated", {
configurable: false,
enumerable: false,
writable: true,
value: 0
});
Object.defineProperty(type, "_debugInfo", {
configurable: false,
enumerable: false,
writable: true,
value: null
});
Object.freeze && (Object.freeze(type.props), Object.freeze(type));
return type;
}
function cloneAndReplaceKey(oldElement, newKey) {
newKey = ReactElement(
oldElement.type,
newKey,
void 0,
void 0,
oldElement._owner,
oldElement.props
);
newKey._store.validated = oldElement._store.validated;
return newKey;
}
function validateChildKeys(node, parentType) {
if (
"object" === typeof node &&
node &&
node.$$typeof !== REACT_CLIENT_REFERENCE
)
if (isArrayImpl(node))
for (var i = 0; i < node.length; i++) {
var child = node[i];
isValidElement(child) && validateExplicitKey(child, parentType);
}
else if (isValidElement(node))
node._store && (node._store.validated = 1);
else if (
((i = getIteratorFn(node)),
"function" === typeof i &&
i !== node.entries &&
((i = i.call(node)), i !== node))
)
for (; !(node = i.next()).done; )
isValidElement(node.value) &&
validateExplicitKey(node.value, parentType);
}
function isValidElement(object) {
return (
"object" === typeof object &&
null !== object &&
object.$$typeof === REACT_ELEMENT_TYPE
);
}
function validateExplicitKey(element, parentType) {
if (
element._store &&
!element._store.validated &&
null == element.key &&
((element._store.validated = 1),
(parentType = getCurrentComponentErrorInfo(parentType)),
!ownerHasKeyUseWarning[parentType])
) {
ownerHasKeyUseWarning[parentType] = true;
var childOwner = "";
element &&
null != element._owner &&
element._owner !== getOwner() &&
((childOwner = null),
"number" === typeof element._owner.tag
? (childOwner = getComponentNameFromType(element._owner.type))
: "string" === typeof element._owner.name &&
(childOwner = element._owner.name),
(childOwner = " It was passed a child from " + childOwner + "."));
var prevGetCurrentStack = ReactSharedInternals.getCurrentStack;
ReactSharedInternals.getCurrentStack = function () {
var stack = describeUnknownElementTypeFrameInDEV(element.type);
prevGetCurrentStack && (stack += prevGetCurrentStack() || "");
return stack;
};
console.error(
'Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.',
parentType,
childOwner
);
ReactSharedInternals.getCurrentStack = prevGetCurrentStack;
}
}
function getCurrentComponentErrorInfo(parentType) {
var info = "",
owner = getOwner();
owner &&
(owner = getComponentNameFromType(owner.type)) &&
(info = "\n\nCheck the render method of `" + owner + "`.");
info ||
((parentType = getComponentNameFromType(parentType)) &&
(info =
"\n\nCheck the top-level render call using <" + parentType + ">."));
return info;
}
function escape(key) {
var escaperLookup = { "=": "=0", ":": "=2" };
return (
"$" +
key.replace(/[=:]/g, function (match) {
return escaperLookup[match];
})
);
}
function getElementKey(element, index) {
return "object" === typeof element &&
null !== element &&
null != element.key
? (checkKeyStringCoercion(element.key), escape("" + element.key))
: index.toString(36);
}
function noop$1() {}
function resolveThenable(thenable) {
switch (thenable.status) {
case "fulfilled":
return thenable.value;
case "rejected":
throw thenable.reason;
default:
switch (
("string" === typeof thenable.status
? thenable.then(noop$1, noop$1)
: ((thenable.status = "pending"),
thenable.then(
function (fulfilledValue) {
"pending" === thenable.status &&
((thenable.status = "fulfilled"),
(thenable.value = fulfilledValue));
},
function (error) {
"pending" === thenable.status &&
((thenable.status = "rejected"),
(thenable.reason = error));
}
)),
thenable.status)
) {
case "fulfilled":
return thenable.value;
case "rejected":
throw thenable.reason;
}
}
throw thenable;
}
function mapIntoArray(children, array, escapedPrefix, nameSoFar, callback) {
var type = typeof children;
if ("undefined" === type || "boolean" === type) children = null;
var invokeCallback = false;
if (null === children) invokeCallback = true;
else
switch (type) {
case "bigint":
case "string":
case "number":
invokeCallback = true;
break;
case "object":
switch (children.$$typeof) {
case REACT_ELEMENT_TYPE:
case REACT_PORTAL_TYPE:
invokeCallback = true;
break;
case REACT_LAZY_TYPE:
return (
(invokeCallback = children._init),
mapIntoArray(
invokeCallback(children._payload),
array,
escapedPrefix,
nameSoFar,
callback
)
);
}
}
if (invokeCallback) {
invokeCallback = children;
callback = callback(invokeCallback);
var childKey =
"" === nameSoFar ? "." + getElementKey(invokeCallback, 0) : nameSoFar;
isArrayImpl(callback)
? ((escapedPrefix = ""),
null != childKey &&
(escapedPrefix =
childKey.replace(userProvidedKeyEscapeRegex, "$&/") + "/"),
mapIntoArray(callback, array, escapedPrefix, "", function (c) {
return c;
}))
: null != callback &&
(isValidElement(callback) &&
(null != callback.key &&
((invokeCallback && invokeCallback.key === callback.key) ||
checkKeyStringCoercion(callback.key)),
(escapedPrefix = cloneAndReplaceKey(
callback,
escapedPrefix +
(null == callback.key ||
(invokeCallback && invokeCallback.key === callback.key)
? ""
: ("" + callback.key).replace(
userProvidedKeyEscapeRegex,
"$&/"
) + "/") +
childKey
)),
"" !== nameSoFar &&
null != invokeCallback &&
isValidElement(invokeCallback) &&
null == invokeCallback.key &&
invokeCallback._store &&
!invokeCallback._store.validated &&
(escapedPrefix._store.validated = 2),
(callback = escapedPrefix)),
array.push(callback));
return 1;
}
invokeCallback = 0;
childKey = "" === nameSoFar ? "." : nameSoFar + ":";
if (isArrayImpl(children))
for (var i = 0; i < children.length; i++)
(nameSoFar = children[i]),
(type = childKey + getElementKey(nameSoFar, i)),
(invokeCallback += mapIntoArray(
nameSoFar,
array,
escapedPrefix,
type,
callback
));
else if (((i = getIteratorFn(children)), "function" === typeof i))
for (
i === children.entries &&
(didWarnAboutMaps ||
console.warn(
"Using Maps as children is not supported. Use an array of keyed ReactElements instead."
),
(didWarnAboutMaps = true)),
children = i.call(children),
i = 0;
!(nameSoFar = children.next()).done;
)
(nameSoFar = nameSoFar.value),
(type = childKey + getElementKey(nameSoFar, i++)),
(invokeCallback += mapIntoArray(
nameSoFar,
array,
escapedPrefix,
type,
callback
));
else if ("object" === type) {
if ("function" === typeof children.then)
return mapIntoArray(
resolveThenable(children),
array,
escapedPrefix,
nameSoFar,
callback
);
array = String(children);
throw Error(
"Objects are not valid as a React child (found: " +
("[object Object]" === array
? "object with keys {" + Object.keys(children).join(", ") + "}"
: array) +
"). If you meant to render a collection of children, use an array instead."
);
}
return invokeCallback;
}
function mapChildren(children, func, context) {
if (null == children) return children;
var result = [],
count = 0;
mapIntoArray(children, result, "", "", function (child) {
return func.call(context, child, count++);
});
return result;
}
function lazyInitializer(payload) {
if (-1 === payload._status) {
var ctor = payload._result;
ctor = ctor();
ctor.then(
function (moduleObject) {
if (0 === payload._status || -1 === payload._status)
(payload._status = 1), (payload._result = moduleObject);
},
function (error) {
if (0 === payload._status || -1 === payload._status)
(payload._status = 2), (payload._result = error);
}
);
-1 === payload._status &&
((payload._status = 0), (payload._result = ctor));
}
if (1 === payload._status)
return (
(ctor = payload._result),
void 0 === ctor &&
console.error(
"lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))\n\nDid you accidentally put curly braces around the import?",
ctor
),
"default" in ctor ||
console.error(
"lazy: Expected the result of a dynamic import() call. Instead received: %s\n\nYour code should look like: \n const MyComponent = lazy(() => import('./MyComponent'))",
ctor
),
ctor.default
);
throw payload._result;
}
function resolveDispatcher() {
var dispatcher = ReactSharedInternals.H;
null === dispatcher &&
console.error(
"Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:\n1. You might have mismatching versions of React and the renderer (such as React DOM)\n2. You might be breaking the Rules of Hooks\n3. You might have more than one copy of React in the same app\nSee https://react.dev/link/invalid-hook-call for tips about how to debug and fix this problem."
);
return dispatcher;
}
function noop() {}
function enqueueTask(task) {
if (null === enqueueTaskImpl)
try {
var requireString = ("require" + Math.random()).slice(0, 7);
enqueueTaskImpl = (module && module[requireString]).call(
module,
"timers"
).setImmediate;
} catch (_err) {
enqueueTaskImpl = function (callback) {
false === didWarnAboutMessageChannel &&
((didWarnAboutMessageChannel = true),
"undefined" === typeof MessageChannel &&
console.error(
"This browser does not have a MessageChannel implementation, so enqueuing tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this warning."
));
var channel = new MessageChannel();
channel.port1.onmessage = callback;
channel.port2.postMessage(void 0);
};
}
return enqueueTaskImpl(task);
}
function aggregateErrors(errors) {
return 1 < errors.length && "function" === typeof AggregateError
? new AggregateError(errors)
: errors[0];
}
function popActScope(prevActQueue, prevActScopeDepth) {
prevActScopeDepth !== actScopeDepth - 1 &&
console.error(
"You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "
);
actScopeDepth = prevActScopeDepth;
}
function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
var queue = ReactSharedInternals.actQueue;
if (null !== queue)
if (0 !== queue.length)
try {
flushActQueue(queue);
enqueueTask(function () {
return recursivelyFlushAsyncActWork(returnValue, resolve, reject);
});
return;
} catch (error) {
ReactSharedInternals.thrownErrors.push(error);
}
else ReactSharedInternals.actQueue = null;
0 < ReactSharedInternals.thrownErrors.length
? ((queue = aggregateErrors(ReactSharedInternals.thrownErrors)),
(ReactSharedInternals.thrownErrors.length = 0),
reject(queue))
: resolve(returnValue);
}
function flushActQueue(queue) {
if (!isFlushing) {
isFlushing = true;
var i = 0;
try {
for (; i < queue.length; i++) {
var callback = queue[i];
do {
ReactSharedInternals.didUsePromise = !1;
var continuation = callback(!1);
if (null !== continuation) {
if (ReactSharedInternals.didUsePromise) {
queue[i] = callback;
queue.splice(0, i);
return;
}
callback = continuation;
} else break;
} while (1);
}
queue.length = 0;
} catch (error) {
queue.splice(0, i + 1), ReactSharedInternals.thrownErrors.push(error);
} finally {
isFlushing = false;
}
}
}
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart &&
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart(Error());
var REACT_ELEMENT_TYPE = Symbol.for("react.transitional.element"),
REACT_PORTAL_TYPE = Symbol.for("react.portal"),
REACT_FRAGMENT_TYPE = Symbol.for("react.fragment"),
REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode"),
REACT_PROFILER_TYPE = Symbol.for("react.profiler");
var REACT_CONSUMER_TYPE = Symbol.for("react.consumer"),
REACT_CONTEXT_TYPE = Symbol.for("react.context"),
REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref"),
REACT_SUSPENSE_TYPE = Symbol.for("react.suspense"),
REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list"),
REACT_MEMO_TYPE = Symbol.for("react.memo"),
REACT_LAZY_TYPE = Symbol.for("react.lazy"),
REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen"),
MAYBE_ITERATOR_SYMBOL = Symbol.iterator,
didWarnStateUpdateForUnmountedComponent = {},
ReactNoopUpdateQueue = {
isMounted: function () {
return false;
},
enqueueForceUpdate: function (publicInstance) {
warnNoop(publicInstance, "forceUpdate");
},
enqueueReplaceState: function (publicInstance) {
warnNoop(publicInstance, "replaceState");
},
enqueueSetState: function (publicInstance) {
warnNoop(publicInstance, "setState");
}
},
assign = Object.assign,
emptyObject = {};
Object.freeze(emptyObject);
Component.prototype.isReactComponent = {};
Component.prototype.setState = function (partialState, callback) {
if (
"object" !== typeof partialState &&
"function" !== typeof partialState &&
null != partialState
)
throw Error(
"takes an object of state variables to update or a function which returns an object of state variables."
);
this.updater.enqueueSetState(this, partialState, callback, "setState");
};
Component.prototype.forceUpdate = function (callback) {
this.updater.enqueueForceUpdate(this, callback, "forceUpdate");
};
var deprecatedAPIs = {
isMounted: [
"isMounted",
"Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memory leaks."
],
replaceState: [
"replaceState",
"Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."
]
},
fnName;
for (fnName in deprecatedAPIs)
deprecatedAPIs.hasOwnProperty(fnName) &&
defineDeprecationWarning(fnName, deprecatedAPIs[fnName]);
ComponentDummy.prototype = Component.prototype;
deprecatedAPIs = PureComponent.prototype = new ComponentDummy();
deprecatedAPIs.constructor = PureComponent;
assign(deprecatedAPIs, Component.prototype);
deprecatedAPIs.isPureReactComponent = true;
var isArrayImpl = Array.isArray,
REACT_CLIENT_REFERENCE$2 = Symbol.for("react.client.reference"),
ReactSharedInternals = {
H: null,
A: null,
T: null,
S: null,
actQueue: null,
isBatchingLegacy: false,
didScheduleLegacyUpdate: false,
didUsePromise: false,
thrownErrors: [],
getCurrentStack: null
},
hasOwnProperty = Object.prototype.hasOwnProperty,
REACT_CLIENT_REFERENCE$1 = Symbol.for("react.client.reference"),
disabledDepth = 0,
prevLog,
prevInfo,
prevWarn,
prevError,
prevGroup,
prevGroupCollapsed,
prevGroupEnd;
disabledLog.__reactDisabledLog = true;
var prefix,
suffix,
reentry = false;
var componentFrameCache = new (
"function" === typeof WeakMap ? WeakMap : Map
)();
var REACT_CLIENT_REFERENCE = Symbol.for("react.client.reference"),
specialPropKeyWarningShown,
didWarnAboutOldJSXRuntime;
var didWarnAboutElementRef = {};
var ownerHasKeyUseWarning = {},
didWarnAboutMaps = false,
userProvidedKeyEscapeRegex = /\/+/g,
reportGlobalError =
"function" === typeof reportError
? reportError
: function (error) {
if (
"object" === typeof window &&
"function" === typeof window.ErrorEvent
) {
var event = new window.ErrorEvent("error", {
bubbles: true,
cancelable: true,
message:
"object" === typeof error &&
null !== error &&
"string" === typeof error.message
? String(error.message)
: String(error),
error: error
});
if (!window.dispatchEvent(event)) return;
} else if (
"object" === typeof process &&
"function" === typeof process.emit
) {
process.emit("uncaughtException", error);
return;
}
console.error(error);
},
didWarnAboutMessageChannel = false,
enqueueTaskImpl = null,
actScopeDepth = 0,
didWarnNoAwaitAct = false,
isFlushing = false,
queueSeveralMicrotasks =
"function" === typeof queueMicrotask
? function (callback) {
queueMicrotask(function () {
return queueMicrotask(callback);
});
}
: enqueueTask;
exports.Children = {
map: mapChildren,
forEach: function (children, forEachFunc, forEachContext) {
mapChildren(
children,
function () {
forEachFunc.apply(this, arguments);
},
forEachContext
);
},
count: function (children) {
var n = 0;
mapChildren(children, function () {
n++;
});
return n;
},
toArray: function (children) {
return (
mapChildren(children, function (child) {
return child;
}) || []
);
},
only: function (children) {
if (!isValidElement(children))
throw Error(
"React.Children.only expected to receive a single React element child."
);
return children;
}
};
exports.Component = Component;
exports.Fragment = REACT_FRAGMENT_TYPE;
exports.Profiler = REACT_PROFILER_TYPE;
exports.PureComponent = PureComponent;
exports.StrictMode = REACT_STRICT_MODE_TYPE;
exports.Suspense = REACT_SUSPENSE_TYPE;
exports.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =
ReactSharedInternals;
exports.act = function (callback) {
var prevActQueue = ReactSharedInternals.actQueue,
prevActScopeDepth = actScopeDepth;
actScopeDepth++;
var queue = (ReactSharedInternals.actQueue =
null !== prevActQueue ? prevActQueue : []),
didAwaitActCall = false;
try {
var result = callback();
} catch (error) {
ReactSharedInternals.thrownErrors.push(error);
}
if (0 < ReactSharedInternals.thrownErrors.length)
throw (
(popActScope(prevActQueue, prevActScopeDepth),
(callback = aggregateErrors(ReactSharedInternals.thrownErrors)),
(ReactSharedInternals.thrownErrors.length = 0),
callback)
);
if (
null !== result &&
"object" === typeof result &&
"function" === typeof result.then
) {
var thenable = result;
queueSeveralMicrotasks(function () {
didAwaitActCall ||
didWarnNoAwaitAct ||
((didWarnNoAwaitAct = true),
console.error(
"You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving multiple act calls and mixing their scopes. You should - await act(async () => ...);"
));
});
return {
then: function (resolve, reject) {
didAwaitActCall = true;
thenable.then(
function (returnValue) {
popActScope(prevActQueue, prevActScopeDepth);
if (0 === prevActScopeDepth) {
try {
flushActQueue(queue),
enqueueTask(function () {
return recursivelyFlushAsyncActWork(
returnValue,
resolve,
reject
);
});
} catch (error$2) {
ReactSharedInternals.thrownErrors.push(error$2);
}
if (0 < ReactSharedInternals.thrownErrors.length) {
var _thrownError = aggregateErrors(
ReactSharedInternals.thrownErrors
);
ReactSharedInternals.thrownErrors.length = 0;
reject(_thrownError);
}
} else resolve(returnValue);
},
function (error) {
popActScope(prevActQueue, prevActScopeDepth);
0 < ReactSharedInternals.thrownErrors.length
? ((error = aggregateErrors(
ReactSharedInternals.thrownErrors
)),
(ReactSharedInternals.thrownErrors.length = 0),
reject(error))
: reject(error);
}
);
}
};
}
var returnValue$jscomp$0 = result;
popActScope(prevActQueue, prevActScopeDepth);
0 === prevActScopeDepth &&
(flushActQueue(queue),
0 !== queue.length &&
queueSeveralMicrotasks(function () {
didAwaitActCall ||
didWarnNoAwaitAct ||
((didWarnNoAwaitAct = true),
console.error(
"A component suspended inside an `act` scope, but the `act` call was not awaited. When testing React components that depend on asynchronous data, you must await the result:\n\nawait act(() => ...)"
));
}),
(ReactSharedInternals.actQueue = null));
if (0 < ReactSharedInternals.thrownErrors.length)
throw (
((callback = aggregateErrors(ReactSharedInternals.thrownErrors)),
(ReactSharedInternals.thrownErrors.length = 0),
callback)
);
return {
then: function (resolve, reject) {
didAwaitActCall = true;
0 === prevActScopeDepth
? ((ReactSharedInternals.actQueue = queue),
enqueueTask(function () {
return recursivelyFlushAsyncActWork(
returnValue$jscomp$0,
resolve,
reject
);
}))
: resolve(returnValue$jscomp$0);
}
};
};
exports.cache = function (fn) {
return function () {
return fn.apply(null, arguments);
};
};
exports.cloneElement = function (element, config, children) {
if (null === element || void 0 === element)
throw Error(
"The argument must be a React element, but you passed " +
element +
"."
);
var props = assign({}, element.props),
key = element.key,
owner = element._owner;
if (null != config) {
var JSCompiler_inline_result;
a: {
if (
hasOwnProperty.call(config, "ref") &&
(JSCompiler_inline_result = Object.getOwnPropertyDescriptor(
config,
"ref"
).get) &&
JSCompiler_inline_result.isReactWarning
) {
JSCompiler_inline_result = false;
break a;
}
JSCompiler_inline_result = void 0 !== config.ref;
}
JSCompiler_inline_result && (owner = getOwner());
hasValidKey(config) &&
(checkKeyStringCoercion(config.key), (key = "" + config.key));
for (propName in config)
!hasOwnProperty.call(config, propName) ||
"key" === propName ||
"__self" === propName ||
"__source" === propName ||
("ref" === propName && void 0 === config.ref) ||
(props[propName] = config[propName]);
}
var propName = arguments.length - 2;
if (1 === propName) props.children = children;
else if (1 < propName) {
JSCompiler_inline_result = Array(propName);
for (var i = 0; i < propName; i++)
JSCompiler_inline_result[i] = arguments[i + 2];
props.children = JSCompiler_inline_result;
}
props = ReactElement(element.type, key, void 0, void 0, owner, props);
for (key = 2; key < arguments.length; key++)
validateChildKeys(arguments[key], props.type);
return props;
};
exports.createContext = function (defaultValue) {
defaultValue = {
$$typeof: REACT_CONTEXT_TYPE,
_currentValue: defaultValue,
_currentValue2: defaultValue,
_threadCount: 0,
Provider: null,
Consumer: null
};
defaultValue.Provider = defaultValue;
defaultValue.Consumer = {
$$typeof: REACT_CONSUMER_TYPE,
_context: defaultValue
};
defaultValue._currentRenderer = null;
defaultValue._currentRenderer2 = null;
return defaultValue;
};
exports.createElement = function (type, config, children) {
if (isValidElementType(type))
for (var i = 2; i < arguments.length; i++)
validateChildKeys(arguments[i], type);
else {
i = "";
if (
void 0 === type ||
("object" === typeof type &&
null !== type &&
0 === Object.keys(type).length)
)
i +=
" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";
if (null === type) var typeString = "null";
else
isArrayImpl(type)
? (typeString = "array")
: void 0 !== type && type.$$typeof === REACT_ELEMENT_TYPE
? ((typeString =
"<" +
(getComponentNameFromType(type.type) || "Unknown") +
" />"),
(i =
" Did you accidentally export a JSX literal instead of a component?"))
: (typeString = typeof type);
console.error(
"React.createElement: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",
typeString,
i
);
}
var propName;
i = {};
typeString = null;
if (null != config)
for (propName in (didWarnAboutOldJSXRuntime ||
!("__self" in config) ||
"key" in config ||
((didWarnAboutOldJSXRuntime = true),
console.warn(
"Your app (or one of its dependencies) is using an outdated JSX transform. Update to the modern JSX transform for faster performance: https://react.dev/link/new-jsx-transform"
)),
hasValidKey(config) &&
(checkKeyStringCoercion(config.key), (typeString = "" + config.key)),
config))
hasOwnProperty.call(config, propName) &&
"key" !== propName &&
"__self" !== propName &&
"__source" !== propName &&
(i[propName] = config[propName]);
var childrenLength = arguments.length - 2;
if (1 === childrenLength) i.children = children;
else if (1 < childrenLength) {
for (
var childArray = Array(childrenLength), _i = 0;
_i < childrenLength;
_i++
)
childArray[_i] = arguments[_i + 2];
Object.freeze && Object.freeze(childArray);
i.children = childArray;
}
if (type && type.defaultProps)
for (propName in ((childrenLength = type.defaultProps), childrenLength))
void 0 === i[propName] && (i[propName] = childrenLength[propName]);
typeString &&
defineKeyPropWarningGetter(
i,
"function" === typeof type
? type.displayName || type.name || "Unknown"
: type
);
return ReactElement(type, typeString, void 0, void 0, getOwner(), i);
};
exports.createRef = function () {
var refObject = { current: null };
Object.seal(refObject);
return refObject;
};
exports.forwardRef = function (render) {
null != render && render.$$typeof === REACT_MEMO_TYPE
? console.error(
"forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(...)), use memo(forwardRef(...))."
)
: "function" !== typeof render
? console.error(
"forwardRef requires a render function but was given %s.",
null === render ? "null" : typeof render
)
: 0 !== render.length &&
2 !== render.length &&
console.error(
"forwardRef render functions accept exactly two parameters: props and ref. %s",
1 === render.length
? "Did you forget to use the ref parameter?"
: "Any additional parameter will be undefined."
);
null != render &&
null != render.defaultProps &&
console.error(
"forwardRef render functions do not support defaultProps. Did you accidentally pass a React component?"
);
var elementType = { $$typeof: REACT_FORWARD_REF_TYPE, render: render },
ownName;
Object.defineProperty(elementType, "displayName", {
enumerable: false,
configurable: true,
get: function () {
return ownName;
},
set: function (name) {
ownName = name;
render.name ||
render.displayName ||
(Object.defineProperty(render, "name", { value: name }),
(render.displayName = name));
}
});
return elementType;
};
exports.isValidElement = isValidElement;
exports.lazy = function (ctor) {
return {
$$typeof: REACT_LAZY_TYPE,
_payload: { _status: -1, _result: ctor },
_init: lazyInitializer
};
};
exports.memo = function (type, compare) {
isValidElementType(type) ||
console.error(
"memo: The first argument must be a component. Instead received: %s",
null === type ? "null" : typeof type
);
compare = {
$$typeof: REACT_MEMO_TYPE,
type: type,
compare: void 0 === compare ? null : compare
};
var ownName;
Object.defineProperty(compare, "displayName", {
enumerable: false,
configurable: true,
get: function () {
return ownName;
},
set: function (name) {
ownName = name;
type.name ||
type.displayName ||
(Object.defineProperty(type, "name", { value: name }),
(type.displayName = name));
}
});
return compare;
};
exports.startTransition = function (scope) {
var prevTransition = ReactSharedInternals.T,
currentTransition = {};
ReactSharedInternals.T = currentTransition;
currentTransition._updatedFibers = new Set();
try {
var returnValue = scope(),
onStartTransitionFinish = ReactSharedInternals.S;
null !== onStartTransitionFinish &&
onStartTransitionFinish(currentTransition, returnValue);
"object" === typeof returnValue &&
null !== returnValue &&
"function" === typeof returnValue.then &&
returnValue.then(noop, reportGlobalError);
} catch (error) {
reportGlobalError(error);
} finally {
null === prevTransition &&
currentTransition._updatedFibers &&
((scope = currentTransition._updatedFibers.size),
currentTransition._updatedFibers.clear(),
10 < scope &&
console.warn(
"Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to use React provided hooks. Otherwise concurrent mode guarantees are off the table."
)),
(ReactSharedInternals.T = prevTransition);
}
};
exports.unstable_useCacheRefresh = function () {
return resolveDispatcher().useCacheRefresh();
};
exports.use = function (usable) {
return resolveDispatcher().use(usable);
};
exports.useActionState = function (action, initialState, permalink) {
return resolveDispatcher().useActionState(
action,
initialState,
permalink
);
};
exports.useCallback = function (callback, deps) {
return resolveDispatcher().useCallback(callback, deps);
};
exports.useContext = function (Context) {
var dispatcher = resolveDispatcher();
Context.$$typeof === REACT_CONSUMER_TYPE &&
console.error(
"Calling useContext(Context.Consumer) is not supported and will cause bugs. Did you mean to call useContext(Context) instead?"
);
return dispatcher.useContext(Context);
};
exports.useDebugValue = function (value, formatterFn) {
return resolveDispatcher().useDebugValue(value, formatterFn);
};
exports.useDeferredValue = function (value, initialValue) {
return resolveDispatcher().useDeferredValue(value, initialValue);
};
exports.useEffect = function (create, deps) {
return resolveDispatcher().useEffect(create, deps);
};
exports.useId = function () {
return resolveDispatcher().useId();
};
exports.useImperativeHandle = function (ref, create, deps) {
return resolveDispatcher().useImperativeHandle(ref, create, deps);
};
exports.useInsertionEffect = function (create, deps) {
return resolveDispatcher().useInsertionEffect(create, deps);
};
exports.useLayoutEffect = function (create, deps) {
return resolveDispatcher().useLayoutEffect(create, deps);
};
exports.useMemo = function (create, deps) {
return resolveDispatcher().useMemo(create, deps);
};
exports.useOptimistic = function (passthrough, reducer) {
return resolveDispatcher().useOptimistic(passthrough, reducer);
};
exports.useReducer = function (reducer, initialArg, init) {
return resolveDispatcher().useReducer(reducer, initialArg, init);
};
exports.useRef = function (initialValue) {
return resolveDispatcher().useRef(initialValue);
};
exports.useState = function (initialState) {
return resolveDispatcher().useState(initialState);
};
exports.useSyncExternalStore = function (
subscribe,
getSnapshot,
getServerSnapshot
) {
return resolveDispatcher().useSyncExternalStore(
subscribe,
getSnapshot,
getServerSnapshot
);
};
exports.useTransition = function () {
return resolveDispatcher().useTransition();
};
exports.version = "19.0.0";
"undefined" !== typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ &&
"function" ===
typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop &&
__REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(Error());
})();
} (react_development, react_development.exports));
return react_development.exports;
}
var hasRequiredReact;
function requireReact () {
if (hasRequiredReact) return react.exports;
hasRequiredReact = 1;
if (process.env.NODE_ENV === 'production') {
react.exports = requireReact_production();
} else {
react.exports = requireReact_development();
}
return react.exports;
}
var reactExports = requireReact();
var defaultAttributes = {
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
fillRule: "evenodd",
clipRule: "evenodd"
};
const createMeisterIcons = (iconName, iconNode) => {
const Component = reactExports.forwardRef(
({ color = "currentColor", size = 24, children, ...rest }, ref) => reactExports.createElement(
"svg",
{
ref,
className: `mni mni-${f(iconName)}`,
color,
...defaultAttributes,
...rest
},
[
...iconNode.map(
([tag, attrs]) => reactExports.createElement(tag, attrs)
),
Array.isArray(children ?? [children]) || []
]
)
);
Component.displayName = iconName;
return Component;
};
const Add = createMeisterIcons("add", [["path", { "fill": "currentColor", "d": "M12 3.25a.75.75 0 0 1 .75.75v16a.75.75 0 0 1-1.5 0V4a.75.75 0 0 1 .75-.75Z", "key": "5b72caf2d7a10e0e4a6fd2216b3ae6e532fa6297" }], ["path", { "fill": "currentColor", "d": "M3.25 12a.75.75 0 0 1 .75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "45e2251ce9d1bdf3af19c1122a8b3d5ec6d21a92" }]]);
const AddBlock = createMeisterIcons("add-block", [["path", { "fill": "currentColor", "d": "M10.35 3.7a.575.575 0 0 0-.55.55v4.8a.75.75 0 1 1-1.5 0v-4.8c0-1.114.936-2.05 2.05-2.05h3.4c1.114 0 2.05.936 2.05 2.05v4.8a.75.75 0 0 1-1.5 0v-4.8a.575.575 0 0 0-.55-.55h-3.4Zm-1.3 10.5a.75.75 0 0 1 .75.75v4.8c0 .286.264.55.55.55h3.3c.286 0 .55-.264.55-.55v-4.8a.75.75 0 0 1 1.5 0v4.8c0 1.114-.936 2.05-2.05 2.05h-3.3a2.073 2.073 0 0 1-2.05-2.05v-4.8a.75.75 0 0 1 .75-.75Z", "key": "01127fb1be3099e41619a6eb24430e7daa92cf3a" }], ["path", { "fill": "currentColor", "d": "M14.2 9.05a.75.75 0 0 1 .75-.75h4.8c1.114 0 2.05.936 2.05 2.05v3.4c0 1.114-.936 2.05-2.05 2.05h-4.8a.75.75 0 1 1 0-1.5h4.8c.286 0 .55-.264.55-.55v-3.4a.575.575 0 0 0-.55-.55h-4.8a.75.75 0 0 1-.75-.75Zm-9.95.75a.575.575 0 0 0-.55.55v3.3c0 .286.264.55.55.55h4.8a.75.75 0 0 1 0 1.5h-4.8a2.073 2.073 0 0 1-2.05-2.05v-3.3c0-1.114.936-2.05 2.05-2.05h4.8a.75.75 0 1 1 0 1.5h-4.8Z", "key": "3ccb954e84acb49a1f701cb672d474409b7782b7" }]]);
const AddBlockB = createMeisterIcons("add-block-b", [["path", { "fill": "currentColor", "d": "M9.05 9.05v-4.8c0-.7.6-1.3 1.3-1.3h3.4c.7 0 1.3.6 1.3 1.3v4.8", "key": "79b7d767994733a10985f6617a1f3fd64a703058" }], ["path", { "fill": "currentColor", "d": "M10.35 3.7a.575.575 0 0 0-.55.55v4.8a.75.75 0 1 1-1.5 0v-4.8c0-1.114.936-2.05 2.05-2.05h3.4c1.114 0 2.05.936 2.05 2.05v4.8a.75.75 0 0 1-1.5 0v-4.8a.575.575 0 0 0-.55-.55h-3.4Zm4.6 11.25v4.8c0 .7-.6 1.3-1.3 1.3h-3.3c-.7 0-1.3-.6-1.3-1.3v-4.8", "key": "4a06450e79f7eff59e4b4982d7ee07055efb5afe" }], ["path", { "fill": "currentColor", "d": "M9.05 14.2a.75.75 0 0 1 .75.75v4.8c0 .286.264.55.55.55h3.3c.286 0 .55-.264.55-.55v-4.8a.75.75 0 0 1 1.5 0v4.8c0 1.114-.936 2.05-2.05 2.05h-3.3a2.073 2.073 0 0 1-2.05-2.05v-4.8a.75.75 0 0 1 .75-.75Z", "key": "6876d3653b0708431535c9c88f5b2ff66a7ac70b" }], ["path", { "fill": "currentColor", "d": "M14.95 9.05h4.8c.7 0 1.3.6 1.3 1.3v3.4c0 .7-.6 1.3-1.3 1.3h-4.8", "key": "af5ff9394054fc3e11efa5f95d2ecaed29f3b238" }], ["path", { "fill": "currentColor", "d": "M14.2 9.05a.75.75 0 0 1 .75-.75h4.8c1.114 0 2.05.936 2.05 2.05v3.4c0 1.114-.936 2.05-2.05 2.05h-4.8a.75.75 0 1 1 0-1.5h4.8c.286 0 .55-.264.55-.55v-3.4a.575.575 0 0 0-.55-.55h-4.8a.75.75 0 0 1-.75-.75Z", "key": "f4ef1b02c645c2505450026d9a66eee637560e38" }], ["path", { "fill": "currentColor", "d": "M14.95 9.05h-5.9v5.9h5.9v-5.9Z", "key": "7c5d2057d375f03288f7999c029af5090d83112e" }], ["path", { "fill": "currentColor", "d": "M8.3 8.3h7.4v7.4H8.3V8.3Zm1.5 1.5v4.4h4.4V9.8H9.8Z", "key": "bc4fc3884a44f8463486d9dbbf4aaec9591d3a0d" }], ["path", { "fill": "currentColor", "d": "M9.05 9.05v5.9h-4.8c-.7 0-1.3-.6-1.3-1.3v-3.3c0-.7.6-1.3 1.3-1.3h4.8Z", "key": "3e72de28b5820a831e991bf2c59378f8b39a79d0" }], ["path", { "fill": "currentColor", "d": "M4.25 9.8a.575.575 0 0 0-.55.55v3.3c0 .286.264.55.55.55H8.3V9.8H4.25Zm-2.05.55c0-1.114.936-2.05 2.05-2.05H9.8v7.4H4.25a2.073 2.073 0 0 1-2.05-2.05v-3.3Z", "key": "825ccd73d0261a4b5d82b525dd61b38dab328d71" }]]);
const AddSqaure = createMeisterIcons("add-sqaure", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Zm6 3a.75.75 0 0 1 .75-.75h2.25V9a.75.75 0 0 1 1.5 0v2.25H15a.75.75 0 0 1 0 1.5h-2.25V15a.75.75 0 0 1-1.5 0v-2.25H9a.75.75 0 0 1-.75-.75Z", "key": "51ca18fe68c4e8c6bb57d63b39569c79decf6062" }]]);
const AddSqaureB = createMeisterIcons("add-sqaure-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "ec7c6894e5840566cbd4b31e31fdad77ebaa468f" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "4694967cea7382c24a7d10a43876901508a69fc6" }], ["path", { "fill": "#fff", "d": "M8.25 12a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "98d2cdf12438fa21040fd273415b2ab9cd31f7f4" }], ["path", { "fill": "#fff", "d": "M12 8.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Z", "key": "00ba800ef00c39220f1b76f1feb9d259b4b5daf9" }]]);
const Airpods = createMeisterIcons("airpods", [["path", { "fill": "currentColor", "d": "M8 2.1a4.762 4.762 0 0 0-4.75 4.75c0 1.683.849 3.204 2.235 4.026l.468 5.24v.009c.14 1.39 1.368 2.475 2.747 2.475 1.379 0 2.607-1.086 2.746-2.475l.604-6.037v-.056c0-.202 0-.405-.042-.642a4.75 4.75 0 0 0 .742-2.54A4.762 4.762 0 0 0 8 2.1Zm2.637 6.647-.047.067-.004.006c-.55.785-1.512 1.28-2.586 1.28-.64 0-1.082-.093-1.414-.293l-.008-.005.017-.041C5.486 9.285 4.75 8.167 4.75 6.85A3.262 3.262 0 0 1 8 3.6a3.262 3.262 0 0 1 3.25 3.25c0 .694-.22 1.322-.613 1.896ZM8 11.6c.88 0 1.732-.234 2.458-.667l-.504 5.043c-.061.61-.633 1.124-1.254 1.124-.62 0-1.19-.512-1.253-1.121l-.398-4.45c.312.052.631.071.951.071Zm5.25 1.25c0-2.114 1.636-3.75 3.75-3.75s3.75 1.636 3.75 3.75c0 1.351-.709 2.492-1.74 3.157l-.364 3.825-.002.011c-.14 1.124-1.016 2.057-2.244 2.057-1.228 0-2.104-.933-2.244-2.057l-.002-.013-.404-4.547v-.061c0-.104 0-.258.029-.436-.357-.571-.529-1.224-.529-1.936Zm1.8 1.139.16.225c.36.503 1.033.886 1.79.886.297 0 .68-.079.965-.22l.005-.004c.766-.385 1.28-1.137 1.28-2.026 0-1.286-.964-2.25-2.25-2.25s-2.25.964-2.25 2.25c0 .451.104.823.3 1.139Zm.596 5.68-.307-3.455c.5.245 1.067.386 1.661.386.142 0 .294-.01.45-.03l-.295 3.097c-.063.47-.385.733-.755.733s-.691-.263-.754-.731Z", "key": "d569d942144875bc4d55ccaec6a2458a59b1a0c4" }]]);
const AirpodsAlt = createMeisterIcons("airpods-alt", [["path", { "fill": "currentColor", "d": "M8.05 2.1A4.762 4.762 0 0 0 3.3 6.85c0 .896.25 1.704.667 2.416-.067.292-.067.53-.067.766v.055l.604 6.038C4.643 17.515 5.87 18.6 7.25 18.6s2.607-1.086 2.746-2.475l.465-5.202c1.351-.798 2.339-2.33 2.339-4.073A4.762 4.762 0 0 0 8.05 2.1Zm1.969 7.314C10.772 8.833 11.3 7.89 11.3 6.85A3.262 3.262 0 0 0 8.05 3.6 3.262 3.262 0 0 0 4.8 6.85c0 .722.238 1.373.66 1.964l-.066.048c.554.76 1.501 1.238 2.556 1.238.64 0 1.082-.093 1.414-.293l.655-.393Zm-4.023 6.562-.504-5.043a4.81 4.81 0 0 0 2.458.667c.32 0 .639-.019.95-.07l-.397 4.449c-.062.609-.633 1.121-1.253 1.121-.62 0-1.193-.514-1.254-1.125ZM13.2 12.85c0-2.114 1.636-3.75 3.75-3.75s3.75 1.636 3.75 3.75c0 .712-.172 1.365-.529 1.936.03.178.03.332.03.436v.061l-.405 4.547-.002.013c-.14 1.124-1.016 2.057-2.244 2.057-1.227 0-2.104-.933-2.244-2.057l-.001-.01-.365-3.826c-1.031-.665-1.74-1.806-1.74-3.157Zm2.78 2.027.005.002c.285.142.668.221.965.221.757 0 1.43-.383 1.79-.886l.161-.226c.195-.315.3-.687.3-1.138 0-1.286-.965-2.25-2.25-2.25-1.287 0-2.25.964-2.25 2.25 0 .889.513 1.641 1.28 2.027Zm.97 1.723c.594 0 1.161-.14 1.661-.386l-.307 3.455c-.063.468-.385.731-.754.731-.37 0-.692-.263-.755-.733l-.294-3.096c.155.02.307.03.45.03Z", "key": "c5280ded7d6455d9776543e6ccf827fe55c2be57" }]]);
const AirpodsAltB = createMeisterIcons("airpods-alt-b", [["path", { "fill": "currentColor", "d": "M12.05 6.9c0 1.6-.9 2.9-2.3 3.6-.5.2-1.1.4-1.7.4-1.3 0-2.5-.6-3.2-1.6-.5-.7-.8-1.6-.8-2.4 0-2.2 1.8-4 4-4s4 1.7 4 4Z", "key": "8230a49e41680ba49ace693da885d90ce595f909" }], ["path", { "fill": "currentColor", "d": "M8.05 3.65A3.262 3.262 0 0 0 4.8 6.9c0 .632.244 1.381.66 1.964l.004.006c.55.785 1.512 1.28 2.586 1.28.44 0 .918-.147 1.392-.335C10.598 9.226 11.3 8.177 11.3 6.9c0-1.874-1.452-3.25-3.25-3.25ZM3.3 6.9a4.762 4.762 0 0 1 4.75-4.75c2.602 0 4.75 2.024 4.75 4.75 0 1.913-1.087 3.457-2.715 4.27l-.028.015-.029.011c-.516.207-1.228.454-1.978.454-1.525 0-2.961-.703-3.812-1.917C3.655 8.916 3.3 7.867 3.3 6.9Z", "key": "43b9d92c92c498591f176d0f9f7f186307ec9efc" }], ["path", { "fill": "currentColor", "d": "m4.51 7.549.854 1.22c.55.785 1.512 1.281 2.586 1.281h.053l.053.007c.485.07.911-.062 1.308-.3l1.264-.759-.632 7.077c-.139 1.39-1.367 2.475-2.746 2.475-1.38 0-2.607-1.086-2.746-2.475L3.9 10.037v-.055c0-.301 0-.603.138-1.02L4.51 7.55Zm.982 3.334.504 5.042c.061.61.633 1.125 1.254 1.125.62 0 1.19-.512 1.253-1.121l.394-4.406c-.31.057-.644.072-1 .027a4.808 4.808 0 0 1-2.405-.667ZM13.2 12.8c0-2.114 1.636-3.75 3.75-3.75s3.75 1.636 3.75 3.75c0 .853-.248 1.623-.764 2.269l-1.172-.937c.284-.355.436-.785.436-1.332 0-1.286-.964-2.25-2.25-2.25s-2.25.964-2.25 2.25c0 .89.516 1.645 1.285 2.03l-.67 1.34c-1.231-.615-2.115-1.86-2.115-3.37Z", "key": "04d174245d023b96acdfe302ad4d44ee7cb27349" }], ["path", { "fill": "currentColor", "d": "m15.65 15.5.4 4.2c.1.8.7 1.4 1.5 1.4s1.4-.6 1.5-1.4l.4-4.5c0-.2 0-.4-.1-.6-.5.7-1.4 1.2-2.4 1.2-.4 0-.9-.1-1.3-.3Z", "key": "64c93798fc77c6bdbdb1ae30f4cf09270bbd1caa" }], ["path", { "fill": "currentColor", "d": "m19.464 13.15.557 1.115c.18.361.18.717.179.907v.061l-.404 4.547-.002.013c-.14 1.124-1.017 2.057-2.244 2.057-1.228 0-2.104-.933-2.244-2.057l-.002-.01-.529-5.559 1.21.605c.285.142.668.221.965.221.757 0 1.43-.383 1.79-.886l.724-1.014Zm-.853 3.014c-.5.245-1.067.386-1.661.386-.142 0-.294-.01-.45-.03l.295 3.097c.063.47.385.733.755.733s.69-.263.754-.731l.307-3.455Z", "key": "fe6c08d14b4082e21a45359d6e3ce11d3800c2d1" }]]);
const AirpodsB = createMeisterIcons("airpods-b", [["path", { "fill": "currentColor", "d": "M3.2 6.9a4.762 4.762 0 0 1 4.75-4.75A4.762 4.762 0 0 1 12.7 6.9c0 1.078-.362 2.027-.94 2.836l-1.22-.872c.422-.591.66-1.242.66-1.964a3.262 3.262 0 0 0-3.25-3.25A3.262 3.262 0 0 0 4.7 6.9c0 1.287.713 2.343 1.885 2.93l-.67 1.34C4.287 10.358 3.2 8.814 3.2 6.9Z", "key": "7914f53939df09ebdbe729e6bfd9a50180b98757" }], ["path", { "fill": "currentColor", "d": "m6.25 10.4.5 5.6c.1 1 1 1.8 2 1.8s1.9-.8 2-1.8l.6-6c-.1-.3-.1-.5-.1-.8-.7 1-1.9 1.6-3.2 1.6-.7.1-1.3-.1-1.8-.4Z", "key": "44f0fecaf8e58b6c03e99c5b75d7a564808ed046" }], ["path", { "fill": "currentColor", "d": "M12 6.82V9.2c0 .293.003.387.062.563l.05.152-.616 6.16c-.139 1.39-1.367 2.475-2.746 2.475s-2.607-1.086-2.746-2.475l-.001-.008-.631-7.068 1.264.758c.396.238.823.37 1.308.3l.053-.007h.053c1.074 0 2.036-.495 2.586-1.28L12 6.82Zm-3.898 4.73c-.355.045-.689.03-.999-.027l.394 4.406c.063.609.633 1.121 1.253 1.121.621 0 1.193-.514 1.254-1.125l.504-5.042a4.807 4.807 0 0 1-2.406.667ZM18.35 15.5c1-.5 1.7-1.5 1.7-2.7 0-1.7-1.3-3-3-3s-3 1.3-3 3c0 .7.2 1.3.6 1.8", "key": "f5b6d35df6e5da2e7059d6f70e7fffd16521c5c5" }], ["path", { "fill": "currentColor", "d": "M13.3 12.8c0-2.114 1.636-3.75 3.75-3.75s3.75 1.636 3.75 3.75c0 1.51-.884 2.755-2.114 3.37l-.671-1.34c.769-.385 1.285-1.14 1.285-2.03 0-1.286-.964-2.25-2.25-2.25s-2.25.964-2.25 2.25c0 .547.152.977.436 1.332l-1.172.937c-.516-.646-.764-1.416-.764-2.269Z", "key": "a2859bb67c772966dc8b62a0289d9d08243b5b3f" }], ["path", { "fill": "currentColor", "d": "m14.536 13.15.724 1.014c.36.504 1.033.886 1.79.886.297 0 .68-.079.965-.22l1.21-.606-.53 5.558v.011c-.141 1.124-1.017 2.057-2.245 2.057-1.227 0-2.104-.933-2.244-2.057l-.002-.013-.404-4.547v-.061c0-.19-.002-.546.18-.907l.556-1.115Zm.853 3.014.307 3.455c.063.468.385.731.754.731.37 0 .692-.264.755-.733l.295-3.096c-.156.02-.308.03-.45.03-.594 0-1.16-.142-1.661-.387Z", "key": "cf946f38955f439a70b312768165cc765e4e4606" }]]);
const AirpodsDot = createMeisterIcons("airpods-dot", [["path", { "fill": "currentColor", "d": "M3.3 6.85A4.762 4.762 0 0 1 8.05 2.1a4.762 4.762 0 0 1 4.75 4.75c0 1.91-1.186 3.566-2.736 4.28l-.628-1.36c1.05-.485 1.864-1.628 1.864-2.919A3.262 3.262 0 0 0 8.05 3.6 3.262 3.262 0 0 0 4.8 6.85c0 .722.238 1.373.66 1.964l-1.22.872c-.578-.809-.94-1.758-.94-2.836Z", "key": "29c15e3209688d5ff4568e137bfd6efb9c46c6a4" }], ["path", { "fill": "currentColor", "d": "m4.51 7.599.854 1.22c.55.786 1.512 1.281 2.586 1.281h.053l.053.008c.485.069.911-.063 1.308-.301l1.264-.758-.632 7.076C9.857 17.515 8.63 18.6 7.25 18.6c-1.348 0-2.606-.956-2.747-2.479L3.9 10.088v-.056c0-.301 0-.603.138-1.02L4.51 7.6Zm.982 3.334.505 5.05c.061.675.601 1.117 1.253 1.117.62 0 1.19-.512 1.253-1.121l.394-4.406c-.31.057-.644.072-1 .027a4.808 4.808 0 0 1-2.405-.667ZM13.2 12.85c0-2.114 1.636-3.75 3.75-3.75s3.75 1.636 3.75 3.75c0 .853-.248 1.623-.764 2.268l-1.172-.937c.284-.354.436-.784.436-1.331 0-1.286-.964-2.25-2.25-2.25s-2.25.964-2.25 2.25c0 .89.516 1.645 1.285 2.03l-.67 1.34c-1.231-.615-2.115-1.86-2.115-3.37Z", "key": "27cdd164a12c8c3d10225ee87c00646ae4168e3d" }], ["path", { "fill": "currentColor", "d": "m19.464 13.2.557 1.115c.18.361.18.717.179.907v.061l-.404 4.547-.002.013c-.14 1.124-1.017 2.057-2.244 2.057-1.228 0-2.104-.933-2.244-2.057l-.002-.01-.529-5.559 1.21.605c.285.142.668.221.965.221.757 0 1.43-.383 1.79-.886l.724-1.014Zm-.853 3.014c-.5.245-1.067.386-1.661.386-.142 0-.294-.01-.45-.03l.295 3.097c.063.47.385.733.755.733s.69-.263.754-.731l.307-3.455ZM7.95 8.05a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z", "key": "31287b4e8ff97683e0be0e325c1db1d70e2ac388" }]]);
const AirpodSingle = createMeisterIcons("airpod-single", [["path", { "fill": "currentColor", "d": "M12 3.75A4.762 4.762 0 0 0 7.25 8.5c0 .896.25 1.704.667 2.416-.067.292-.067.53-.067.766v.055l.604 6.038c.139 1.39 1.367 2.475 2.746 2.475s2.607-1.086 2.746-2.475l.465-5.202c1.351-.798 2.339-2.33 2.339-4.073A4.762 4.762 0 0 0 12 3.75Zm1.969 7.314c.753-.581 1.281-1.525 1.281-2.564A3.262 3.262 0 0 0 12 5.25 3.262 3.262 0 0 0 8.75 8.5c0 .722.238 1.373.66 1.964l-.066.047c.554.76 1.501 1.239 2.556 1.239h.053l.053.008c.485.069.912-.063 1.308-.301l.655-.393Zm-4.023 6.561-.504-5.042a4.808 4.808 0 0 0 2.406.667c.355.045.689.03.999-.027l-.394 4.406c-.062.609-.633 1.121-1.253 1.121-.621 0-1.193-.514-1.254-1.125Z", "key": "6722d75c4304e5402bb7d18c2fe04d4d50f2ca6a" }]]);
const AirpodSingleB = createMeisterIcons("airpod-single-b", [["path", { "fill": "currentColor", "d": "M16 8.55c0 1.6-.9 3-2.3 3.6-.5.2-1.1.4-1.7.4-1.3 0-2.5-.6-3.2-1.6-.5-.7-.8-1.6-.8-2.4 0-2.2 1.8-4 4-4s4 1.7 4 4Z", "key": "c83131dfe6ea2c28b8327c9c157ba008d9ea1d75" }], ["path", { "fill": "currentColor", "d": "M12 5.3a3.262 3.262 0 0 0-3.25 3.25c0 .632.244 1.381.66 1.964l.004.006c.55.784 1.512 1.28 2.586 1.28.447 0 .932-.151 1.413-.343 1.104-.477 1.837-1.594 1.837-2.907 0-1.874-1.452-3.25-3.25-3.25ZM7.25 8.55A4.762 4.762 0 0 1 12 3.8c2.602 0 4.75 2.023 4.75 4.75 0 1.883-1.064 3.565-2.755 4.29l-.008.003-.008.003c-.517.207-1.229.454-1.979.454-1.525 0-2.961-.703-3.812-1.917-.583-.817-.938-1.866-.938-2.833Z", "key": "b343581232e0237c58b71a773d371877275f46c2" }], ["path", { "fill": "currentColor", "d": "m8.46 9.199.854 1.22c.55.785 1.512 1.28 2.586 1.28h.053l.053.008c.485.07.912-.062 1.308-.3l1.264-.759-.632 7.076c-.139 1.39-1.367 2.476-2.746 2.476-1.348 0-2.606-.956-2.747-2.479l-.603-6.034v-.055c0-.301 0-.604.138-1.02L8.46 9.2Zm.982 3.334.505 5.049c.061.676.602 1.118 1.253 1.118.62 0 1.19-.512 1.253-1.121l.394-4.406c-.31.057-.644.072-1 .027a4.808 4.808 0 0 1-2.405-.667Z", "key": "f3eb215b07f7ddd22d8d0e97754572008838e02b" }]]);
const Alarm = createMeisterIcons("alarm", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "6be71cf224ecd6c5762120e1c0ba9ba69df7090b" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "aa4407f0217cfefc59f8242d4491b2cabd4ed2ae" }]]);
const AlarmAdd = createMeisterIcons("alarm-add", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "a4d25756a5a7c67a2733eb337a455b625212792b" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM12 9.05a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V9.8a.75.75 0 0 1 .75-.75Z", "key": "c62fe955b286e2b283081061126f741d3b1e7025" }], ["path", { "fill": "currentColor", "d": "M8.85 12.2a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5H9.6a.75.75 0 0 1-.75-.75Z", "key": "d9532de343de41d5244df359abd5d2e56dcf46b4" }]]);
const AlarmAddB = createMeisterIcons("alarm-add-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "1cbbe2b40f371eea745f173d10e3dcee0124520e" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "514a1f90c8656e6a40ad44687a419530ca04373f" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "2c7d35e898a7b7dd3a2ab3c1067dfedd8097a9ab" }], ["path", { "fill": "#fff", "d": "M12 9.05a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V9.8a.75.75 0 0 1 .75-.75Z", "key": "85bc26945fdfdf234796b07f3a0888f8efa636ba" }], ["path", { "fill": "#fff", "d": "M8.85 12.2a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5H9.6a.75.75 0 0 1-.75-.75Z", "key": "1ea26d72c9437704079c70d5e8be4c6c3d97ecdf" }]]);
const AlarmArrowDown = createMeisterIcons("alarm-arrow-down", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "1027dc9893f092bce0b751270194c79da9d90d1b" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM12 8.55a.75.75 0 0 1 .75.75v5.3a.75.75 0 0 1-1.5 0V9.3a.75.75 0 0 1 .75-.75Z", "key": "6e044a4488ed41d36f423908de989ccbee49f086" }], ["path", { "fill": "currentColor", "d": "M8.97 12.27a.75.75 0 0 1 1.06 0L12 14.24l1.97-1.97a.75.75 0 1 1 1.06 1.06l-2.2 2.2c-.228.229-.54.37-.867.37a1.04 1.04 0 0 1-.853-.43l-2.14-2.14a.75.75 0 0 1 0-1.06Z", "key": "12d0ba36ae868cd1a1fbfee00a35cd563cd71179" }]]);
const AlarmArrowDownB = createMeisterIcons("alarm-arrow-down-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "4e19df77eeb1be1178a9a90225965b0980fd96ac" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "6c7a0ac4c230c6d754e13c0e66e8bf745d8909b6" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "9a43485b648331df5cb9357a778e11c799cf5cda" }], ["path", { "fill": "#fff", "d": "M12 8.55a.75.75 0 0 1 .75.75v5.3a.75.75 0 0 1-1.5 0V9.3a.75.75 0 0 1 .75-.75Z", "key": "f99a926d991d66fa6d06796877362d419acefa7e" }], ["path", { "fill": "#fff", "d": "M8.97 12.27a.75.75 0 0 1 1.06 0L12 14.24l1.97-1.97a.75.75 0 1 1 1.06 1.06l-2.2 2.2c-.228.229-.54.37-.867.37a1.04 1.04 0 0 1-.853-.43l-2.14-2.14a.75.75 0 0 1 0-1.06Z", "key": "58d64e9f6c74579cd04eab52d15086d29627c9c0" }]]);
const AlarmArrowLeft = createMeisterIcons("alarm-arrow-left", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "aa9ad42fcd3503704c86f073df3bc4e1e8d0063f" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM8.85 12.2a.75.75 0 0 1 .75-.75H15a.75.75 0 0 1 0 1.5H9.6a.75.75 0 0 1-.75-.75Z", "key": "39dc7af06588e547d6345be5c63b936da389b9a5" }], ["path", { "fill": "currentColor", "d": "M11.93 9.17a.75.75 0 0 1 0 1.06L9.96 12.2l1.97 1.97a.75.75 0 0 1-1.06 1.06l-2.2-2.2a1.237 1.237 0 0 1-.37-.868c0-.295.124-.637.43-.852l2.14-2.14a.75.75 0 0 1 1.06 0Z", "key": "4fb048f0be9308867dddbf9be2583cd4b62c9769" }]]);
const AlarmArrowLeftB = createMeisterIcons("alarm-arrow-left-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "dafd3a80e46401860664078f87b098e46dcdae80" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "b4d2ea5d44b30cb55aaf81b836382d9fc53bd43c" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "ab14b7d4f25ed588966ff65509dbd7a142c3fed7" }], ["path", { "fill": "#fff", "d": "M8.85 12.2a.75.75 0 0 1 .75-.75H15a.75.75 0 0 1 0 1.5H9.6a.75.75 0 0 1-.75-.75Z", "key": "f0c1715280d2660368fe1ed0b5bcdab24ec9c933" }], ["path", { "fill": "#fff", "d": "M11.93 9.17a.75.75 0 0 1 0 1.06L9.96 12.2l1.97 1.97a.75.75 0 1 1-1.06 1.06l-2.2-2.2a1.237 1.237 0 0 1-.37-.868c0-.296.124-.637.43-.852l2.14-2.14a.75.75 0 0 1 1.06 0Z", "key": "038bed4d59baab9f38c6bf0983364e013c2d1cce" }]]);
const AlarmArrowRight = createMeisterIcons("alarm-arrow-right", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "b8c3567d91ad2649d4c9ff8e5bbd4962d16a9326" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM8.35 12.2a.75.75 0 0 1 .75-.75h5.3a.75.75 0 0 1 0 1.5H9.1a.75.75 0 0 1-.75-.75Z", "key": "fdf21783770f6e564517f33fd91d7c2ffe0c1663" }], ["path", { "fill": "currentColor", "d": "M12.07 9.17a.75.75 0 0 1 1.06 0l2.2 2.2c.229.228.37.54.37.867 0 .293-.122.631-.42.847l-2.138 2.234a.75.75 0 1 1-1.084-1.037l1.986-2.076-1.974-1.975a.75.75 0 0 1 0-1.06Z", "key": "c741de8ff9f27b848f1470816a0ae09d2c95edb7" }]]);
const AlarmArrowRightB = createMeisterIcons("alarm-arrow-right-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "e06d6916c20ff494de4e3bb403454e5ad5b08508" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "74e3307876b6093a37324b233151bae4ee8f3100" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "f035ae6bb31a891952f42a1252beeef1663f93ab" }], ["path", { "fill": "#fff", "d": "M8.35 12.2a.75.75 0 0 1 .75-.75h5.3a.75.75 0 0 1 0 1.5H9.1a.75.75 0 0 1-.75-.75Z", "key": "7601bf5d5684cad8b8dc7f31b7539b6dc16dbb18" }], ["path", { "fill": "#fff", "d": "M12.07 9.17a.75.75 0 0 1 1.06 0l2.2 2.2c.229.228.37.54.37.867 0 .293-.122.631-.42.847l-2.138 2.234a.75.75 0 0 1-1.084-1.037l1.986-2.076-1.974-1.975a.75.75 0 0 1 0-1.06Z", "key": "8ad470b87a2815a3fce9fd83270647b2eef3b773" }]]);
const AlarmArrowUp = createMeisterIcons("alarm-arrow-up", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "0162e958d52aed69e41ad1f6e60a28e292e7944c" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM12 9.15a.75.75 0 0 1 .75.75v5.3a.75.75 0 0 1-1.5 0V9.9a.75.75 0 0 1 .75-.75Z", "key": "f3994a031a2888d91b6176c92b604a148334544b" }], ["path", { "fill": "currentColor", "d": "m12 10.16-1.97 1.97a.75.75 0 1 1-1.06-1.06l2.2-2.2c.228-.229.54-.37.867-.37.296 0 .638.124.853.43l2.14 2.14a.75.75 0 1 1-1.06 1.06L12 10.16Z", "key": "74b022f43710ac23ce8182776351f7d0ba43f6a4" }]]);
const AlarmArrowUpB = createMeisterIcons("alarm-arrow-up-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "c4873fd1d102e2dd3d5b3db76e5ce72033f1be8e" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "9ed159f06db6abd20d50ea7cb6c1b7b52e42d534" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "75202751cfaccfc41dfed11dee7314296acaeeb7" }], ["path", { "fill": "#fff", "d": "M12 9.15a.75.75 0 0 1 .75.75v5.3a.75.75 0 0 1-1.5 0V9.9a.75.75 0 0 1 .75-.75Z", "key": "b2983e9319f564843cf53ff3124b8e7c05d95c46" }], ["path", { "fill": "#fff", "d": "m12 10.16-1.97 1.97a.75.75 0 1 1-1.06-1.06l2.2-2.2c.228-.229.54-.37.867-.37.296 0 .638.124.853.43l2.14 2.14a.75.75 0 0 1-1.06 1.06L12 10.16Z", "key": "6113036ddbc788e35e81bb45fa983781353dc479" }]]);
const AlarmB = createMeisterIcons("alarm-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "72924975daed7626f91e55731e0edf6799f34711" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "b0dc463cab148a64fbcc3900fa6c4663b155c46c" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "5cfe179ac345fe06a292e5d2082ed64e9ff1c236" }]]);
const AlarmCross = createMeisterIcons("alarm-cross", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "f93212c982eadcb758663aafeb6035ea4c99e6c3" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.815-8.41a.75.75 0 0 1-.015 1.06l-3.5 3.4a.75.75 0 0 1-1.046-1.075l3.5-3.4a.75.75 0 0 1 1.06.015Z", "key": "13822bfc6404869424354dc1d073f618f0703177" }], ["path", { "fill": "currentColor", "d": "M9.762 9.977a.75.75 0 0 1 1.06-.015l3.5 3.4a.75.75 0 1 1-1.045 1.076l-3.5-3.4a.75.75 0 0 1-.015-1.06Z", "key": "fb290d3ab1218be56d9564b69e2b51667f390531" }]]);
const AlarmCrossB = createMeisterIcons("alarm-cross-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "fa2b50a8727cf7ef015ab3eae24ff2a85ffe356d" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "03248da669ff92068cb3edd29dba3d2c730c5abe" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "001d992064b79ef36c57ed2156de53e52ae648e3" }], ["path", { "fill": "#fff", "d": "M14.338 9.977a.75.75 0 0 1-.015 1.06l-3.5 3.4a.75.75 0 0 1-1.046-1.075l3.5-3.4a.75.75 0 0 1 1.06.015Z", "key": "af1917dfa25052c1bac5085aaa3742e54029d104" }], ["path", { "fill": "#fff", "d": "M9.762 9.977a.75.75 0 0 1 1.06-.015l3.5 3.4a.75.75 0 1 1-1.045 1.076l-3.5-3.4a.75.75 0 0 1-.015-1.06Z", "key": "ad1a16c9553b7e8e0e231b7b3c0b5e6a7b85a6a4" }]]);
const AlarmHeart = createMeisterIcons("alarm-heart", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "3d82808bf48be23001304dffd54b95522676757d" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM10.7 10.75a.907.907 0 0 0-.67.28c-.293.293-.306.875-.04 1.195l.288.192 1.772 1.772 1.72-1.72.16-.16c.244-.334.32-.56.32-.71 0-.284-.07-.459-.18-.569-.308-.307-.933-.307-1.24 0l-.73.73-.691-.69c-.334-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.052.053.3.2 1.706 1.706c.242.314.601.486.984.486.396 0 .753-.18 1.018-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.516-.13-1.14-.62-1.63-.796-.797-2.136-.883-3.05-.258Zm-.13 4.575v-.001Z", "key": "e05c8abe1deb9a908a8e1022a259f17ad5a94d77" }]]);
const AlarmMinus = createMeisterIcons("alarm-minus", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "8cf79e4bbd79c04297d9f2d505d6efc0c956ba43" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM8.85 12.2a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5H9.6a.75.75 0 0 1-.75-.75Z", "key": "bcbeb4546e6002a5bb11b2dbfc381c9556ae339a" }]]);
const AlarmMinusB = createMeisterIcons("alarm-minus-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "3fc741193305866ee3fa4c4e186237064a69e548" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "b0f50874cb02b1cbd80e020110973ed62d733b40" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "3dfac778f4e3cf952153d4753e6f720ad84ef9eb" }], ["path", { "fill": "#fff", "d": "M8.85 12.2a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5H9.6a.75.75 0 0 1-.75-.75Z", "key": "1f1449cfd3579c7086c0c400ea1f995568923ed7" }]]);
const AlarmStar = createMeisterIcons("alarm-star", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "084c2bff3f8b924b08e5ce56207d377a7a1bbd93" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06ZM11.95 10.43l.333.708a.822.822 0 0 0 .542.56c.118.04.24.05.313.052l.73.122-.598.598-.005.005c-.02.02-.052.052-.08.083a.857.857 0 0 0-.23.508 1.279 1.279 0 0 0-.005.13v.066l.155.927-.527-.279a.762.762 0 0 0-.397-.237h-.002a.834.834 0 0 0-.113-.018 1.809 1.809 0 0 0-.156-.005h-1.108l.048-.288v-.065c0-.024.005-.203-.051-.372a.84.84 0 0 0-.34-.442l-.512-.597.84-.14c.231-.023.4-.128.466-.172a1.236 1.236 0 0 0 .154-.121l.013-.013.006-.005.002-.003h.001l.001-.002-.53-.53.53.53.093-.092.427-.908Zm-1.595-.133.67-1.424.004-.008c.377-.753 1.465-.753 1.842 0l.004.008.67 1.424 1.537.256c.465.038.75.395.84.703.091.322.02.769-.35 1.033l-1.083 1.083.261 1.566V15c0 .335-.159.642-.395.839a.994.994 0 0 1-1.09.132l-.008-.004-1.263-.668-1.45.768-.009.004a.994.994 0 0 1-1.09-.132 1.102 1.102 0 0 1-.395-.84v-.061l.199-1.193-.369-.195h.401l.033-.198-1.017-1.186c-.344-.267-.407-.697-.318-1.01.088-.308.374-.665.84-.703l1.536-.256Z", "key": "b1038ed2364ed684e0380495073cbefec8c10d9c" }]]);
const AlarmStarB = createMeisterIcons("alarm-star-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "81046fe1c5bd55d96e0f0f2e305779fdd5c32959" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Zm2.88-9.13a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Z", "key": "b3ce315fd5e686466c16a5ebd6fd4c384eda6bd6" }], ["path", { "fill": "currentColor", "d": "M7.847 18.387a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "0d4dc2723a66212a1155755675cc8b14c818af22" }], ["path", { "fill": "#fff", "d": "m11.9 14.5-1.7.9c-.2.1-.4-.1-.4-.3l.3-1.8c0-.1 0-.2-.1-.2l-1.2-1.4c-.2-.1-.1-.4.1-.4l1.8-.3c.1 0 .2-.1.2-.1l.8-1.7c.1-.2.4-.2.5 0l.8 1.7c0 .1.1.1.2.1l1.8.3c.2 0 .3.3.1.4L13.8 13c-.1.1-.1.1-.1.2L14 15c0 .2-.2.4-.4.3l-1.7-.9c.2 0 .1 0 0 .1Z", "key": "b3295da9cb47166e23fd3a2fb3eec184c3759c5e" }], ["path", { "fill": "#fff", "d": "m11.95 10.43.333.708a.822.822 0 0 0 .542.56c.118.04.24.05.313.052l.73.122-.598.598-.005.005c-.02.02-.052.052-.08.083a.857.857 0 0 0-.23.508 1.279 1.279 0 0 0-.005.13v.066l.155.927-.527-.279a.762.762 0 0 0-.397-.237h-.002a.834.834 0 0 0-.113-.018 1.809 1.809 0 0 0-.156-.005h-1.108l.048-.288v-.065c0-.024.005-.203-.051-.372a.84.84 0 0 0-.34-.442l-.512-.597.84-.14c.231-.023.4-.128.466-.172a1.236 1.236 0 0 0 .154-.121l.013-.013.006-.005.002-.003h.001l.001-.002-.53-.53.53.53.093-.092.427-.908Zm-1.595-.133.67-1.424.004-.008c.377-.753 1.465-.753 1.842 0l.004.008.67 1.424 1.537.256c.465.038.75.395.84.703.091.322.02.769-.35 1.033l-1.083 1.083.261 1.566V15c0 .335-.159.642-.395.839a.994.994 0 0 1-1.09.132l-.008-.004-1.263-.668-1.45.768-.009.004a.994.994 0 0 1-1.09-.132 1.102 1.102 0 0 1-.395-.84v-.061l.199-1.193-.369-.195h.401l.033-.198-1.017-1.186c-.344-.267-.407-.697-.318-1.01.088-.308.374-.665.84-.703l1.536-.256Z", "key": "e75d313900984848d6498a6c685aaa528764d538" }]]);
const AlarmTime = createMeisterIcons("alarm-time", [["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Z", "key": "e29a8c25c0076a85e6910cb2b735ab0fa15895e9" }], ["path", { "fill": "currentColor", "d": "M11.5 7.55a.75.75 0 0 1 .75.75v4c0 .156.086.375.28.57l1.9 1.9a.75.75 0 0 1-1.06 1.06l-1.9-1.9c-.406-.405-.72-.986-.72-1.63v-4a.75.75 0 0 1 .75-.75ZM6.23 3.07a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Zm1.617 15.317a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "159e70662716b53470244be5c23824526c9a58a7" }]]);
const AlarmTimeB = createMeisterIcons("alarm-time-b", [["path", { "fill": "currentColor", "d": "M12 20.1a7.9 7.9 0 1 0 0-15.8 7.9 7.9 0 0 0 0 15.8Z", "key": "2375ef2dc495e401f84ef9be12ce6a8942f8b18f" }], ["path", { "fill": "currentColor", "d": "M12 5.05a7.15 7.15 0 1 0 0 14.3 7.15 7.15 0 0 0 0-14.3ZM3.35 12.2a8.65 8.65 0 1 1 17.3 0 8.65 8.65 0 0 1-17.3 0Z", "key": "fb5289ba2057991f010662c6d0dbd387861d875a" }], ["path", { "fill": "#fff", "d": "M11.5 7.55a.75.75 0 0 1 .75.75v4c0 .156.086.375.28.57l1.9 1.9a.75.75 0 0 1-1.06 1.06l-1.9-1.9c-.406-.405-.72-.986-.72-1.63v-4a.75.75 0 0 1 .75-.75Z", "key": "9f1607cc0eddeed4d30971899f52681f2e64468a" }], ["path", { "fill": "currentColor", "d": "M6.23 3.07a.75.75 0 0 1 0 1.06l-1.5 1.5a.75.75 0 1 1-1.06-1.06l1.5-1.5a.75.75 0 0 1 1.06 0Zm1.617 15.317a.75.75 0 0 1-.034 1.06l-1.6 1.5a.75.75 0 0 1-1.026-1.094l1.6-1.5a.75.75 0 0 1 1.06.034Zm9.906-15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Zm-1.6 15.3a.75.75 0 0 1 1.06-.034l1.6 1.5a.75.75 0 1 1-1.026 1.094l-1.6-1.5a.75.75 0 0 1-.034-1.06Z", "key": "1834d9ed995cbfa7eaa977b85ca77a2ad51d286e" }]]);
const AlignBottom = createMeisterIcons("align-bottom", [["path", { "fill": "currentColor", "d": "M16 4.75c-.686 0-1.25.564-1.25 1.25v9c0 .686.564 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25V6c0-.761-.54-1.25-1.25-1.25h-2ZM13.25 6A2.756 2.756 0 0 1 16 3.25h2c1.49 0 2.75 1.111 2.75 2.75v9A2.756 2.756 0 0 1 18 17.75h-2A2.756 2.756 0 0 1 13.25 15V6ZM6 8.75c-.686 0-1.25.564-1.25 1.25v5c0 .686.564 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25v-5c0-.761-.54-1.25-1.25-1.25H6ZM3.25 10A2.756 2.756 0 0 1 6 7.25h2c1.49 0 2.75 1.111 2.75 2.75v5A2.756 2.756 0 0 1 8 17.75H6A2.756 2.756 0 0 1 3.25 15v-5ZM4 19.25a.75.75 0 0 0 0 1.5h16a.75.75 0 0 0 0-1.5H4Z", "key": "dee1d6ac487155d1b7bff962a2333dd817e6c007" }]]);
const AlignBottomB = createMeisterIcons("align-bottom-b", [["path", { "fill": "currentColor", "d": "M10 10v5c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-5c0-1.1.9-2 2-2h2c1.1 0 2 .8 2 2Z", "key": "30560189927f51d6c6180cb1c93fa02aba3234de" }], ["path", { "fill": "currentColor", "d": "M6 8.75c-.686 0-1.25.564-1.25 1.25v5c0 .686.564 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25v-5c0-.761-.54-1.25-1.25-1.25H6ZM3.25 10A2.756 2.756 0 0 1 6 7.25h2c1.49 0 2.75 1.111 2.75 2.75v5A2.756 2.756 0 0 1 8 17.75H6A2.756 2.756 0 0 1 3.25 15v-5ZM20 6v9c0 1.1-.9 2-2 2h-2c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h2c1.1 0 2 .8 2 2Z", "key": "b88f82d78b2bb774ce4af944249740c66904251c" }], ["path", { "fill": "currentColor", "d": "M16 4.75c-.686 0-1.25.564-1.25 1.25v9c0 .686.564 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25V6c0-.761-.54-1.25-1.25-1.25h-2ZM13.25 6A2.756 2.756 0 0 1 16 3.25h2c1.49 0 2.75 1.111 2.75 2.75v9A2.756 2.756 0 0 1 18 17.75h-2A2.756 2.756 0 0 1 13.25 15V6Zm-10 14a.75.75 0 0 1 .75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "80affd9f7f9e9e785fae0fd285b3f453ea320d1e" }]]);
const AlignCenter = createMeisterIcons("align-center", [["path", { "fill": "currentColor", "d": "M4.5 5.25a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Zm3 4a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9ZM3.75 14a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm3.75 3.25a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9Z", "key": "14c2abb200d4741148c03bc651fb554026150970" }]]);
const AlignJustify = createMeisterIcons("align-justify", [["path", { "fill": "currentColor", "d": "M4.5 5.25a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Zm0 4a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15ZM3.75 14a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Z", "key": "d72b399e24265e6e90d7b66cae32cf49f4a23d03" }]]);
const AlignLeft = createMeisterIcons("align-left", [["path", { "fill": "currentColor", "d": "M4.5 5.25a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Zm0 4a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9ZM3.75 14a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9Z", "key": "c069ea3398a7ab88fcad8b86f04962e1e473b292" }]]);
const AlignRight = createMeisterIcons("align-right", [["path", { "fill": "currentColor", "d": "M4.5 5.25a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Zm6 4a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9ZM3.75 14a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm6.75 3.25a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9Z", "key": "87bae33be019578ec70c9b9784c630706977b210" }]]);
const AlignTop = createMeisterIcons("align-top", [["path", { "fill": "currentColor", "d": "M4 3.25a.75.75 0 0 0 0 1.5h16a.75.75 0 0 0 0-1.5H4Zm2 4.5c-.686 0-1.25.564-1.25 1.25v9c0 .71.489 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25V9c0-.686-.564-1.25-1.25-1.25H6ZM3.25 9A2.756 2.756 0 0 1 6 6.25h2A2.756 2.756 0 0 1 10.75 9v9A2.756 2.756 0 0 1 8 20.75H6c-1.639 0-2.75-1.26-2.75-2.75V9ZM16 7.75c-.686 0-1.25.564-1.25 1.25v5c0 .71.489 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25V9c0-.686-.564-1.25-1.25-1.25h-2ZM13.25 9A2.756 2.756 0 0 1 16 6.25h2A2.756 2.756 0 0 1 20.75 9v5A2.756 2.756 0 0 1 18 16.75h-2c-1.639 0-2.75-1.26-2.75-2.75V9Z", "key": "e44e4fb88fc02eabb0990b9a7bb07b9aeb7afb06" }]]);
const AlignTopB = createMeisterIcons("align-top-b", [["path", { "fill": "currentColor", "d": "M14 14V9c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v5c0 1.1-.9 2-2 2h-2c-1.2 0-2-.9-2-2Z", "key": "fe22e2ad5ef8ecb395f9097f20eef695189542a6" }], ["path", { "fill": "currentColor", "d": "M16 7.75c-.686 0-1.25.564-1.25 1.25v5c0 .71.489 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25V9c0-.686-.564-1.25-1.25-1.25h-2ZM13.25 9A2.756 2.756 0 0 1 16 6.25h2A2.756 2.756 0 0 1 20.75 9v5A2.756 2.756 0 0 1 18 16.75h-2c-1.639 0-2.75-1.26-2.75-2.75V9ZM4 18V9c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v9c0 1.1-.9 2-2 2H6c-1.2 0-2-.9-2-2Z", "key": "90596aa9112f608a2ddbfce6109df0c350f36436" }], ["path", { "fill": "currentColor", "d": "M6 7.75c-.686 0-1.25.564-1.25 1.25v9c0 .71.489 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25V9c0-.686-.564-1.25-1.25-1.25H6ZM3.25 9A2.756 2.756 0 0 1 6 6.25h2A2.756 2.756 0 0 1 10.75 9v9A2.756 2.756 0 0 1 8 20.75H6c-1.639 0-2.75-1.26-2.75-2.75V9Zm0-5A.75.75 0 0 1 4 3.25h16a.75.75 0 0 1 0 1.5H4A.75.75 0 0 1 3.25 4Z", "key": "5a608f52483f4c60aa45dbeb041497579c83261d" }]]);
const AndroidPhone = createMeisterIcons("android-phone", [["path", { "fill": "currentColor", "d": "M5.75 7A3.262 3.262 0 0 1 9 3.75h6A3.262 3.262 0 0 1 18.25 7v10A3.262 3.262 0 0 1 15 20.25H9A3.262 3.262 0 0 1 5.75 17V7ZM9 2.25A4.762 4.762 0 0 0 4.25 7v10A4.762 4.762 0 0 0 9 21.75h6A4.762 4.762 0 0 0 19.75 17V7A4.762 4.762 0 0 0 15 2.25H9Zm2.5 15a.75.75 0 0 0 0 1.5h1a.75.75 0 0 0 0-1.5h-1Z", "key": "3ab27d7ac7e366e6b2e7bc0ed870bcfbcad947d6" }]]);
const AndroidPhoneB = createMeisterIcons("android-phone-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h6c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4Z", "key": "638d44190994a7f1f58739d96f7335b4eecd55c4" }], ["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17V7Z", "key": "90948faed3dc984e3bf78c0ca0d898ac2b984fca" }], ["path", { "fill": "#fff", "d": "M10.75 18a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z", "key": "ed24ad775981ab6bcf81c801a54d9b2f5bb59113" }]]);
const Apps = createMeisterIcons("apps", [["path", { "fill": "currentColor", "d": "M5.75 7a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM8 3.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5ZM14.75 7a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM17 3.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Zm-9 10.5a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM4.25 16a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm10.5 0a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM17 12.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z", "key": "eb8946c143dbafa1df74f4fb1a8734b0003fb4b5" }]]);
const AppsA = createMeisterIcons("apps-a", [["path", { "fill": "currentColor", "d": "M5.25 6.5c0-.686.564-1.25 1.25-1.25h2c.686 0 1.25.564 1.25 1.25v3.25H6.5c-.686 0-1.25-.564-1.25-1.25v-2ZM6.5 3.75A2.756 2.756 0 0 0 3.75 6.5v2a2.756 2.756 0 0 0 2.75 2.75h4.75V6.5A2.756 2.756 0 0 0 8.5 3.75h-2Zm7.75 2.75c0-.686.564-1.25 1.25-1.25h2c.686 0 1.25.564 1.25 1.25v2c0 .686-.564 1.25-1.25 1.25h-3.25V6.5Zm1.25-2.75a2.756 2.756 0 0 0-2.75 2.75v4.75h4.75a2.756 2.756 0 0 0 2.75-2.75v-2a2.756 2.756 0 0 0-2.75-2.75h-2Zm-9 10.5c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25v-3.25H6.5ZM3.75 15.5a2.756 2.756 0 0 1 2.75-2.75h4.75v4.75a2.756 2.756 0 0 1-2.75 2.75h-2a2.756 2.756 0 0 1-2.75-2.75v-2Zm13.75-2.75h-4.75v4.75a2.756 2.756 0 0 0 2.75 2.75h2a2.756 2.756 0 0 0 2.75-2.75v-2a2.756 2.756 0 0 0-2.75-2.75Zm-3.25 4.75v-3.25h3.25c.686 0 1.25.564 1.25 1.25v2c0 .686-.564 1.25-1.25 1.25h-2c-.686 0-1.25-.564-1.25-1.25Z", "key": "fe5ec93df7b8c4b0d2537898bf22d36fe1a93ecd" }]]);
const AppsAb = createMeisterIcons("apps-ab", [["path", { "fill": "currentColor", "d": "M10.5 10.5h-4c-1.1 0-2-.9-2-2v-2c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v4Z", "key": "752d400375a4512af46809d8d810591d10dd8f78" }], ["path", { "fill": "currentColor", "d": "M6.5 5.25c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h3.25V6.5c0-.686-.564-1.25-1.25-1.25h-2ZM3.75 6.5A2.756 2.756 0 0 1 6.5 3.75h2a2.756 2.756 0 0 1 2.75 2.75v4.75H6.5A2.756 2.756 0 0 1 3.75 8.5v-2Zm13.75 4h-4v-4c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2Z", "key": "e5147fb77bfe4b87a2ace35d5c7dd2d7e7da7062" }], ["path", { "fill": "currentColor", "d": "M15.5 5.25c-.686 0-1.25.564-1.25 1.25v3.25h3.25c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-2ZM12.75 6.5a2.756 2.756 0 0 1 2.75-2.75h2a2.756 2.756 0 0 1 2.75 2.75v2a2.756 2.756 0 0 1-2.75 2.75h-4.75V6.5Zm-4.25 13h-2c-1.1 0-2-.9-2-2v-2c0-1.1.9-2 2-2h4v4c0 1.1-.9 2-2 2Z", "key": "0d55775f54a705b58b01280516dd72eae2cbb3e3" }], ["path", { "fill": "currentColor", "d": "M6.5 14.25c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25v-3.25H6.5ZM3.75 15.5a2.756 2.756 0 0 1 2.75-2.75h4.75v4.75a2.756 2.756 0 0 1-2.75 2.75h-2a2.756 2.756 0 0 1-2.75-2.75v-2Zm13.75 4h-2c-1.1 0-2-.9-2-2v-4h4c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2Z", "key": "05fad3424537653260fa0cd016164e2b96391c71" }], ["path", { "fill": "currentColor", "d": "M12.75 12.75h4.75a2.756 2.756 0 0 1 2.75 2.75v2a2.756 2.756 0 0 1-2.75 2.75h-2a2.756 2.756 0 0 1-2.75-2.75v-4.75Zm1.5 1.5v3.25c0 .686.564 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-3.25Z", "key": "f37d92f4d7d6ae01c9098b594ef3082eae29dc4f" }]]);
const AppsAdd = createMeisterIcons("apps-add", [["path", { "fill": "currentColor", "d": "M7.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM16.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM12.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm-7.5 9a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm2.25-3.75a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Zm5.25 3.75a.75.75 0 0 1 .75-.75h2.25V13.5a.75.75 0 0 1 1.5 0v2.25h2.25a.75.75 0 0 1 0 1.5h-2.25v2.25a.75.75 0 0 1-1.5 0v-2.25H13.5a.75.75 0 0 1-.75-.75Z", "key": "136bba1db73b802d1f9419e584c54c594e905c78" }]]);
const AppsAddA = createMeisterIcons("apps-add-a", [["path", { "fill": "currentColor", "d": "M5.25 7.5a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM7.5 3.75a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Zm0 10.5a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 16.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm12.75-2.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm0-9a.75.75 0 0 1 .75-.75h2.25V4.5a.75.75 0 0 1 1.5 0v2.25h2.25a.75.75 0 0 1 0 1.5h-2.25v2.25a.75.75 0 0 1-1.5 0V8.25H13.5a.75.75 0 0 1-.75-.75Z", "key": "ed6139997e62aebb226704e780b92bbfeccee2e5" }]]);
const AppsAddAb = createMeisterIcons("apps-add-ab", [["path", { "fill": "currentColor", "d": "M16.5 19.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "d3786abbd5b53c0b20f8062d6ad34f37214591ba" }], ["path", { "fill": "currentColor", "d": "M16.5 14.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm-5.25 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "9b65bed37d124df21398a53aae8fbaa265c87c05" }], ["path", { "fill": "currentColor", "d": "M7.5 14.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 16.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm3.75-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "12cb6738498dfec3c4d479f359b30e7164b8a851" }], ["path", { "fill": "currentColor", "d": "M7.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm9 0a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "4c8c080f1199901128c174ac30bfdc6cc6c170a0" }], ["path", { "fill": "currentColor", "d": "M16.5 3.75a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "ce4e82e6afe93571b67fa4df987ce2d8a70a3615" }]]);
const AppsAddB = createMeisterIcons("apps-add-b", [["path", { "fill": "currentColor", "d": "M7.5 10.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "393af36b5e7699991897714d60514ae1e4ac3ced" }], ["path", { "fill": "currentColor", "d": "M7.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm12.75 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "2072a5ff889665c2a73dde4c30828e8a32b2f1bc" }], ["path", { "fill": "currentColor", "d": "M16.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM12.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm-5.25 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "cfafa8c463425ec61d44d5cacf88ddaf7e3c326c" }], ["path", { "fill": "currentColor", "d": "M7.5 14.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 16.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm9 0a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "aaa7bc02b2957b76a239faea9b3e09ab0dc4f071" }], ["path", { "fill": "currentColor", "d": "M16.5 12.75a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "1103fc1e6d67af8b6fa825be49655234d5a36e30" }]]);
const AppsB = createMeisterIcons("apps-b", [["path", { "fill": "currentColor", "d": "M7.5 10.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "20ff197791b393a3f79030cdd94e45e615ffbc40" }], ["path", { "fill": "currentColor", "d": "M7.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm12.75 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "92d168001c64f5b4894e84696f5d0e734e7b09a1" }], ["path", { "fill": "currentColor", "d": "M16.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM12.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm-5.25 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "c7219c4121c9e16422aaae9e96fdf60a32139691" }], ["path", { "fill": "currentColor", "d": "M7.5 14.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 16.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm12.75 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "e0a648d9fefc13065a44beb56e3c01ce84818d43" }], ["path", { "fill": "currentColor", "d": "M16.5 14.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "383a33cd97511eb40872e67c2686b304945df7d4" }]]);
const AppsCross = createMeisterIcons("apps-cross", [["path", { "fill": "currentColor", "d": "M7.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM16.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM12.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm-7.5 9a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm2.25-3.75a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Zm6.27 1.02a.75.75 0 0 1 1.06 0l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 0-1.06Z", "key": "5778030ed47935e5831ab1e302242cacbfc477fb" }]]);
const AppsCrossB = createMeisterIcons("apps-cross-b", [["path", { "fill": "currentColor", "d": "M7.5 10.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "4cba8923c23e1e07f0c4a3b5b08146fd38d1b0b7" }], ["path", { "fill": "currentColor", "d": "M7.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm12.75 3a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "0ae272338b6bf2275bb48ad877a6ab3030d885b9" }], ["path", { "fill": "currentColor", "d": "M16.5 5.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM12.75 7.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm-5.25 12a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "a2ea40203aca7578dcecb84248f7ef9fc1196ffc" }], ["path", { "fill": "currentColor", "d": "M7.5 14.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM3.75 16.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm10.02-2.73a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 0 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "a05233e5450aa6cb19a301f885a2b889b6f4ca2c" }], ["path", { "fill": "currentColor", "d": "M19.13 13.77a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 0 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "b87f794aac274ee88211650ebc0fb3985e015d31" }]]);
const Archive = createMeisterIcons("archive", [["path", { "fill": "currentColor", "d": "M5 8.2a.75.75 0 0 1 .75.75v8c0 1.286.964 2.25 2.25 2.25h8c1.286 0 2.25-.964 2.25-2.25v-8a.75.75 0 0 1 1.5 0v8c0 2.114-1.636 3.75-3.75 3.75H8c-2.114 0-3.75-1.636-3.75-3.75v-8A.75.75 0 0 1 5 8.2Z", "key": "4c015cb654741fc28f71c2ab5b69c37eff5940a0" }], ["path", { "fill": "currentColor", "d": "M5.5 4.8c-.986 0-1.75.764-1.75 1.75S4.514 8.3 5.5 8.3h13c.42 0 .862-.197 1.207-.543.346-.345.543-.787.543-1.207 0-.986-.764-1.75-1.75-1.75h-13ZM2.25 6.55A3.226 3.226 0 0 1 5.5 3.3h13a3.226 3.226 0 0 1 3.25 3.25c0 .88-.403 1.688-.982 2.268-.58.58-1.388.982-2.268.982h-13a3.226 3.226 0 0 1-3.25-3.25Z", "key": "adbeeb4bd96139779e0d54131192db51a2f6829c" }]]);
const ArchiveAdd = createMeisterIcons("archive-add", [["path", { "fill": "currentColor", "d": "M5.5 4.75c-.986 0-1.75.764-1.75 1.75s.764 1.75 1.75 1.75h13c.046 0 .092-.002.138-.007a.746.746 0 0 1 .39-.092 1.92 1.92 0 0 0 .68-.444c.345-.345.542-.787.542-1.207 0-.986-.764-1.75-1.75-1.75h-13Zm14.25 4.725a3.463 3.463 0 0 0 1.018-.707c.58-.58.982-1.388.982-2.268a3.226 3.226 0 0 0-3.25-3.25h-13A3.226 3.226 0 0 0 2.25 6.5c0 1.37.818 2.524 2 3.007V17c0 2.114 1.636 3.75 3.75 3.75h4a.75.75 0 0 0 0-1.5H8c-1.286 0-2.25-.964-2.25-2.25V9.75h12.5V14a.75.75 0 0 0 1.5 0V9.475ZM16 13.25a.75.75 0 0 1 .75.75v2.25H19a.75.75 0 0 1 0 1.5h-2.25V20a.75.75 0 0 1-1.5 0v-2.25H13a.75.75 0 0 1 0-1.5h2.25V14a.75.75 0 0 1 .75-.75Z", "key": "f7c8f836dafad80c8fefb090cbff5bec65c1b97a" }]]);
const ArchiveAddB = createMeisterIcons("archive-add-b", [["path", { "fill": "currentColor", "d": "M5 8.15a.75.75 0 0 1 .75.75V17c0 1.286.964 2.25 2.25 2.25h4a.75.75 0 0 1 0 1.5H8c-2.114 0-3.75-1.636-3.75-3.75V8.9A.75.75 0 0 1 5 8.15Z", "key": "d495811109769a0a5a3ded67853b16c4b46abc5f" }], ["path", { "fill": "currentColor", "d": "M18.5 9h-13C4.1 9 3 7.9 3 6.5S4.1 4 5.5 4h13C19.9 4 21 5.1 21 6.5 21 7.8 19.8 9 18.5 9Z", "key": "243503c5c311dbd2bb83a909e45f6e47ae16e9ed" }], ["path", { "fill": "currentColor", "d": "M5.5 4.75c-.986 0-1.75.764-1.75 1.75s.764 1.75 1.75 1.75h13c.42 0 .862-.197 1.207-.543.346-.345.543-.787.543-1.207 0-.986-.764-1.75-1.75-1.75h-13ZM2.25 6.5A3.226 3.226 0 0 1 5.5 3.25h13a3.226 3.226 0 0 1 3.25 3.25c0 .88-.403 1.688-.982 2.268-.58.58-1.388.982-2.268.982h-13A3.226 3.226 0 0 1 2.25 6.5Z", "key": "70dec5dad1f368c59e759da81a0edea1ecad21b9" }], ["path", { "fill": "currentColor", "d": "M19 8.15a.75.75 0 0 1 .75.75V14a.75.75 0 0 1-1.5 0V8.9a.75.75 0 0 1 .75-.75Zm-3 5.1a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "525a3a6a9d0376868947f7f0374bccaa26680cb0" }], ["path", { "fill": "currentColor", "d": "M12.25 17a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "6ab096db9f96091120d5fb35cdee76289b8f8dfe" }]]);
const ArchiveB = createMeisterIcons("archive-b", [["path", { "fill": "currentColor", "d": "M5 8.15a.75.75 0 0 1 .75.75V17c0 1.286.964 2.25 2.25 2.25h8c1.286 0 2.25-.964 2.25-2.25V8.9a.75.75 0 0 1 1.5 0V17c0 2.114-1.636 3.75-3.75 3.75H8c-2.114 0-3.75-1.636-3.75-3.75V8.9A.75.75 0 0 1 5 8.15Z", "key": "7334ed50411fc9a88242120cb00982946c19e7da" }], ["path", { "fill": "currentColor", "d": "M18.5 9h-13C4.1 9 3 7.9 3 6.5S4.1 4 5.5 4h13C19.9 4 21 5.1 21 6.5 21 7.8 19.8 9 18.5 9Z", "key": "6b8e6aa6c79668fdba8341802be75e2ae62c43d5" }], ["path", { "fill": "currentColor", "d": "M5.5 4.75c-.986 0-1.75.764-1.75 1.75s.764 1.75 1.75 1.75h13c.42 0 .862-.197 1.207-.543.346-.345.543-.787.543-1.207 0-.986-.764-1.75-1.75-1.75h-13ZM2.25 6.5A3.226 3.226 0 0 1 5.5 3.25h13a3.226 3.226 0 0 1 3.25 3.25c0 .88-.403 1.688-.982 2.268-.58.58-1.388.982-2.268.982h-13A3.226 3.226 0 0 1 2.25 6.5Z", "key": "c247f60e52380f704ced5ba818aec0b372947c14" }]]);
const ArchiveCross = createMeisterIcons("archive-cross", [["path", { "fill": "currentColor", "d": "M5.5 4.2c-.986 0-1.75.764-1.75 1.75S4.514 7.7 5.5 7.7h13c.046 0 .092-.002.138-.007a.746.746 0 0 1 .39-.092 1.92 1.92 0 0 0 .68-.444c.345-.345.542-.787.542-1.207 0-.986-.764-1.75-1.75-1.75h-13Zm14.25 4.725a3.463 3.463 0 0 0 1.018-.707c.58-.58.982-1.388.982-2.268A3.226 3.226 0 0 0 18.5 2.7h-13a3.226 3.226 0 0 0-3.25 3.25c0 1.37.818 2.524 2 3.007v7.493c0 2.114 1.636 3.75 3.75 3.75h4a.75.75 0 0 0 0-1.5H8c-1.286 0-2.25-.964-2.25-2.25V9.2h12.5v4.25a.75.75 0 0 0 1.5 0V8.925Zm-.12 6.795a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 1 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 1 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "2ec80a0175b340957c7d0af9532ffc1f094ea382" }]]);
const ArchiveCrossB = createMeisterIcons("archive-cross-b", [["path", { "fill": "currentColor", "d": "M5 7.6a.75.75 0 0 1 .75.75v8.1c0 1.286.964 2.25 2.25 2.25h4a.75.75 0 0 1 0 1.5H8c-2.114 0-3.75-1.636-3.75-3.75v-8.1A.75.75 0 0 1 5 7.6Z", "key": "938d293f1352c2fcdd870dfeea6f152cf3ca2ae6" }], ["path", { "fill": "currentColor", "d": "M18.5 8.45h-13c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5h13c1.4 0 2.5 1.1 2.5 2.5 0 1.3-1.2 2.5-2.5 2.5Z", "key": "7dd521410d3bfa0a7d40f9c08cbf2b64d15654b6" }], ["path", { "fill": "currentColor", "d": "M5.5 4.2c-.986 0-1.75.764-1.75 1.75S4.514 7.7 5.5 7.7h13c.42 0 .862-.197 1.207-.543.346-.345.543-.787.543-1.207 0-.986-.764-1.75-1.75-1.75h-13ZM2.25 5.95A3.226 3.226 0 0 1 5.5 2.7h13a3.226 3.226 0 0 1 3.25 3.25c0 .88-.403 1.688-.982 2.268-.58.58-1.388.982-2.268.982h-13a3.226 3.226 0 0 1-3.25-3.25Z", "key": "7abbfc0d00b403c0761199e242a2bb5e81c75b2f" }], ["path", { "fill": "currentColor", "d": "M19 7.6a.75.75 0 0 1 .75.75v5.1a.75.75 0 0 1-1.5 0v-5.1A.75.75 0 0 1 19 7.6Zm.63 8.12a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 1 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "148f2a8cdd6028386ad5f98296f3ce6e53cf2f0d" }], ["path", { "fill": "currentColor", "d": "M14.27 15.72a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 1 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "2319ddd4c73c146be44324a07169b7c060ab6525" }]]);
const ArrowBlockDown = createMeisterIcons("arrow-block-down", [["path", { "fill": "currentColor", "d": "M10.15 4h3.7v6.9h3.283l-5.132 8.914L6.863 10.8h3.287V4Zm-1.462-.487C8.851 3.023 9.268 2.5 10 2.5h4c.394 0 .725.19.943.407.218.218.407.55.407.943V9.4H18c.376 0 .715.203.883.54.16.318.126.669-.012.945l-.01.02-5.702 9.904c-.484.922-1.836.921-2.319-.002L5.138 10.804l-.009-.019a1.056 1.056 0 0 1-.012-.945A.978.978 0 0 1 6 9.3h2.65V3.628l.038-.115Z", "key": "b84d572d382f46393c376731930627eec9b630f5" }]]);
const ArrowBlockDownB = createMeisterIcons("arrow-block-down-b", [["path", { "fill": "currentColor", "d": "M6 10.05h3.4v-6.3c.1-.3.3-.5.6-.5h4c.3 0 .6.3.6.6v6.3H18c.2 0 .3.2.2.4l-5.7 9.9c-.2.4-.8.4-1 0l-5.7-10c-.1-.2 0-.4.2-.4Z", "key": "5f29377c1691235423dc02026ed202adcccc94f9" }], ["path", { "fill": "currentColor", "d": "M10.15 4h3.7v6.9h3.283l-5.132 8.914L6.863 10.8h3.287V4Zm-1.461-.487C8.852 3.023 9.269 2.5 10 2.5h4c.394 0 .725.19.943.407.218.218.407.55.407.943V9.4H18c.376 0 .715.203.883.54.16.318.126.669-.012.945l-.01.02-5.702 9.904c-.484.922-1.836.921-2.319-.002L5.138 10.804l-.009-.019a1.056 1.056 0 0 1-.012-.945A.978.978 0 0 1 6 9.3h2.65V3.628l.039-.115Z", "key": "3b6bae0cda75c7cf8a0d1fd309418dc04cb7454a" }]]);
const ArrowBlockDownleft = createMeisterIcons("arrow-block-downleft", [["path", { "fill": "currentColor", "d": "m15.649 5.828-4.8 4.8-2.383-2.383-2.615 9.92 9.92-2.616-2.383-2.382 4.8-4.8-2.54-2.54Zm0-1.56c.299 0 .658.096.93.369l2.8 2.8c.273.272.37.631.37.93 0 .299-.097.658-.37.93l-3.87 3.87 1.87 1.87c.275.275.305.646.276.873-.033.265-.18.633-.57.828l-.07.035L5.93 19.695c-.487.122-.963-.062-1.264-.337-.301-.277-.556-.787-.328-1.341L7.243 7l.035-.07c.154-.307.433-.52.777-.569.296-.042.556.048.73.134l.108.055 1.956 1.955 3.87-3.87c.272-.272.63-.369.93-.369Z", "key": "de9c9b5bdc4e12ab8a214e97e843ee4c19bd32f0" }]]);
const ArrowBlockDownleftB = createMeisterIcons("arrow-block-downleft-b", [["path", { "fill": "currentColor", "d": "m8.449 7.167 2.4 2.4 4.4-4.4c.2-.2.6-.2.8 0l2.8 2.8c.2.2.2.6 0 .8l-4.4 4.4 2.4 2.4c.1.1.1.4-.1.5l-11 2.9c-.4.1-.9-.3-.7-.7l2.9-11c.1-.2.3-.2.5-.1Z", "key": "5c813e76c4ba99e5d49d5bae8cc30a1743ecefd9" }], ["path", { "fill": "currentColor", "d": "m15.649 5.828-4.8 4.8-2.382-2.383-2.615 9.92 9.919-2.616-2.383-2.382 4.8-4.8-2.54-2.54Zm0-1.56c.299 0 .658.096.93.369l2.8 2.8c.273.272.37.631.37.93 0 .299-.097.658-.37.93l-3.87 3.87 1.87 1.87c.275.275.305.646.277.873a1.064 1.064 0 0 1-.572.828l-.069.035-11.084 2.922c-.487.122-.963-.062-1.264-.337-.301-.277-.556-.787-.328-1.341L7.243 7l.035-.07c.154-.307.433-.52.777-.569.296-.042.556.048.73.134l.108.055 1.956 1.955 3.87-3.87c.272-.272.631-.369.93-.369Z", "key": "cf145c57ebe8a0dd8d754e7fb99b67b0eea1305a" }]]);
const ArrowBlockDownright = createMeisterIcons("arrow-block-downright", [["path", { "fill": "currentColor", "d": "m8.367 5.812-2.54 2.54 4.795 4.905-2.298 2.297 9.84 2.594L15.55 8.23l-2.382 2.382-4.8-4.8Zm0-1.56c.299 0 .658.096.93.369l3.87 3.87 1.87-1.87c.275-.275.646-.305.873-.276.265.033.632.18.828.57l.034.07 2.923 11.084c.121.487-.062.963-.338 1.264-.276.302-.786.556-1.34.328L7.133 16.79a.892.892 0 0 1-.539-.288.964.964 0 0 1-.232-.508 1.095 1.095 0 0 1 .024-.427.978.978 0 0 1 .25-.447l1.876-1.876-3.879-3.967a1.317 1.317 0 0 1-.366-.927c0-.299.097-.658.37-.93l2.8-2.8c.272-.273.631-.37.93-.37Z", "key": "1e7d783a1de2852f821385364195b69bfe854aac" }]]);
const ArrowBlockDownrightB = createMeisterIcons("arrow-block-downright-b", [["path", { "fill": "currentColor", "d": "m7.167 15.651 2.4-2.4-4.4-4.5c-.2-.2-.2-.6 0-.8l2.8-2.8c.2-.2.6-.2.8 0l4.4 4.4 2.4-2.4c.1-.1.4-.1.5.1l2.9 11c.1.4-.3.9-.7.7l-11-2.9c-.2 0-.2-.3-.1-.4Z", "key": "fe3159a544cf26d37fa621b5cf68a171832a19d5" }], ["path", { "fill": "currentColor", "d": "m8.367 5.812-2.54 2.54 4.795 4.905-2.297 2.297 9.84 2.594-2.616-9.918-2.382 2.382-4.8-4.8Zm0-1.56c.299 0 .658.096.93.369l3.87 3.87 1.87-1.87c.275-.275.646-.305.873-.276.265.033.633.18.828.57l.035.07 2.922 11.084c.122.487-.062.963-.337 1.264-.277.302-.787.556-1.341.328L7.134 16.79a.892.892 0 0 1-.54-.288.964.964 0 0 1-.232-.508 1.095 1.095 0 0 1 .024-.427.978.978 0 0 1 .25-.447l1.876-1.876-3.879-3.967a1.317 1.317 0 0 1-.366-.927c0-.299.097-.658.37-.93l2.8-2.8c.272-.273.631-.37.93-.37Z", "key": "c23569d66147515c4339facbc7b73cfc6d8949b0" }]]);
const ArrowBlockLeft = createMeisterIcons("arrow-block-left", [["path", { "fill": "currentColor", "d": "M13.05 6.924 4.233 12l8.817 5.128V13.85h6.9v-3.7h-6.9V6.924Zm1.023-1.78c.29.174.477.493.477.856v2.65h5.55c.394 0 .725.19.943.407.218.218.407.549.407.943v4c0 .394-.19.725-.407.943a1.35 1.35 0 0 1-.943.407h-5.55V18a.978.978 0 0 1-.54.883c-.318.16-.669.126-.945-.012l-.022-.011-9.804-5.702c-.92-.484-.919-1.834.002-2.317l9.83-5.66c.342-.255.755-.185 1.002-.037Z", "key": "682389efe954f6938458c391e10a45b579b51608" }]]);
const ArrowBlockLeftB = createMeisterIcons("arrow-block-left-b", [["path", { "fill": "currentColor", "d": "M13.8 6v3.4h6.3c.3 0 .6.3.6.6v4c0 .3-.3.6-.6.6h-6.3V18c0 .2-.2.3-.4.2l-9.8-5.7c-.4-.2-.4-.8 0-1l9.9-5.7c.1-.1.3 0 .3.2Z", "key": "330d52db3406a267f167aad4aa5a7d8f17e83610" }], ["path", { "fill": "currentColor", "d": "M13.05 6.924 4.233 12l8.817 5.128V13.85h6.9v-3.7h-6.9V6.924Zm1.023-1.78c.29.174.477.493.477.856v2.65h5.55c.394 0 .725.19.943.407.218.218.407.549.407.943v4c0 .394-.19.725-.407.943a1.35 1.35 0 0 1-.943.407h-5.55V18a.978.978 0 0 1-.54.883c-.318.16-.669.126-.945-.012l-.022-.011-9.804-5.702c-.92-.484-.919-1.834.002-2.317l9.83-5.66c.342-.255.755-.185 1.002-.037Z", "key": "f6857263a52b94e6326845911e763c7321e31c78" }]]);
const ArrowBlockRight = createMeisterIcons("arrow-block-right", [["path", { "fill": "currentColor", "d": "M10.9 6.867v3.283H4v3.6h6.8v3.387L19.814 12 10.9 6.867Zm-.96-1.75c.318-.16.669-.126.945.012l.02.01 9.904 5.702c.922.484.921 1.836-.002 2.319l-10.003 5.702-.019.009a1.056 1.056 0 0 1-.945.012A.978.978 0 0 1 9.3 18v-2.75H3.75c-.32 0-.646-.11-.893-.357A1.249 1.249 0 0 1 2.5 14v-4c0-.394.19-.725.407-.943a1.35 1.35 0 0 1 .943-.407H9.4V6c0-.376.203-.715.54-.883Z", "key": "8d11300c37c4c77a5f6440b9b3aa2f09cd74164d" }]]);
const ArrowBlockRightB = createMeisterIcons("arrow-block-right-b", [["path", { "fill": "currentColor", "d": "M10.05 18v-3.5h-6.3c-.3 0-.5-.2-.5-.5v-4c0-.3.3-.6.6-.6h6.3V6c0-.2.2-.3.4-.2l9.9 5.7c.4.2.4.8 0 1l-10 5.7c-.2.1-.4 0-.4-.2Z", "key": "7704b4724df6131290d554352587b024d0c2b183" }], ["path", { "fill": "currentColor", "d": "M10.9 6.867v3.283H4v3.6h6.8v3.387L19.814 12 10.9 6.867Zm-.96-1.75c.318-.16.669-.126.945.012l.02.01 9.904 5.702c.922.484.921 1.836-.002 2.319l-10.003 5.702-.019.009a1.056 1.056 0 0 1-.945.012A.978.978 0 0 1 9.3 18v-2.75H3.75c-.32 0-.646-.11-.893-.357A1.249 1.249 0 0 1 2.5 14v-4c0-.394.19-.725.407-.943a1.35 1.35 0 0 1 .943-.407H9.4V6c0-.376.203-.715.54-.883Z", "key": "19de9e3dce5cb4ae6ff71b9e0339e6302997cc28" }]]);
const ArrowBlockTopleft = createMeisterIcons("arrow-block-topleft", [["path", { "fill": "currentColor", "d": "m5.603 5.703 2.61 9.9 2.376-2.475L15.4 17.94l2.54-2.539-4.8-4.8 2.303-2.303-9.84-2.594ZM5.75 4.19c-.554-.228-1.064.027-1.34.328s-.46.777-.338 1.264l2.923 11.084.034.07c.154.307.433.52.777.569a1.25 1.25 0 0 0 .73-.134l.115-.058 1.96-2.041 3.859 3.858c.272.273.631.37.93.37.299 0 .658-.097.93-.37l2.8-2.8c.273-.272.37-.631.37-.93 0-.299-.097-.658-.37-.93l-3.87-3.87 1.811-1.81c.372-.265.442-.712.35-1.034-.085-.298-.355-.641-.793-.698L5.75 4.19Z", "key": "2e5b603afe221162e52b9251dee0d2b69ef37f00" }]]);
const ArrowBlockTopleftB = createMeisterIcons("arrow-block-topleft-b", [["path", { "fill": "currentColor", "d": "m16.833 8.433-2.4 2.4 4.4 4.4c.2.2.2.6 0 .8l-2.8 2.8c-.2.2-.6.2-.8 0l-4.4-4.4-2.4 2.4c-.1.1-.4.1-.5-.1l-2.9-11c-.1-.4.3-.8.7-.7l11 2.9c.2.1.3.3.1.5Z", "key": "efb8009cb71fe8e3e0a40515cd3addbbec68ed5a" }], ["path", { "fill": "currentColor", "d": "m5.836 5.836 2.615 9.919 2.382-2.383 4.8 4.8 2.54-2.539-4.8-4.8 2.382-2.382-9.92-2.615Zm-1.17-1.17c.288-.29.749-.486 1.249-.36l.01.002 11.074 2.92.07.034c.213.107.483.32.585.677.118.412-.048.782-.29 1.024l-1.87 1.87 3.87 3.87c.272.272.369.631.369.93 0 .299-.097.658-.37.93l-2.8 2.8c-.272.273-.631.37-.93.37-.299 0-.658-.097-.93-.37l-3.87-3.87-1.87 1.87c-.275.275-.646.305-.873.277a1.062 1.062 0 0 1-.828-.572L7.228 17 4.305 5.915c-.125-.5.071-.96.36-1.25Z", "key": "10356e493c5698e234ba729dc58a292e16d8e8f1" }]]);
const ArrowBlockTopright = createMeisterIcons("arrow-block-topright", [["path", { "fill": "currentColor", "d": "m18.099 5.836-9.901 2.61 2.475 2.376-4.811 4.81 2.54 2.54 4.8-4.8 2.302 2.303 2.595-9.84Zm1.512.147c.228-.554-.027-1.064-.328-1.34-.3-.276-.777-.46-1.264-.338L6.935 7.227l-.07.035c-.307.154-.52.433-.569.777-.042.296.048.556.134.73l.058.115 2.042 1.96-3.86 3.859a1.315 1.315 0 0 0-.369.93c0 .299.097.658.37.93l2.8 2.8c.272.273.631.37.93.37.3 0 .658-.097.93-.37l3.87-3.87 1.81 1.811c.266.372.712.442 1.034.35.298-.085.641-.355.698-.793l2.868-10.878Z", "key": "fa3a83b57afb8df256637f68da8edd4a74dcfedf" }]]);
const ArrowBlockToprightB = createMeisterIcons("arrow-block-topright-b", [["path", { "fill": "currentColor", "d": "m15.601 16.833-2.4-2.4-4.4 4.4c-.2.2-.6.2-.8 0l-2.8-2.8c-.2-.2-.2-.6 0-.8l4.4-4.4-2.5-2.4c-.1-.2-.1-.4.1-.5l11-2.9c.4-.1.9.3.7.7l-2.9 11c0 .2-.3.3-.4.1Z", "key": "1f60dc70ee583f0e62ca044f4d8ebc12b7c768c9" }], ["path", { "fill": "currentColor", "d": "m18.099 5.836-9.901 2.61 2.475 2.376-4.811 4.81 2.54 2.54 4.8-4.8 2.302 2.303 2.595-9.84Zm1.512.147c.228-.554-.026-1.064-.328-1.34-.3-.276-.777-.46-1.264-.338L6.935 7.227l-.07.035c-.307.154-.52.433-.569.777-.042.296.048.556.134.73l.058.115 2.042 1.96-3.86 3.859a1.315 1.315 0 0 0-.369.93c0 .299.097.658.37.93l2.8 2.8c.272.273.631.37.93.37.3 0 .658-.097.93-.37l3.87-3.87 1.81 1.811c.266.372.712.442 1.034.35.298-.085.641-.355.698-.793l2.868-10.878Z", "key": "d4086a7143c5d7e03d55b67ffc78bda1e407164b" }]]);
const ArrowBlockUp = createMeisterIcons("arrow-block-up", [["path", { "fill": "currentColor", "d": "M12 4.185 6.867 13.1h3.283V20h3.6v-6.9h3.383L12 4.185Zm1.159-.994c-.483-.921-1.835-.921-2.318 0L5.14 13.095l-.01.02a1.056 1.056 0 0 0-.012.945c.168.337.507.54.883.54h2.65v5.55c0 .394.19.725.407.943.218.218.55.407.943.407h3.9c.394 0 .725-.19.943-.407a1.35 1.35 0 0 0 .407-.943V14.6H18a.978.978 0 0 0 .883-.54c.16-.318.126-.669-.012-.945l-.01-.02-5.702-9.904Z", "key": "38e651886067dad3f7617fe803a765fc57b6b0a0" }]]);
const ArrowBlockUpB = createMeisterIcons("arrow-block-up-b", [["path", { "fill": "currentColor", "d": "M18 14.3h-3.5v6.3c0 .3-.3.6-.6.6H10c-.3 0-.6-.3-.6-.6v-6.3H6c-.2 0-.3-.2-.2-.4L11.5 4c.2-.4.8-.4 1 0l5.7 9.9c.1.2 0 .4-.2.4Z", "key": "b3cb280cdb49da567177190833bb4456594c5c52" }], ["path", { "fill": "currentColor", "d": "M12 4.635 6.867 13.55h3.283v6.9h3.6v-6.9h3.383L12 4.635Zm1.159-.994c-.484-.921-1.835-.921-2.318 0L5.14 13.545l-.01.02a1.056 1.056 0 0 0-.012.945c.168.337.507.54.883.54h2.65v5.55c0 .394.19.725.407.943.218.218.55.407.943.407h3.9c.394 0 .725-.19.943-.407a1.35 1.35 0 0 0 .407-.943v-5.55H18a.978.978 0 0 0 .883-.54c.16-.318.126-.669-.012-.945l-.01-.02-5.702-9.904Z", "key": "79bbdfcfeb5e8373de2f76fa8df43780e7735976" }]]);
const ArrowBreakDown = createMeisterIcons("arrow-break-down", [["path", { "fill": "currentColor", "d": "M12 4.3a.75.75 0 0 1 .75.75v13.9a.75.75 0 1 1-1.5 0V5.05A.75.75 0 0 1 12 4.3Z", "key": "8cda3ee1214a0cc09b69368b7fe2852782a7a103" }], ["path", { "fill": "currentColor", "d": "M5.764 13.125a.75.75 0 0 1 1.061-.01l5.005 4.905a.24.24 0 0 0 .17.08.24.24 0 0 0 .17-.08l4.9-4.9a.75.75 0 0 1 1.06 1.06l-4.9 4.9a1.716 1.716 0 0 1-2.457.003l-4.998-4.897a.75.75 0 0 1-.01-1.06ZM5.25 5.05A.75.75 0 0 1 6 4.3h12a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75Z", "key": "a6d29cf4ca3e26bda03633bd04f1c6ac34870ea2" }]]);
const ArrowBreakLeft = createMeisterIcons("arrow-break-left", [["path", { "fill": "currentColor", "d": "M19.7 12a.75.75 0 0 1-.75.75H5.05a.75.75 0 0 1 0-1.5h13.9a.75.75 0 0 1 .75.75Z", "key": "d9a5d6673bf9a59d98050bc48ad4d1c23d3de89b" }], ["path", { "fill": "currentColor", "d": "M10.875 5.764c.296.29.3.765.01 1.061L5.98 11.83a.24.24 0 0 0-.08.17.24.24 0 0 0 .08.17l4.9 4.9a.75.75 0 0 1-1.06 1.06l-4.9-4.9a1.716 1.716 0 0 1-.003-2.457l4.897-4.998a.75.75 0 0 1 1.061-.01Zm8.075-.514a.75.75 0 0 1 .75.75v12a.75.75 0 0 1-1.5 0V6a.75.75 0 0 1 .75-.75Z", "key": "30ee9adec9cbafde3bdf6caacc3a032c8c95a192" }]]);
const ArrowBreakRight = createMeisterIcons("arrow-break-right", [["path", { "fill": "currentColor", "d": "M4.3 12a.75.75 0 0 1 .75-.75h13.9a.75.75 0 1 1 0 1.5H5.05A.75.75 0 0 1 4.3 12Z", "key": "cccb1c613e3ca002282abb9f26fbef7ec8a1b017" }], ["path", { "fill": "currentColor", "d": "M13.125 18.236a.75.75 0 0 1-.01-1.061l4.905-5.005a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-4.9-4.9a.75.75 0 1 1 1.06-1.06l4.9 4.9c.692.691.693 1.764.003 2.457l-4.897 4.998a.75.75 0 0 1-1.06.01Zm-8.075.514A.75.75 0 0 1 4.3 18V6a.75.75 0 0 1 1.5 0v12a.75.75 0 0 1-.75.75Z", "key": "a26aca42eebc661fb5bd4ab11159b86a250c5d39" }]]);
const ArrowBreakTop = createMeisterIcons("arrow-break-top", [["path", { "fill": "currentColor", "d": "M12 19.7a.75.75 0 0 1-.75-.75V5.05a.75.75 0 0 1 1.5 0v13.9a.75.75 0 0 1-.75.75Z", "key": "bb6a2ec7d8c55039c297c3b9879f040b1d8b97f6" }], ["path", { "fill": "currentColor", "d": "M18.236 10.875a.75.75 0 0 1-1.061.01L12.17 5.98A.24.24 0 0 0 12 5.9a.24.24 0 0 0-.17.08l-4.9 4.9a.75.75 0 1 1-1.06-1.06l4.9-4.9a1.716 1.716 0 0 1 2.457-.003l4.998 4.897c.296.29.3.765.01 1.061Zm.514 8.075a.75.75 0 0 1-.75.75H6a.75.75 0 0 1 0-1.5h12a.75.75 0 0 1 .75.75Z", "key": "395f0694893bbb900d7002180926cdbb8aa88882" }]]);
const ArrowCircleDown = createMeisterIcons("arrow-circle-down", [["path", { "fill": "currentColor", "d": "M20.25 12a8.25 8.25 0 1 0-16.5 0 8.25 8.25 0 0 0 16.5 0ZM12 2.25c5.385 0 9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25Z", "key": "7c881259bb8a38df56466e320f4d592ee992c331" }], ["path", { "fill": "currentColor", "d": "M12 8.25a.75.75 0 0 1 .75.75v6.6a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Z", "key": "8b2479f5382f861333139ed751b663a7c371dc6e" }], ["path", { "fill": "currentColor", "d": "M15.53 12.47a.75.75 0 0 1 0 1.06l-2.5 2.5a1.233 1.233 0 0 1-1.76 0l-2.5-2.5a.75.75 0 1 1 1.06-1.06l2.32 2.32 2.32-2.32a.75.75 0 0 1 1.06 0Z", "key": "f199c0d34ab9a0c655b3997d369f37545d458b5e" }]]);
const ArrowCircleDownB = createMeisterIcons("arrow-circle-down-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "ea17c3853e207e766a077a24f52c0bc7f45774cc" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "bd5685a570c0d7ae1e5099f703091792b25ba545" }], ["path", { "fill": "#fff", "d": "M12 7.85a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "c8fb17e800f5ae335ea9fcbd8240340bde62c92f" }], ["path", { "fill": "#fff", "d": "M8.57 12.07a.75.75 0 0 1 1.06 0l2.32 2.32 2.32-2.32a.75.75 0 0 1 1.06 1.06l-2.5 2.5a1.233 1.233 0 0 1-1.76 0l-2.5-2.5a.75.75 0 0 1 0-1.06Z", "key": "78f1bde2c8054560944269efaec8de17ab28479b" }]]);
const ArrowCircleDownleft = createMeisterIcons("arrow-circle-downleft", [["path", { "fill": "currentColor", "d": "M3.75 12a8.25 8.25 0 1 0 16.5 0 8.25 8.25 0 0 0-16.5 0ZM12 21.75c-5.385 0-9.75-4.365-9.75-9.75S6.615 2.25 12 2.25s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75Z", "key": "9cfb0652f18753ef0ab13a6c296715ee61582661" }], ["path", { "fill": "currentColor", "d": "M14.625 8.687a.75.75 0 0 1 0 1.061L9.96 14.415a.75.75 0 1 1-1.061-1.06l4.667-4.668a.75.75 0 0 1 1.06 0Z", "key": "4c7785322a2f0b297de4c77cdb750d18126de7ae" }], ["path", { "fill": "currentColor", "d": "M14.138 14.168a.75.75 0 0 1-.75.75H9.852a1.233 1.233 0 0 1-1.245-1.245v-3.536a.75.75 0 1 1 1.5 0v3.28h3.28a.75.75 0 0 1 .75.75Z", "key": "a477fcdcce7fbed658e7b79821739cf029713f73" }]]);
const ArrowCircleDownleftB = createMeisterIcons("arrow-circle-downleft-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "ff8afc5840433e0f9e2d12ea8f59a1ec6a6d0b0e" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "59d526685436e717d60436981340f3e8c52ed8e4" }], ["path", { "fill": "#fff", "d": "M14.867 9.079a.75.75 0 0 1 0 1.06l-4.243 4.243a.75.75 0 1 1-1.06-1.06l4.242-4.243a.75.75 0 0 1 1.06 0Z", "key": "c8d940a6bb89eba4a384a60cf725ca067bf45d1b" }], ["path", { "fill": "#fff", "d": "M9.458 9.637a.75.75 0 0 1 .75.75v3.28h3.28a.75.75 0 1 1 0 1.5H9.953a1.233 1.233 0 0 1-1.245-1.245v-3.535a.75.75 0 0 1 .75-.75Z", "key": "7d46dd7184e3ae9518d494704e4f6fcce1f584fe" }]]);
const ArrowCircleDownright = createMeisterIcons("arrow-circle-downright", [["path", { "fill": "currentColor", "d": "M20.25 12a8.25 8.25 0 1 0-16.5 0 8.25 8.25 0 0 0 16.5 0ZM12 2.25c5.385 0 9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25Z", "key": "4677cc3b8b4ed28bee7cfb0d575b2b699fb96b49" }], ["path", { "fill": "currentColor", "d": "M9.162 9.55a.75.75 0 0 1 1.061 0l4.667 4.666a.75.75 0 0 1-1.06 1.061L9.161 10.61a.75.75 0 0 1 0-1.06Z", "key": "cc6e90c0b1c2c9be5381afee3cf1314ad0399074" }], ["path", { "fill": "currentColor", "d": "M14.643 10.037a.75.75 0 0 1 .75.75v3.536c0 .697-.548 1.245-1.245 1.245h-3.536a.75.75 0 0 1 0-1.5h3.28v-3.28a.75.75 0 0 1 .75-.75Z", "key": "e5ccb9a3f56d57c32ee6ce124bdc8358dc8cd038" }]]);
const ArrowCircleDownrightB = createMeisterIcons("arrow-circle-downright-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "b7e0261ff12cafcd8e46a00db8982526d20a2f7d" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "aea80db77e7c8a4d7c908e6ffeee8687e88fc9de" }], ["path", { "fill": "#fff", "d": "M9.104 9.008a.75.75 0 0 1 1.06 0l4.243 4.243a.75.75 0 1 1-1.06 1.06L9.104 10.07a.75.75 0 0 1 0-1.06Z", "key": "7d0ff4a17d5db4dfb9787f7cf5341b33991484b0" }], ["path", { "fill": "#fff", "d": "M9.662 14.418a.75.75 0 0 1 .75-.75h3.28v-3.281a.75.75 0 1 1 1.5 0v3.535c0 .698-.547 1.245-1.245 1.245h-3.535a.75.75 0 0 1-.75-.75Z", "key": "f070a14a1ad7747671822ec1c369b65fc34f3941" }]]);
const ArrowCircleLeft = createMeisterIcons("arrow-circle-left", [["path", { "fill": "currentColor", "d": "M12 20.25a8.25 8.25 0 1 0 0-16.5 8.25 8.25 0 0 0 0 16.5ZM21.75 12c0 5.385-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25s9.75 4.365 9.75 9.75Z", "key": "cc2a6ccfb44cb0b82e3d94e06b035e6d08280f7d" }], ["path", { "fill": "currentColor", "d": "M15.75 12a.75.75 0 0 1-.75.75H8.4a.75.75 0 0 1 0-1.5H15a.75.75 0 0 1 .75.75Z", "key": "667b082089479c93e2bec29816db7caa84bf84a0" }], ["path", { "fill": "currentColor", "d": "M11.53 15.53a.75.75 0 0 1-1.06 0l-2.5-2.5a1.233 1.233 0 0 1 0-1.76l2.5-2.5a.75.75 0 1 1 1.06 1.06l-2.32 2.32 2.32 2.32a.75.75 0 0 1 0 1.06Z", "key": "9bc48ebf197927c6afa69701d9120951b4c784ca" }]]);
const ArrowCircleLeftB = createMeisterIcons("arrow-circle-left-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "97b9b35270bd91227458cf35ff1048b46bafd4d8" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "1284a3d9ec1a4de6d7e95cb35adf61e9fd974a1f" }], ["path", { "fill": "#fff", "d": "M8.55 12a.75.75 0 0 1 .75-.75h6a.75.75 0 1 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "ae8875a0aa5b0cade07c2f48e295c2602dd5ba29" }], ["path", { "fill": "#fff", "d": "M11.83 8.57a.75.75 0 0 1 0 1.06l-2.32 2.32 2.32 2.32a.75.75 0 0 1-1.06 1.06l-2.5-2.5a1.233 1.233 0 0 1 0-1.76l2.5-2.5a.75.75 0 0 1 1.06 0Z", "key": "0dd5afe378dfa742a9040d48bf1ce69fda924e9d" }]]);
const ArrowCircleRight = createMeisterIcons("arrow-circle-right", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "69359541e81be62813e141bd93bbbd41527db0c8" }], ["path", { "fill": "currentColor", "d": "M8.25 12a.75.75 0 0 1 .75-.75h6.6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "9838ab0b12ab853b98388fc7bfb1f80954bd5b58" }], ["path", { "fill": "currentColor", "d": "M12.47 8.62a.75.75 0 0 1 1.06 0l2.5 2.5a1.233 1.233 0 0 1 0 1.76l-2.5 2.5a.75.75 0 1 1-1.06-1.06L14.79 12l-2.32-2.32a.75.75 0 0 1 0-1.06Z", "key": "b4a85f56859daa352fadab718ffca7be8037ebbd" }]]);
const ArrowCircleRightB = createMeisterIcons("arrow-circle-right-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "debfa89cfeee68ad9aae2e2e8cc50d9286bfed70" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "3c3bf570c3d4412ac0ece022b9c37591c1130c09" }], ["path", { "fill": "#fff", "d": "M7.85 12a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "93dd46c46229c9f3b428c548b2005ac0886db620" }], ["path", { "fill": "#fff", "d": "M12.07 8.57a.75.75 0 0 1 1.06 0l2.5 2.5a1.233 1.233 0 0 1 0 1.76l-2.5 2.5a.75.75 0 0 1-1.06-1.06l2.32-2.32-2.32-2.32a.75.75 0 0 1 0-1.06Z", "key": "dbf81d9879bd99d427f7820160ceaa33ea9e1658" }]]);
const ArrowCircleTop = createMeisterIcons("arrow-circle-top", [["path", { "fill": "currentColor", "d": "M3.75 12a8.25 8.25 0 1 0 16.5 0 8.25 8.25 0 0 0-16.5 0ZM12 21.75c-5.385 0-9.75-4.365-9.75-9.75S6.615 2.25 12 2.25s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75Z", "key": "5660f771d84fcb765ba1c549de8989c8d79d782c" }], ["path", { "fill": "currentColor", "d": "M12 15.75a.75.75 0 0 1-.75-.75V8.4a.75.75 0 0 1 1.5 0V15a.75.75 0 0 1-.75.75Z", "key": "59fe504824e7a6c87d48959f08dc7ec830eb4ef3" }], ["path", { "fill": "currentColor", "d": "M8.47 11.53a.75.75 0 0 1 0-1.06l2.5-2.5a1.233 1.233 0 0 1 1.76 0l2.5 2.5a.75.75 0 1 1-1.06 1.06l-2.32-2.32-2.32 2.32a.75.75 0 0 1-1.06 0Z", "key": "ac02d0f5a9afaabc1a4abd14d8f7a364d9012390" }]]);
const ArrowCircleTopB = createMeisterIcons("arrow-circle-top-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "8946ec86e6bb3f3ef5deb3b63f07ea20147532b2" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "325c6343c32f4fed6d54da8ba8c4745011f3aaad" }], ["path", { "fill": "#fff", "d": "M12 8.55a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "f04ac58a3055ee046f2beb4e8eeebaa3541a78ca" }], ["path", { "fill": "#fff", "d": "m11.95 9.51 2.32 2.32a.75.75 0 1 0 1.06-1.06l-2.5-2.5a1.233 1.233 0 0 0-1.76 0l.53.53-.53-.53-2.5 2.5a.75.75 0 1 0 1.06 1.06l2.32-2.32Z", "key": "3fe3a76d258921db389394451b21717bf6ffc536" }]]);
const ArrowCircleTopleft = createMeisterIcons("arrow-circle-topleft", [["path", { "fill": "currentColor", "d": "M12 20.25a8.25 8.25 0 1 0 0-16.5 8.25 8.25 0 0 0 0 16.5ZM21.75 12c0 5.385-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25s9.75 4.365 9.75 9.75Z", "key": "6a933457f48a201f05abd62fe331b260b3f622c8" }], ["path", { "fill": "currentColor", "d": "M14.663 14.925a.75.75 0 0 1-1.061 0l-4.667-4.667a.75.75 0 0 1 1.06-1.06l4.668 4.667a.75.75 0 0 1 0 1.06Z", "key": "00ee7098fbb51ceff6e9ebc794acad1c984d9705" }], ["path", { "fill": "currentColor", "d": "M9.182 14.438a.75.75 0 0 1-.75-.75v-3.536c0-.697.548-1.245 1.245-1.245h3.536a.75.75 0 1 1 0 1.5h-3.28v3.281a.75.75 0 0 1-.75.75Z", "key": "df1c03f3b35617fa0fa362e8e0071d8d3e598f90" }]]);
const ArrowCircleTopleftB = createMeisterIcons("arrow-circle-topleft-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "7a3c6225c5f12bb71bc21b88ac85006a5eab84cc" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "983fa0efc1917372d8346c1b6262a91ffa08cca4" }], ["path", { "fill": "#fff", "d": "M14.796 14.842a.75.75 0 0 1-1.06 0l-4.243-4.243a.75.75 0 1 1 1.06-1.06l4.243 4.242a.75.75 0 0 1 0 1.06Z", "key": "833e2f753e1daa8caf0b8e2b118000fb9dbfdf16" }], ["path", { "fill": "#fff", "d": "M14.238 9.433a.75.75 0 0 1-.75.75h-3.28v3.28a.75.75 0 1 1-1.5 0V9.927c0-.697.547-1.245 1.245-1.245h3.535a.75.75 0 0 1 .75.75Z", "key": "fc0814900ee1e01ba5f3110294dd3762f621ace4" }]]);
const ArrowCircleTopright = createMeisterIcons("arrow-circle-topright", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "7fca9bb2d7006c0bc87cc808707788df12937419" }], ["path", { "fill": "currentColor", "d": "M9.55 14.838a.75.75 0 0 1 0-1.061l4.666-4.667a.75.75 0 0 1 1.061 1.06l-4.667 4.668a.75.75 0 0 1-1.06 0Z", "key": "388407d3cbc992c5d4ca157748f583975cbfb862" }], ["path", { "fill": "currentColor", "d": "M10.037 9.357a.75.75 0 0 1 .75-.75h3.536c.697 0 1.245.548 1.245 1.245v3.536a.75.75 0 1 1-1.5 0v-3.28h-3.281a.75.75 0 0 1-.75-.75Z", "key": "2331f92432dc05b91582b91cdde03d99b8769aba" }]]);
const ArrowCircleToprightB = createMeisterIcons("arrow-circle-topright-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "5e05baede816c20a8a465133adaaaee29bbd8723" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "7891dfda365d513037352472b8497650283c3c36" }], ["path", { "fill": "#fff", "d": "M9.033 14.771a.75.75 0 0 1 0-1.06l4.243-4.243a.75.75 0 1 1 1.06 1.06l-4.242 4.243a.75.75 0 0 1-1.06 0Z", "key": "911a251f16b19eef0a5a8c8cd273a758068edf2c" }], ["path", { "fill": "#fff", "d": "M14.443 14.213a.75.75 0 0 1-.75-.75v-3.28h-3.281a.75.75 0 1 1 0-1.5h3.535c.698 0 1.246.547 1.246 1.244v3.536a.75.75 0 0 1-.75.75Z", "key": "aaed5867d41da6fa399e5ed6abede6a205784bec" }]]);
const ArrowCrashDown = createMeisterIcons("arrow-crash-down", [["path", { "fill": "currentColor", "d": "M12 18.246a.75.75 0 0 1-.75-.75v-10a.75.75 0 0 1 1.5 0v10a.75.75 0 0 1-.75.75Z", "key": "8ee38ccd68e1157a72b5360b907bf7128150fdad" }], ["path", { "fill": "currentColor", "d": "m12.069 16.747 3.694-3.794A.75.75 0 1 1 16.837 14l-3.707 3.807a1.535 1.535 0 0 1-2.16 0l-.007-.007-3.7-3.8a.75.75 0 0 1 1.074-1.047l3.694 3.794c.002.001.007.005.019.005s.017-.004.019-.005Z", "key": "0727d1a2b47bb53d6e4276fbd61403743e84a8c4" }], ["path", { "fill": "currentColor", "d": "M18.75 17.504a.75.75 0 0 1-.75.75H6a.75.75 0 0 1 0-1.5h12a.75.75 0 0 1 .75.75Z", "key": "a1711f3f1f1e258cadd79a4713676ac71b2e9be5" }]]);
const ArrowCrashLeft = createMeisterIcons("arrow-crash-left", [["path", { "fill": "currentColor", "d": "M6.254 12.5a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 0 1.5h-10a.75.75 0 0 1-.75-.75Z", "key": "993ff70e868197ab05e252e41aac8f644f440734" }], ["path", { "fill": "currentColor", "d": "m7.753 12.57 3.794 3.693a.75.75 0 1 1-1.047 1.074L6.693 13.63a1.535 1.535 0 0 1 0-2.16l.007-.007 3.8-3.7a.75.75 0 1 1 1.047 1.074l-3.794 3.694c-.001.002-.005.007-.005.019s.004.017.005.02Z", "key": "a7993b2213b060b4787bcfc8e080c15e1b8cd828" }], ["path", { "fill": "currentColor", "d": "M6.996 19.25a.75.75 0 0 1-.75-.75v-12a.75.75 0 0 1 1.5 0v12a.75.75 0 0 1-.75.75Z", "key": "5b476e3ced51109ebf6f2855e8335a71b9d8bc88" }]]);
const ArrowCrashRight = createMeisterIcons("arrow-crash-right", [["path", { "fill": "currentColor", "d": "M17.746 12.5a.75.75 0 0 1-.75.75h-10a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75Z", "key": "db7c85dee1eb0792e9b9f26ff198f143cba492d2" }], ["path", { "fill": "currentColor", "d": "m16.247 12.43-3.794-3.693A.75.75 0 1 1 13.5 7.663l3.807 3.707a1.535 1.535 0 0 1 0 2.16l-.007.007-3.8 3.7a.75.75 0 0 1-1.047-1.074l3.794-3.694c.001-.002.005-.007.005-.019s-.004-.017-.005-.02Z", "key": "b45d7e913988f5671b6de0ffb5d1b76eb6b7799e" }], ["path", { "fill": "currentColor", "d": "M17.004 5.75a.75.75 0 0 1 .75.75v12a.75.75 0 0 1-1.5 0v-12a.75.75 0 0 1 .75-.75Z", "key": "768c67ee3a94af7eace50b57d11dfffd40796e84" }]]);
const ArrowCrashTop = createMeisterIcons("arrow-crash-top", [["path", { "fill": "currentColor", "d": "M12 6.754a.75.75 0 0 1 .75.75v10a.75.75 0 0 1-1.5 0v-10a.75.75 0 0 1 .75-.75Z", "key": "7df1ed3275a1523c35299d577584b1e319cf30f6" }], ["path", { "fill": "currentColor", "d": "m11.931 8.253-3.694 3.794A.75.75 0 1 1 7.163 11l3.707-3.807a1.535 1.535 0 0 1 2.16 0l.007.007 3.7 3.8a.75.75 0 0 1-1.074 1.047l-3.694-3.794c-.002-.001-.007-.005-.019-.005s-.017.004-.019.005Z", "key": "1c319e0264eebeb6a486bb15aae03550f25436bc" }], ["path", { "fill": "currentColor", "d": "M5.25 7.496a.75.75 0 0 1 .75-.75h12a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75Z", "key": "892a83d15123942f44e4f7e81aea9f528d8cfdb5" }]]);
const ArrowCurvedDownright = createMeisterIcons("arrow-curved-downright", [["path", { "fill": "currentColor", "d": "M14.172 9.07a.75.75 0 0 1 1.06 0l3.4 3.4c.271.27.445.63.445 1.03s-.174.76-.444 1.03l-3.4 3.4a.75.75 0 0 1-1.061-1.06l3.37-3.37-3.37-3.37a.75.75 0 0 1 0-1.06Z", "key": "904ad4f06fd6f45f9e1fdbb460895b3216d9eefb" }], ["path", { "fill": "currentColor", "d": "M5.602 5.85a.75.75 0 0 1 .75.75h-.75.75v.008a5.16 5.16 0 0 0 .012.24c.012.17.037.42.087.722.102.608.303 1.406.697 2.195.393.786.97 1.549 1.823 2.117.848.565 2.012.968 3.631.968h5.796v1.5h-5.796c-1.88 0-3.342-.473-4.463-1.22-1.116-.744-1.85-1.73-2.333-2.695a9.352 9.352 0 0 1-.834-2.618 9.342 9.342 0 0 1-.118-1.113 4.192 4.192 0 0 1-.001-.072v-.03s0-.002.75-.002h-.75a.75.75 0 0 1 .75-.75Z", "key": "0b92b621c66a75bb747c94a05ef34e0aabbbbe51" }]]);
const ArrowDoubleheadD = createMeisterIcons("arrow-doublehead-d", [["path", { "fill": "currentColor", "d": "M17.798 6.202a.75.75 0 0 1 0 1.06L7.262 17.798a.75.75 0 1 1-1.06-1.06L16.738 6.202a.75.75 0 0 1 1.06 0Z", "key": "26230d60737e470b0942515fd69013823a42fd33" }], ["path", { "fill": "currentColor", "d": "M17.55 13.28a.75.75 0 0 1-.75-.75V7.363a.303.303 0 0 0-.071-.145.084.084 0 0 0-.026-.019l-5.294.07a.75.75 0 0 1-.02-1.499l5.313-.07c.888 0 1.482.724 1.591 1.492l.008.052v5.286a.75.75 0 0 1-.75.75Zm-4.34 4.2a.75.75 0 0 1-.75.75H7.227c-.838 0-1.528-.69-1.528-1.528V11.47a.75.75 0 0 1 1.5 0v5.232s0 .008.01.018c.01.01.018.01.018.01h5.233a.75.75 0 0 1 .75.75Z", "key": "3d7d91f1a2efd6bd85f0d2dacdf03bb91f5ae563" }]]);
const ArrowDoubleheadDa = createMeisterIcons("arrow-doublehead-da", [["path", { "fill": "currentColor", "d": "M17.798 17.798a.75.75 0 0 1-1.06 0L6.202 7.262a.75.75 0 0 1 1.06-1.06l10.536 10.536a.75.75 0 0 1 0 1.06Z", "key": "57be98b618ba6e8ed0959527ffb355b00b76a107" }], ["path", { "fill": "currentColor", "d": "M10.72 17.55a.75.75 0 0 1 .75-.75h5.167a.302.302 0 0 0 .145-.071.083.083 0 0 0 .019-.026l-.07-5.294a.75.75 0 0 1 1.499-.02l.07 5.313c0 .888-.724 1.482-1.492 1.591l-.052.008H11.47a.75.75 0 0 1-.75-.75Zm-4.2-4.34a.75.75 0 0 1-.75-.75V7.227c0-.838.69-1.528 1.528-1.528h5.232a.75.75 0 0 1 0 1.5H7.298s-.008 0-.018.01c-.01.01-.01.018-.01.018v5.233a.75.75 0 0 1-.75.75Z", "key": "2d85b44b1c784ea3c7da4f3a96c1a933ed41fbec" }]]);
const ArrowDoubleheadH = createMeisterIcons("arrow-doublehead-h", [["path", { "fill": "currentColor", "d": "M3.8 12a.75.75 0 0 1 .75-.75h14.9a.75.75 0 1 1 0 1.5H4.55A.75.75 0 0 1 3.8 12Z", "key": "3fc36b2dfa20bafe8764f889dc4731013fe40e4d" }], ["path", { "fill": "currentColor", "d": "M8.98 7.17a.75.75 0 0 1 0 1.06l-3.653 3.654a.303.303 0 0 0-.052.153.084.084 0 0 0 .005.032l3.793 3.694a.75.75 0 0 1-1.046 1.074L4.22 13.13c-.628-.627-.535-1.56-.07-2.18l.032-.043L7.92 7.17a.75.75 0 0 1 1.06 0Zm6.04.1a.75.75 0 0 1 1.06 0l3.7 3.7a1.535 1.535 0 0 1 0 2.16l-3.7 3.7a.75.75 0 0 1-1.06-1.06l3.7-3.7s.005-.006.005-.02-.005-.02-.005-.02l-3.7-3.7a.75.75 0 0 1 0-1.06Z", "key": "87998d678f4591b1aceb57f209fa4427b09e12df" }]]);
const ArrowDoubleheadV = createMeisterIcons("arrow-doublehead-v", [["path", { "fill": "currentColor", "d": "M12 3.8a.75.75 0 0 1 .75.75v14.9a.75.75 0 0 1-1.5 0V4.55A.75.75 0 0 1 12 3.8Z", "key": "676651a374b27724148acff24a98ed18fd0dfd48" }], ["path", { "fill": "currentColor", "d": "M16.83 8.98a.75.75 0 0 1-1.06 0l-3.654-3.653a.303.303 0 0 0-.154-.052.085.085 0 0 0-.03.004h-.001L8.237 9.074a.75.75 0 1 1-1.074-1.046L10.87 4.22c.627-.628 1.56-.535 2.18-.07l.043.032L16.83 7.92a.75.75 0 0 1 0 1.06Zm-.1 6.04a.75.75 0 0 1 0 1.06l-3.7 3.7a1.535 1.535 0 0 1-2.16 0l-3.7-3.7a.75.75 0 0 1 1.06-1.06l3.7 3.7s.006.005.02.005.02-.005.02-.005l3.7-3.7a.75.75 0 0 1 1.06 0Z", "key": "2c2f8d44ad58f58a69772eca7275f0135ceaa5b2" }]]);
const ArrowDown = createMeisterIcons("arrow-down", [["path", { "fill": "currentColor", "d": "M11.9 17.737a.75.75 0 0 1-.75-.75v-10a.75.75 0 0 1 1.5 0v10a.75.75 0 0 1-.75.75Z", "key": "9ca9e5a6e762a68fcad49c91447f7b004f3aa1e4" }], ["path", { "fill": "currentColor", "d": "m12.068 16.258 3.588-3.786a.75.75 0 0 1 1.088 1.031l-3.607 3.808-.007.007a1.535 1.535 0 0 1-2.16 0l-.007-.007-3.7-3.8a.75.75 0 0 1 1.074-1.047l3.694 3.794c.002.001.007.005.019.005.01 0 .016-.003.018-.005Z", "key": "f10c4ca923bffc23fad319c437576705726f63fa" }]]);
const ArrowDownleft = createMeisterIcons("arrow-downleft", [["path", { "fill": "currentColor", "d": "M7.872 15.986a.75.75 0 0 1 0-1.06l7.071-7.071a.75.75 0 0 1 1.061 1.06l-7.071 7.071a.75.75 0 0 1-1.06 0Z", "key": "c02a1321af2937b324892eaa435e5dd497349d0c" }], ["path", { "fill": "currentColor", "d": "m9.037 15.06 5.214-.142a.75.75 0 1 1 .04 1.5l-5.242.142h-.01c-.838 0-1.528-.69-1.528-1.528v-.01l.07-5.304a.75.75 0 1 1 1.5.02l-.07 5.295c0 .002.002.008.01.016s.013.01.016.01Z", "key": "5975b3a889df692dc18f93c8e42e8a8f9869692b" }]]);
const ArrowDownright = createMeisterIcons("arrow-downright", [["path", { "fill": "currentColor", "d": "M15.986 16.128a.75.75 0 0 1-1.06 0L7.855 9.057a.75.75 0 0 1 1.06-1.061l7.071 7.071a.75.75 0 0 1 0 1.06Z", "key": "f77e33c07dac7d0fb7e9902e660ad4dff3a090a3" }], ["path", { "fill": "currentColor", "d": "m15.06 14.963-.142-5.214a.75.75 0 1 1 1.5-.04l.142 5.242v.01c0 .838-.69 1.528-1.528 1.528h-.01l-5.304-.071a.75.75 0 0 1 .02-1.5l5.295.07c.002 0 .008-.001.016-.01a.033.033 0 0 0 .01-.015Z", "key": "4125c92c1dd17545a52c5188c90b472fa355643a" }]]);
const ArrowDownwards = createMeisterIcons("arrow-downwards", [["path", { "fill": "currentColor", "d": "M21.128 18.03a.747.747 0 0 1-.386.488 1.379 1.379 0 0 1-.842.282h-.037l-4.1-.2a.75.75 0 1 1 .073-1.5l3.192.157-4.588-6.203a.32.32 0 0 0-.34-.034l-2.432 2.82-.045.052-.054.044c-.792.633-1.868.535-2.45-.21L2.737 6.445a.75.75 0 1 1 1.128-.99l6.4 7.3.019.022.017.023c.021.029.054.05.1.054a.294.294 0 0 0 .187-.057l2.445-2.837.053-.061.065-.049a1.82 1.82 0 0 1 2.38.17l.04.04.033.044 4.226 5.713.122-2.504a.75.75 0 1 1 1.498.073l-.2 4.085c-.002.2-.044.39-.12.559Z", "key": "2239d652fd64b65659f7af91c69383428d0c4874" }]]);
const ArrowDuoDown = createMeisterIcons("arrow-duo-down", [["path", { "fill": "currentColor", "d": "M18.25 12.55a.75.75 0 0 1-.75-.75v-6a.75.75 0 0 1 1.5 0v6a.75.75 0 0 1-.75.75Z", "key": "695e7fb45a53ee67b43c02d87b6ff723878a2f7d" }], ["path", { "fill": "currentColor", "d": "m18.3 11.59-2.32-2.32a.75.75 0 0 0-1.06 1.06l2.5 2.5a1.233 1.233 0 0 0 1.76 0l2.5-2.5a.75.75 0 0 0-1.06-1.06l-2.32 2.32ZM7.95 17.75A.75.75 0 0 1 7.2 17V5.8a.75.75 0 0 1 1.5 0V17a.75.75 0 0 1-.75.75Z", "key": "adff493fcfd2f6f9a6a1f23a98ec28aa4581e54f" }], ["path", { "fill": "currentColor", "d": "M8.023 17.443a.351.351 0 0 0 .097-.073l4.5-4.5a.75.75 0 0 1 1.06 1.06l-4.5 4.5c-.311.312-.719.52-1.18.52-.461 0-.868-.208-1.18-.52l-4.5-4.5a.75.75 0 0 1 1.06-1.06l4.5 4.5a.351.351 0 0 0 .097.073.091.091 0 0 0 .023.007h.005a.091.091 0 0 0 .018-.007Z", "key": "11f8503fc6918b47f628a23dce3300df1b362050" }]]);
const ArrowDuoLeft = createMeisterIcons("arrow-duo-left", [["path", { "fill": "currentColor", "d": "M11.45 18.25a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "adba864aec2a33ebe65e787cb226b474774253b2" }], ["path", { "fill": "currentColor", "d": "m12.41 18.3 2.32-2.32a.75.75 0 0 0-1.06-1.06l-2.5 2.5a1.233 1.233 0 0 0 0 1.76l2.5 2.5a.75.75 0 0 0 1.06-1.06l-2.32-2.32ZM6.25 7.95A.75.75 0 0 1 7 7.2h11.2a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1-.75-.75Z", "key": "c655e6ac426abbd3dce862f2cbc25c1e18f9e352" }], ["path", { "fill": "currentColor", "d": "M6.557 8.023a.351.351 0 0 0 .073.097l4.5 4.5a.75.75 0 0 1-1.06 1.06l-4.5-4.5c-.312-.311-.52-.719-.52-1.18 0-.461.208-.868.52-1.18l4.5-4.5a.75.75 0 0 1 1.06 1.06l-4.5 4.5a.351.351 0 0 0-.073.097A.093.093 0 0 0 6.55 8v.005l.007.018Z", "key": "a7f938534d79811c1e97d9eb2c29bde8c01b6de4" }]]);
const ArrowDuoRight = createMeisterIcons("arrow-duo-right", [["path", { "fill": "currentColor", "d": "M12.55 5.75a.75.75 0 0 1-.75.75h-6a.75.75 0 0 1 0-1.5h6a.75.75 0 0 1 .75.75Z", "key": "318250d34ec3222e4f7816ee7e667fe578293972" }], ["path", { "fill": "currentColor", "d": "M11.59 5.7 9.27 8.02a.75.75 0 0 0 1.06 1.06l2.5-2.5a1.233 1.233 0 0 0 0-1.76l-2.5-2.5a.75.75 0 1 0-1.06 1.06l2.32 2.32Zm6.16 10.35a.75.75 0 0 1-.75.75H5.8a.75.75 0 0 1 0-1.5H17a.75.75 0 0 1 .75.75Z", "key": "ad86366ea0f04d3ce178bd2b0f77aeece6c7e230" }], ["path", { "fill": "currentColor", "d": "M17.443 15.977a.351.351 0 0 0-.073-.097l-4.5-4.5a.75.75 0 0 1 1.06-1.06l4.5 4.5c.312.312.52.719.52 1.18 0 .461-.208.869-.52 1.18l-4.5 4.5a.75.75 0 0 1-1.06-1.06l4.5-4.5a.35.35 0 0 0 .073-.098.092.092 0 0 0 .006-.017L17.45 16v-.005a.092.092 0 0 0-.007-.018Z", "key": "ec28c59afea22607939891ea6ccb4bd56283590d" }]]);
const ArrowDuoTop = createMeisterIcons("arrow-duo-top", [["path", { "fill": "currentColor", "d": "M5.75 11.45a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "418a6ec82f27d73be48fbd217287996f7186118e" }], ["path", { "fill": "currentColor", "d": "m5.7 12.41 2.32 2.32a.75.75 0 1 0 1.06-1.06l-2.5-2.5a1.233 1.233 0 0 0-1.76 0l-2.5 2.5a.75.75 0 0 0 1.06 1.06l2.32-2.32Zm10.35-6.16a.75.75 0 0 1 .75.75v11.2a.75.75 0 0 1-1.5 0V7a.75.75 0 0 1 .75-.75Z", "key": "5834cec3d37859cf7ed2daa95bcce478f8359b7a" }], ["path", { "fill": "currentColor", "d": "M15.977 6.557a.351.351 0 0 0-.097.073l-4.5 4.5a.75.75 0 0 1-1.06-1.06l4.5-4.5c.312-.312.719-.52 1.18-.52.461 0 .869.208 1.18.52l4.5 4.5a.75.75 0 0 1-1.06 1.06l-4.5-4.5a.35.35 0 0 0-.098-.073A.094.094 0 0 0 16 6.55h-.005a.094.094 0 0 0-.018.007Z", "key": "b6af0914f0ced368c0b8280249cf8f24bf010954" }]]);
const ArrowFullscreen = createMeisterIcons("arrow-fullscreen", [["path", { "fill": "currentColor", "d": "M16.93 3.97a.75.75 0 0 1 0 1.06l-6 6a.75.75 0 0 1-1.06-1.06l6-6a.75.75 0 0 1 1.06 0Z", "key": "6df1aee9755883500166d4c48fb8ad06df32cb81" }], ["path", { "fill": "currentColor", "d": "M12.25 4a.75.75 0 0 1 .75-.75h3.4c.32 0 .646.11.893.357s.357.573.357.893v3.4a.75.75 0 0 1-1.5 0V4.75H13a.75.75 0 0 1-.75-.75ZM9.8 6.45a.75.75 0 0 1 .75.75v3.15h3.15a.75.75 0 1 1 0 1.5h-3.4c-.32 0-.646-.11-.893-.357a1.249 1.249 0 0 1-.357-.893V7.2a.75.75 0 0 1 .75-.75Z", "key": "36d4b65ae2e9312affa55c4c0e18015be01697b5" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9a.75.75 0 0 1 1.5 0v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75a.75.75 0 0 1 0 1.5Z", "key": "8e0e495988543f231a6e0a2685da400ae722b69b" }]]);
const ArrowLeft = createMeisterIcons("arrow-left", [["path", { "fill": "currentColor", "d": "M6.263 11.9a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 0 1.5h-10a.75.75 0 0 1-.75-.75Z", "key": "b752117e1806d5fbef86a54394eec78e5dc13ca4" }], ["path", { "fill": "currentColor", "d": "m7.742 12.068 3.786 3.588a.75.75 0 0 1-1.031 1.088l-3.808-3.607-.007-.007a1.535 1.535 0 0 1 0-2.16l.007-.008 3.8-3.7a.75.75 0 1 1 1.047 1.075l-3.794 3.694c-.001.002-.005.007-.005.019 0 .01.003.016.005.018Z", "key": "6755a7f1dcea56d03d0ee5bc368f66c70548748d" }]]);
const ArrowLoopLeft = createMeisterIcons("arrow-loop-left", [["path", { "fill": "currentColor", "d": "M20.45 10.75c0-.677-.639-1.542-2.25-2.28-1.544-.71-3.733-1.17-6.2-1.17s-4.656.461-6.2 1.17c-1.611.738-2.25 1.603-2.25 2.28 0 .543.367 1.143 1.166 1.676a.75.75 0 0 1-.832 1.248c-1.001-.667-1.834-1.667-1.834-2.924 0-1.623 1.411-2.858 3.125-3.644C6.955 6.289 9.367 5.8 12 5.8s5.044.489 6.825 1.306c1.714.786 3.125 2.021 3.125 3.644 0 .89-.53 1.635-1.2 2.211-.683.586-1.613 1.089-2.664 1.5-1.627.636-3.633 1.088-5.677 1.261l1.373 1.154a.75.75 0 1 1-.964 1.148l-2.5-2.1-.025-.02-.023-.024a1.303 1.303 0 0 1-.26-.367.747.747 0 0 1-.118-.71c.017-.18.067-.348.137-.488l.04-.08.057-.067 2.1-2.5a.75.75 0 0 1 1.148.964l-1.357 1.617c2-.144 3.97-.578 5.522-1.185.962-.376 1.725-.804 2.233-1.24.52-.447.678-.813.678-1.074Z", "key": "3de1952c7db93a66ccf47c74f966e67a6e636d6d" }]]);
const ArrowLoopRight = createMeisterIcons("arrow-loop-right", [["path", { "fill": "currentColor", "d": "M3.55 10.75c0-.677.639-1.542 2.25-2.28C7.344 7.76 9.533 7.3 12 7.3s4.656.461 6.2 1.17c1.611.738 2.25 1.603 2.25 2.28 0 .543-.367 1.143-1.166 1.676a.75.75 0 1 0 .832 1.248c1.001-.667 1.834-1.667 1.834-2.924 0-1.623-1.411-2.858-3.125-3.644C17.045 6.289 14.633 5.8 12 5.8s-5.044.489-6.825 1.306C3.46 7.892 2.05 9.127 2.05 10.75c0 .89.53 1.635 1.2 2.211.683.586 1.613 1.089 2.664 1.5 1.627.636 3.633 1.088 5.677 1.261l-1.373 1.154a.75.75 0 1 0 .964 1.148l2.5-2.1.025-.02.023-.024c.114-.113.2-.238.26-.367a.747.747 0 0 0 .118-.71 1.403 1.403 0 0 0-.137-.488l-.04-.08-.057-.067-2.1-2.5a.75.75 0 0 0-1.148.964l1.357 1.617c-2-.144-3.97-.578-5.522-1.185-.962-.376-1.725-.804-2.233-1.24-.52-.447-.678-.813-.678-1.074Z", "key": "a87efc52e1bf4d13fe021a5beaacf33ec6d58748" }]]);
const ArrowReverseDownleft = createMeisterIcons("arrow-reverse-downleft", [["path", { "fill": "currentColor", "d": "M9.827 9.069a.75.75 0 0 0-1.06 0L5.364 12.47c-.27.27-.445.63-.445 1.03 0 .401.175.76.445 1.031l3.401 3.401a.75.75 0 1 0 1.061-1.06L6.456 13.5l3.371-3.371a.75.75 0 0 0 0-1.061Z", "key": "05551bd0b700203e1067b50341a835771b0fe6dd" }], ["path", { "fill": "currentColor", "d": "M18.4 5.848a.75.75 0 0 0-.75.75h.75-.75v.008l-.001.046a7.865 7.865 0 0 1-.098.917 7.857 7.857 0 0 1-.697 2.195c-.393.786-.971 1.55-1.824 2.118-.848.566-2.013.969-3.633.969H5.6v1.5h5.797c1.882 0 3.344-.473 4.465-1.22 1.116-.745 1.851-1.732 2.333-2.696a9.331 9.331 0 0 0 .835-2.62 9.344 9.344 0 0 0 .118-1.113l.002-.072V6.6s0-.002-.75-.002h.75a.75.75 0 0 0-.75-.75Z", "key": "22693de3755fe1728398f1af5a5bc7cbcb8127a3" }]]);
const ArrowReverseLongh = createMeisterIcons("arrow-reverse-longh", [["path", { "fill": "currentColor", "d": "m17.04 8.8-2.62 2.62a.75.75 0 0 0 1.06 1.06l3.4-3.4c.27-.27.445-.63.445-1.03s-.174-.76-.445-1.03l-3.4-3.4a.75.75 0 0 0-1.06 1.06l2.62 2.62H5.45a.75.75 0 1 0 0 1.5h11.59Zm2.26 7.15a.75.75 0 0 1-.75.75H6.96l2.62 2.62a.75.75 0 1 1-1.06 1.06l-3.4-3.4c-.27-.27-.445-.63-.445-1.03s.174-.76.445-1.03l3.4-3.4a.75.75 0 0 1 1.06 1.06L6.96 15.2h11.59a.75.75 0 0 1 .75.75Z", "key": "1485cb22fb2cdf213a8867e7637ccb5c6c1795b0" }]]);
const ArrowReverseLongv = createMeisterIcons("arrow-reverse-longv", [["path", { "fill": "currentColor", "d": "m8.8 6.96 2.62 2.62a.75.75 0 0 0 1.06-1.06l-3.4-3.4c-.27-.27-.63-.445-1.03-.445s-.76.174-1.03.445l-3.4 3.4a.75.75 0 0 0 1.06 1.06L7.3 6.96v11.59a.75.75 0 0 0 1.5 0V6.96Zm7.15-2.26a.75.75 0 0 1 .75.75v11.59l2.62-2.62a.75.75 0 1 1 1.06 1.06l-3.4 3.4c-.27.27-.63.445-1.03.445s-.76-.174-1.03-.445l-3.4-3.4a.75.75 0 0 1 1.06-1.06l2.62 2.62V5.45a.75.75 0 0 1 .75-.75Z", "key": "2e1207fd4afd4ea34a1fe3abeb51bf6f22fe490c" }]]);
const ArrowReverseShorth = createMeisterIcons("arrow-reverse-shorth", [["path", { "fill": "currentColor", "d": "M13.48 2.62a.75.75 0 1 0-1.06 1.06l2.62 2.62H7.45a.75.75 0 1 0 0 1.5h7.59l-2.62 2.62a.75.75 0 0 0 1.06 1.06l3.4-3.4c.27-.27.445-.63.445-1.03s-.174-.76-.445-1.03l-3.4-3.4ZM8.96 16.2l2.62-2.62a.75.75 0 1 0-1.06-1.06l-3.4 3.4c-.27.27-.445.63-.445 1.03s.174.76.445 1.03l3.4 3.4a.75.75 0 1 0 1.06-1.06L8.96 17.7h7.59a.75.75 0 0 0 0-1.5H8.96Z", "key": "264c44c209cf855a638b0163f6ef165af35a4ead" }]]);
const ArrowReverseShortv = createMeisterIcons("arrow-reverse-shortv", [["path", { "fill": "currentColor", "d": "M10.42 11.58a.75.75 0 0 0 1.06-1.06l-3.4-3.4c-.27-.27-.63-.445-1.03-.445s-.76.174-1.03.445l-3.4 3.4a.75.75 0 0 0 1.06 1.06L6.3 8.96v7.59a.75.75 0 0 0 1.5 0V8.96l2.62 2.62Zm7.28-4.13a.75.75 0 0 0-1.5 0v7.59l-2.62-2.62a.75.75 0 1 0-1.06 1.06l3.4 3.4c.27.27.63.445 1.03.445s.76-.174 1.03-.445l3.4-3.4a.75.75 0 0 0-1.06-1.06l-2.62 2.62V7.45Z", "key": "1175defc311b836c501648ff10a204049292c4e8" }]]);
const ArrowReverseTopleft = createMeisterIcons("arrow-reverse-topleft", [["path", { "fill": "currentColor", "d": "M9.828 14.93a.75.75 0 0 1-1.06 0l-3.4-3.4c-.271-.27-.445-.63-.445-1.03s.174-.76.444-1.03l3.4-3.4a.75.75 0 0 1 1.061 1.06l-3.37 3.37 3.37 3.37a.75.75 0 0 1 0 1.06Z", "key": "c123ba9c0ed2cca0a9b098ef8e333dc96cb3c6f3" }], ["path", { "fill": "currentColor", "d": "M18.398 18.15a.75.75 0 0 1-.75-.75h.75-.75v-.008c0-.009 0-.024-.002-.046a7.822 7.822 0 0 0-.098-.917 7.853 7.853 0 0 0-.696-2.194c-.393-.786-.97-1.549-1.823-2.117-.848-.565-2.012-.968-3.631-.968H5.602v-1.5h5.796c1.88 0 3.342.473 4.463 1.22 1.116.744 1.85 1.73 2.332 2.695a9.35 9.35 0 0 1 .835 2.618 9.33 9.33 0 0 1 .118 1.113l.001.072v.03s0 .002-.75.002h.75a.75.75 0 0 1-.75.75Z", "key": "b87a23abd82b4998398b0d2519079ec2f182fc8c" }]]);
const ArrowReverseTopright = createMeisterIcons("arrow-reverse-topright", [["path", { "fill": "currentColor", "d": "M14.173 14.931a.75.75 0 0 0 1.06 0l3.402-3.401c.27-.27.445-.63.445-1.03 0-.401-.175-.76-.445-1.031l-3.401-3.401a.75.75 0 0 0-1.061 1.06l3.371 3.371-3.371 3.371a.75.75 0 0 0 0 1.061Z", "key": "f346dfcd28ced50d50bbb7e701803fad3287bc7d" }], ["path", { "fill": "currentColor", "d": "M5.6 18.152a.75.75 0 0 0 .75-.75H5.6h.75v-.008l.001-.046a7.844 7.844 0 0 1 .098-.917 7.857 7.857 0 0 1 .697-2.195c.393-.786.971-1.55 1.824-2.118.848-.566 2.013-.969 3.632-.969H18.4v-1.5h-5.797c-1.882 0-3.344.473-4.465 1.22-1.116.745-1.851 1.732-2.334 2.696a9.355 9.355 0 0 0-.834 2.62 9.342 9.342 0 0 0-.118 1.113l-.002.072v.03s0 .002.75.002h-.75c0 .414.336.75.75.75Z", "key": "1cdcd3b4fd8c71b64a861c71daba5c4b354117dd" }]]);
const ArrowRight = createMeisterIcons("arrow-right", [["path", { "fill": "currentColor", "d": "M17.738 12.1a.75.75 0 0 1-.75.75h-10a.75.75 0 0 1 0-1.5h10a.75.75 0 0 1 .75.75Z", "key": "de4fb3ec5bb0458a8b69b8efe19c4047162bd990" }], ["path", { "fill": "currentColor", "d": "m16.258 11.932-3.786-3.587a.75.75 0 0 1 1.031-1.09l3.808 3.608.007.007a1.535 1.535 0 0 1 0 2.16l-.007.008-3.8 3.7a.75.75 0 1 1-1.047-1.075l3.794-3.694c.001-.002.005-.007.005-.019a.033.033 0 0 0-.005-.018Z", "key": "68c066c1c4014d39460c7b63ce6e7cb9b773f470" }]]);
const ArrowRoundedDownleft = createMeisterIcons("arrow-rounded-downleft", [["path", { "fill": "currentColor", "d": "M7.355 16.93a.75.75 0 0 1-1.06 0l-2.5-2.5a1.233 1.233 0 0 1 0-1.76l2.5-2.5a.75.75 0 1 1 1.06 1.06l-2.32 2.32 2.32 2.32a.75.75 0 0 1 0 1.06Z", "key": "d15cc7034930aff0a14a52308ed3f4523c4e959e" }], ["path", { "fill": "currentColor", "d": "M20.575 10.6c0 2.114-1.636 3.75-3.75 3.75h-12.6a.75.75 0 0 1 0-1.5h12.6c1.286 0 2.25-.964 2.25-2.25s-.964-2.25-2.25-2.25h-4a.75.75 0 1 1 0-1.5h4c2.114 0 3.75 1.636 3.75 3.75Z", "key": "48c3d603809da7079ac39be3065c7806da5415bb" }]]);
const ArrowRoundedDownright = createMeisterIcons("arrow-rounded-downright", [["path", { "fill": "currentColor", "d": "M16.645 16.93a.75.75 0 0 0 1.06 0l2.5-2.5a1.233 1.233 0 0 0 0-1.76l-2.5-2.5a.75.75 0 0 0-1.06 1.06l2.32 2.32-2.32 2.32a.75.75 0 0 0 0 1.06Z", "key": "628446b9b0c33b586103a3b763dc520e61b3b4c4" }], ["path", { "fill": "currentColor", "d": "M3.425 10.6c0 2.114 1.636 3.75 3.75 3.75h12.6a.75.75 0 0 0 0-1.5h-12.6c-1.286 0-2.25-.964-2.25-2.25s.964-2.25 2.25-2.25h4a.75.75 0 1 0 0-1.5h-4c-2.114 0-3.75 1.636-3.75 3.75Z", "key": "4229326982cb502b87e69db8be8d3fd5b1bf3e86" }]]);
const ArrowRoundedTopleft = createMeisterIcons("arrow-rounded-topleft", [["path", { "fill": "currentColor", "d": "M7.355 7.07a.75.75 0 0 0-1.06 0l-2.5 2.5a1.233 1.233 0 0 0 0 1.76l2.5 2.5a.75.75 0 1 0 1.06-1.06l-2.32-2.32 2.32-2.32a.75.75 0 0 0 0-1.06Z", "key": "9b05c1145476a8c25aa3067d187ace724236e4b5" }], ["path", { "fill": "currentColor", "d": "M20.575 13.4c0-2.114-1.636-3.75-3.75-3.75h-12.6a.75.75 0 0 0 0 1.5h12.6c1.286 0 2.25.964 2.25 2.25s-.964 2.25-2.25 2.25h-4a.75.75 0 0 0 0 1.5h4c2.114 0 3.75-1.636 3.75-3.75Z", "key": "db1789a42b77792495220e8aad051152d6546ca3" }]]);
const ArrowRoundedTopright = createMeisterIcons("arrow-rounded-topright", [["path", { "fill": "currentColor", "d": "M16.645 7.07a.75.75 0 0 1 1.06 0l2.5 2.5a1.233 1.233 0 0 1 0 1.76l-2.5 2.5a.75.75 0 0 1-1.06-1.06l2.32-2.32-2.32-2.32a.75.75 0 0 1 0-1.06Z", "key": "0afec4b27f4bcc609eede1bc99a7a9eb949e8235" }], ["path", { "fill": "currentColor", "d": "M3.425 13.4c0-2.114 1.636-3.75 3.75-3.75h12.6a.75.75 0 1 1 0 1.5h-12.6c-1.286 0-2.25.964-2.25 2.25s.964 2.25 2.25 2.25h4a.75.75 0 1 1 0 1.5h-4c-2.114 0-3.75-1.636-3.75-3.75Z", "key": "5eda89d31cc24db6f56d274275f9200c790703fc" }]]);
const ArrowSort = createMeisterIcons("arrow-sort", [["path", { "fill": "currentColor", "d": "M16.7 4.25a.75.75 0 0 1 .75.75v14.9a.75.75 0 0 1-1.5 0V5a.75.75 0 0 1 .75-.75Z", "key": "f21fb099a16c6476437925f5d6ef9f616ba69ae4" }], ["path", { "fill": "currentColor", "d": "m16.73 5.73-3.7 3.7a.75.75 0 1 1-1.06-1.06l3.7-3.7a1.535 1.535 0 0 1 2.156-.004l3.797 3.697a.75.75 0 0 1-1.046 1.074L16.77 5.73s-.005-.005-.02-.005c-.014 0-.02.005-.02.005Zm-4.66 9.64a.75.75 0 0 1 1.06 0l3.7 3.7s.006.005.02.005.02-.005.02-.005l3.7-3.7a.75.75 0 0 1 1.06 1.06l-3.7 3.7a1.535 1.535 0 0 1-2.16 0l-3.7-3.7a.75.75 0 0 1 0-1.06ZM4.9 5.25c-.686 0-1.25.564-1.25 1.25v2c0 .662.437 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-2ZM2.15 6.5A2.756 2.756 0 0 1 4.9 3.75h2A2.756 2.756 0 0 1 9.65 6.5v2a2.756 2.756 0 0 1-2.75 2.75h-2c-1.787 0-2.75-1.412-2.75-2.75v-2Zm2.75 8.75c-.686 0-1.25.564-1.25 1.25v2c0 .393.124.7.311.901.18.193.472.349.939.349h2c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-2ZM2.15 16.5a2.756 2.756 0 0 1 2.75-2.75h2a2.756 2.756 0 0 1 2.75 2.75v2a2.756 2.756 0 0 1-2.75 2.75h-2c-.833 0-1.54-.294-2.036-.826-.488-.524-.714-1.218-.714-1.924v-2Z", "key": "71c09d3bad8a79e2e07c405149bc4d3a097c66c1" }]]);
const ArrowSortB = createMeisterIcons("arrow-sort-b", [["path", { "fill": "currentColor", "d": "M16.8 4.75a.75.75 0 0 1 .75.75v13a.75.75 0 1 1-1.5 0v-13a.75.75 0 0 1 .75-.75Z", "key": "b2ba464beec92d1f0258b26bf0847c22c3549fab" }], ["path", { "fill": "currentColor", "d": "m16.83 5.33-3.7 3.7a.75.75 0 0 1-1.06-1.06l3.7-3.7a1.535 1.535 0 0 1 2.16 0l3.7 3.7a.75.75 0 1 1-1.06 1.06l-3.7-3.7s-.006-.005-.02-.005-.02.005-.02.005Zm-4.76 9.64a.75.75 0 0 1 1.06 0l3.7 3.7s.006.005.02.005.02-.005.02-.005l3.7-3.7a.75.75 0 0 1 1.06 1.06l-3.7 3.7a1.535 1.535 0 0 1-2.16 0l-3.7-3.7a.75.75 0 0 1 0-1.06ZM2.9 8V6c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2h-2c-1.2 0-2-.9-2-2Z", "key": "a4202cb8e15708ff1c96c8c4662b48a86049d783" }], ["path", { "fill": "currentColor", "d": "M4.9 4.75c-.686 0-1.25.564-1.25 1.25v2c0 .71.489 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25h-2ZM2.15 6A2.756 2.756 0 0 1 4.9 3.25h2A2.756 2.756 0 0 1 9.65 6v2a2.756 2.756 0 0 1-2.75 2.75h-2c-1.639 0-2.75-1.26-2.75-2.75V6Zm.75 12v-2c0-1.1.9-2 2-2h2c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2h-2c-1.2 0-2-.9-2-2Z", "key": "27187f5e5e7b0d7f18e5f85981927fc35468676f" }], ["path", { "fill": "currentColor", "d": "M4.9 14.75c-.686 0-1.25.564-1.25 1.25v2c0 .71.489 1.25 1.25 1.25h2c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-2ZM2.15 16a2.756 2.756 0 0 1 2.75-2.75h2A2.756 2.756 0 0 1 9.65 16v2a2.756 2.756 0 0 1-2.75 2.75h-2c-1.639 0-2.75-1.26-2.75-2.75v-2Z", "key": "62dbe4c6574c7d7e4228066f2ca2ea35b166565b" }]]);
const ArrowSquareDown = createMeisterIcons("arrow-square-down", [["path", { "fill": "currentColor", "d": "M20.25 9c0-2.886-2.364-5.25-5.25-5.25H9C6.114 3.75 3.75 6.114 3.75 9v6c0 2.786 2.464 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9ZM15 2.25c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.614 0-6.75-3.136-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6Zm-3 5.6a.75.75 0 0 1 .75.75v5.19l1.72-1.72a.75.75 0 1 1 1.06 1.06l-2.5 2.5a1.233 1.233 0 0 1-1.76 0l-2.5-2.5a.75.75 0 1 1 1.06-1.06l1.42 1.42V8.6a.75.75 0 0 1 .75-.75Z", "key": "5df97de39c8555135e971aea1f1e445a8ca50bd5" }]]);
const ArrowSquareDownB = createMeisterIcons("arrow-square-down-b", [["path", { "fill": "currentColor", "d": "M3 15V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6H9c-3.4 0-6-2.7-6-6Z", "key": "442fa77b65f1626a61b10225a56b5ea3a2fcfcdd" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.894 2.272 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.822 0-6.75-3.044-6.75-6.75V9Z", "key": "30619cbf855090b4f6e4ebbe3f3769d2aa7d2c67" }], ["path", { "fill": "currentColor", "d": "m14.8 12.6-2.5 2.5c-.2.2-.5.2-.7 0l-2.5-2.5", "key": "093458fe3c9fb520064f02f10577eadd6f5b342c" }], ["path", { "fill": "#fff", "d": "M8.57 12.07a.75.75 0 0 1 1.06 0l2.32 2.32 2.32-2.32a.75.75 0 0 1 1.06 1.06l-2.5 2.5a1.233 1.233 0 0 1-1.76 0l-2.5-2.5a.75.75 0 0 1 0-1.06Z", "key": "ca074254d38bc2109bf3897d9da336d2b3bbbc79" }], ["path", { "fill": "#fff", "d": "M12 7.85a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "2f2d37b38ca141c0dbb49d1031e180a1b1d3c066" }]]);
const ArrowSquareDownleft = createMeisterIcons("arrow-square-downleft", [["path", { "fill": "currentColor", "d": "M15 20.25c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9C6.214 3.75 3.75 6.214 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6ZM21.75 15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.614 3.136-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6Z", "key": "7559869266035402452131f4ededf1e1b5dfe408" }], ["path", { "fill": "currentColor", "d": "M14.85 9.162a.75.75 0 0 1 0 1.061l-4.666 4.667a.75.75 0 1 1-1.061-1.06l4.667-4.668a.75.75 0 0 1 1.06 0Z", "key": "b503ba77a2681ec2f6b360b99cd421844867c856" }], ["path", { "fill": "currentColor", "d": "M14.363 14.643a.75.75 0 0 1-.75.75h-3.536a1.233 1.233 0 0 1-1.245-1.245v-3.536a.75.75 0 0 1 1.5 0v3.28h3.28a.75.75 0 0 1 .75.75Z", "key": "48340a9d053fc5da296d8937714b9b67ff675234" }]]);
const ArrowSquareDownleftB = createMeisterIcons("arrow-square-downleft-b", [["path", { "fill": "currentColor", "d": "M21 9v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "0a2388f4e693648f1a01f1f2fcc6814eb79e1a1b" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "b5ae7238043b3050d597476dd7e22da1077f5549" }], ["path", { "fill": "currentColor", "d": "M13.488 14.468H9.952a.483.483 0 0 1-.495-.495v-3.536", "key": "2f2cb33ec660d5a287c886597310fd1443f91497" }], ["path", { "fill": "#fff", "d": "M10.208 13.718v-3.281a.75.75 0 0 0-1.5 0v3.536c0 .697.547 1.244 1.244 1.244v-.75.75h3.536a.75.75 0 0 0 0-1.5h-3.28Z", "key": "aef380335b26732ab030e00fa984c48d25f0126c" }], ["path", { "fill": "#fff", "d": "M9.493 14.361a.75.75 0 0 1 0-1.06l4.243-4.243a.75.75 0 0 1 1.06 1.06l-4.242 4.243a.75.75 0 0 1-1.061 0Z", "key": "6e14922e8e307dba662998ca64ac419d5e976cef" }]]);
const ArrowSquareDownright = createMeisterIcons("arrow-square-downright", [["path", { "fill": "currentColor", "d": "M3.75 15c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.786-2.464-5.25-5.25-5.25H9C6.114 3.75 3.75 6.114 3.75 9v6ZM9 21.75c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.614 0 6.75 3.136 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9Z", "key": "2c6ced608640526913ff139f78625216fec67942" }], ["path", { "fill": "currentColor", "d": "M8.862 9.3a.75.75 0 0 1 1.061 0l4.667 4.666a.75.75 0 0 1-1.06 1.061L8.861 10.36a.75.75 0 0 1 0-1.06Z", "key": "230d0e6069389e158a3c949446648f1b21ba0bfe" }], ["path", { "fill": "currentColor", "d": "M14.343 9.787a.75.75 0 0 1 .75.75v3.536c0 .697-.548 1.245-1.245 1.245h-3.536a.75.75 0 1 1 0-1.5h3.28v-3.28a.75.75 0 0 1 .75-.75Z", "key": "9a9115486875ed9e6f6d68b0dc7bd94a433e7799" }]]);
const ArrowSquareDownrightB = createMeisterIcons("arrow-square-downright-b", [["path", { "fill": "currentColor", "d": "M21 9v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "22296d3a041cd3e56148a95b745a70f15bea009b" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "717f36cb50e8c901b321ebfb3894e06c627b6376" }], ["path", { "fill": "currentColor", "d": "M14.443 10.437v3.536a.483.483 0 0 1-.495.494h-3.536", "key": "c4da3c59f226128687591c45b975df80334da5cd" }], ["path", { "fill": "#fff", "d": "M13.693 13.718h-3.28a.75.75 0 1 0 0 1.5h3.535c.697 0 1.245-.549 1.245-1.245h-.75.75v-3.536a.75.75 0 1 0-1.5 0v3.28Z", "key": "ad5d75e7ca7c2ed82aa20f5efec277cde235e122" }], ["path", { "fill": "#fff", "d": "M14.337 14.432a.75.75 0 0 1-1.061 0L9.033 10.19a.75.75 0 1 1 1.06-1.06l4.244 4.242a.75.75 0 0 1 0 1.061Z", "key": "a0eb10c2cc417f635937295bb48c737cdc97ed4f" }]]);
const ArrowSquareLeft = createMeisterIcons("arrow-square-left", [["path", { "fill": "currentColor", "d": "M15 20.25c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9C6.214 3.75 3.75 6.214 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6ZM21.75 15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.614 3.136-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6Z", "key": "28677ca4324e8a1c9289da62575bf1f79db3f846" }], ["path", { "fill": "currentColor", "d": "M16.15 12a.75.75 0 0 1-.75.75H8.8a.75.75 0 0 1 0-1.5h6.6a.75.75 0 0 1 .75.75Z", "key": "495d9bf952398bc4a999b9c8a546ce5ca5ed02b9" }], ["path", { "fill": "currentColor", "d": "M11.93 15.53a.75.75 0 0 1-1.06 0l-2.5-2.5a1.233 1.233 0 0 1 0-1.76l2.5-2.5a.75.75 0 0 1 1.06 1.06l-2.32 2.32 2.32 2.32a.75.75 0 0 1 0 1.06Z", "key": "23d5d4a02d29fadf8710696c840a0c1c9442d5cd" }]]);
const ArrowSquareLeftB = createMeisterIcons("arrow-square-left-b", [["path", { "fill": "currentColor", "d": "M9 3h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.4 2.6-6 6-6Z", "key": "eb6956a3f5f6ff7c99200f3e0e2c07f8bc32fb98" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.014 3.75 3.75 6.014 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.814 2.936-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "15228598ae163d65df8076f62be89ecbf7f1fead" }], ["path", { "fill": "currentColor", "d": "m11.3 14.8-2.5-2.5c-.2-.2-.2-.5 0-.7l2.5-2.5", "key": "1a55a43b64ef8c07209a9397e8b634f7dfa372ba" }], ["path", { "fill": "#fff", "d": "M11.83 8.57a.75.75 0 0 1 0 1.06l-2.32 2.32 2.32 2.32a.75.75 0 0 1-1.06 1.06l-2.5-2.5a1.233 1.233 0 0 1 0-1.76l2.5-2.5a.75.75 0 0 1 1.06 0Z", "key": "df346e3395de02f8c9f3b0e2c024c6ef81685449" }], ["path", { "fill": "#fff", "d": "M8.55 12a.75.75 0 0 1 .75-.75h6a.75.75 0 1 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "faf7f549c367bfcfd999defa161ccb6dde422ff8" }]]);
const ArrowSquareRight = createMeisterIcons("arrow-square-right", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.786 0 5.25-2.464 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.614-3.136 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Zm5.6 3a.75.75 0 0 1 .75-.75h5.19l-1.72-1.72a.75.75 0 0 1 1.06-1.06l2.5 2.5a1.233 1.233 0 0 1 0 1.76l-2.5 2.5a.75.75 0 0 1-1.06-1.06l1.42-1.42H8.6a.75.75 0 0 1-.75-.75Z", "key": "7e76857c665eb19bc7f4fb5a8c6136c89b533d2d" }]]);
const ArrowSquareRightB = createMeisterIcons("arrow-square-right-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "bd9422496505c5b0cfcf8196ddd711c8852535c0" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "53a34be92dbadc43c5e9ab7c4fd95dc65bf8cf8d" }], ["path", { "fill": "currentColor", "d": "m12.6 9.1 2.5 2.5c.2.2.2.5 0 .7l-2.5 2.5", "key": "709ad82883cb906e51f731306ffe77832b4fce93" }], ["path", { "fill": "#fff", "d": "M12.07 8.57a.75.75 0 0 1 1.06 0l2.5 2.5a1.233 1.233 0 0 1 0 1.76l-2.5 2.5a.75.75 0 0 1-1.06-1.06l2.32-2.32-2.32-2.32a.75.75 0 0 1 0-1.06Z", "key": "c0238f02022ed2d49393c8f0b1f9b8f63d6d376a" }], ["path", { "fill": "#fff", "d": "M7.85 12a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "eb0818b4a32dcbb5592334412dab61368c7483be" }]]);
const ArrowSquareTop = createMeisterIcons("arrow-square-top", [["path", { "fill": "currentColor", "d": "M3.75 15c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.786-2.464-5.25-5.25-5.25H9C6.114 3.75 3.75 6.114 3.75 9v6ZM9 21.75c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.614 0 6.75 3.136 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9Z", "key": "6241f950c6b7ef59df9a984c02a8ea66df557ba6" }], ["path", { "fill": "currentColor", "d": "M12 16.15a.75.75 0 0 1-.75-.75V8.8a.75.75 0 0 1 1.5 0v6.6a.75.75 0 0 1-.75.75Z", "key": "953e715387b6b427e30f8947b0a5116730f738ca" }], ["path", { "fill": "currentColor", "d": "M8.47 11.93a.75.75 0 0 1 0-1.06l2.5-2.5a1.233 1.233 0 0 1 1.76 0l2.5 2.5a.75.75 0 1 1-1.06 1.06l-2.32-2.32-2.32 2.32a.75.75 0 0 1-1.06 0Z", "key": "1fd97e74db563dab31ea709fcba38b192ef52146" }]]);
const ArrowSquareTopB = createMeisterIcons("arrow-square-top-b", [["path", { "fill": "currentColor", "d": "M21 9v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "6d4965dcea7be3b85246a85cf82b3193a3299c79" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "9fccb578cf10e877a0dbc012441052d949d31bcb" }], ["path", { "fill": "currentColor", "d": "m9.1 11.3 2.5-2.5c.2-.2.5-.2.7 0l2.5 2.5", "key": "bcd156fae1d14b97090735d5026dde71399de2a0" }], ["path", { "fill": "#fff", "d": "m11.95 9.51 2.32 2.32a.75.75 0 0 0 1.06-1.06l-2.5-2.5a1.233 1.233 0 0 0-1.76 0l.53.53-.53-.53-2.5 2.5a.75.75 0 1 0 1.06 1.06l2.32-2.32Z", "key": "080e5dd9d42ffd72263128a1bcd923f3cf567535" }], ["path", { "fill": "#fff", "d": "M12 8.55a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "e1c7712d79e8bc57d1e8f8c51817e75c00b4a568" }]]);
const ArrowSquareTopleft = createMeisterIcons("arrow-square-topleft", [["path", { "fill": "currentColor", "d": "M20.25 9c0-2.886-2.364-5.25-5.25-5.25H9C6.114 3.75 3.75 6.114 3.75 9v6c0 2.786 2.464 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9ZM15 2.25c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.614 0-6.75-3.136-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6Z", "key": "707004caf6cad892f1ceda020c4d473e039147ce" }], ["path", { "fill": "currentColor", "d": "M15.138 14.7a.75.75 0 0 1-1.061 0L9.41 10.034a.75.75 0 0 1 1.06-1.061l4.667 4.667a.75.75 0 0 1 0 1.06Z", "key": "e4fb243bdc412e52430368c65aea18c8fbd972f6" }], ["path", { "fill": "currentColor", "d": "M9.657 14.213a.75.75 0 0 1-.75-.75V9.927c0-.697.548-1.245 1.245-1.245h3.536a.75.75 0 0 1 0 1.5h-3.28v3.28a.75.75 0 0 1-.75.75Z", "key": "6662888eb55b0cbe1e9b28eef97c9e1266df8598" }]]);
const ArrowSquareTopleftB = createMeisterIcons("arrow-square-topleft-b", [["path", { "fill": "currentColor", "d": "M21 9v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "fb3856e66bb0ed12a5751bb9e6e6bd3b14560491" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "0f9fc6c6b35215c4d062303d51698ad12fba541f" }], ["path", { "fill": "currentColor", "d": "M9.458 13.513V9.977c0-.283.212-.495.494-.495h3.536", "key": "610d897bad3f09be21fd0e4aad575382203d9752" }], ["path", { "fill": "#fff", "d": "M10.208 10.232h3.28a.75.75 0 0 0 0-1.5H9.952c-.697 0-1.245.548-1.245 1.245h.75-.75v3.536a.75.75 0 0 0 1.5 0v-3.28Z", "key": "19881cfb2bad8244023b47dca73eeb01ee151392" }], ["path", { "fill": "#fff", "d": "M9.564 9.518a.75.75 0 0 1 1.06 0l4.243 4.242a.75.75 0 0 1-1.06 1.061l-4.243-4.243a.75.75 0 0 1 0-1.06Z", "key": "2707d452b1cfb5b32db957ea5adad1da54bfe091" }]]);
const ArrowSquareTopright = createMeisterIcons("arrow-square-topright", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.786 0 5.25-2.464 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.614-3.136 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "e1d9e7f3c6a186bf6a28f142eded2885deae5a6f" }], ["path", { "fill": "currentColor", "d": "M9.15 14.838a.75.75 0 0 1 0-1.061l4.666-4.667a.75.75 0 0 1 1.061 1.06l-4.667 4.668a.75.75 0 0 1-1.06 0Z", "key": "7f981ef5db320bb2590dc6bd90135dc83e9917c3" }], ["path", { "fill": "currentColor", "d": "M9.637 9.357a.75.75 0 0 1 .75-.75h3.535c.698 0 1.245.548 1.245 1.245v3.536a.75.75 0 0 1-1.5 0v-3.28h-3.28a.75.75 0 0 1-.75-.75Z", "key": "0ee316d96d08460c3eaf2b08d84a7f4b8e6c51da" }]]);
const ArrowSquareToprightB = createMeisterIcons("arrow-square-topright-b", [["path", { "fill": "currentColor", "d": "M21 9v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "6be530d93dfe05565655745dcd15ebaa670b81c8" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "4c74ccb1bfe8e3d9762c45b418d582bdbf5ef8d8" }], ["path", { "fill": "currentColor", "d": "M10.412 9.482h3.536c.282 0 .495.212.495.495v3.536", "key": "f8b3436b71251176cf6efa143dc28a9b78aa6bbb" }], ["path", { "fill": "#fff", "d": "M13.693 10.232v3.28a.75.75 0 0 0 1.5 0V9.978c0-.697-.548-1.245-1.245-1.245v.75-.75h-3.536a.75.75 0 0 0 0 1.5h3.28Z", "key": "547bc32e62f80c861deda58e8c1cfe26719f83d8" }], ["path", { "fill": "#fff", "d": "M14.407 9.588a.75.75 0 0 1 0 1.061l-4.242 4.243a.75.75 0 0 1-1.061-1.06l4.243-4.244a.75.75 0 0 1 1.06 0Z", "key": "c634ab760ad0345b15c3cbef6c5d27f51a06bbea" }]]);
const ArrowTop = createMeisterIcons("arrow-top", [["path", { "fill": "currentColor", "d": "M12.1 6.263a.75.75 0 0 1 .75.75v10a.75.75 0 0 1-1.5 0v-10a.75.75 0 0 1 .75-.75Z", "key": "b8dd203f1494d19e3d13e2917ba8eb2a61a181c8" }], ["path", { "fill": "currentColor", "d": "m11.932 7.742-3.588 3.786a.75.75 0 1 1-1.088-1.031l3.607-3.808.007-.007a1.535 1.535 0 0 1 2.16 0l.007.007 3.7 3.8a.75.75 0 1 1-1.074 1.047l-3.694-3.794c-.002-.001-.007-.004-.019-.004a.033.033 0 0 0-.018.004Z", "key": "542b79f0f9b64250c90155f4f8da4dc485a15331" }]]);
const ArrowTopleft = createMeisterIcons("arrow-topleft", [["path", { "fill": "currentColor", "d": "M8.014 7.872a.75.75 0 0 1 1.06 0l7.071 7.071a.75.75 0 0 1-1.06 1.061L8.014 8.933a.75.75 0 0 1 0-1.06Z", "key": "086da9b452b34e4ebd3934a8d3bf8d1ffdc82c02" }], ["path", { "fill": "currentColor", "d": "m8.94 9.037.142 5.214a.75.75 0 0 1-1.5.04L7.44 9.05v-.01c0-.838.69-1.528 1.528-1.528h.01l5.304.071a.75.75 0 0 1-.02 1.5l-5.295-.07c-.002 0-.008.001-.016.01a.033.033 0 0 0-.01.015Z", "key": "befc701eee4a6b1dff88ec8cce84c66efb0bbdd8" }]]);
const ArrowTopright = createMeisterIcons("arrow-topright", [["path", { "fill": "currentColor", "d": "M16.128 8.014a.75.75 0 0 1 0 1.06l-7.071 7.071a.75.75 0 0 1-1.061-1.06l7.071-7.071a.75.75 0 0 1 1.06 0Z", "key": "71f646e81b0580c410c6d7a5450196c0eac29de4" }], ["path", { "fill": "currentColor", "d": "m14.963 8.94-5.214.142a.75.75 0 0 1-.04-1.5l5.242-.141h.01c.838 0 1.528.689 1.528 1.527v.01l-.07 5.304a.75.75 0 0 1-1.5-.02l.07-5.294c0-.003-.002-.009-.01-.017a.033.033 0 0 0-.016-.01Z", "key": "8f84bfdf3be25e5536e16503f7046ab1124b97d6" }]]);
const ArrowTv = createMeisterIcons("arrow-tv", [["path", { "fill": "currentColor", "d": "M2.25 8.2A4.762 4.762 0 0 1 7 3.45h10a4.762 4.762 0 0 1 4.75 4.75.75.75 0 0 1-1.5 0A3.262 3.262 0 0 0 17 4.95H7A3.262 3.262 0 0 0 3.75 8.2v6A3.262 3.262 0 0 0 7 17.45h5.7a.75.75 0 1 1 0 1.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Z", "key": "9ce7bc0b6beb833b6731501a284df190d9e2b95f" }], ["path", { "fill": "currentColor", "d": "M9.97 15.17a.75.75 0 0 1 1.06 0l2.1 2.1c.278.277.37.64.37.942 0 .31-.093.63-.276.904l-.041.062-2.153 2.152a.75.75 0 1 1-1.06-1.06l2.02-2.02-2.02-2.02a.75.75 0 0 1 0-1.06Z", "key": "172c3d268463de4e3a5a60c44f06eb7d87f9a547" }]]);
const ArrowTvDouble = createMeisterIcons("arrow-tv-double", [["path", { "fill": "currentColor", "d": "M2.25 8.2A4.762 4.762 0 0 1 7 3.45h10a4.762 4.762 0 0 1 4.75 4.75.75.75 0 0 1-1.5 0A3.262 3.262 0 0 0 17 4.95H7A3.262 3.262 0 0 0 3.75 8.2v6A3.262 3.262 0 0 0 7 17.45h5.7a.75.75 0 1 1 0 1.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Z", "key": "24c9e603e92f6a2c423c62f6a68d29bf918162bc" }], ["path", { "fill": "currentColor", "d": "M9.97 15.17a.75.75 0 0 1 1.06 0l2.1 2.1c.278.277.37.64.37.942 0 .31-.093.63-.276.904l-.041.062-2.153 2.152a.75.75 0 1 1-1.06-1.06l2.02-2.02-2.02-2.02a.75.75 0 0 1 0-1.06Z", "key": "f588f27269e4b2b6ef16a6051e9a55a1305bdc9d" }], ["path", { "fill": "currentColor", "d": "M13.77 15.17a.75.75 0 0 1 1.06 0l2.1 2.1c.278.277.37.64.37.942 0 .31-.093.63-.276.904l-.041.062-2.153 2.152a.75.75 0 1 1-1.06-1.06l2.02-2.02-2.02-2.02a.75.75 0 0 1 0-1.06Z", "key": "1ff86259ae4314c285ab247c92ed64bc5fae3cdf" }]]);
const ArrowTvTriple = createMeisterIcons("arrow-tv-triple", [["path", { "fill": "currentColor", "d": "M2.25 8.25A4.762 4.762 0 0 1 7 3.5h10a4.762 4.762 0 0 1 4.75 4.75.75.75 0 0 1-1.5 0A3.262 3.262 0 0 0 17 5H7a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 17.5h5.8a.75.75 0 0 1 0 1.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Z", "key": "83da0ba04159b434481fae6b201d332cabeb7e73" }], ["path", { "fill": "currentColor", "d": "M9.97 15.12a.75.75 0 0 1 1.06 0l2.1 2.1c.278.277.37.64.37.943 0 .31-.093.63-.276.903l-.041.062-2.153 2.152a.75.75 0 0 1-1.06-1.06l2.02-2.02-2.02-2.02a.75.75 0 0 1 0-1.06Zm3.8 0a.75.75 0 0 1 1.06 0l2.1 2.1c.278.277.37.64.37.943 0 .31-.093.63-.276.903l-.041.062-2.153 2.152a.75.75 0 0 1-1.06-1.06l2.02-2.02-2.02-2.02a.75.75 0 0 1 0-1.06Zm4 0a.75.75 0 0 1 1.06 0l2.1 2.1c.278.277.37.64.37.943 0 .31-.093.63-.276.903l-.041.062-2.153 2.152a.75.75 0 0 1-1.06-1.06l2.02-2.02-2.02-2.02a.75.75 0 0 1 0-1.06Z", "key": "6e6d0c5b3c2e714addf89501b3568b2c3aef8b20" }]]);
const ArrowUpwards = createMeisterIcons("arrow-upwards", [["path", { "fill": "currentColor", "d": "m19.829 8.183-4.226 5.713-.033.045-.04.04a1.82 1.82 0 0 1-2.38.169l-.065-.049-.053-.061-2.445-2.837a.293.293 0 0 0-.187-.057.137.137 0 0 0-.1.054l-.017.023-.019.021-6.4 7.3a.75.75 0 1 1-1.128-.989l6.384-7.281c.581-.745 1.657-.843 2.449-.21l.054.044.045.052 2.431 2.82a.32.32 0 0 0 .34-.034l4.59-6.203-3.193.156a.75.75 0 1 1-.072-1.498l4.1-.2h.036c.284 0 .588.085.842.281a.754.754 0 0 1 .386.488c.077.17.12.358.122.559l.2 4.085a.75.75 0 1 1-1.5.073l-.121-2.504Z", "key": "dd0bd5b2be01d574ad623866ea22a61ea0375101" }]]);
const Atom = createMeisterIcons("atom", [["path", { "fill": "currentColor", "d": "M11.95 10.95c.3 0 .5.1.7.3.2.2.3.5.3.7 0 .3-.1.5-.3.7-.4.4-1 .4-1.4 0-.2-.1-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.5-.3.7-.3Z", "key": "570331cd7755a871c9c1d3e2e7ddcbe1a681fbb9" }], ["path", { "fill": "currentColor", "d": "M9.099 5.159c-.892-.966-2.4-.998-3.419.021l-.51.51-.011.011c-.966.892-.998 2.4.021 3.419l9.711 9.71.01.011c.892.966 2.4.998 3.419-.021l.488-.49c.937-1.024.905-2.557.012-3.45L9.11 5.17l-.011-.011Zm1.091-1.03c-1.509-1.622-3.993-1.586-5.57-.01l-.49.49c-1.622 1.51-1.587 3.994-.01 5.571l9.69 9.69c1.509 1.622 3.993 1.587 5.57.01l.511-.51.01-.011c1.454-1.576 1.483-4.035-.02-5.54l-9.69-9.69Z", "key": "486386879ddd0aaa962a3ebd367ef1fbaa919f32" }], ["path", { "fill": "currentColor", "d": "M18.299 5.159c-.892-.966-2.4-.998-3.419.021l-9.71 9.71-.011.011c-.966.892-.998 2.4.021 3.419l.5.5c.893.893 2.426.925 3.451-.012l9.7-9.699.01-.01c.966-.892.998-2.4-.021-3.419l-.51-.51-.011-.011Zm1.091-1.03c-1.509-1.622-3.993-1.586-5.57-.01l-9.69 9.69c-1.622 1.51-1.587 3.994-.01 5.571l.5.5c1.504 1.504 3.964 1.475 5.539.021l.01-.01 9.701-9.7c1.623-1.51 1.587-3.994.01-5.571l-.49-.49Z", "key": "21e4eee25c34dbbad28bb4ae3bb3f700dcbf3114" }]]);
const Award = createMeisterIcons("award", [["path", { "fill": "currentColor", "d": "M5.334 10.396c0-3.715 3.036-6.75 6.75-6.75s6.75 3.035 6.75 6.75c0 1.365-.454 2.605-1.121 3.609-.786 1.231-2.021 2.247-3.5 2.705a6.57 6.57 0 0 1-2.129.335c-.867 0-1.674-.108-2.495-.46a.75.75 0 0 1 .59-1.379c.58.248 1.172.34 1.905.34.622 0 1.142-.088 1.663-.262l.008-.003.009-.002c1.115-.343 2.075-1.123 2.688-2.086l.004-.007.004-.006c.53-.796.874-1.753.874-2.784 0-2.886-2.364-5.25-5.25-5.25s-5.25 2.364-5.25 5.25c0 .957.26 1.833.706 2.635a.75.75 0 1 1-1.311.729c-.555-.998-.895-2.122-.895-3.364Z", "key": "396245932197ac8f90621527b416ad617d7b8be4" }], ["path", { "fill": "currentColor", "d": "m7.29 12.23.465.93c.398.796 1.333 1.591 2.418 2.043l1.034.431-.717.717c-.012.036-.034.1-.064.164-.036.08-.1.2-.211.31l-3.2 3.2c-.346.347-.785.277-.997.192a.973.973 0 0 1-.35-.24.857.857 0 0 1-.234-.581v-1.55h-1.55c-.329 0-.73-.171-.896-.584a.87.87 0 0 1 .022-.7.921.921 0 0 1 .303-.356L7.29 12.23Zm1.461 3.938-1.817 1.817v-1.64h-1.64l1.671-1.67a6.586 6.586 0 0 0 1.786 1.493Zm-2.797 2.797Zm10.7-5.9a.75.75 0 0 1 1.06 0l3.1 3.1c.346.346.276.785.192.997a.973.973 0 0 1-.24.35.857.857 0 0 1-.582.233h-1.65v1.65c0 .33-.17.732-.584.897a.87.87 0 0 1-.7-.023.922.922 0 0 1-.355-.303l-3.141-3.14-.2-.2a.75.75 0 0 1 1.06-1.06l2.42 2.419v-1.74h1.74l-2.12-2.12a.75.75 0 0 1 0-1.06Zm-4.47-4.919a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "7c282a1ea380c59033a4a109f5d6067b03a612c1" }]]);
const AwardB = createMeisterIcons("award-b", [["path", { "fill": "currentColor", "d": "M5.334 10.43c0-3.715 3.036-6.75 6.75-6.75s6.75 3.035 6.75 6.75c0 1.366-.454 2.606-1.122 3.61-.785 1.23-2.02 2.247-3.499 2.704a6.571 6.571 0 0 1-2.129.336c-.867 0-1.674-.11-2.495-.461a.75.75 0 1 1 .59-1.379c.58.249 1.172.34 1.905.34.622 0 1.142-.088 1.663-.262l.008-.003.008-.002c1.116-.343 2.076-1.123 2.688-2.086l.005-.007.004-.006c.53-.796.874-1.753.874-2.784 0-2.886-2.364-5.25-5.25-5.25s-5.25 2.364-5.25 5.25c0 .957.26 1.833.706 2.636a.75.75 0 1 1-1.312.728c-.554-.998-.894-2.122-.894-3.364Z", "key": "18c092948980b79638f4f168e21cd59dd5287b2f" }], ["path", { "fill": "currentColor", "d": "M9.884 15.93c-.1.1-.1.3-.2.4l-3.2 3.2c-.1.1-.3 0-.3-.1v-2.3h-2.3c-.2 0-.3-.2-.1-.3l3.2-3.2.1-.1c.5 1 1.6 1.9 2.8 2.4Z", "key": "701ed47e08c5dbc54b1044c9fc56bd19d9a8a7f6" }], ["path", { "fill": "currentColor", "d": "m7.29 12.264.465.93c.398.796 1.333 1.591 2.418 2.043l1.033.431-.716.717c-.013.037-.034.1-.064.164-.036.08-.1.2-.212.311l-3.2 3.2c-.345.346-.784.276-.996.191a.972.972 0 0 1-.35-.239.857.857 0 0 1-.234-.582v-1.55h-1.55c-.329 0-.731-.171-.896-.584a.87.87 0 0 1 .022-.7.922.922 0 0 1 .303-.356l3.14-3.14.837-.836Zm-.325 2.445-1.67 1.67h1.64v1.64l1.816-1.817a6.586 6.586 0 0 1-1.786-1.493Zm10.219-1.079 3.1 3.1c.1.1 0 .3-.1.3h-2.3v2.3c0 .2-.2.3-.3.1l-3.2-3.2c-.1-.1-.1-.2-.2-.2", "key": "3a29c2d145e99ddb3ab053a056bf5da00a55ee5c" }], ["path", { "fill": "currentColor", "d": "M16.654 13.1a.75.75 0 0 1 1.06 0l3.1 3.1c.346.345.276.784.192.996a.973.973 0 0 1-.24.35.857.857 0 0 1-.582.234h-1.55v1.55c0 .329-.17.731-.584.896a.87.87 0 0 1-.7-.022.921.921 0 0 1-.356-.303l-3.14-3.14a1.177 1.177 0 0 1-.104-.12.749.749 0 0 1 .434-1.361.849.849 0 0 1 .724.396l.033.05 2.193 2.193v-1.64h1.64l-2.12-2.119a.75.75 0 0 1 0-1.06Zm-4.47.33a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "80b7076a719ff90fa98f6ed8693e48ecf14dc568" }], ["path", { "fill": "currentColor", "d": "M12.184 8.18a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "36aadc85c10fa787da22567e960e59d4600440a9" }]]);
const AwardMinimal = createMeisterIcons("award-minimal", [["path", { "fill": "currentColor", "d": "M5.334 10.396c0-3.715 3.036-6.75 6.75-6.75s6.75 3.035 6.75 6.75c0 1.365-.454 2.605-1.121 3.609-.786 1.231-2.021 2.247-3.5 2.705a6.57 6.57 0 0 1-2.129.335c-.867 0-1.674-.108-2.495-.46a.75.75 0 0 1 .59-1.379c.58.248 1.172.34 1.905.34.622 0 1.142-.088 1.663-.262l.008-.003.009-.002c1.115-.343 2.075-1.123 2.688-2.086l.004-.007.004-.006c.53-.796.874-1.753.874-2.784 0-2.886-2.364-5.25-5.25-5.25s-5.25 2.364-5.25 5.25c0 .957.26 1.833.706 2.635a.75.75 0 1 1-1.311.729c-.555-.998-.895-2.122-.895-3.364Z", "key": "fec3ab74681169a1e06e7c5d9af67b27c689b8e9" }], ["path", { "fill": "currentColor", "d": "m7.29 12.23.465.93c.398.796 1.333 1.591 2.418 2.043l1.034.431-.717.717c-.012.036-.034.1-.064.164-.036.08-.1.2-.211.31l-3.2 3.2c-.346.347-.785.277-.997.192a.973.973 0 0 1-.35-.24.857.857 0 0 1-.234-.581v-1.55h-1.55c-.329 0-.73-.171-.896-.584a.87.87 0 0 1 .022-.7.921.921 0 0 1 .303-.356L7.29 12.23Zm1.461 3.938-1.817 1.817v-1.64h-1.64l1.671-1.67a6.586 6.586 0 0 0 1.786 1.493Zm-2.797 2.797Zm10.7-5.9a.75.75 0 0 1 1.06 0l3.1 3.1c.346.346.276.785.192.997a.973.973 0 0 1-.24.35.857.857 0 0 1-.582.233h-1.65v1.65c0 .33-.17.732-.584.897a.87.87 0 0 1-.7-.023.922.922 0 0 1-.355-.303l-3.141-3.14-.2-.2a.75.75 0 0 1 1.06-1.06l2.42 2.419v-1.74h1.74l-2.12-2.12a.75.75 0 0 1 0-1.06Z", "key": "ad683448bd2bd0aa0b7ee37171741cb3439f5a2e" }]]);
const AwardMinimalB = createMeisterIcons("award-minimal-b", [["path", { "fill": "currentColor", "d": "M10.034 15.93c.7.3 1.4.4 2.2.4.7 0 1.3-.1 1.9-.3 1.3-.4 2.4-1.3 3.1-2.4.6-.9 1-2 1-3.2 0-3.3-2.7-6-6-6s-6 2.7-6 6c0 1.1.3 2.1.8 3", "key": "f9119f949a45ebb368e81b808422636e7429c918" }], ["path", { "fill": "currentColor", "d": "M5.484 10.43c0-3.715 3.036-6.75 6.75-6.75s6.75 3.035 6.75 6.75c0 1.366-.454 2.606-1.121 3.61-.786 1.23-2.021 2.247-3.5 2.704a6.571 6.571 0 0 1-2.129.336c-.867 0-1.674-.11-2.495-.461a.75.75 0 1 1 .59-1.379c.58.249 1.172.34 1.905.34.622 0 1.142-.088 1.663-.262l.008-.003.009-.002c1.114-.343 2.075-1.123 2.687-2.086l.005-.007.004-.006c.53-.796.874-1.753.874-2.784 0-2.886-2.364-5.25-5.25-5.25s-5.25 2.364-5.25 5.25c0 .957.26 1.833.706 2.636a.75.75 0 1 1-1.311.728c-.555-.998-.895-2.122-.895-3.364Z", "key": "8f4321ea9e4549871428378e2d121dc07474f1b0" }], ["path", { "fill": "currentColor", "d": "m7.165 12.238.502.789c.625.982 1.504 1.767 2.636 2.203l1.077.414-.74.74c-.013.037-.035.101-.064.165-.036.08-.1.2-.212.311l-3.2 3.2c-.345.346-.784.276-.996.191a.973.973 0 0 1-.35-.24.857.857 0 0 1-.234-.581v-1.55h-1.75c-.329 0-.731-.171-.896-.584a.87.87 0 0 1 .022-.7.92.92 0 0 1 .297-.352L6.404 13l.76-.76ZM6.95 14.59l-1.736 1.79h1.87v1.64l1.801-1.802a6.876 6.876 0 0 1-1.935-1.627Zm9.754-1.49a.75.75 0 0 1 1.06 0l3.1 3.1c.346.345.276.784.191.996a.973.973 0 0 1-.239.35.857.857 0 0 1-.582.234h-1.65v1.55c0 .329-.17.73-.584.896a.87.87 0 0 1-.7-.022.92.92 0 0 1-.355-.303l-3.141-3.141a1.19 1.19 0 0 1-.104-.119.75.75 0 0 1 .434-1.361.848.848 0 0 1 .724.396l.033.05 2.193 2.193v-1.64h1.74l-2.12-2.119a.75.75 0 0 1 0-1.06Z", "key": "d7d0dab40fcf5d65fb90cf7e70c6da270bf7c06a" }]]);
const BabyCarriage = createMeisterIcons("baby-carriage", [["path", { "fill": "currentColor", "d": "M10.179 18.494a.75.75 0 0 1 .927-.515c.647.184 1.177.27 1.794.27.335 0 .601-.007.763-.06a.75.75 0 1 1 .474 1.422c-.418.14-.923.14-1.199.139H12.9c-.783 0-1.453-.114-2.206-.329a.75.75 0 0 1-.515-.927ZM12.15 3a.75.75 0 0 1 .75-.75c4.814 0 8.75 3.936 8.75 8.75 0 2.954-1.528 5.686-3.834 7.224a.75.75 0 1 1-.832-1.248c1.894-1.263 3.166-3.53 3.166-5.976 0-3.986-3.264-7.25-7.25-7.25a.75.75 0 0 1-.75-.75ZM5 10.25a.75.75 0 0 1 .75.75c0 2.26 1.087 4.355 2.73 5.724a.75.75 0 0 1-.96 1.152C5.563 16.246 4.25 13.74 4.25 11a.75.75 0 0 1 .75-.75Z", "key": "e82143a2a7d33fb51c117a8f3af2ed7f1c702e94" }], ["path", { "fill": "currentColor", "d": "M2.25 8A.75.75 0 0 1 3 7.25c1.498 0 2.179 1.165 2.462 2.013.118.354.186.702.227.987H21a.75.75 0 0 1 0 1.5H4.25v-.767l-.003-.076a4.709 4.709 0 0 0-.209-1.17C3.821 9.085 3.502 8.75 3 8.75A.75.75 0 0 1 2.25 8Zm2 3H5h-.75Z", "key": "fc38dcff3068ec9adaaf7a1e89cd8ba094de5ddc" }], ["path", { "fill": "currentColor", "d": "M13 2.25a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Zm-4 15.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM6.25 19a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM16 17.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM13.25 19a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "916735f0ee3bbedbe69b06e4240484cc3e92e0ba" }]]);
const BabyCarriageB = createMeisterIcons("baby-carriage-b", [["path", { "fill": "currentColor", "d": "M10.229 18.544a.75.75 0 0 1 .927-.515c.647.185 1.177.27 1.794.27.335 0 .602-.007.763-.06a.75.75 0 0 1 .474 1.422c-.418.14-.923.14-1.199.139h-.038c-.783 0-1.453-.114-2.206-.329a.75.75 0 0 1-.515-.927ZM21.05 11.05h-8v-8c4.4 0 8 3.5 8 8Z", "key": "a1f8968cb6af38082e40ba39b73a380f5602e986" }], ["path", { "fill": "currentColor", "d": "M12.3 2.3h.75c4.808 0 8.75 3.83 8.75 8.75v.75h-9.5V2.3Zm1.5 1.538V10.3h6.463A7.199 7.199 0 0 0 13.8 3.838Z", "key": "8f0bb6f32590e017ef27d0e0ff90de48754b41c8" }], ["path", { "fill": "currentColor", "d": "M20.95 10.3a.75.75 0 0 1 .75.75c0 2.954-1.528 5.687-3.834 7.224a.75.75 0 0 1-.832-1.248c1.894-1.262 3.166-3.53 3.166-5.976a.75.75 0 0 1 .75-.75Zm-15.9 0a.75.75 0 0 1 .75.75c0 2.26 1.087 4.355 2.73 5.724a.75.75 0 1 1-.96 1.152C5.613 16.296 4.3 13.79 4.3 11.05a.75.75 0 0 1 .75-.75Z", "key": "01cde597979da30133da6d4db6d4d7d711864777" }], ["path", { "fill": "currentColor", "d": "M2.3 8.05a.75.75 0 0 1 .75-.75c1.498 0 2.179 1.165 2.462 2.013.118.354.187.702.227.987h7.311a.75.75 0 1 1 0 1.5H4.3v-.767l-.003-.076a4.709 4.709 0 0 0-.208-1.17C3.87 9.135 3.552 8.8 3.05 8.8a.75.75 0 0 1-.75-.75Zm2.75 3H4.3h.75Zm6 8c0 1.1-.9 2-2 2s-2-.9-2-2c0-.7.4-1.4 1-1.7.3-.2.6-.3 1-.3 1 0 1.8.8 2 1.7-.1.1 0 .2 0 .3Z", "key": "485ce764f287b2d63a9ac5416fe6f0309a7be13b" }], ["path", { "fill": "currentColor", "d": "M9.05 17.8a.944.944 0 0 0-.584.174L8.427 18l-.042.02c-.32.16-.585.584-.585 1.03 0 .686.564 1.25 1.25 1.25.66 0 1.207-.522 1.248-1.172a.931.931 0 0 1-.034-.4c-.195-.534-.69-.928-1.214-.928Zm-1.378-1.099A2.432 2.432 0 0 1 9.05 16.3c1.417 0 2.471 1.112 2.732 2.287l.09.402-.072.072A2.756 2.756 0 0 1 9.05 21.8a2.756 2.756 0 0 1-2.75-2.75c0-.938.517-1.899 1.372-2.349ZM18.05 19.05c0 1.1-.9 2-2 2s-2-.9-2-2v-.1c0-1.1.9-1.9 2-1.9.6 0 1.1.3 1.5.6.3.3.5.8.5 1.4Z", "key": "87a59eebd5511139e65a40c4ce1e48555e53e1e1" }], ["path", { "fill": "currentColor", "d": "M16.05 17.8c-.737 0-1.25.514-1.25 1.15v.1c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25c0-.413-.128-.694-.25-.837-.349-.255-.669-.413-1-.413Zm-2.75 1.15c0-1.564 1.287-2.65 2.75-2.65.853 0 1.518.426 1.95.75l.043.032.037.038c.47.47.72 1.176.72 1.93a2.756 2.756 0 0 1-2.75 2.75 2.756 2.756 0 0 1-2.75-2.75v-.1Z", "key": "5c5fbb8a556043226a9860cb069a0df0acf34038" }]]);
const Badge = createMeisterIcons("badge", [["path", { "fill": "currentColor", "d": "M12.3 2.906c-3.527 0-6.55 2.804-6.55 6.25a6.207 6.207 0 0 0 6.25 6.25 6.207 6.207 0 0 0 6.25-6.25c0-3.437-2.514-6.25-5.95-6.25Zm-8.05 6.25c0-4.355 3.777-7.75 8.05-7.75 4.363 0 7.45 3.586 7.45 7.75a7.707 7.707 0 0 1-7.75 7.75 7.707 7.707 0 0 1-7.75-7.75Z", "key": "8016062fb1e348bd91536b57cdb3a6f9a3e2fc91" }], ["path", { "fill": "currentColor", "d": "M9.05 20.645v-5.59h-1.5v6.3c0 1.135 1.355 1.556 2.08.83l2.2-2.2c.107-.106.333-.106.44 0l2.17 2.17a1.144 1.144 0 0 0 1.387.33 1.25 1.25 0 0 0 .723-1.13v-6.3h-1.5v5.59l-1.72-1.72a1.836 1.836 0 0 0-2.56 0l-1.72 1.72Z", "key": "cc648bd6c04852f734adbf5fe37b07c623e926f3" }]]);
const BadgeB = createMeisterIcons("badge-b", [["path", { "fill": "currentColor", "d": "M19 9.156c0 3.9-3.1 7-7 7s-7-3.1-7-7 3.4-7 7.3-7 6.7 3.2 6.7 7Z", "key": "e43fd9a03fe81634f9a84dff7a7a4fcf775b2c89" }], ["path", { "fill": "currentColor", "d": "M12.3 2.906c-3.527 0-6.55 2.804-6.55 6.25a6.207 6.207 0 0 0 6.25 6.25 6.207 6.207 0 0 0 6.25-6.25c0-3.437-2.514-6.25-5.95-6.25Zm-8.05 6.25c0-4.355 3.777-7.75 8.05-7.75 4.363 0 7.45 3.586 7.45 7.75a7.707 7.707 0 0 1-7.75 7.75 7.707 7.707 0 0 1-7.75-7.75Z", "key": "37c27339ec2c7659afc7212f997e2a677c9a8b5b" }], ["path", { "fill": "currentColor", "d": "M9.05 20.645v-5.59h-1.5v6.3c0 1.135 1.355 1.556 2.08.83l2.2-2.2c.107-.106.333-.106.44 0l2.17 2.17a1.144 1.144 0 0 0 1.387.33 1.25 1.25 0 0 0 .723-1.13v-6.3h-1.5v5.59l-1.72-1.72a1.836 1.836 0 0 0-2.56 0l-1.72 1.72Z", "key": "13c7bbc343216c8278f31fa5439559dcbf2a6257" }]]);
const BadgeVarB = createMeisterIcons("badge-var-b", [["path", { "fill": "currentColor", "d": "M12.34 2.89C8.817 2.894 5.8 5.696 5.8 9.14c0 2.248 1.073 4.106 2.75 5.165l.003.002a6.292 6.292 0 0 0 3.397.982 6.292 6.292 0 0 0 3.397-.982l.003-.002c1.69-1.068 2.85-3.033 2.85-5.166 0-3.422-2.502-6.156-5.86-6.25ZM4.3 9.14c0-4.355 3.777-7.75 8.05-7.75h.02c4.238.111 7.33 3.575 7.33 7.75 0 2.666-1.44 5.1-3.549 6.433a7.792 7.792 0 0 1-4.201 1.216 7.791 7.791 0 0 1-4.201-1.216C5.627 14.233 4.3 11.89 4.3 9.139Z", "key": "610e657f2cf45db5b2f8908a5f278212ee63359d" }], ["path", { "fill": "currentColor", "d": "M15.75 15.04v6.3c0 .4-.5.7-.8.4l-2.2-2.3c-.5-.5-1.1-.5-1.5 0l-2.2 2.2c-.3.3-.8.1-.8-.3v-6.2c1.1.7 2.4 1.1 3.8 1.1 1.3-.1 2.7-.5 3.7-1.2Z", "key": "2c395efbcdcd6d369f1d1647ef822f67e47be4cd" }], ["path", { "fill": "currentColor", "d": "M16.5 13.599v7.74c0 .517-.314.925-.682 1.123-.388.209-.965.241-1.398-.192l-.006-.006-2.2-2.3c-.144-.142-.236-.15-.252-.15a.068.068 0 0 0-.033.01.308.308 0 0 0-.093.084l-.026.032-2.23 2.23c-.725.725-2.08.304-2.08-.83v-7.567l1.153.734a6.29 6.29 0 0 0 3.368.982c1.202-.096 2.447-.468 3.299-1.064l1.18-.826Zm-1.5 2.7a9.36 9.36 0 0 1-2.892.688l-.03.002h-.028A7.823 7.823 0 0 1 9 16.377v4.252l1.694-1.694c.318-.38.76-.62 1.268-.62.51 0 .966.241 1.318.594l.006.006L15 20.707V16.3Z", "key": "003f0be40952ae22ca5855b4f1305aaea5c4e04e" }]]);
const Bag = createMeisterIcons("bag", [["path", { "fill": "currentColor", "d": "M8.75 7A3.262 3.262 0 0 1 12 3.75c.872 0 1.688.399 2.27.98.581.582.98 1.398.98 2.27v.25h-6.5V7Zm-1.5.31V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v.31c2.26.361 4 2.33 4 4.69v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.13 0-3.75-1.752-3.75-3.75v-6c0-2.36 1.74-4.329 4-4.69ZM4.75 12A3.262 3.262 0 0 1 8 8.75h8A3.262 3.262 0 0 1 19.25 12v6c0 1.286-.964 2.25-2.25 2.25H7A2.259 2.259 0 0 1 4.75 18v-6Z", "key": "93d6ec8e524410e7a142992637fa835ca3350253" }]]);
const BagAdd = createMeisterIcons("bag-add", [["path", { "fill": "currentColor", "d": "M8.75 7A3.262 3.262 0 0 1 12 3.75c.872 0 1.688.399 2.27.98.581.582.98 1.398.98 2.27v.25h-6.5V7Zm-1.5.31V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v.31c2.26.361 4 2.33 4 4.69v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.13 0-3.75-1.752-3.75-3.75v-6c0-2.36 1.74-4.329 4-4.69ZM4.75 12A3.262 3.262 0 0 1 8 8.75h8A3.262 3.262 0 0 1 19.25 12v6c0 1.286-.964 2.25-2.25 2.25H7A2.259 2.259 0 0 1 4.75 18v-6Zm7.25-.75a.75.75 0 0 1 .75.75v1.75h1.75a.75.75 0 0 1 0 1.5h-1.75V17a.75.75 0 0 1-1.5 0v-1.75H9.5a.75.75 0 0 1 0-1.5h1.75V12a.75.75 0 0 1 .75-.75Z", "key": "c56227a6ab5ea3b3bfffd465756f05a46c042406" }]]);
const BagAddB = createMeisterIcons("bag-add-b", [["path", { "fill": "currentColor", "d": "M4 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3Z", "key": "a93ca2b1581563fa84a0585c5139be5878902248" }], ["path", { "fill": "currentColor", "d": "M8 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.7H8Zm-4.75 3.25A4.762 4.762 0 0 1 8 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "debd36f9a9ef6f5368a2c26c534306e5b86030a7" }], ["path", { "fill": "currentColor", "d": "M12 3.8a3.262 3.262 0 0 0-3.25 3.25v1h-1.5v-1A4.762 4.762 0 0 1 12 2.3c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "5cd37417db9ecb31f5edf638188f7e34b6c06e7c" }], ["path", { "fill": "#fff", "d": "M12 11.3a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-1.5 0v-5a.75.75 0 0 1 .75-.75Z", "key": "b9a5a627387027f67e5ac0e787d755581c7c877b" }], ["path", { "fill": "#fff", "d": "M8.75 14.55a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Z", "key": "5b6f1dd5846caeab12734d3b5281623a7e9268f5" }]]);
const BagAlt = createMeisterIcons("bag-alt", [["path", { "fill": "currentColor", "d": "M12 3.75A3.262 3.262 0 0 0 8.75 7v.25h6.5V7c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98ZM7.25 7v.31c-2.26.361-4 2.33-4 4.69v6c0 1.998 1.62 3.75 3.75 3.75h10c2.114 0 3.75-1.636 3.75-3.75v-6c0-2.36-1.74-4.329-4-4.69V7c0-1.328-.601-2.512-1.42-3.33-.818-.819-2.002-1.42-3.33-1.42A4.762 4.762 0 0 0 7.25 7ZM8 8.75A3.262 3.262 0 0 0 4.75 12v6c0 1.202.98 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.75H8Zm0 7.5a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5H8Z", "key": "34be9d0ab4339d1693e6855de4137930f3f20378" }]]);
const BagAltB = createMeisterIcons("bag-alt-b", [["path", { "fill": "currentColor", "d": "M4 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3Z", "key": "c9856c48f50d351661a8023b27e5efdb3fb35957" }], ["path", { "fill": "currentColor", "d": "M8 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.7H8Zm-4.75 3.25A4.762 4.762 0 0 1 8 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "3fc49e8fb5b3470478478b3aa31fb89d344dafad" }], ["path", { "fill": "currentColor", "d": "M12 3.8a3.262 3.262 0 0 0-3.25 3.25v1h-1.5v-1A4.762 4.762 0 0 1 12 2.3c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "f9e7474db6c191ec77ff625ba1c1e2a638d654ed" }], ["path", { "fill": "#fff", "d": "M7.25 17.05A.75.75 0 0 1 8 16.3h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75Z", "key": "9d4007c0eec01f1fb9ddfde0ebf7b61ba7030cd7" }]]);
const BagB = createMeisterIcons("bag-b", [["path", { "fill": "currentColor", "d": "M4 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3Z", "key": "8bd3ecf781e5e8c27b3d617f4dea26fd436750a0" }], ["path", { "fill": "currentColor", "d": "M8 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.7H8Zm-4.75 3.25A4.762 4.762 0 0 1 8 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "974ef3e00edd9d28acab64696062c91fcf0da1d8" }], ["path", { "fill": "currentColor", "d": "M12 3.8a3.262 3.262 0 0 0-3.25 3.25v1h-1.5v-1A4.762 4.762 0 0 1 12 2.3c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "6e4791a69b604d6e191477e760044ca7cbfc97d8" }]]);
const BagBlock = createMeisterIcons("bag-block", [["path", { "fill": "currentColor", "d": "M8.75 7A3.262 3.262 0 0 1 12 3.75c.872 0 1.688.399 2.27.98.581.582.98 1.398.98 2.27v.25h-6.5V7Zm-1.5.31V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v.31c2.26.361 4 2.33 4 4.69v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.13 0-3.75-1.752-3.75-3.75v-6c0-2.36 1.74-4.329 4-4.69ZM8 8.75A3.262 3.262 0 0 0 4.75 12v6c0 1.202.98 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.75H8Zm5.107 3.194c-.937-.48-2.072-.318-2.877.486-.818.819-.971 1.979-.46 2.925l3.337-3.41Zm-2.292 4.489c.906.5 2.125.366 2.955-.464.837-.837.978-2.032.424-2.99l-3.379 3.454Zm4.015-5.063c-1.592-1.593-4.067-1.593-5.66 0-1.59 1.589-1.593 4.056-.01 5.65 1.509 1.622 4.093 1.587 5.67.01 1.593-1.593 1.593-4.068 0-5.66Z", "key": "8a3b87a75a05167816eb6f0b88f4ce816623d225" }]]);
const BagBlockB = createMeisterIcons("bag-block-b", [["path", { "fill": "currentColor", "d": "M4.05 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3h-10c-1.7 0-3-1.3-3-3Z", "key": "2c6e5faf1de7713561c657cb4c68562d2f942b90" }], ["path", { "fill": "currentColor", "d": "M8.05 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6a3.262 3.262 0 0 0-3.25-3.25h-8ZM3.3 11.95A4.762 4.762 0 0 1 8.05 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75h-10c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "5ec97c54bd847fce558be5b04705684b22dac28c" }], ["path", { "fill": "currentColor", "d": "M12.05 3.8A3.262 3.262 0 0 0 8.8 7.05v1H7.3v-1a4.762 4.762 0 0 1 4.75-4.75c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "190e5e9410ade9f2d9a16c7b9b3b12b7fa343e09" }], ["path", { "fill": "#fff", "d": "M13.82 12.48c-1.007-1.007-2.532-1.007-3.54 0-1.007 1.008-1.007 2.533 0 3.54l.011.01.01.011c.892.966 2.5.998 3.519-.021 1.007-1.007 1.007-2.532 0-3.54Zm-4.6-1.06c1.593-1.593 4.068-1.593 5.66 0 1.593 1.593 1.593 4.068 0 5.66-1.577 1.578-4.16 1.613-5.67-.01-1.583-1.593-1.58-4.06.01-5.65Z", "key": "075d437f0ae1d11089183f76d53892d2eb9ee092" }], ["path", { "fill": "#fff", "d": "m9.214 16.026 4.5-4.6 1.072 1.049-4.5 4.6-1.072-1.05Z", "key": "b7ac0d4bf61942ac83e06e1afa7488aebfafdd33" }]]);
const BagCheck = createMeisterIcons("bag-check", [["path", { "fill": "currentColor", "d": "M12 3.75A3.262 3.262 0 0 0 8.75 7v.25h6.5V7c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98ZM7.25 7v.31c-2.26.361-4 2.33-4 4.69v6c0 1.998 1.62 3.75 3.75 3.75h10c2.114 0 3.75-1.636 3.75-3.75v-6c0-2.36-1.74-4.329-4-4.69V7c0-1.328-.601-2.512-1.42-3.33-.818-.819-2.002-1.42-3.33-1.42A4.762 4.762 0 0 0 7.25 7ZM8 8.75A3.262 3.262 0 0 0 4.75 12v6c0 1.202.98 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.75H8Zm7.524 4.787a.75.75 0 1 0-1.048-1.074l-3.72 3.63L9.6 14.55a.75.75 0 1 0-1.2.9l1.532 2.043.038.037c.222.223.506.295.73.295.222 0 .504-.071.726-.29l4.098-3.998Z", "key": "f344333bebfbde8375ca3143cba373680bac6475" }]]);
const BagCheckB = createMeisterIcons("bag-check-b", [["path", { "fill": "currentColor", "d": "M4 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3Z", "key": "5ff41bc3c2df8a0b0b25b92e168b58a01b52891c" }], ["path", { "fill": "currentColor", "d": "M8 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.7H8Zm-4.75 3.25A4.762 4.762 0 0 1 8 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "48996775c44b5dd39d68eb646056a89bc1e773f9" }], ["path", { "fill": "currentColor", "d": "M12 3.8a3.262 3.262 0 0 0-3.25 3.25v1h-1.5v-1A4.762 4.762 0 0 1 12 2.3c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "08853376a3e6a754a04079fbeb0de3617b67b167" }], ["path", { "fill": "#fff", "d": "M15.537 12.526a.75.75 0 0 1-.013 1.06l-4.098 3.999c-.222.219-.504.29-.726.29a1.03 1.03 0 0 1-.73-.295l-.038-.037L8.4 15.5a.75.75 0 0 1 1.2-.9l1.157 1.542 3.72-3.629a.75.75 0 0 1 1.06.013Z", "key": "32097e792064d89f4b7bd9ecb884689e13401476" }]]);
const BagCircle = createMeisterIcons("bag-circle", [["path", { "fill": "currentColor", "d": "M8.75 7A3.262 3.262 0 0 1 12 3.75c.872 0 1.688.399 2.27.98.581.582.98 1.398.98 2.27v.25h-6.5V7Zm-1.5.31V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v.31c2.26.361 4 2.33 4 4.69v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.13 0-3.75-1.752-3.75-3.75v-6c0-2.36 1.74-4.329 4-4.69ZM4.75 12A3.262 3.262 0 0 1 8 8.75h8A3.262 3.262 0 0 1 19.25 12v6c0 1.286-.964 2.25-2.25 2.25H7A2.259 2.259 0 0 1 4.75 18v-6Z", "key": "77a7cde2e7884b070b39846ca2a93bdffbdd3a0b" }], ["path", { "stroke": "#000", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M12 16a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "aadbea29bb15aa465db9c1a465e94873223485c2" }]]);
const BagCircle1 = createMeisterIcons("bag-circle1", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 2.033.752 3.916 2 5.368V13.9a3.652 3.652 0 0 1 3.65-3.65h5.1a3.652 3.652 0 0 1 3.65 3.65v3.622A8.228 8.228 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75Zm0 16.5a8.176 8.176 0 0 1-4.75-1.514V13.9c0-1.186.964-2.15 2.15-2.15h5.1c1.186 0 2.15.964 2.15 2.15v4.932A8.247 8.247 0 0 1 12 20.25ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Zm8.203 1.993a.75.75 0 0 0-1.106 1.014c1.41 1.537 3.804 1.503 5.283.023a.75.75 0 1 0-1.06-1.06c-.921.92-2.327.885-3.117.023Z", "key": "c93d65671b1024371541a9d4f22dd28ca4f3b776" }]]);
const BagCircleAdd = createMeisterIcons("bag-circle-add", [["path", { "fill": "currentColor", "d": "M12.05 1.787a.75.75 0 0 1 .75.75v1.75h1.75a.75.75 0 1 1 0 1.5H12.8v1.75a.75.75 0 1 1-1.5 0v-1.75H9.55a.75.75 0 0 1 0-1.5h1.75v-1.75a.75.75 0 0 1 .75-.75Zm-5.87 3.82a.75.75 0 0 1 0 1.06C3.106 9.744 2.98 14.674 5.8 17.9v-3.462a3.652 3.652 0 0 1 3.65-3.65h5.1a3.652 3.652 0 0 1 3.65 3.65V17.9c2.822-3.228 2.695-8.158-.38-11.233a.75.75 0 1 1 1.06-1.06c3.793 3.792 3.793 9.967 0 13.76-3.792 3.793-9.967 3.793-13.76 0-3.793-3.793-3.793-9.968 0-13.76a.75.75 0 0 1 1.06 0ZM16.7 19.245a8.258 8.258 0 0 1-9.4 0v-4.808c0-1.185.964-2.15 2.15-2.15h5.1c1.186 0 2.15.965 2.15 2.15v4.808Zm-6.197-4.714a.75.75 0 1 0-1.106 1.013c1.41 1.538 3.804 1.503 5.283.024a.75.75 0 0 0-1.06-1.06c-.92.92-2.327.885-3.117.023Z", "key": "95e18ad0cfbdb727352175beacd0d0b806f02b0c" }]]);
const BagCircleB = createMeisterIcons("bag-circle-b", [["path", { "fill": "currentColor", "d": "M4 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3Z", "key": "21d8be996676779285db69a5a3daeb2621951c50" }], ["path", { "fill": "currentColor", "d": "M8 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.7H8Zm-4.75 3.25A4.762 4.762 0 0 1 8 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "22bde870f96063261a866254eb327a3c72e8e679" }], ["path", { "fill": "currentColor", "d": "M12 3.8a3.262 3.262 0 0 0-3.25 3.25v1h-1.5v-1A4.762 4.762 0 0 1 12 2.3c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "029b1fe0674daa23a4d0782a07bf38b24ebc3b1b" }], ["path", { "fill": "#fff", "d": "M12 16.05a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "24d890a732597406ff136ef39c5e03055c7b796e" }], ["path", { "fill": "#fff", "d": "M12 12.8a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "79294aa57544c55a1adc8876f2ed76a2b5a691de" }]]);
const BagCircleB1 = createMeisterIcons("bag-circle-b1", [["path", { "fill": "currentColor", "d": "M17.5 13.9v5.2C16 20.3 14.1 21 12 21s-4-.7-5.5-1.9v-5.2c0-1.6 1.3-2.9 2.9-2.9h5.1c1.6 0 3 1.3 3 2.9Z", "key": "4c3a99fa1e7734dc81904d88b7d53cd4ecbc55ec" }], ["path", { "fill": "currentColor", "d": "M9.4 11.75c-1.186 0-2.15.964-2.15 2.15v4.83c1.32.962 2.95 1.52 4.75 1.52 1.8 0 3.43-.558 4.75-1.52V13.9c0-1.153-1.031-2.15-2.25-2.15H9.4ZM5.75 13.9a3.652 3.652 0 0 1 3.65-3.65h5.1c1.981 0 3.75 1.603 3.75 3.65v5.56l-.282.226C16.336 20.992 14.272 21.75 12 21.75c-2.27 0-4.336-.758-5.969-2.064l-.281-.226V13.9Z", "key": "7c361317543c28ae28cf981d845bb7ce07bac24d" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 2.095.763 4.03 2 5.46V14a3.652 3.652 0 0 1 3.65-3.65h5.2A3.652 3.652 0 0 1 18.25 14v3.438c1.248-1.504 2-3.36 2-5.438 0-2.274-1-4.39-2.381-5.87C16.295 4.656 14.28 3.75 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008a7.062 7.062 0 0 1-.491.44l-.009.006a5.809 5.809 0 0 0-.4.354l-1.28 1.28V14c0-1.186-.964-2.15-2.15-2.15H9.4c-1.186 0-2.15.964-2.15 2.15v6.601l-1.166-.777c-.363-.242-.707-.587-.987-.867l-.027-.027C3.329 17.19 2.25 14.698 2.25 12Z", "key": "be8bd55e04c5c98bb5bf7089a8c53f23a7d96a59" }], ["path", { "fill": "#fff", "d": "M9.393 13.947a.75.75 0 0 1 1.06.046c.79.862 2.196.897 3.117-.023a.75.75 0 1 1 1.06 1.06c-1.48 1.48-3.873 1.515-5.283-.023a.75.75 0 0 1 .046-1.06Z", "key": "54ea9998513e7c51de94b9a01cca5a1149b3f970" }]]);
const BagCircleBlock = createMeisterIcons("bag-circle-block", [["path", { "fill": "currentColor", "d": "M10.28 4.005c.805-.804 1.94-.966 2.877-.485L9.82 6.93c-.511-.946-.358-2.106.46-2.925Zm3.54 3.54c-.83.83-2.05.963-2.955.463l3.378-3.454c.555.958.414 2.154-.423 2.99Zm-4.6-4.6c1.593-1.593 4.067-1.593 5.66 0s1.593 4.068 0 5.66c-1.577 1.577-4.161 1.613-5.67-.01-1.583-1.593-1.58-4.06.01-5.65Zm-3.04 3.76a.75.75 0 1 0-1.06-1.06c-3.793 3.792-3.793 9.967 0 13.76 3.793 3.793 9.968 3.793 13.76 0 3.793-3.793 3.793-9.968 0-13.76a.75.75 0 0 0-1.06 1.06c3.075 3.075 3.201 8.005.38 11.233v-3.463a3.652 3.652 0 0 0-3.65-3.65h-5.1a3.652 3.652 0 0 0-3.65 3.65v3.463C2.979 14.71 3.105 9.78 6.18 6.705Zm10.52 7.77v4.807a8.258 8.258 0 0 1-9.4 0v-4.807c0-1.186.964-2.15 2.15-2.15h5.1c1.186 0 2.15.964 2.15 2.15Zm-6.197.093a.75.75 0 0 0-1.106 1.014c1.41 1.537 3.804 1.503 5.283.023a.75.75 0 0 0-1.06-1.06c-.92.92-2.327.885-3.117.023Z", "key": "e3c3fb64605f8af3a0b1919115b4b53498a7cde7" }]]);
const BagCircleCheck = createMeisterIcons("bag-circle-check", [["path", { "fill": "currentColor", "d": "M15.574 4.074a.75.75 0 1 0-1.048-1.073l-3.72 3.629L9.65 5.087a.75.75 0 1 0-1.2.9L9.982 8.03l.038.038c.222.222.506.294.73.294.223 0 .504-.07.726-.29l4.098-3.998ZM6.18 5.668a.75.75 0 1 0-1.06-1.06c-3.793 3.792-3.793 9.967 0 13.76 3.793 3.793 9.968 3.793 13.76 0 3.793-3.793 3.793-9.968 0-13.76a.75.75 0 0 0-1.06 1.06c3.075 3.075 3.201 8.005.38 11.233v-3.463a3.652 3.652 0 0 0-3.65-3.65h-5.1a3.652 3.652 0 0 0-3.65 3.65V16.9c-2.821-3.228-2.695-8.158.38-11.233ZM7.3 18.245a8.258 8.258 0 0 0 9.4 0v-4.808c0-1.185-.964-2.15-2.15-2.15h-5.1c-1.186 0-2.15.965-2.15 2.15v4.808Zm2.143-4.76a.75.75 0 0 1 1.06.046c.79.862 2.196.897 3.117-.024a.75.75 0 0 1 1.06 1.06c-1.48 1.48-3.873 1.515-5.283-.023a.75.75 0 0 1 .046-1.06Z", "key": "e59c55b77118c988c7de74d8f5fedd554cc838b2" }]]);
const BagCircleCode = createMeisterIcons("bag-circle-code", [["path", { "fill": "currentColor", "d": "M10.98 2.707a.75.75 0 0 1 0 1.061l-1.07 1.07 1.07 1.07a.75.75 0 1 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.3.097-.658.37-.93l1.2-1.2a.75.75 0 0 1 1.06 0Zm-1.2 2.261Zm3.24-2.261a.75.75 0 0 1 1.06 0l1.2 1.2c.273.273.37.632.37.93 0 .3-.097.659-.37.931l-1.2 1.2a.75.75 0 0 1-1.06-1.06l1.07-1.07-1.07-1.07a.75.75 0 0 1 0-1.06Zm1.2 2Z", "key": "e9b4b3347fbb032b5cb1797deaa4b82dcee3ee21" }], ["path", { "fill": "currentColor", "d": "M6.18 4.907a.75.75 0 0 1 0 1.06c-3.207 3.208-3.207 8.433 0 11.64 3.207 3.207 8.433 3.207 11.64 0 3.207-3.207 3.207-8.432 0-11.64a.75.75 0 1 1 1.06-1.06c3.793 3.793 3.793 9.968 0 13.76-3.792 3.794-9.967 3.794-13.76 0-3.793-3.792-3.793-9.967 0-13.76a.75.75 0 0 1 1.06 0Z", "key": "26cb72e5e905807c6beed69e1d0171aa3cde3296" }], ["path", { "fill": "currentColor", "d": "M9.45 11.587c-1.186 0-2.15.965-2.15 2.15v5.2H5.8v-5.2a3.652 3.652 0 0 1 3.65-3.65h5.1a3.652 3.652 0 0 1 3.65 3.65v5.2h-1.5v-5.2c0-1.185-.964-2.15-2.15-2.15h-5.1Z", "key": "1dde5dfd42fec090a6087c6f523f2df8305a5350" }], ["path", { "fill": "currentColor", "d": "M9.443 13.784a.75.75 0 0 1 1.06.046c.79.863 2.196.897 3.117-.023a.75.75 0 0 1 1.06 1.06c-1.48 1.48-3.873 1.515-5.283-.023a.75.75 0 0 1 .046-1.06Z", "key": "90bd964430617d720ca14cf705fd4064988bef80" }]]);
const BagCircleCross = createMeisterIcons("bag-circle-cross", [["path", { "fill": "currentColor", "d": "M14.28 2.357a.75.75 0 0 1 0 1.06l-1.22 1.22 1.22 1.22a.75.75 0 0 1-1.06 1.06L12 5.699l-1.22 1.22a.75.75 0 1 1-1.06-1.06l1.22-1.22-1.22-1.22a.75.75 0 0 1 1.06-1.06L12 3.576l1.22-1.22a.75.75 0 0 1 1.06 0Zm-8.1 2.9a.75.75 0 0 1 0 1.06c-3.075 3.077-3.2 8.007-.38 11.233v-3.463a3.652 3.652 0 0 1 3.65-3.65h5.1a3.652 3.652 0 0 1 3.65 3.65v3.463c2.821-3.228 2.695-8.157-.38-11.232a.75.75 0 1 1 1.06-1.06c3.793 3.792 3.793 9.967 0 13.76-3.792 3.793-9.967 3.793-13.76 0-3.793-3.793-3.793-9.968 0-13.76a.75.75 0 0 1 1.06 0ZM16.7 18.894a8.258 8.258 0 0 1-9.4 0v-4.807c0-1.185.964-2.15 2.15-2.15h5.1c1.186 0 2.15.965 2.15 2.15v4.807Zm-6.197-4.713a.75.75 0 1 0-1.106 1.013c1.41 1.538 3.804 1.503 5.283.024a.75.75 0 1 0-1.06-1.06c-.92.92-2.327.885-3.117.023Z", "key": "8ae466c5d8a5cd124c69c4150d1d6d4b481e2410" }]]);
const BagCode = createMeisterIcons("bag-code", [["path", { "fill": "currentColor", "d": "M8.75 7A3.262 3.262 0 0 1 12 3.75c.872 0 1.688.399 2.27.98.581.582.98 1.398.98 2.27v.25h-6.5V7Zm-1.5.31V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v.31c2.26.361 4 2.33 4 4.69v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.13 0-3.75-1.752-3.75-3.75v-6c0-2.36 1.74-4.329 4-4.69ZM8 8.75A3.262 3.262 0 0 0 4.75 12v6c0 1.202.98 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.75H8Zm2.93 4.18a.75.75 0 1 0-1.06-1.06l-1.2 1.2c-.273.272-.37.631-.37.93 0 .299.097.658.37.93l1.2 1.2a.75.75 0 1 0 1.06-1.06L9.86 14l1.07-1.07Zm3.1-1.06a.75.75 0 0 0-1.06 1.06L14.04 14l-1.07 1.07a.75.75 0 1 0 1.06 1.06l1.2-1.2c.273-.272.37-.631.37-.93 0-.299-.097-.658-.37-.93l-1.2-1.2Z", "key": "3e8569c43048ab3082201ec7d49e90aa6bf8b8c5" }]]);
const BagCodeB = createMeisterIcons("bag-code-b", [["path", { "fill": "currentColor", "d": "M4.05 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3h-10c-1.7 0-3-1.3-3-3Z", "key": "3d69eb84bb5ba4d5444b5c629559c1a93cefd56c" }], ["path", { "fill": "currentColor", "d": "M8.05 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6a3.262 3.262 0 0 0-3.25-3.25h-8ZM3.3 11.95A4.762 4.762 0 0 1 8.05 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75h-10c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "85848b4495d435f3664ba05cda66e4fff7e1052d" }], ["path", { "fill": "currentColor", "d": "M12.05 3.8A3.262 3.262 0 0 0 8.8 7.05v1H7.3v-1a4.762 4.762 0 0 1 4.75-4.75c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "b98394a9ff7af8163abb12b672567a5153b61b3d" }], ["path", { "fill": "#fff", "d": "M10.98 11.92a.75.75 0 0 1 0 1.06l-1.07 1.07 1.07 1.07a.75.75 0 0 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l1.2-1.2a.75.75 0 0 1 1.06 0Zm2.04 0a.75.75 0 0 1 1.06 0l1.2 1.2c.273.272.37.631.37.93 0 .299-.097.658-.37.93l-1.2 1.2a.75.75 0 0 1-1.06-1.06l1.07-1.07-1.07-1.07a.75.75 0 0 1 0-1.06Z", "key": "2c5fdb73d1df94c968256ff9b8b14535e2462e48" }]]);
const BagCross = createMeisterIcons("bag-cross", [["path", { "fill": "currentColor", "d": "M8.75 7A3.262 3.262 0 0 1 12 3.75c.872 0 1.688.399 2.27.98.581.582.98 1.398.98 2.27v.25h-6.5V7Zm-1.5.31V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v.31c2.26.361 4 2.33 4 4.69v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.13 0-3.75-1.752-3.75-3.75v-6c0-2.36 1.74-4.329 4-4.69ZM4.75 12A3.262 3.262 0 0 1 8 8.75h8A3.262 3.262 0 0 1 19.25 12v6c0 1.286-.964 2.25-2.25 2.25H7A2.259 2.259 0 0 1 4.75 18v-6Zm9.88.27a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 1 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 1 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "fa65180630175734b1054097418894e6d6167bf2" }]]);
const BagCrossB = createMeisterIcons("bag-cross-b", [["path", { "fill": "currentColor", "d": "M4 17.95v-6c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v6c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3Z", "key": "85172faf70d74fc267005da2f114209765d11f5c" }], ["path", { "fill": "currentColor", "d": "M8 8.7a3.262 3.262 0 0 0-3.25 3.25v6c0 1.286.964 2.25 2.25 2.25h10c1.286 0 2.25-.964 2.25-2.25v-6A3.262 3.262 0 0 0 16 8.7H8Zm-4.75 3.25A4.762 4.762 0 0 1 8 7.2h8a4.762 4.762 0 0 1 4.75 4.75v6c0 2.114-1.636 3.75-3.75 3.75H7c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "2c35565765458817475e9e78bc228963d17c15af" }], ["path", { "fill": "currentColor", "d": "M12 3.8a3.262 3.262 0 0 0-3.25 3.25v1h-1.5v-1A4.762 4.762 0 0 1 12 2.3c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v1h-1.5v-1c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "c0a305b222cefd2df02ac6c745cd85f474e9eac4" }], ["path", { "fill": "#fff", "d": "M14.63 12.32a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 1 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "6f402ecacba5415eb46d97f66e4ff7a87d683388" }], ["path", { "fill": "#fff", "d": "M9.27 12.32a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 0 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "1566624c8371c0ae1873d398b9582c04bc857447" }]]);
const Bandaid = createMeisterIcons("bandaid", [["path", { "fill": "currentColor", "d": "M18.87 5.13c-1.307-1.307-3.333-1.307-4.64 0l-1.223 1.224 4.598 4.68L18.87 9.77c1.307-1.308 1.307-3.333 0-4.64Zm-.733 7.494 1.793-1.794c1.893-1.893 1.893-4.868 0-6.76-1.892-1.893-4.867-1.893-6.76 0l-9.1 9.1c-1.89 1.89-1.893 4.858-.009 6.752 1.807 1.917 4.89 1.888 6.77.008l1.688-1.689a.763.763 0 0 0 .016-.015l.006-.006 5.583-5.584.002-.001a.57.57 0 0 0 .01-.011Zm-1.593-.529-4.598-4.68-4.631 4.63 4.68 4.599 4.55-4.549ZM5.13 14.23l1.124-1.124 4.68 4.599L9.77 18.87c-1.317 1.316-3.428 1.291-4.623.017l-.008-.009-.009-.008c-1.307-1.308-1.307-3.333 0-4.64Z", "key": "c2d5b2b442ab3d091109680bc0ee07d386cfc546" }], ["path", { "fill": "currentColor", "d": "M10.905 11.981c-.1 0-.2-.1-.3-.1-.1 0-.2-.1-.2-.2-.2-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3.1-.1.1-.2.2-.2.1-.2.4-.3.7-.2.1 0 .2.1.2.2.1 0 .1.1.2.2s.1.2.1.3c0 .2-.1.4-.2.5-.2.2-.4.3-.6.3Zm2 2c-.2 0-.4-.1-.5-.2-.1-.1-.1-.2-.2-.2 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2s.1-.3.2-.3c.2-.1.4-.1.6 0 .1 0 .2.1.2.2.1.1.1.2.2.2 0 .1.1.2.1.3 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2-.1.2-.3.3-.5.3Z", "key": "3aaaafb5ed35885b8832b67c41c05185fdc35793" }]]);
const BandaidB = createMeisterIcons("bandaid-b", [["path", { "fill": "currentColor", "d": "m12.05 17.7-1.7 1.7c-1.6 1.6-4.1 1.6-5.7 0-1.6-1.6-1.6-4.1 0-5.7l1.7-1.7 5.7 5.7Z", "key": "5af5763d43ae789de57ed378e0aaa3f94b24d900" }], ["path", { "fill": "currentColor", "d": "m6.35 10.94 6.76 6.76-2.23 2.23c-1.893 1.893-4.867 1.893-6.76 0-1.893-1.892-1.893-4.867 0-6.76l2.23-2.23Zm0 2.12-1.17 1.17c-1.307 1.307-1.307 3.333 0 4.64 1.307 1.307 3.333 1.307 4.64 0l1.17-1.17-4.64-4.64Z", "key": "a526082a07ef6e804a8786e33d2a99fa0ad59007" }], ["path", { "fill": "currentColor", "d": "m5.332 12 6.718-6.717L18.767 12l-6.717 6.717L5.332 12Zm2.122 0 4.596 4.596L16.646 12 12.05 7.404 7.454 12Z", "key": "c4ba2c877187485838a8cdfcf2a4767af4fe6ff3" }], ["path", { "fill": "currentColor", "d": "M20.55 7.5c0 1-.4 2-1.2 2.8l-1.6 1.7-5.7-5.7 1.7-1.7c1.6-1.6 4.1-1.6 5.7 0 .8.8 1.1 1.8 1.1 2.9Z", "key": "83335b71298f8d6b1b29f1958657cfc093cedf15" }], ["path", { "fill": "currentColor", "d": "M18.92 5.13c-1.307-1.307-3.333-1.307-4.64 0L13.11 6.3l4.624 4.623 1.078-1.145.008-.008c.663-.664.98-1.475.98-2.27 0-.956-.256-1.745-.88-2.37Zm-5.7-1.06c1.893-1.893 4.867-1.893 6.76 0 .976.975 1.32 2.186 1.32 3.43 0 1.202-.48 2.387-1.411 3.322l-2.123 2.255L10.99 6.3l2.23-2.23Zm-2.17 7.73c-.1 0-.2-.1-.3-.1-.1 0-.2-.1-.2-.2-.2-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3.1-.1.1-.2.2-.2.1-.2.4-.3.7-.2.1 0 .2.1.2.2.1 0 .1.1.2.2s.1.2.1.3c0 .2-.1.4-.2.5-.2.2-.4.3-.6.3Zm2 2c-.2 0-.4-.1-.5-.2-.1-.1-.1-.2-.2-.2 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2s.1-.3.2-.3c.2-.1.4-.1.6 0 .1 0 .2.1.2.2.1.1.1.2.2.2 0 .1.1.2.1.3 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2-.1.2-.3.3-.5.3Z", "key": "133f31c3ebd672def56332e690bc5a868d26c6a1" }]]);
const BandaidVarB = createMeisterIcons("bandaid-var-b", [["path", { "fill": "currentColor", "d": "M12.05 6.343 6.393 12l5.657 5.657L17.707 12 12.05 6.343Z", "key": "6ae34b42e75fe44f3e26606db91eebeecf5c11a9" }], ["path", { "fill": "currentColor", "d": "m5.332 12 6.718-6.717L18.767 12l-6.717 6.717L5.332 12Zm2.122 0 4.596 4.596L16.646 12 12.05 7.404 7.454 12Z", "key": "b299d55af407ed5aed7b5ca2b7d5a1c3c9f6f2ad" }], ["path", { "fill": "currentColor", "d": "M18.92 5.13c-1.307-1.307-3.333-1.307-4.64 0L13.11 6.3l4.624 4.623 1.078-1.145.008-.008c.663-.664.98-1.475.98-2.27 0-.956-.256-1.745-.88-2.37Zm-5.7-1.06c1.893-1.893 4.867-1.893 6.76 0 .976.975 1.32 2.186 1.32 3.43 0 1.202-.48 2.387-1.411 3.322l-2.123 2.255L10.99 6.3l2.23-2.23Zm-6.87 6.87 6.76 6.76-2.23 2.23c-1.893 1.893-4.867 1.893-6.76 0-1.893-1.892-1.893-4.867 0-6.76l2.23-2.23Zm0 2.12-1.17 1.17c-1.307 1.307-1.307 3.333 0 4.64 1.307 1.307 3.333 1.307 4.64 0l1.17-1.17-4.64-4.64Z", "key": "cac31ff7928656b9859f52604c61e6b35cf0834a" }], ["path", { "fill": "#fff", "d": "M11.05 11.8c-.2 0-.4-.1-.5-.3-.2-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3.1-.1.1-.2.2-.2.3-.3.8-.3 1.1 0-.1 0-.1.1 0 .2s.1.2.1.3c0 .1 0 .2-.1.3-.1.1-.1.2-.2.2-.1.2-.3.3-.5.3Zm2 2c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5s.1-.4.2-.5c0-.2.1-.3.2-.3.2-.1.4-.1.6 0 .1 0 .2.1.2.2.1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.2.1-.2.2-.1 0-.2.1-.3.1Z", "key": "95b5eddd038e96692a87b9160552d79f1c69035b" }]]);
const Bank = createMeisterIcons("bank", [["path", { "fill": "currentColor", "d": "m12.914 3.373 7.305 3.703.037.025c.443.295.58.808.475 1.23a1.106 1.106 0 0 1-1.09.844H4.34a1.082 1.082 0 0 1-1.09-.902c-.084-.503.187-.983.65-1.217l7.204-3.702c.559-.28 1.237-.337 1.809.02Zm-1.135 1.321-5.8 2.981h12.104l-5.921-3.001-.038-.025c-.019-.013-.12-.066-.345.045Zm.261 5.481a.75.75 0 0 1 .75.75v6.8a.75.75 0 1 1-1.5 0v-6.8a.75.75 0 0 1 .75-.75Zm4.5 0a.75.75 0 0 1 .75.75v6.8a.75.75 0 1 1-1.5 0v-6.8a.75.75 0 0 1 .75-.75Zm-9 0a.75.75 0 0 1 .75.75v6.8a.75.75 0 1 1-1.5 0v-6.8a.75.75 0 0 1 .75-.75Zm-3.25 9.95a.75.75 0 0 1 .75-.75h14a.75.75 0 0 1 0 1.5h-14a.75.75 0 0 1-.75-.75Z", "key": "a9f7cc880dcabfe037f8781735491741b025a392" }]]);
const BankB = createMeisterIcons("bank-b", [["path", { "fill": "currentColor", "d": "m11.44 4.025-7.2 3.7c-.4.2-.3.7.1.7h15.3c.4 0 .5-.5.2-.7l-7.3-3.7c-.3-.2-.7-.2-1.1 0Z", "key": "565b5a8c6e33554beca1b60ee3e34f419749f11a" }], ["path", { "fill": "currentColor", "d": "m12.914 3.373 7.305 3.703.037.025c.443.295.58.808.475 1.23a1.106 1.106 0 0 1-1.09.844H4.34a1.082 1.082 0 0 1-1.09-.902c-.084-.503.187-.983.65-1.217l7.204-3.702c.559-.28 1.237-.337 1.809.02Zm-1.135 1.321-5.8 2.981h12.104l-5.921-3.001-.038-.025c-.019-.013-.12-.066-.345.045Zm.261 5.481a.75.75 0 0 1 .75.75v6.8a.75.75 0 1 1-1.5 0v-6.8a.75.75 0 0 1 .75-.75Zm4.5 0a.75.75 0 0 1 .75.75v6.8a.75.75 0 1 1-1.5 0v-6.8a.75.75 0 0 1 .75-.75Zm-9 0a.75.75 0 0 1 .75.75v6.8a.75.75 0 1 1-1.5 0v-6.8a.75.75 0 0 1 .75-.75Zm-3.25 9.95a.75.75 0 0 1 .75-.75h14a.75.75 0 0 1 0 1.5h-14a.75.75 0 0 1-.75-.75Z", "key": "94b21b5042aa9106586dd97a509c26a9836506e6" }]]);
const Barchart = createMeisterIcons("barchart", [["path", { "fill": "currentColor", "d": "M10.305 4.805c-.015.016-.055.065-.055.195v14.25h3.5V5c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055h-3c-.13 0-.18.04-.195.055ZM15.25 6.25V5c0-.47-.16-.92-.495-1.255-.334-.335-.785-.495-1.255-.495h-3c-.47 0-.92.16-1.255.495C8.91 4.079 8.75 4.53 8.75 5v5.25H5.5c-.47 0-.92.16-1.255.495-.335.334-.495.785-.495 1.255v7.25H2.5a.75.75 0 0 0 0 1.5h19a.75.75 0 0 0 0-1.5h-1.25V8c0-.47-.16-.92-.495-1.255-.334-.335-.785-.495-1.255-.495h-3.25Zm0 1.5v11.5h3.5V8c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055h-3.25Zm-9.75 4h3.25v7.5h-3.5V12c0-.13.04-.18.055-.195.016-.015.065-.055.195-.055Z", "key": "d54eab182741e209d7555fc7b03c321905e89df0" }]]);
const BarchartB = createMeisterIcons("barchart-b", [["path", { "fill": "currentColor", "d": "M18.75 20a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm-17 0a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Z", "key": "d8ad979be5b7da8f67771845daea58dd371c7cc3" }], ["path", { "fill": "currentColor", "d": "M9.5 11v9h-5v-8c0-.5.4-1 1-1h4Z", "key": "1770fc1d0ce1bd3203f11ee400a721dbbf85baa7" }], ["path", { "fill": "currentColor", "d": "M5.323 11.824A.27.27 0 0 0 5.25 12v7.25h3.5v-7.5H5.5c-.08 0-.135.03-.177.074ZM3.75 12c0-.865.688-1.75 1.75-1.75h4.75v10.5h-6.5V12Z", "key": "2525d4e616807f08ce9d2f615241b744e05380ce" }], ["path", { "fill": "currentColor", "d": "M10.323 4.824A.27.27 0 0 0 10.25 5v14.25h3.5V5c0-.08-.03-.135-.074-.177a.27.27 0 0 0-.176-.073h-3c-.08 0-.135.03-.177.074ZM8.75 5c0-.865.688-1.75 1.75-1.75h3c.865 0 1.75.688 1.75 1.75v15.75h-6.5V5Z", "key": "6dbac4648d1f958fd4526f8a53ccde20d9d6dbac" }], ["path", { "fill": "currentColor", "d": "M19.5 8v12h-5V7h4c.5 0 1 .4 1 1Z", "key": "162d27615dc2c642f7ea82ee0d58cd5adc421442" }], ["path", { "fill": "currentColor", "d": "M13.75 6.25h4.75c.865 0 1.75.688 1.75 1.75v12.75h-6.5V6.25Zm1.5 1.5v11.5h3.5V8c0-.08-.03-.135-.074-.177a.27.27 0 0 0-.176-.073h-3.25Z", "key": "f688e816390fe7a86f3f72f6cdac012eebde0fc4" }]]);
const BarchartH = createMeisterIcons("barchart-h", [["path", { "fill": "currentColor", "d": "M4 1.75a.75.75 0 0 1 .75.75v19a.75.75 0 0 1-1.5 0v-19A.75.75 0 0 1 4 1.75Z", "key": "236122c04ead086d40fbb0b1a26a609a79dc005a" }], ["path", { "fill": "currentColor", "d": "M3.25 3.75H12c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v4.75H3.25v-6.5Zm1.5 1.5v3.5h7.5V5.5c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055H4.75Z", "key": "85e88c336a29934ed87c385c470dd6fe14f8e7ad" }], ["path", { "fill": "currentColor", "d": "M3.25 8.75H19c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v3c0 .47-.16.92-.495 1.255-.334.335-.785.495-1.255.495H3.25v-6.5Zm1.5 1.5v3.5H19c.13 0 .18-.04.195-.055.015-.016.055-.065.055-.195v-3c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055H4.75Z", "key": "b5d09c659529c4dc9cf6958414e8e7bbdbc33ccb" }], ["path", { "fill": "currentColor", "d": "M3.25 13.75h14.5v4.75c0 .47-.16.92-.495 1.255-.334.335-.785.495-1.255.495H3.25v-6.5Zm1.5 1.5v3.5H16c.13 0 .18-.04.195-.055.015-.016.055-.065.055-.195v-3.25H4.75Z", "key": "904dafbf4ea115f5ac9d639f632bafc7ccf9e970" }]]);
const BarchartHb = createMeisterIcons("barchart-hb", [["path", { "fill": "currentColor", "d": "M4 18.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm0-17a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-1.5 0v-7A.75.75 0 0 1 4 1.75Z", "key": "e3c7bba8e0e4b846255740f66859c044b87ad79a" }], ["path", { "fill": "currentColor", "d": "M13 5.5v4H4v-5h8c.5 0 1 .4 1 1Z", "key": "34a599b203570da4964afb61c3abca834623963e" }], ["path", { "fill": "currentColor", "d": "M3.25 3.75H12c.865 0 1.75.688 1.75 1.75v4.75H3.25v-6.5Zm1.5 1.5v3.5h7.5V5.5c0-.08-.03-.135-.074-.177A.27.27 0 0 0 12 5.25H4.75Z", "key": "e303836a3c48cdeefe497fbbf299292b2abf7703" }], ["path", { "fill": "currentColor", "d": "M3.25 8.75H19c.865 0 1.75.688 1.75 1.75v3c0 .865-.688 1.75-1.75 1.75H3.25v-6.5Zm1.5 1.5v3.5H19c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176v-3c0-.08-.03-.135-.074-.177A.27.27 0 0 0 19 10.25H4.75Z", "key": "7fd06d69066596ed27937297ca4e7bfa937d9ef0" }], ["path", { "fill": "currentColor", "d": "M17 14.5v4c0 .5-.4 1-1 1H4v-5h13Z", "key": "f9ede60d7c3d33f7c1d6ef3f1d20b6fd9cdfc523" }], ["path", { "fill": "currentColor", "d": "M3.25 13.75h14.5v4.75c0 .865-.688 1.75-1.75 1.75H3.25v-6.5Zm1.5 1.5v3.5H16c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176v-3.25H4.75Z", "key": "0319fd00727238dc5cf76449e4239262658acfa9" }]]);
const Battery1 = createMeisterIcons("battery1", [["path", { "fill": "currentColor", "d": "M3.748 11.963c.008 2.38 1.97 4.337 4.35 4.337h7.9c2.402 0 4.334-1.974 4.25-4.222v-.028c0-2.386-1.964-4.35-4.35-4.35h-7.8c-2.376 0-4.257 1.858-4.35 4.263Zm-1.5-.04C2.364 8.735 4.88 6.2 8.099 6.2h7.8c3.21 0 5.843 2.628 5.85 5.836.109 3.145-2.556 5.764-5.75 5.764h-7.9c-3.214 0-5.85-2.636-5.85-5.85v-.027Z", "key": "bf7fb1c137633f3b4b8700d8e8e32d0f5c03a309" }], ["path", { "fill": "currentColor", "d": "M6.998 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "ceb479ea77b49c9536f8c4dfd63df0823d07b4db" }]]);
const Battery1B = createMeisterIcons("battery1-b", [["path", { "fill": "currentColor", "d": "M15.999 17.05h-7.9c-2.8 0-5.1-2.3-5.1-5.1.1-2.8 2.3-5 5.1-5h7.8c2.8 0 5.1 2.3 5.1 5.1.1 2.7-2.2 5-5 5Z", "key": "1337bff5819735972e9b440e0a113d4247ec85f3" }], ["path", { "fill": "currentColor", "d": "M3.749 11.963c.007 2.38 1.968 4.337 4.35 4.337h7.9c2.401 0 4.333-1.974 4.25-4.222v-.028c0-2.386-1.965-4.35-4.35-4.35h-7.8c-2.377 0-4.258 1.858-4.35 4.263Zm-1.5-.04C2.363 8.735 4.879 6.2 8.099 6.2h7.8c3.21 0 5.842 2.628 5.85 5.836.108 3.145-2.557 5.764-5.75 5.764h-7.9c-3.215 0-5.85-2.636-5.85-5.85v-.027Z", "key": "9b59ea7e96a007608e3b4eeae2b128512e578b12" }], ["path", { "fill": "#fff", "d": "M6.999 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "74c5eedb8c302d5d5a2d1dc701557888ccdc930d" }]]);
const Battery2 = createMeisterIcons("battery2", [["path", { "fill": "currentColor", "d": "M3.748 11.963c.008 2.38 1.97 4.337 4.35 4.337h7.9c2.402 0 4.334-1.974 4.25-4.222v-.028c0-2.386-1.964-4.35-4.35-4.35h-7.8c-2.376 0-4.257 1.858-4.35 4.263Zm-1.5-.04C2.364 8.735 4.88 6.2 8.099 6.2h7.8c3.21 0 5.843 2.628 5.85 5.836.109 3.145-2.556 5.764-5.75 5.764h-7.9c-3.214 0-5.85-2.636-5.85-5.85v-.027Z", "key": "3b5f3e7dd7e21ccc9f5bd12d8cecdf665c959112" }], ["path", { "fill": "currentColor", "d": "M6.998 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.4 0a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "77fd47857c0896f1c4e4349dca4faf8aefab65b6" }]]);
const Battery2B = createMeisterIcons("battery2-b", [["path", { "fill": "currentColor", "d": "M15.999 17.05h-7.9c-2.8 0-5.1-2.3-5.1-5.1.1-2.8 2.3-5 5.1-5h7.8c2.8 0 5.1 2.3 5.1 5.1.1 2.7-2.2 5-5 5Z", "key": "6b51443c25c8655e02d70a240dfdcd62502d3a7c" }], ["path", { "fill": "currentColor", "d": "M3.749 11.963c.007 2.38 1.968 4.337 4.35 4.337h7.9c2.401 0 4.333-1.974 4.25-4.222v-.028c0-2.386-1.965-4.35-4.35-4.35h-7.8c-2.377 0-4.258 1.858-4.35 4.263Zm-1.5-.04C2.363 8.735 4.879 6.2 8.099 6.2h7.8c3.21 0 5.842 2.628 5.85 5.836.108 3.145-2.557 5.764-5.75 5.764h-7.9c-3.215 0-5.85-2.636-5.85-5.85v-.027Z", "key": "0a5f715ed958ecae7f5cf89fa4f794560229a985" }], ["path", { "fill": "#fff", "d": "M6.999 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.399 0a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "2385c92ce7e9e7d9397cdc6af369f4576ba7469e" }]]);
const Battery3 = createMeisterIcons("battery3", [["path", { "fill": "currentColor", "d": "M3.748 11.963c.008 2.38 1.97 4.337 4.35 4.337h7.9c2.402 0 4.334-1.974 4.25-4.222v-.028c0-2.386-1.964-4.35-4.35-4.35h-7.8c-2.376 0-4.257 1.858-4.35 4.263Zm-1.5-.04C2.364 8.735 4.88 6.2 8.099 6.2h7.8c3.21 0 5.843 2.628 5.85 5.836.109 3.145-2.556 5.764-5.75 5.764h-7.9c-3.214 0-5.85-2.636-5.85-5.85v-.027Z", "key": "cfc3abbf8b612dd502ce51a0512098246447e308" }], ["path", { "fill": "currentColor", "d": "M6.998 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.4 0a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.301 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "9ea242c3f42918b3d2f36a51b5e4e125dec97859" }]]);
const Battery3B = createMeisterIcons("battery3-b", [["path", { "fill": "currentColor", "d": "M15.999 17.05h-7.9c-2.8 0-5.1-2.3-5.1-5.1.1-2.8 2.3-5 5.1-5h7.8c2.8 0 5.1 2.3 5.1 5.1.1 2.7-2.2 5-5 5Z", "key": "28986af4ef76f8ad5993fdf08b7a434501a9352d" }], ["path", { "fill": "currentColor", "d": "M3.749 11.963c.007 2.38 1.968 4.337 4.35 4.337h7.9c2.401 0 4.333-1.974 4.25-4.222v-.028c0-2.386-1.965-4.35-4.35-4.35h-7.8c-2.377 0-4.258 1.858-4.35 4.263Zm-1.5-.04C2.363 8.735 4.879 6.2 8.099 6.2h7.8c3.21 0 5.842 2.628 5.85 5.836.108 3.145-2.557 5.764-5.75 5.764h-7.9c-3.215 0-5.85-2.636-5.85-5.85v-.027Z", "key": "9a346ffdff6437bb40be9ecbaa4a18bf07e32c35" }], ["path", { "fill": "#fff", "d": "M6.999 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.399 0a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.301 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "a7e04e153b4dd7bb8b3c3bd85b83c5ece264e024" }]]);
const Battery4 = createMeisterIcons("battery4", [["path", { "fill": "currentColor", "d": "M3.749 11.963c.007 2.38 1.968 4.337 4.35 4.337h7.9c2.401 0 4.333-1.974 4.25-4.222v-.028c0-2.386-1.965-4.35-4.35-4.35h-7.8c-2.377 0-4.258 1.858-4.35 4.263Zm-1.5-.04C2.363 8.735 4.879 6.2 8.099 6.2h7.8c3.21 0 5.842 2.628 5.85 5.836.108 3.145-2.557 5.764-5.75 5.764h-7.9c-3.215 0-5.85-2.636-5.85-5.85v-.027Z", "key": "db765b55a137ad0c736c5d8db76822be7c014f2d" }], ["path", { "fill": "currentColor", "d": "M6.999 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.399 0a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.301 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.4 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "8781ee3642e61c66bde5d3ed3f739a3af7983a6f" }]]);
const Battery4B = createMeisterIcons("battery4-b", [["path", { "fill": "currentColor", "d": "M15.999 17.05h-7.9c-2.8 0-5.1-2.3-5.1-5.1.1-2.8 2.3-5 5.1-5h7.8c2.8 0 5.1 2.3 5.1 5.1.1 2.7-2.2 5-5 5Z", "key": "5676834a54d457470d78e31eeaef6e8dc3c23ae2" }], ["path", { "fill": "currentColor", "d": "M3.749 11.963c.007 2.38 1.968 4.337 4.35 4.337h7.9c2.401 0 4.333-1.974 4.25-4.222v-.028c0-2.386-1.965-4.35-4.35-4.35h-7.8c-2.377 0-4.258 1.858-4.35 4.263Zm-1.5-.04C2.363 8.735 4.879 6.2 8.099 6.2h7.8c3.21 0 5.842 2.628 5.85 5.836.108 3.145-2.557 5.764-5.75 5.764h-7.9c-3.215 0-5.85-2.636-5.85-5.85v-.027Z", "key": "71cb950819db4bd5e2a1df066d85a5a02f05d6d2" }], ["path", { "fill": "#fff", "d": "M6.999 9.2a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.399 0a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.301 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm3.4 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "5e8c4045e8dba43fe1bc88fd1d92da8fafcbd16f" }]]);
const Beaker = createMeisterIcons("beaker", [["path", { "fill": "currentColor", "d": "M10.7 3.7a.36.36 0 0 0-.35.35v4.508l-.471.188c-2.234.894-3.829 3.03-3.829 5.604a5.95 5.95 0 0 0 11.9 0c0-2.586-1.603-4.798-3.895-5.591l-.505-.175V4.05a.36.36 0 0 0-.35-.35h-2.5Zm-1.85.35A1.86 1.86 0 0 1 10.7 2.2h2.5a1.86 1.86 0 0 1 1.85 1.85v3.488c2.632 1.14 4.4 3.788 4.4 6.812a7.45 7.45 0 0 1-14.9 0c0-3.04 1.78-5.58 4.3-6.79V4.05Z", "key": "d1b9166002efd86389a8c1a6a125886ce0a37764" }]]);
const BeakerB = createMeisterIcons("beaker-b", [["path", { "fill": "currentColor", "d": "M18.7 14.35a6.7 6.7 0 0 1-13.4 0c0-2.9 1.8-5.3 4.3-6.3v-4c0-.6.5-1.1 1.1-1.1h2.5c.6 0 1.1.5 1.1 1.1v4c2.6.9 4.4 3.4 4.4 6.3Z", "key": "de1db5ab815381bdf095ff53f4bf543d9c0ff477" }], ["path", { "fill": "currentColor", "d": "M10.7 3.7a.36.36 0 0 0-.35.35v4.508l-.471.188c-2.234.894-3.829 3.03-3.829 5.604a5.95 5.95 0 0 0 11.9 0c0-2.586-1.603-4.798-3.895-5.591l-.505-.175V4.05a.36.36 0 0 0-.35-.35h-2.5Zm-1.85.35A1.86 1.86 0 0 1 10.7 2.2h2.5a1.86 1.86 0 0 1 1.85 1.85v3.488c2.632 1.14 4.4 3.788 4.4 6.812a7.45 7.45 0 0 1-14.9 0c0-3.04 1.78-5.58 4.3-6.79V4.05Z", "key": "9b915aeb02e34eeedb4ea349260d263b463861d9" }]]);
const BeakerHalf = createMeisterIcons("beaker-half", [["path", { "fill": "currentColor", "d": "M4.506 14h14.988l-.045.793a7.443 7.443 0 0 1-7.45 7.007c-4 0-7.225-3.113-7.448-7.007L4.506 14Zm1.642 1.5A5.947 5.947 0 0 0 12 20.3a5.947 5.947 0 0 0 5.852-4.8H6.148Z", "key": "8281316e9429333627c0789e85aaf4962716134c" }], ["path", { "fill": "currentColor", "d": "M10.8 3.7a.36.36 0 0 0-.35.35v4.515l-.48.185c-2.224.855-3.773 2.838-3.91 5.25h11.88c-.137-2.44-1.699-4.49-3.794-5.244l-.496-.179V4.05a.36.36 0 0 0-.35-.35h-2.5Zm-1.85.35A1.86 1.86 0 0 1 10.8 2.2h2.5a1.86 1.86 0 0 1 1.85 1.85v3.495c2.54 1.145 4.3 3.79 4.3 6.805v1.15H4.55v-1.15c0-3.047 1.789-5.591 4.4-6.797V4.05Z", "key": "97189b18ef3c1f79974b9852edd8102794dd21ee" }]]);
const BeakerHalfB = createMeisterIcons("beaker-half-b", [["path", { "fill": "currentColor", "d": "M18.7 14.75c-.2 3.5-3.1 6.3-6.7 6.3s-6.5-2.8-6.7-6.3h13.4Z", "key": "2b9c0103793a96a1bca80e56e8ee04cf6f4c0950" }], ["path", { "fill": "currentColor", "d": "M4.506 14h14.988l-.045.793a7.443 7.443 0 0 1-7.45 7.007c-4 0-7.225-3.113-7.448-7.007L4.506 14Zm1.642 1.5A5.947 5.947 0 0 0 12 20.3a5.947 5.947 0 0 0 5.852-4.8H6.148Z", "key": "d7728429cdcf7f01e13d8d92de054790ae541f07" }], ["path", { "fill": "currentColor", "d": "M10.8 3.7a.36.36 0 0 0-.35.35v4.515l-.48.185c-2.224.855-3.773 2.838-3.91 5.25h11.88c-.137-2.44-1.699-4.49-3.794-5.244l-.496-.179V4.05a.36.36 0 0 0-.35-.35h-2.5Zm-1.85.35A1.86 1.86 0 0 1 10.8 2.2h2.5a1.86 1.86 0 0 1 1.85 1.85v3.495c2.54 1.145 4.3 3.79 4.3 6.805v1.15H4.55v-1.15c0-3.047 1.789-5.591 4.4-6.797V4.05Z", "key": "c540b08c7ff65dedb9a72b4cce58913acb6d495f" }]]);
const Bed = createMeisterIcons("bed", [["path", { "fill": "currentColor", "d": "M5.75 7A3.262 3.262 0 0 1 9 3.75h6A3.262 3.262 0 0 1 18.25 7v1.35H5.75V7Zm0 2.85V17A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V9.85H5.75ZM9 2.25A4.762 4.762 0 0 0 4.25 7v10A4.762 4.762 0 0 0 9 21.75h6A4.762 4.762 0 0 0 19.75 17V7A4.762 4.762 0 0 0 15 2.25H9Z", "key": "e4a9c12782c2cbf1cd6300ee40f01106ac456b89" }]]);
const BedB = createMeisterIcons("bed-b", [["path", { "fill": "currentColor", "d": "M19 7.05v2.2H5v-2.2c0-2.2 1.8-4 4-4h6c2.2 0 4 1.7 4 4Z", "key": "5598d59cf0ae4f1b44e745ee18f6b6d41ffbbe2e" }], ["path", { "fill": "currentColor", "d": "M9 3.8a3.262 3.262 0 0 0-3.25 3.25V8.5h12.5V7.05c0-1.874-1.452-3.25-3.25-3.25H9ZM4.25 7.05A4.762 4.762 0 0 1 9 2.3h6c2.602 0 4.75 2.023 4.75 4.75V10H4.25V7.05Z", "key": "a49cec349a9b34e783c7a3306d660fdaa34a2f7d" }], ["path", { "fill": "currentColor", "d": "M4.25 8.4h15.5v8.55A4.762 4.762 0 0 1 15 21.7H9a4.762 4.762 0 0 1-4.75-4.75V8.4Zm1.5 1.5v7.05A3.262 3.262 0 0 0 9 20.2h6a3.262 3.262 0 0 0 3.25-3.25V9.9H5.75Z", "key": "55883da6ec0be02899735c8a35ba657dd28ed368" }]]);
const Bell = createMeisterIcons("bell", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12ZM12 10.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm-1.5-2c0-1.286.964-2.25 2.25-2.25a.75.75 0 0 0 0-1.5c-2.114 0-3.75 1.636-3.75 3.75a.75.75 0 0 0 1.5 0Z", "key": "8845993a4a992b9207dec5b7211d75285b2ce1e6" }]]);
const BellB = createMeisterIcons("bell-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "cb6513b2cfaa987fd9f30375b0f2e9049f08c1bb" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "d38246c15c6c5d746fea228f5473ceced1ebb05d" }], ["path", { "fill": "#fff", "d": "M12 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "c73264aca0862d22dcc6a452d7f166957113b1a4" }], ["path", { "fill": "#fff", "d": "M12 10.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM9.5 12a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0Zm.5-4.25c-1.286 0-2.25.964-2.25 2.25a.75.75 0 0 1-1.5 0c0-2.114 1.636-3.75 3.75-3.75a.75.75 0 0 1 0 1.5Z", "key": "9a07d251752bfeb8c03cfa8029ceebb6eba8d3e1" }]]);
const Board = createMeisterIcons("board", [["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6c0 1.798 1.376 3.25 3.25 3.25h1.487a.61.61 0 0 1 .027 0H17a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 4.25H7Zm9.901 14H17a4.762 4.762 0 0 0 4.75-4.75v-6A4.762 4.762 0 0 0 17 2.75H7A4.762 4.762 0 0 0 2.25 7.5v6c0 2.602 2.024 4.75 4.75 4.75h.099l-1.223 1.834a.75.75 0 0 0 1.248.832l1.777-2.666H15.1l1.777 2.666a.75.75 0 0 0 1.248-.832l-1.223-1.834Z", "key": "85f5c046e97aeb6e8211ce5c1e02504f26366399" }]]);
const BoardAdd = createMeisterIcons("board-add", [["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6A3.262 3.262 0 0 0 7 16.75h10a3.262 3.262 0 0 0 3.25-3.25v-6a.75.75 0 0 1 1.5 0v6A4.762 4.762 0 0 1 17 18.25h-.099l1.223 1.834a.75.75 0 1 1-1.248.832l-1.777-2.666H8.9l-1.777 2.666a.75.75 0 1 1-1.248-.832l1.223-1.834H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 2.75a.75.75 0 0 1 0 1.5Zm6.4.5a.75.75 0 0 1 .75.75v1.65h1.75a.75.75 0 0 1 0 1.5h-1.75v1.75a.75.75 0 0 1-1.5 0V8.65H11a.75.75 0 0 1 0-1.5h1.65V5.5a.75.75 0 0 1 .75-.75Z", "key": "0aa6ca4c197ca2ed8f7cf39183bc6c22667a1cb4" }]]);
const BoardB = createMeisterIcons("board-b", [["path", { "fill": "currentColor", "d": "M3 13.5v-6c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v6c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "9dcb0f95b72b6d5e4ac7ca3ebff4d8745fa85e57" }], ["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6c0 1.798 1.376 3.25 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 4.25H7ZM2.25 7.5A4.762 4.762 0 0 1 7 2.75h10a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 18.25H7c-2.726 0-4.75-2.148-4.75-4.75v-6Z", "key": "904adcb148888bf10263903e6f342714aa261158" }], ["path", { "fill": "currentColor", "d": "M8.916 16.876a.75.75 0 0 1 .208 1.04l-2 3a.75.75 0 1 1-1.248-.832l2-3a.75.75 0 0 1 1.04-.208Zm6.168 0a.75.75 0 0 1 1.04.208l2 3a.75.75 0 1 1-1.248.832l-2-3a.75.75 0 0 1 .208-1.04Z", "key": "b89873d4d425081eec3bc3d392fe0e8ed481201c" }]]);
const BoardBlock = createMeisterIcons("board-block", [["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6A3.262 3.262 0 0 0 7 16.75h10a3.262 3.262 0 0 0 3.25-3.25v-6a.75.75 0 0 1 1.5 0v6A4.762 4.762 0 0 1 17 18.25h-.099l1.223 1.834a.75.75 0 1 1-1.248.832l-1.777-2.666H8.9l-1.777 2.666a.75.75 0 1 1-1.248-.832l1.223-1.834H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 2.75a.75.75 0 0 1 0 1.5Zm7.785 1.304c-.994-.59-2.327-.451-3.255.476l-.01.01-.01.01c-.892.828-1.06 2.154-.442 3.22l3.717-3.716Zm1.047 1.075-3.715 3.715c1.018.595 2.4.444 3.233-.454l.02-.02.02-.02c.892-.828 1.06-2.155.442-3.221Zm.608-1.65c-1.605-1.717-4.282-1.688-5.96-.02-1.718 1.606-1.689 4.283-.02 5.962 1.592 1.702 4.374 1.705 5.97.01 1.708-1.607 1.675-4.276.01-5.952Z", "key": "e4323e511c3044cd08e9f9884ad388d4eaba869e" }]]);
const BoardChart = createMeisterIcons("board-chart", [["path", { "fill": "currentColor", "d": "M3.75 7.5A3.262 3.262 0 0 1 7 4.25h10a3.262 3.262 0 0 1 3.25 3.25v6A3.262 3.262 0 0 1 17 16.75H7c-1.874 0-3.25-1.452-3.25-3.25v-6ZM17 18.25h-.099l1.223 1.834a.75.75 0 1 1-1.248.832l-1.777-2.666H8.9l-1.777 2.666a.75.75 0 1 1-1.248-.832l1.223-1.834H7c-2.726 0-4.75-2.148-4.75-4.75v-6A4.762 4.762 0 0 1 7 2.75h10a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 18.25ZM9.75 11.7a.75.75 0 0 0-1.5 0v.8a.75.75 0 0 0 1.5 0v-.8ZM12 9.65a.75.75 0 0 1 .75.75v2.1a.75.75 0 1 1-1.5 0v-2.1a.75.75 0 0 1 .75-.75Zm3.65-.55a.75.75 0 0 0-1.5 0v3.4a.75.75 0 0 0 1.5 0V9.1Z", "key": "bfb4733e8fbec3ee83083a1fb0d53be16450bf52" }]]);
const BoardChartB = createMeisterIcons("board-chart-b", [["path", { "fill": "currentColor", "d": "M3 13.5v-6c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v6c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "1adb0c387160c6ffdbf146273d9e674ab4c73e6b" }], ["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6c0 1.798 1.376 3.25 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 4.25H7ZM2.25 7.5A4.762 4.762 0 0 1 7 2.75h10a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 18.25H7c-2.726 0-4.75-2.148-4.75-4.75v-6Z", "key": "06188e83753efbd014c28aaeab1a1da81520f851" }], ["path", { "fill": "currentColor", "d": "M8.916 16.876a.75.75 0 0 1 .208 1.04l-2 3a.75.75 0 1 1-1.248-.832l2-3a.75.75 0 0 1 1.04-.208Zm6.168 0a.75.75 0 0 1 1.04.208l2 3a.75.75 0 1 1-1.248.832l-2-3a.75.75 0 0 1 .208-1.04Z", "key": "4c276d7892bc76fc37807f4c1aaf4fb361449bcb" }], ["path", { "fill": "#fff", "d": "M9 10.95a.75.75 0 0 1 .75.75v.8a.75.75 0 0 1-1.5 0v-.8a.75.75 0 0 1 .75-.75Zm3-1.3a.75.75 0 0 1 .75.75v2.1a.75.75 0 0 1-1.5 0v-2.1a.75.75 0 0 1 .75-.75Zm2.9-1.4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Z", "key": "fc959cdf78e20c2a165a2c79b73490504d1ac302" }]]);
const BoardCheck = createMeisterIcons("board-check", [["path", { "fill": "currentColor", "d": "M3.75 7.5A3.262 3.262 0 0 1 7 4.25a.75.75 0 1 0 0-1.5A4.762 4.762 0 0 0 2.25 7.5v6A4.762 4.762 0 0 0 7 18.25h.1l-1.223 1.834a.75.75 0 1 0 1.248.832l1.778-2.666H15.1l1.777 2.666a.75.75 0 1 0 1.248-.832l-1.222-1.834H17a4.762 4.762 0 0 0 4.75-4.75v-6a.75.75 0 0 0-1.5 0v6A3.262 3.262 0 0 1 17 16.75H7a3.262 3.262 0 0 1-3.25-3.25v-6Zm12.372-.862a.75.75 0 0 0-1.044-1.077l-2.863 2.776L11.4 7.25a.75.75 0 0 0-1.2.9l1.232 1.642.038.038c.211.212.488.295.717.295a.9.9 0 0 0 .473-.13.832.832 0 0 0 .256-.248l3.206-3.109Z", "key": "cb1d12f52458b8ef7bd84c32015e7346cc5e187c" }]]);
const BoardCode = createMeisterIcons("board-code", [["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6c0 1.798 1.376 3.25 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 4.25H7Zm9.901 14H17a4.762 4.762 0 0 0 4.75-4.75v-6A4.762 4.762 0 0 0 17 2.75H7A4.762 4.762 0 0 0 2.25 7.5v6c0 2.602 2.024 4.75 4.75 4.75h.099l-1.223 1.834a.75.75 0 1 0 1.248.832l1.777-2.666H15.1l1.777 2.666a.75.75 0 1 0 1.248-.832l-1.223-1.834ZM13.27 7.97a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03s-.174.76-.445 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64 1.16a.75.75 0 1 0-1.06-1.06l-1.4 1.4c-.27.27-.445.63-.445 1.03s.174.76.445 1.03l1.4 1.4a.75.75 0 1 0 1.06-1.06L9.26 10.5l1.37-1.37Z", "key": "3ea3d126149c88b4ead2697b639d331d43c58b03" }]]);
const BoardCodeB = createMeisterIcons("board-code-b", [["path", { "fill": "currentColor", "d": "M3 13.5v-6c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v6c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "3c3332de822a1f3c7b4e9a6c37425058f5aa79d9" }], ["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6c0 1.798 1.376 3.25 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 4.25H7ZM2.25 7.5A4.762 4.762 0 0 1 7 2.75h10a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 18.25H7c-2.726 0-4.75-2.148-4.75-4.75v-6Z", "key": "27b58b7b0f2678ec6fe3745a20b9680a40fd033c" }], ["path", { "fill": "currentColor", "d": "M8.916 16.876a.75.75 0 0 1 .208 1.04l-2 3a.75.75 0 1 1-1.248-.832l2-3a.75.75 0 0 1 1.04-.208Zm6.168 0a.75.75 0 0 1 1.04.208l2 3a.75.75 0 1 1-1.248.832l-2-3a.75.75 0 0 1 .208-1.04Z", "key": "f92ed3eb83663a802950ada95010522048085f55" }], ["path", { "fill": "#fff", "d": "M13.288 7.952a.75.75 0 0 1 1.06.036l1.393 1.492c.264.27.434.624.434 1.02 0 .4-.174.76-.445 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.37-1.37-1.388-1.488a.75.75 0 0 1 .036-1.06Zm-2.658.018a.75.75 0 0 1 0 1.06L9.26 10.4l1.388 1.488a.75.75 0 0 1-1.096 1.024L8.159 11.42a1.453 1.453 0 0 1-.434-1.02c0-.4.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Z", "key": "2f7264490c5ffeaa2a04d6867aa8d820da5fc689" }]]);
const BoardCross = createMeisterIcons("board-cross", [["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6A3.262 3.262 0 0 0 7 16.75h10a3.262 3.262 0 0 0 3.25-3.25v-6a.75.75 0 0 1 1.5 0v6A4.762 4.762 0 0 1 17 18.25h-.099l1.223 1.834a.75.75 0 1 1-1.248.832l-1.777-2.666H8.9l-1.777 2.666a.75.75 0 1 1-1.248-.832l1.223-1.834H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 2.75a.75.75 0 0 1 0 1.5Zm8.63 1.42a.75.75 0 0 1 0 1.06L14.46 7.9l1.17 1.17a.75.75 0 1 1-1.06 1.06L13.4 8.96l-1.17 1.17a.75.75 0 0 1-1.06-1.06l1.17-1.17-1.17-1.17a.75.75 0 1 1 1.06-1.06l1.17 1.17 1.17-1.17a.75.75 0 0 1 1.06 0Z", "key": "718f407deb5cbbbd15d732b49108e9b344b493d7" }]]);
const BoardHeart = createMeisterIcons("board-heart", [["path", { "fill": "currentColor", "d": "M11.9 5.75a.907.907 0 0 0-.67.28c-.293.293-.306.875-.04 1.195l.28.186 1.878 1.78L15.07 7.47l.16-.16c.244-.335.32-.56.32-.71 0-.156-.086-.375-.28-.57-.307-.307-.933-.307-1.24 0m0 0-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32m1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.052.053.309.206 1.805 1.71c.241.307.597.476.976.476.396 0 .754-.18 1.018-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.644-.314-1.225-.72-1.63-.796-.797-2.135-.883-3.05-.258Zm-.03 4.575v-.001Z", "key": "1bad0f0cc8584096337b6ce2a71b8ecde4b61f52" }], ["path", { "fill": "currentColor", "d": "M7 4.25A3.262 3.262 0 0 0 3.75 7.5v6A3.262 3.262 0 0 0 7 16.75h10a3.262 3.262 0 0 0 3.25-3.25v-6a.75.75 0 0 1 1.5 0v6A4.762 4.762 0 0 1 17 18.25H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 2.75a.75.75 0 0 1 0 1.5Z", "key": "c01905f5fd5984c016e283056be1d59e9449d301" }], ["path", { "fill": "currentColor", "d": "M8.916 16.876a.75.75 0 0 1 .208 1.04l-2 3a.75.75 0 1 1-1.248-.832l2-3a.75.75 0 0 1 1.04-.208Zm6.168 0a.75.75 0 0 1 1.04.208l2 3a.75.75 0 1 1-1.248.832l-2-3a.75.75 0 0 1 .208-1.04Z", "key": "8f9ca1bb08cedb4de198fa4c8753d57d6dd2decd" }]]);
const Bookmark = createMeisterIcons("bookmark", [["path", { "fill": "currentColor", "d": "M7.02 4.397c.51-.51 1.21-.77 1.98-.77h6a2.756 2.756 0 0 1 2.75 2.75v12.2c0 1.334-1.386 2.258-2.622 1.552l-.076-.044-2.999-2.799a.164.164 0 0 0-.106 0l-3 2.8-.075.043c-1.236.706-2.622-.218-2.622-1.551v-12.2c0-.77.26-1.471.77-1.98Zm1.06 1.06c-.19.191-.33.491-.33.92v12.2c0 .14.064.221.127.26a.215.215 0 0 0 .192.017l2.964-2.767.051-.034a1.658 1.658 0 0 1 1.832 0l.051.034 2.964 2.767c.08.028.144.012.191-.017.064-.039.128-.12.128-.26v-12.2c0-.685-.564-1.25-1.25-1.25H9c-.43 0-.73.14-.92.33Z", "key": "f32730ead880878e5bf5bfe89056f6e7e60319e5" }]]);
const BookmarkA = createMeisterIcons("bookmark-a", [["path", { "fill": "currentColor", "d": "M7.75 6.378c0-.686.564-1.25 1.25-1.25h6c.635 0 1.25.512 1.25 1.25v2.25h-8.5v-2.25Zm-1.5 3.75v-3.75A2.756 2.756 0 0 1 9 3.628h6c1.365 0 2.75 1.087 2.75 2.75v12.2c0 1.333-1.386 2.257-2.622 1.55l-.076-.043-2.999-2.799a.164.164 0 0 0-.106 0l-3 2.8-.075.043c-1.236.706-2.622-.218-2.622-1.551v-8.45Zm10 0v8.45c0 .139-.064.22-.128.259a.216.216 0 0 1-.191.016l-2.964-2.766-.051-.034a1.658 1.658 0 0 0-1.832 0l-.051.034-2.963 2.766a.216.216 0 0 1-.193-.016c-.063-.039-.127-.12-.127-.26v-8.45h8.5Z", "key": "12883258ba8da6cd93f097f9dafcba9e556cee14" }]]);
const BookmarkAb = createMeisterIcons("bookmark-ab", [["path", { "fill": "currentColor", "d": "M9 5.127c-.686 0-1.25.565-1.25 1.25v12.2c0 .14.064.221.127.26a.216.216 0 0 0 .192.016l2.964-2.766.051-.034a1.658 1.658 0 0 1 1.832 0l.051.034 2.964 2.766c.08.029.144.013.191-.016.064-.039.128-.12.128-.26v-12.2c0-.737-.615-1.25-1.25-1.25H9Zm-2.75 1.25A2.756 2.756 0 0 1 9 3.627h6c1.365 0 2.75 1.088 2.75 2.75v12.2c0 1.334-1.386 2.258-2.622 1.552l-.076-.044-2.999-2.799a.165.165 0 0 0-.106 0l-3 2.8-.075.043c-1.236.706-2.622-.218-2.622-1.552v-12.2Z", "key": "69121789c53d00eabd3671f21157005f85419e51" }], ["path", { "fill": "currentColor", "d": "M17 6.377v3H7v-3c0-1.1.9-2 2-2h6c1 0 2 .8 2 2Z", "key": "6cf7e787e52d3df5f469880200e13e29203726a9" }], ["path", { "fill": "currentColor", "d": "M9 5.127c-.686 0-1.25.565-1.25 1.25v2.25h8.5v-2.25c0-.737-.615-1.25-1.25-1.25H9Zm-2.75 1.25A2.756 2.756 0 0 1 9 3.627h6c1.365 0 2.75 1.088 2.75 2.75v3.75H6.25v-3.75Z", "key": "df085432a7981667c856e76267f6b09566b885c1" }]]);
const BookmarkAdd = createMeisterIcons("bookmark-add", [["path", { "fill": "currentColor", "d": "M15.5 3.128a.75.75 0 0 1 .75.75v2.25h2.25a.75.75 0 0 1 0 1.5h-2.25v2.25a.75.75 0 1 1-1.5 0v-2.25H12.5a.75.75 0 0 1 0-1.5h2.25v-2.25a.75.75 0 0 1 .75-.75Zm-8 1a2.756 2.756 0 0 0-2.75 2.75v12.2c0 1.333 1.386 2.257 2.622 1.55l.076-.043 2.999-2.799a.164.164 0 0 1 .106 0l3 2.8.075.043c1.236.706 2.622-.218 2.622-1.551v-6.2a.75.75 0 0 0-1.5 0v6.2c0 .139-.064.22-.127.259a.215.215 0 0 1-.192.017l-2.964-2.767-.051-.034a1.658 1.658 0 0 0-1.832 0l-.051.034-2.964 2.767a.215.215 0 0 1-.192-.017c-.063-.039-.127-.12-.127-.26v-12.2c0-.685.564-1.25 1.25-1.25h3a.75.75 0 0 0 0-1.5h-3Z", "key": "e34f7eb39f498d77cc0b3437efddacb12cbd0b3f" }]]);
const BookmarkB = createMeisterIcons("bookmark-b", [["path", { "fill": "currentColor", "d": "M7 6.38v12.2c0 .8.8 1.3 1.5.9l3-2.8c.3-.2.7-.2 1 0l3 2.8c.7.4 1.5-.1 1.5-.9V6.38c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2Z", "key": "99b9b69e2b9bca4bb2ec8e79de415060e8644747" }]]);
const BookmarkCross = createMeisterIcons("bookmark-cross", [["path", { "fill": "currentColor", "d": "M13.22 3.747a.75.75 0 0 1 1.06 0l1.62 1.62 1.62-1.62a.75.75 0 1 1 1.06 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06L15.9 7.489l-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 0-1.06Zm-5.27-.02a2.756 2.756 0 0 0-2.75 2.75v12.2c0 1.334 1.386 2.258 2.622 1.552l.076-.044 2.999-2.799a.164.164 0 0 1 .106 0l3 2.8.075.043c1.236.706 2.622-.218 2.622-1.552v-6.2a.75.75 0 0 0-1.5 0v6.2c0 .14-.064.221-.127.26a.215.215 0 0 1-.193.016l-2.963-2.766-.051-.034a1.658 1.658 0 0 0-1.832 0l-.051.034-2.963 2.766a.215.215 0 0 1-.193-.016c-.063-.039-.127-.12-.127-.26v-12.2c0-.685.564-1.25 1.25-1.25h3a.75.75 0 0 0 0-1.5h-3Z", "key": "8092390e8122591cef42f4f44b64bd12c8ca8169" }]]);
const BookmarkMinus = createMeisterIcons("bookmark-minus", [["path", { "fill": "currentColor", "d": "M8 3.628a2.756 2.756 0 0 0-2.75 2.75v12.2c0 1.333 1.386 2.257 2.622 1.55l.076-.043 2.999-2.799a.164.164 0 0 1 .106 0l3 2.8.075.043c1.236.706 2.622-.218 2.622-1.551v-6.2a.75.75 0 0 0-1.5 0v6.2c0 .139-.064.22-.127.259a.216.216 0 0 1-.192.016l-2.964-2.766-.051-.034a1.658 1.658 0 0 0-1.832 0l-.051.034-2.963 2.766a.216.216 0 0 1-.193-.016c-.063-.039-.127-.12-.127-.26v-12.2c0-.685.564-1.25 1.25-1.25h3a.75.75 0 0 0 0-1.5H8Zm6 3a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Z", "key": "da8f98d873b0187b6a924aedf14a2591c2384820" }]]);
const Bookmarks = createMeisterIcons("bookmarks", [["path", { "fill": "currentColor", "d": "M11 3.628c-.686 0-1.25.564-1.25 1.25v.25H13a2.756 2.756 0 0 1 2.75 2.75v7.47l2.19 2.016c.03.008.083.009.157-.034a.29.29 0 0 0 .153-.252v-12.2c0-.686-.564-1.25-1.25-1.25h-6Zm-2.75 1.25v.25H7c-.77 0-1.47.26-1.98.77-.51.509-.77 1.21-.77 1.98v12.2c0 1.333 1.386 2.257 2.622 1.55l.076-.043 2.824-2.635h.328c.04 0 .08-.003.118-.01l2.834 2.645.076.044c1.236.706 2.622-.218 2.622-1.551v-2.691l1.285 1.182.049.033c.584.389 1.273.313 1.769.023a1.79 1.79 0 0 0 .897-1.547v-12.2A2.756 2.756 0 0 0 17 2.128h-6a2.756 2.756 0 0 0-2.75 2.75Zm6 15.2v-12.2c0-.686-.564-1.25-1.25-1.25H7c-.43 0-.73.14-.92.33-.19.19-.33.49-.33.92v12.2c0 .139.064.22.127.259a.215.215 0 0 0 .192.017l2.964-2.767.051-.034a1.658 1.658 0 0 1 1.832 0l.051.034 2.964 2.767c.08.028.144.012.192-.017.063-.039.127-.12.127-.26Z", "key": "90ac4e38d6d41a2643e435b005d6f12b9395de9e" }]]);
const BookmarksB = createMeisterIcons("bookmarks-b", [["path", { "fill": "currentColor", "d": "M11 3.627c-.686 0-1.25.565-1.25 1.25v.25H13a2.756 2.756 0 0 1 2.75 2.75v7.471l2.179 2.005a.218.218 0 0 0 .194-.016c.063-.039.127-.12.127-.26v-12.2c0-.737-.615-1.25-1.25-1.25h-6Zm-2.75 1.25A2.756 2.756 0 0 1 11 2.127h6c1.365 0 2.75 1.088 2.75 2.75v12.2c0 1.334-1.386 2.258-2.622 1.552l-.073-.042-2.805-2.58v-8.13c0-.685-.564-1.25-1.25-1.25H8.25v-1.75Zm.7 13.1a.75.75 0 0 1 .75-.75h.4a.75.75 0 0 1 0 1.5h-.4a.75.75 0 0 1-.75-.75Z", "key": "5c5beab5e8a2aa891dfd5c7bc04eee5e65a8b981" }], ["path", { "fill": "currentColor", "d": "M15 7.877v12.2c0 .8-.8 1.3-1.5.9l-3-2.8c-.1-.1-.2-.1-.3-.2h-.4c-.1 0-.2.1-.3.1l-3 2.8c-.7.4-1.5-.1-1.5-.9v-12.1c0-1.1.9-2 2-2h6c1 0 2 .8 2 2Z", "key": "d0e91abbfa8b81b69b9aa208c9b0e418ffa5c477" }], ["path", { "fill": "currentColor", "d": "M7 6.627c-.686 0-1.25.565-1.25 1.25v12.1c0 .14.064.221.127.26a.216.216 0 0 0 .192.016l3.135-2.926h.17c.026-.011.056-.024.088-.036a.963.963 0 0 1 .338-.064h.71l.184.184c.056.028.191.095.325.225l2.912 2.717c.08.029.144.013.192-.016.063-.039.127-.12.127-.26v-12.2c0-.737-.615-1.25-1.25-1.25H7Zm-2.75 1.25A2.756 2.756 0 0 1 7 5.127h6c1.365 0 2.75 1.088 2.75 2.75v12.2c0 1.334-1.386 2.258-2.622 1.552l-.076-.044-3.042-2.84h-.003l-.034-.018h-.048a1.25 1.25 0 0 1-.043.02l-2.934 2.738-.076.044c-1.236.706-2.622-.218-2.622-1.552v-12.1Z", "key": "f5676e9d1eb76298c0a96c12a93bcf404acace17" }]]);
const BookmarksBvarB = createMeisterIcons("bookmarks-bvar-b", [["path", { "fill": "currentColor", "d": "M19 4.877v12.2c0 .8-.8 1.3-1.5.9l-2.5-2.3v-7.8c0-1.1-.9-2-2-2H9v-1c0-1.1.9-2 2-2h6c1 0 2 .8 2 2Z", "key": "963c7bd892226b769abbbd6b3ebe3a82ebf50af4" }], ["path", { "fill": "currentColor", "d": "M11 3.627c-.686 0-1.25.565-1.25 1.25v.25H13a2.756 2.756 0 0 1 2.75 2.75v7.471l2.179 2.005a.218.218 0 0 0 .194-.016c.063-.039.127-.12.127-.26v-12.2c0-.737-.615-1.25-1.25-1.25h-6Zm-2.75 1.25A2.756 2.756 0 0 1 11 2.127h6c1.365 0 2.75 1.088 2.75 2.75v12.2c0 1.334-1.386 2.258-2.622 1.552l-.073-.042-2.805-2.58v-8.13c0-.685-.564-1.25-1.25-1.25H8.25v-1.75Zm.7 13.1a.75.75 0 0 1 .75-.75h.4a.75.75 0 0 1 0 1.5h-.4a.75.75 0 0 1-.75-.75Z", "key": "3a0a427834d2d677a22aa9613c12c6a6ae55e63d" }], ["path", { "fill": "currentColor", "d": "M7 6.627c-.686 0-1.25.565-1.25 1.25v12.1c0 .14.064.221.127.26a.216.216 0 0 0 .192.016l3.135-2.926h.17c.026-.011.056-.024.088-.036a.963.963 0 0 1 .338-.064h.71l.184.184c.056.028.191.095.325.225l2.912 2.717c.08.029.144.013.192-.016.063-.039.127-.12.127-.26v-12.2c0-.737-.615-1.25-1.25-1.25H7Zm-2.75 1.25A2.756 2.756 0 0 1 7 5.127h6c1.365 0 2.75 1.088 2.75 2.75v12.2c0 1.334-1.386 2.258-2.622 1.552l-.076-.044-3.042-2.84h-.003l-.034-.018h-.048a1.25 1.25 0 0 1-.043.02l-2.934 2.738-.076.044c-1.236.706-2.622-.218-2.622-1.552v-12.1Z", "key": "22755dd5be968011d5d459a444f96becc54413a7" }]]);
const Bowl = createMeisterIcons("bowl", [["path", { "fill": "currentColor", "d": "M3.05 6.45h18V8c0 2.939-1.414 5.668-3.714 7.31a.75.75 0 0 1-.872-1.22c1.9-1.358 3.086-3.629 3.086-6.09v-.05h-15V8c0 2.461 1.186 4.732 3.086 6.09a.75.75 0 1 1-.872 1.22C4.464 13.668 3.05 10.94 3.05 8V6.45Z", "key": "f4e6fdbd0597e75c4cd2f19ce58352e074803724" }], ["path", { "fill": "currentColor", "d": "M7.7 15.25a.36.36 0 0 0-.35.35v.2c0 .186.164.35.35.35h8.7a.36.36 0 0 0 .35-.35v-.2a.36.36 0 0 0-.35-.35H7.7Zm-1.85.35a1.86 1.86 0 0 1 1.85-1.85h8.7a1.86 1.86 0 0 1 1.85 1.85v.2a1.86 1.86 0 0 1-1.85 1.85H7.7a1.86 1.86 0 0 1-1.85-1.85v-.2Z", "key": "b9211bab06a80f7da5ae7b763bbad605a90d6d7b" }]]);
const BowlB = createMeisterIcons("bowl-b", [["path", { "fill": "currentColor", "d": "M20.3 7.2V8c0 2.7-1.3 5.1-3.4 6.6-.1-.1-.3-.1-.4-.1H7.7c-.2 0-.4 0-.5.1-2.1-1.4-3.4-3.9-3.4-6.6v-.8h16.5Z", "key": "fc60000ea595c0cdcf2477f5f324298910beebb4" }], ["path", { "fill": "currentColor", "d": "M3.05 6.45h18V8a8.806 8.806 0 0 1-3.714 7.21l-.517.37-.33-.33H7.61l-.314.315-.512-.341C4.462 13.676 3.05 10.934 3.05 8V6.45Zm4.467 8.805h.001-.001ZM4.55 7.95V8c0 2.335 1.065 4.483 2.772 5.768.137-.018.277-.018.362-.018h8.823c.044 0 .143 0 .257.014A7.298 7.298 0 0 0 19.55 8v-.05h-15Z", "key": "95748d58710d59e7582df21e07fe5bfc5027d31d" }], ["path", { "fill": "currentColor", "d": "M16.29 15.35H7.6a2.985 2.985 0 0 0-.123.002.367.367 0 0 0-.092.1.278.278 0 0 0-.035.148v.2c0 .002.007.064.088.14.076.071.172.11.262.11h8.8a.27.27 0 0 0 .176-.073.228.228 0 0 0 .074-.177v-.2c0-.022-.028-.13-.197-.165l-.223-.044-.04-.041Zm.737-1.34a1.256 1.256 0 0 0-.727-.16H7.583c-.087 0-.218 0-.356.023a1.603 1.603 0 0 0-.462.156l-.042.021-.039.026c-.473.315-.834.833-.834 1.524v.2c0 .96.882 1.75 1.85 1.75h8.8c.865 0 1.75-.688 1.75-1.75v-.2c0-.72-.49-1.367-1.223-1.59Z", "key": "4382e6b5bfef94a418bde2d49d6d2e130acff144" }]]);
const Bowling = createMeisterIcons("bowling", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "ffd6f90a3d80feeabe4b83b5122d9196a988dd9a" }], ["path", { "fill": "currentColor", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .3 0 .4.1.1.1.2.1.3.2.4.4.4 1 0 1.4-.1.1-.2.2-.3.2-.2.1-.3.1-.4.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm4.1-2.2c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7Z", "key": "cc2bfbac55181772334311bf88595ef89a1248c1" }]]);
const BowlingB = createMeisterIcons("bowling-b", [["path", { "fill": "currentColor", "d": "M3 12c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4.1-9-9Z", "key": "f507f02ed01d14464773522358f88063b70ef566" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "b3fe819fe86803c953aaeadc4f804f5d7cda97c6" }], ["path", { "fill": "#fff", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .3 0 .4.1.1.1.2.1.3.2.4.4.4 1 0 1.4-.1.1-.2.2-.3.2-.2.1-.3.1-.4.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm4.1-2.2c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7Z", "key": "651814783243084987acdf7d591e90ca119ac299" }]]);
const Box = createMeisterIcons("box", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h1.25V7.5c0 1.214 1.036 2.25 2.25 2.25h3c1.214 0 2.25-1.036 2.25-2.25V3.75H17A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17V7Zm10.5-3.25h-4.5V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "7208797eb5565e2c611fb119d516c67dba738ad9" }]]);
const BoxAdd = createMeisterIcons("box-add", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7A3.262 3.262 0 0 0 17 3.75h-1.25V7.5c0 1.214-1.036 2.25-2.25 2.25h-3c-1.214 0-2.25-1.036-2.25-2.25V3.75H7Zm2.75 0V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75h-4.5ZM16.15 16a.75.75 0 0 0-1.5 0v1.65H13a.75.75 0 0 0 0 1.5h1.65v1.75a.75.75 0 0 0 1.5 0v-1.75h1.75a.75.75 0 0 0 0-1.5h-1.75V16Z", "key": "27e2ba0f0778159117f7f6bbdce2e89450f648c3" }]]);
const BoxAddB = createMeisterIcons("box-add-b", [["path", { "fill": "currentColor", "d": "M15.45 15.3a.75.75 0 0 1 .75.75v4.9a.75.75 0 1 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "053e0b35f99bd29cb0283893867c3c71ca805b0a" }], ["path", { "fill": "currentColor", "d": "M12.3 18.45a.75.75 0 0 1 .75-.75h4.9a.75.75 0 1 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Zm2-15.4a.75.75 0 0 1 .75-.75h2a4.762 4.762 0 0 1 4.75 4.75v5a.75.75 0 1 1-1.5 0v-5a3.262 3.262 0 0 0-3.25-3.25h-2a.75.75 0 0 1-.75-.75Zm-7.25.75A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-10A4.762 4.762 0 0 1 7.05 2.3h2a.75.75 0 0 1 0 1.5h-2Z", "key": "f2dd9c6b6faa3034cce4d3dc025ff383e605229d" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "02c10d532386ceefdbf6c7a0f90a6f2fd5958c27" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Z", "key": "9ef2607f45d0d2333ef9cf721e00dd874fb036bc" }]]);
const BoxArrowDownleft = createMeisterIcons("box-arrow-downleft", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h1.25V7.5c0 1.214 1.036 2.25 2.25 2.25h3c1.214 0 2.25-1.036 2.25-2.25V3.75H17A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17V7Zm10.5-3.25h-4.5V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Zm10.13 10.32a.75.75 0 0 1 0 1.06l-2.02 2.02h.99a.75.75 0 0 1 0 1.5h-2.4c-.379 0-.654-.197-.81-.394a1.075 1.075 0 0 1-.24-.656v-2.4a.75.75 0 0 1 1.5 0v.79l1.92-1.92a.75.75 0 0 1 1.06 0Z", "key": "5b1ef7054233536039bed63c610f769807b24c9f" }]]);
const BoxArrowDownleftB = createMeisterIcons("box-arrow-downleft-b", [["path", { "fill": "currentColor", "d": "M7.05 3.8A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-10c0-1.873-1.452-3.25-3.25-3.25H15.8v3.75c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V3.8H7.05ZM2.3 7.05A4.762 4.762 0 0 1 7.05 2.3H9.8v5.25c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V2.3h2.75c2.602 0 4.75 2.024 4.75 4.75v10a4.762 4.762 0 0 1-4.75 4.75h-10a4.762 4.762 0 0 1-4.75-4.75v-10Z", "key": "f644398532e092cb48189fcf865a6136352e1ab1" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "5441ea2733a0315cf2d9fbd6ce72e821a40bd2b8" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Zm7.38 8.82a.75.75 0 0 1 0 1.06l-2.9 2.9a.75.75 0 0 1-1.06-1.06l2.9-2.9a.75.75 0 0 1 1.06 0Z", "key": "8e775448fa1a4f4320c869190529c9d25d227a4f" }], ["path", { "fill": "currentColor", "d": "M13.45 13a.75.75 0 0 1 .75.75v1.95h1.95a.75.75 0 0 1 0 1.5h-2.4c-.379 0-.654-.198-.81-.394a1.075 1.075 0 0 1-.24-.656v-2.4a.75.75 0 0 1 .75-.75Z", "key": "00be9f647ed5216f94d2f93036357caa850336f7" }]]);
const BoxArrowTopleft = createMeisterIcons("box-arrow-topleft", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h1.25V7.5c0 1.214 1.036 2.25 2.25 2.25h3c1.214 0 2.25-1.036 2.25-2.25V3.75H17A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17V7Zm10.5-3.25h-4.5V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Zm8.11 11.6H16a.75.75 0 0 0 0-1.5h-2.4a1.07 1.07 0 0 0-.656.24 1.033 1.033 0 0 0-.394.81v2.4a.75.75 0 0 0 1.5 0v-.89l2.02 2.02a.75.75 0 0 0 1.06-1.06l-2.02-2.02Z", "key": "26f36c711909291cdf6f0ed1403722ad9e73ae33" }]]);
const BoxArrowTopleftB = createMeisterIcons("box-arrow-topleft-b", [["path", { "fill": "currentColor", "d": "M7.05 3.8A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-10c0-1.873-1.452-3.25-3.25-3.25H15.8v3.75c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V3.8H7.05ZM2.3 7.05A4.762 4.762 0 0 1 7.05 2.3H9.8v5.25c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V2.3h2.75c2.602 0 4.75 2.024 4.75 4.75v10a4.762 4.762 0 0 1-4.75 4.75h-10a4.762 4.762 0 0 1-4.75-4.75v-10Z", "key": "0fc41c01662b3e0eb42890df9e9662d54f8309d5" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "13b6f3dc718b59786ff0d53845eeed849180e24b" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Zm3.42 9.22a.75.75 0 0 1 1.06 0l2.9 2.9a.75.75 0 0 1-1.06 1.06l-2.9-2.9a.75.75 0 0 1 0-1.06Z", "key": "3e8a76617a90ecb78f7bbd998b05fb78400cdb6c" }], ["path", { "fill": "currentColor", "d": "M14.1 13.9h1.95a.75.75 0 0 0 0-1.5h-2.4c-.247 0-.483.101-.656.24a1.033 1.033 0 0 0-.394.81v2.4a.75.75 0 0 0 1.5 0V13.9Z", "key": "10960ba6fc437bd844ec85375d109246ec649293" }]]);
const BoxB = createMeisterIcons("box-b", [["path", { "fill": "currentColor", "d": "M7.05 3.8A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-10c0-1.873-1.452-3.25-3.25-3.25H15.8v3.75c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V3.8H7.05ZM2.3 7.05A4.762 4.762 0 0 1 7.05 2.3H9.8v5.25c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V2.3h2.75c2.602 0 4.75 2.024 4.75 4.75v10a4.762 4.762 0 0 1-4.75 4.75h-10a4.762 4.762 0 0 1-4.75-4.75v-10Z", "key": "556fc035eef81b99e91ecb33323e43bac2d69305" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "3d782002fb531930eedb656ee08555fcba5d45e5" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Z", "key": "586c95c9fa56f3c16391f2e9b67384b616bd023d" }]]);
const BoxBlock = createMeisterIcons("box-block", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h1.25V7.5c0 1.214 1.036 2.25 2.25 2.25h3c1.214 0 2.25-1.036 2.25-2.25V3.75H17A3.262 3.262 0 0 1 20.25 7v5a.75.75 0 0 0 1.5 0V7A4.762 4.762 0 0 0 17 2.25H7A4.762 4.762 0 0 0 2.25 7v10A4.762 4.762 0 0 0 7 21.75a.75.75 0 0 0 0-1.5A3.262 3.262 0 0 1 3.75 17V7Zm6-3.25V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75h-4.5Zm7.035 11.304c-.994-.59-2.327-.45-3.255.476l-.01.01-.01.01c-.892.828-1.06 2.155-.442 3.221l3.717-3.717Zm1.047 1.075-3.715 3.715c1.018.596 2.4.444 3.233-.454l.02-.02.02-.02c.892-.828 1.06-2.154.442-3.22Zm.608-1.65c-1.605-1.717-4.282-1.687-5.96-.019-1.718 1.605-1.689 4.282-.02 5.96 1.592 1.703 4.374 1.707 5.97.01 1.708-1.605 1.675-4.275.01-5.95Z", "key": "95778efa66bbdb20080d00365d4715b0417debee" }]]);
const BoxBlockB = createMeisterIcons("box-block-b", [["path", { "fill": "currentColor", "d": "M14.3 3.05a.75.75 0 0 1 .75-.75h2a4.762 4.762 0 0 1 4.75 4.75v5a.75.75 0 1 1-1.5 0v-5a3.262 3.262 0 0 0-3.25-3.25h-2a.75.75 0 0 1-.75-.75Zm-7.25.75A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-10A4.762 4.762 0 0 1 7.05 2.3h2a.75.75 0 0 1 0 1.5h-2Z", "key": "190673d6121e9ea945a022e1a42a6f97ba8e2eb3" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "36d5b1334ac2c6c639b4e10b9da9abbd19678dc6" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Zm7.6 11.76c-.992-1.069-2.701-1.098-3.82.02l-.01.01-.01.01c-1.069.992-1.098 2.701.02 3.82l.01.01.01.01c1.003 1.08 2.797 1.08 3.8 0l.02-.02.02-.02c1.069-.992 1.098-2.701-.02-3.82l-.01-.01-.01-.01Zm1.09-1.03c-1.605-1.718-4.282-1.689-5.96-.02-1.718 1.605-1.689 4.282-.02 5.96 1.592 1.703 4.374 1.707 5.97.01 1.708-1.606 1.675-4.275.01-5.95Z", "key": "acf0ce3d7a4109f3278a1b4742a6d7fe943a32d3" }], ["path", { "fill": "currentColor", "d": "m12.52 19.42 4.9-4.9 1.06 1.06-4.9 4.9-1.06-1.06Z", "key": "7f81bff7c1119736a8bcf4f4454d356c3b31b97b" }]]);
const BoxCheck = createMeisterIcons("box-check", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7A3.262 3.262 0 0 0 17 3.75h-1.25V7.5c0 1.214-1.036 2.25-2.25 2.25h-3c-1.214 0-2.25-1.036-2.25-2.25V3.75H7Zm2.75 0V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75h-4.5Zm7.388 11.328a.75.75 0 0 1-.016 1.06l-3.206 3.11a.833.833 0 0 1-.256.247.901.901 0 0 1-.473.13c-.229 0-.506-.083-.717-.295l-.038-.037L11.2 17.65a.75.75 0 0 1 1.2-.9l.815 1.087 2.863-2.775a.75.75 0 0 1 1.06.016Z", "key": "758faf6b8ec1819f657ca9e4b7b87eb0fb3c0771" }]]);
const BoxCheckB = createMeisterIcons("box-check-b", [["path", { "fill": "currentColor", "d": "M17.188 15.128a.75.75 0 0 1-.016 1.06l-3.206 3.109a.833.833 0 0 1-.256.248.901.901 0 0 1-.473.13c-.229 0-.505-.083-.717-.295l-.038-.037L11.25 17.7a.75.75 0 0 1 1.2-.9l.816 1.087 2.862-2.775a.75.75 0 0 1 1.06.016ZM14.3 3.05a.75.75 0 0 1 .75-.75h2a4.762 4.762 0 0 1 4.75 4.75v5a.75.75 0 1 1-1.5 0v-5a3.262 3.262 0 0 0-3.25-3.25h-2a.75.75 0 0 1-.75-.75Zm-7.25.75A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-10A4.762 4.762 0 0 1 7.05 2.3h2a.75.75 0 0 1 0 1.5h-2Z", "key": "2fb8d354588a443f5b300b08297bbeff961f8678" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "f2e5fa5d91aa958a15d7a374f094635ab94b3a48" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Z", "key": "57f110e9004a19439507ed83bf744d6d7060538f" }]]);
const BoxCross = createMeisterIcons("box-cross", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7A3.262 3.262 0 0 0 17 3.75h-1.25V7.5c0 1.214-1.036 2.25-2.25 2.25h-3c-1.214 0-2.25-1.036-2.25-2.25V3.75H7Zm2.75 0V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75h-4.5Zm7.88 13.48a.75.75 0 1 0-1.06-1.06l-1.17 1.17-1.17-1.17a.75.75 0 0 0-1.06 1.06l1.17 1.17-1.17 1.17a.75.75 0 1 0 1.06 1.06l1.17-1.17 1.17 1.17a.75.75 0 0 0 1.06-1.06l-1.17-1.17 1.17-1.17Z", "key": "80ce6e0a16ab2b065fb6b92cc25906b590047e41" }]]);
const BoxCrossB = createMeisterIcons("box-cross-b", [["path", { "fill": "currentColor", "d": "M17.68 16.22a.75.75 0 0 1 0 1.06l-3.4 3.4a.75.75 0 1 1-1.06-1.06l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "b6658ca119ac5696b5cd976e9139efeaaf3186db" }], ["path", { "fill": "currentColor", "d": "M13.22 16.22a.75.75 0 0 1 1.06 0l3.4 3.4a.75.75 0 1 1-1.06 1.06l-3.4-3.4a.75.75 0 0 1 0-1.06ZM14.3 3.05a.75.75 0 0 1 .75-.75h2a4.762 4.762 0 0 1 4.75 4.75v5a.75.75 0 1 1-1.5 0v-5a3.262 3.262 0 0 0-3.25-3.25h-2a.75.75 0 0 1-.75-.75Zm-7.25.75A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-10A4.762 4.762 0 0 1 7.05 2.3h2a.75.75 0 0 1 0 1.5h-2Z", "key": "7e07e28ce2450ee50c452305174196c4347585e4" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "f8da992bc48165d098b3bf756d6f75cd5dd0d2e9" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Z", "key": "6bcd9847f49f18155cc0983ef33cc87724ca83ed" }]]);
const BoxCursor = createMeisterIcons("box-cursor", [["path", { "fill": "currentColor", "d": "M7 3.668a3.262 3.262 0 0 0-3.25 3.25v10A3.262 3.262 0 0 0 7 20.168a.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-10A4.762 4.762 0 0 1 7 2.168h10a4.762 4.762 0 0 1 4.75 4.75v5a.75.75 0 0 1-1.5 0v-5A3.262 3.262 0 0 0 17 3.668h-1.25v3.75c0 1.214-1.036 2.25-2.25 2.25h-3c-1.214 0-2.25-1.036-2.25-2.25v-3.75H7Zm2.75 3.75v-3.75h4.5v3.75c0 .386-.364.75-.75.75h-3c-.386 0-.75-.364-.75-.75Zm3.719 11.514-1.74-5.284 5.285 1.739-2.204.386a.976.976 0 0 0-.59.29c-.13.13-.223.285-.29.42l-.05.098-.411 2.35Zm-2.84-7.043a.972.972 0 0 1 .638.028l7.87 2.59c.537.179.738.683.738 1.049 0 .194-.052.433-.213.642a.952.952 0 0 1-.676.367l-3.693.646-.664 3.792-.018.052a1.12 1.12 0 0 1-.936.772.992.992 0 0 1-.72-.21 1.114 1.114 0 0 1-.374-.585l-2.54-7.718a.845.845 0 0 1-.154-.557.951.951 0 0 1 .283-.594c.119-.12.276-.22.459-.274Z", "key": "72906295bf1cc4aa42ba664a5068fd4ab7d545d4" }]]);
const BoxCursorB = createMeisterIcons("box-cursor-b", [["path", { "fill": "currentColor", "d": "M14.3 2.9a.75.75 0 0 1 .75-.75h2A4.762 4.762 0 0 1 21.8 6.9v5a.75.75 0 1 1-1.5 0v-5a3.262 3.262 0 0 0-3.25-3.25h-2a.75.75 0 0 1-.75-.75Zm-7.25.75A3.262 3.262 0 0 0 3.8 6.9v10a3.262 3.262 0 0 0 3.25 3.25.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.3 16.9v-10a4.762 4.762 0 0 1 4.75-4.75h2a.75.75 0 0 1 0 1.5h-2Z", "key": "1bcae770b5a27bcd4e7487d952118e17ed5b1c28" }], ["path", { "fill": "currentColor", "d": "M15.05 2.9v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5V2.9h6Z", "key": "51a56d0d3d24b20c117340309eaf99745d23157c" }], ["path", { "fill": "currentColor", "d": "M8.3 2.15h7.5V7.4c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.65 8.3 8.614 8.3 7.4V2.15Zm1.5 1.5V7.4c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.65H9.8Zm1.25 8.95 7.9 2.6c.3.1.3.6 0 .6l-4 .7c-.1 0-.2.1-.3.3l-.7 4c-.1.3-.5.4-.6 0l-2.6-7.9c-.2-.1.1-.4.3-.3Z", "key": "fcbda6c8a98f6ec0b586cd6da3b00045f14e6e97" }], ["path", { "fill": "currentColor", "d": "m11.78 13.63 1.739 5.284.411-2.351.05-.098c.067-.136.16-.29.29-.42a.975.975 0 0 1 .59-.29l2.204-.386-5.284-1.74Zm-.463-1.732a.972.972 0 0 0-.638-.027 1.09 1.09 0 0 0-.46.274.952.952 0 0 0-.282.594.845.845 0 0 0 .154.557l2.54 7.718c.058.21.173.424.374.584a.992.992 0 0 0 .72.21c.456-.045.805-.377.937-.77l.017-.054.664-3.791 3.693-.647a.952.952 0 0 0 .676-.366c.161-.21.213-.448.213-.643 0-.366-.2-.87-.738-1.049l-7.87-2.59Z", "key": "49349ba9f2a128804533293aca6343557d8160aa" }]]);
const BoxDownload = createMeisterIcons("box-download", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h1.25V7.5c0 1.214 1.036 2.25 2.25 2.25h3c1.214 0 2.25-1.036 2.25-2.25V3.75H17A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17V7Zm10.5-3.25h-4.5V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Zm8 9.4a.75.75 0 0 1 .75.75v2.99l.72-.72a.75.75 0 1 1 1.06 1.06l-1.7 1.7a1.041 1.041 0 0 1-.742.296 1.4 1.4 0 0 1-.623-.155l-.11-.054-1.785-1.786a.75.75 0 0 1 1.06-1.06l.62.619V12.4a.75.75 0 0 1 .75-.75Z", "key": "2dac49b16847e81be0d46f8e96106c46c0663510" }]]);
const BoxDownloadB = createMeisterIcons("box-download-b", [["path", { "fill": "currentColor", "d": "M7.05 3.8A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-10c0-1.873-1.452-3.25-3.25-3.25H15.8v3.75c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V3.8H7.05ZM2.3 7.05A4.762 4.762 0 0 1 7.05 2.3H9.8v5.25c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V2.3h2.75c2.602 0 4.75 2.024 4.75 4.75v10a4.762 4.762 0 0 1-4.75 4.75h-10a4.762 4.762 0 0 1-4.75-4.75v-10Z", "key": "1f32d5962780e5fff277930f2b66f8c3f36fdc16" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "1849a4381c1335077b21fe1960bdc271a56c00bd" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Zm5.25 7.9a.75.75 0 0 1 .75.75v4.1a.75.75 0 1 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "df42931845e1dbc28b0f67b9822520ac23cf35a6" }], ["path", { "fill": "currentColor", "d": "M12.62 14.72a.75.75 0 0 1 1.06 0l1.42 1.42 1.42-1.42a.75.75 0 0 1 1.06 1.06l-1.7 1.7a1.041 1.041 0 0 1-.742.295c-.225 0-.439-.062-.623-.154l-.11-.054-1.785-1.787a.75.75 0 0 1 0-1.06Z", "key": "9c0df8f94d1b4d305202fcb585d1113ed2ab267f" }]]);
const BoxHeart = createMeisterIcons("box-heart", [["path", { "fill": "currentColor", "d": "M12.5 15.75a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l1.92 1.92 1.88-1.88c.244-.335.32-.56.32-.71 0-.09-.026-.233-.078-.401a2.876 2.876 0 0 0-.088-.24c-.326-.233-.873-.21-1.154.071l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.381-1.038c-.394-.255-.86-.462-1.38-.462-.72 0-1.306.294-1.731.72-.893.893-.893 2.467 0 3.36l1.958 1.959c.242.314.601.486.985.486.395 0 .753-.18 1.017-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.31-.074-.617-.146-.849a4.138 4.138 0 0 0-.233-.586l-.055-.11-.086-.085c-.796-.797-2.135-.883-3.049-.258Zm-.232 4.575.002-.001h-.002Z", "key": "39e531008725a0b70a437dd185312d7e582459b2" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7A3.262 3.262 0 0 0 17 3.75H7Z", "key": "db21a27713f4f7c9136010595f3cc473213b900a" }], ["path", { "fill": "currentColor", "d": "M9 2.25a.75.75 0 0 1 .75.75v4.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3a.75.75 0 0 1 1.5 0v4.5c0 1.214-1.036 2.25-2.25 2.25h-3c-1.214 0-2.25-1.036-2.25-2.25V3A.75.75 0 0 1 9 2.25Z", "key": "45ebded4fc0bcfd1b269c82d5f83aa1d8136d734" }]]);
const BoxHeartB = createMeisterIcons("box-heart-b", [["path", { "fill": "currentColor", "d": "M12.5 15.75a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l1.92 1.92 1.88-1.88c.244-.335.32-.56.32-.71 0-.09-.026-.233-.078-.401a2.876 2.876 0 0 0-.088-.24c-.326-.233-.873-.21-1.154.071l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.381-1.038c-.394-.255-.86-.462-1.38-.462-.72 0-1.306.294-1.731.72-.893.893-.893 2.467 0 3.36l1.958 1.959c.242.314.601.486.985.486.395 0 .753-.18 1.017-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.31-.074-.617-.146-.849a4.138 4.138 0 0 0-.233-.586l-.055-.11-.086-.085c-.796-.797-2.135-.883-3.049-.258Zm-.232 4.575.002-.001h-.002ZM14.25 3a.75.75 0 0 1 .75-.75h2A4.762 4.762 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7A3.262 3.262 0 0 0 17 3.75h-2a.75.75 0 0 1-.75-.75ZM7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h2a.75.75 0 0 1 0 1.5H7Z", "key": "768732615147d4f8c3673c87516e4990de4d59d6" }], ["path", { "fill": "currentColor", "d": "M15 3v4.5c0 .8-.7 1.5-1.5 1.5h-3C9.7 9 9 8.3 9 7.5V3h6Z", "key": "d8929b8144ded6a188612c045fdfa5d2294d0fe7" }], ["path", { "fill": "currentColor", "d": "M8.25 2.25h7.5V7.5c0 1.214-1.036 2.25-2.25 2.25h-3c-1.214 0-2.25-1.036-2.25-2.25V2.25Zm1.5 1.5V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75h-4.5Z", "key": "2ec8a7d0b141f4c036f35bbd4d6bf08cc44ba776" }]]);
const BoxUp = createMeisterIcons("box-up", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h1.25V7.5c0 1.214 1.036 2.25 2.25 2.25h3c1.214 0 2.25-1.036 2.25-2.25V3.75H17A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17V7Zm10.5-3.25h-4.5V7.5c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.75ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Zm8.75 11.761.72.72a.75.75 0 1 0 1.06-1.061l-1.786-1.786-.109-.055a1.403 1.403 0 0 0-.623-.154c-.219 0-.51.063-.742.295l-1.7 1.7a.75.75 0 0 0 1.06 1.06l.62-.62V17a.75.75 0 0 0 1.5 0v-2.989Z", "key": "6e6802fcdd5f4827c2b1a8ce439e9324e04bc2cc" }]]);
const BoxUpB = createMeisterIcons("box-up-b", [["path", { "fill": "currentColor", "d": "M7.05 3.8A3.262 3.262 0 0 0 3.8 7.05v10a3.262 3.262 0 0 0 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-10c0-1.873-1.452-3.25-3.25-3.25H15.8v3.75c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V3.8H7.05ZM2.3 7.05A4.762 4.762 0 0 1 7.05 2.3H9.8v5.25c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V2.3h2.75c2.602 0 4.75 2.024 4.75 4.75v10a4.762 4.762 0 0 1-4.75 4.75h-10a4.762 4.762 0 0 1-4.75-4.75v-10Z", "key": "151b897ed85bc96e7ddf6a696cdd1c4bd253f756" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v4.5c0 .8-.7 1.5-1.5 1.5h-3c-.8 0-1.5-.7-1.5-1.5v-4.5h6Z", "key": "133dd704a2a28da57df16216c6362004958f20f2" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v5.25c0 1.214-1.036 2.25-2.25 2.25h-3C9.336 9.8 8.3 8.764 8.3 7.55V2.3Zm1.5 1.5v3.75c0 .386.364.75.75.75h3c.386 0 .75-.364.75-.75V3.8H9.8Zm5.25 8.4a.75.75 0 0 1 .75.75v4.1a.75.75 0 1 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "03f24eb552c92c5665a57317a1d125b672cf53d5" }], ["path", { "fill": "currentColor", "d": "m15.1 13.36 1.42 1.42a.75.75 0 0 0 1.06-1.06l-1.786-1.786-.108-.055a1.403 1.403 0 0 0-.623-.154c-.22 0-.511.063-.743.295l-1.7 1.7a.75.75 0 1 0 1.06 1.06l1.42-1.42Z", "key": "06c8483bad3df5a3dddb08de2991f95e21770a21" }]]);
const Braces = createMeisterIcons("braces", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75a.75.75 0 0 0 0-1.5A4.762 4.762 0 0 0 2.25 7v10A4.762 4.762 0 0 0 7 21.75a.75.75 0 0 0 0-1.5A3.262 3.262 0 0 1 3.75 17V7ZM17 2.25a.75.75 0 0 0 0 1.5A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25a.75.75 0 0 0 0 1.5A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25Z", "key": "c9f9bbfc26cda433d0f79c36ac8863592ba1ab9e" }]]);
const Branch = createMeisterIcons("branch", [["path", { "fill": "currentColor", "d": "M4 3.75a.75.75 0 0 1 .75.75v3.55h2.537A2.758 2.758 0 0 1 10 5.75h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 12.25h-8a2.756 2.756 0 0 1-2.75-2.7h-2.5V15c0 .686.564 1.25 1.25 1.25h1.261A2.757 2.757 0 0 1 10 13.75h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 20.25h-8a2.757 2.757 0 0 1-2.739-2.5H6A2.756 2.756 0 0 1 3.25 15V4.5A.75.75 0 0 1 4 3.75ZM8.75 8.8v.7c0 .686.564 1.25 1.25 1.25h8c.686 0 1.25-.564 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8c-.686 0-1.25.564-1.25 1.25v.3Zm0 8.7v-1c0-.686.564-1.25 1.25-1.25h8c.686 0 1.25.564 1.25 1.25v1c0 .686-.564 1.25-1.25 1.25h-8c-.686 0-1.25-.564-1.25-1.25Z", "key": "bcc8a76aaa4ad9e28dbf9344e3466df269c28f25" }]]);
const BranchAdd = createMeisterIcons("branch-add", [["path", { "fill": "currentColor", "d": "M4 2.05a.75.75 0 0 1 .75.75v3.55h2.537A2.758 2.758 0 0 1 10 4.05h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 10.55h-8a2.756 2.756 0 0 1-2.75-2.7h-2.5v5.45c0 .686.564 1.25 1.25 1.25h1.261A2.757 2.757 0 0 1 10 12.05h8a2.756 2.756 0 0 1 2.75 2.75.75.75 0 1 1-1.5 0c0-.686-.564-1.25-1.25-1.25h-8c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25a.75.75 0 0 1 0 1.5 2.757 2.757 0 0 1-2.739-2.5H6a2.756 2.756 0 0 1-2.75-2.75V2.8A.75.75 0 0 1 4 2.05ZM8.75 7.1v.7c0 .686.564 1.25 1.25 1.25h8c.686 0 1.25-.564 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8c-.686 0-1.25.564-1.25 1.25v.3Zm7.4 9.2a.75.75 0 0 0-1.5 0v1.65H13a.75.75 0 0 0 0 1.5h1.65v1.75a.75.75 0 1 0 1.5 0v-1.75h1.75a.75.75 0 0 0 0-1.5h-1.75V16.3Z", "key": "bf6412a0023ea76aea719d177e45f0238bbd8562" }]]);
const BranchAddB = createMeisterIcons("branch-add-b", [["path", { "fill": "currentColor", "d": "M15.4 15.55a.75.75 0 0 1 .75.75v4.9a.75.75 0 1 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "825d275c5c93fb0d9d34a54a40466d7f44c77fb2" }], ["path", { "fill": "currentColor", "d": "M12.25 18.7a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5H13a.75.75 0 0 1-.75-.75ZM18 9.8h-8c-1.1 0-2-.9-2-2v-1c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2Z", "key": "aded00bad16c7af7bf6d2106e6eb35fa6bcb0efc" }], ["path", { "fill": "currentColor", "d": "M10 5.55c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25h8c.686 0 1.25-.564 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8ZM7.25 6.8A2.756 2.756 0 0 1 10 4.05h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 10.55h-8A2.756 2.756 0 0 1 7.25 7.8v-1ZM10 13.55c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25a.75.75 0 0 1 0 1.5 2.756 2.756 0 0 1-2.75-2.75v-1A2.756 2.756 0 0 1 10 12.05h8a2.756 2.756 0 0 1 2.75 2.75.75.75 0 1 1-1.5 0c0-.686-.564-1.25-1.25-1.25h-8Z", "key": "ee671a1e4b56710f67c1d2f3c2330fff5ad18b11" }], ["path", { "fill": "currentColor", "d": "M4 2.05a.75.75 0 0 1 .75.75v10.5c0 .686.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H6a2.756 2.756 0 0 1-2.75-2.75V2.8A.75.75 0 0 1 4 2.05Z", "key": "b7d84f4ecd975c3955d42edb738c36770467fc3d" }], ["path", { "fill": "currentColor", "d": "M3.25 7.1A.75.75 0 0 1 4 6.35h4a.75.75 0 1 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "49105692b62b9024b936c808ff7940517a7aa8a4" }]]);
const BranchB = createMeisterIcons("branch-b", [["path", { "fill": "currentColor", "d": "M18 11.5h-8c-1.1 0-2-.9-2-2v-1c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2Z", "key": "3d00b7dc07c4d811c30d18267080f1968f3ea4bc" }], ["path", { "fill": "currentColor", "d": "M10 7.25c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25h8c.686 0 1.25-.564 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8ZM7.25 8.5A2.756 2.756 0 0 1 10 5.75h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 12.25h-8A2.756 2.756 0 0 1 7.25 9.5v-1ZM18 19.5h-8c-1.1 0-2-.9-2-2v-1c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2Z", "key": "6f0b6c4c001c1d8293aa3afeac8e8fdf1fd3ad65" }], ["path", { "fill": "currentColor", "d": "M10 15.25c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25h8c.686 0 1.25-.564 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8ZM7.25 16.5A2.756 2.756 0 0 1 10 13.75h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 20.25h-8a2.756 2.756 0 0 1-2.75-2.75v-1Z", "key": "b439e257815fa13623be2342df8c7d56e316e254" }], ["path", { "fill": "currentColor", "d": "M4 3.75a.75.75 0 0 1 .75.75V15c0 .686.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H6A2.756 2.756 0 0 1 3.25 15V4.5A.75.75 0 0 1 4 3.75Z", "key": "9ed7f41dc9edee9f5c9fbc13b72df8de500d4054" }], ["path", { "fill": "currentColor", "d": "M3.25 8.8A.75.75 0 0 1 4 8.05h4a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "864f1c24ca854669f36ae72f5a0d5071483ebe7c" }]]);
const BranchCheck = createMeisterIcons("branch-check", [["path", { "fill": "currentColor", "d": "M4 2.563a.75.75 0 0 1 .75.75v3.55h2.537A2.758 2.758 0 0 1 10 4.563h8a2.756 2.756 0 0 1 2.75 2.75v1a2.756 2.756 0 0 1-2.75 2.75h-8a2.756 2.756 0 0 1-2.75-2.7h-2.5v5.45c0 .685.564 1.25 1.25 1.25h1.261a2.757 2.757 0 0 1 2.739-2.5h8a2.756 2.756 0 0 1 2.75 2.75.75.75 0 0 1-1.5 0c0-.686-.564-1.25-1.25-1.25h-8c-.686 0-1.25.564-1.25 1.25v1c0 .685.564 1.25 1.25 1.25a.75.75 0 0 1 0 1.5 2.757 2.757 0 0 1-2.739-2.5H6a2.756 2.756 0 0 1-2.75-2.75v-10.5a.75.75 0 0 1 .75-.75Zm4.75 5.05v.7c0 .685.564 1.25 1.25 1.25h8c.686 0 1.25-.565 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8c-.686 0-1.25.564-1.25 1.25v.3Zm9.388 9.278a.75.75 0 0 1-.016 1.06l-3.206 3.109a.831.831 0 0 1-.256.248.902.902 0 0 1-.473.13c-.229 0-.506-.083-.717-.295l-.038-.038-1.232-1.642a.75.75 0 1 1 1.2-.9l.815 1.087 2.863-2.776a.75.75 0 0 1 1.06.017Z", "key": "9f74f8c926a045e0df8ef64e8f2dc28c61d53102" }]]);
const BranchCheckB = createMeisterIcons("branch-check-b", [["path", { "fill": "currentColor", "d": "M18.138 16.89a.75.75 0 0 1-.016 1.06l-3.206 3.11a.833.833 0 0 1-.256.248.902.902 0 0 1-.473.13c-.229 0-.505-.083-.717-.295l-.038-.038-1.232-1.643a.75.75 0 1 1 1.2-.9l.815 1.088 2.863-2.776a.75.75 0 0 1 1.06.016ZM18 10.313h-8c-1.1 0-2-.9-2-2v-1c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2Z", "key": "5bcae9c5394e18b5c5219b7aa4f6654d1b5a2977" }], ["path", { "fill": "currentColor", "d": "M10 6.063c-.686 0-1.25.564-1.25 1.25v1c0 .685.564 1.25 1.25 1.25h8c.686 0 1.25-.565 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8Zm-2.75 1.25A2.756 2.756 0 0 1 10 4.563h8a2.756 2.756 0 0 1 2.75 2.75v1a2.756 2.756 0 0 1-2.75 2.75h-8a2.756 2.756 0 0 1-2.75-2.75v-1Zm2.75 6.75c-.686 0-1.25.564-1.25 1.25v1c0 .685.564 1.25 1.25 1.25a.75.75 0 0 1 0 1.5 2.756 2.756 0 0 1-2.75-2.75v-1a2.756 2.756 0 0 1 2.75-2.75h8a2.756 2.756 0 0 1 2.75 2.75.75.75 0 0 1-1.5 0c0-.686-.564-1.25-1.25-1.25h-8Z", "key": "88a90556e0bb3d9e8ea5cc4a7b31e95f17591ff8" }], ["path", { "fill": "currentColor", "d": "M4 2.563a.75.75 0 0 1 .75.75v10.5c0 .685.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H6a2.756 2.756 0 0 1-2.75-2.75v-10.5a.75.75 0 0 1 .75-.75Z", "key": "c627d068ab423b75730e0d892c86dc5d1aa7f249" }], ["path", { "fill": "currentColor", "d": "M3.25 7.613a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "7e808a785083e7936cb2ee2de1891b380d701367" }]]);
const BranchCross = createMeisterIcons("branch-cross", [["path", { "fill": "currentColor", "d": "M4 2.45a.75.75 0 0 1 .75.75v3.55h2.537A2.758 2.758 0 0 1 10 4.45h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 10.95h-8a2.756 2.756 0 0 1-2.75-2.7h-2.5v5.45c0 .686.564 1.25 1.25 1.25h1.261A2.757 2.757 0 0 1 10 12.45h8a2.756 2.756 0 0 1 2.75 2.75.75.75 0 0 1-1.5 0c0-.686-.564-1.25-1.25-1.25h-8c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25a.75.75 0 1 1 0 1.5 2.757 2.757 0 0 1-2.739-2.5H6a2.756 2.756 0 0 1-2.75-2.75V3.2A.75.75 0 0 1 4 2.45ZM8.75 7.5v.7c0 .686.564 1.25 1.25 1.25h8c.686 0 1.25-.564 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8c-.686 0-1.25.564-1.25 1.25v.3Zm8.88 10.43a.75.75 0 1 0-1.06-1.06l-1.17 1.17-1.17-1.17a.75.75 0 0 0-1.06 1.06l1.17 1.17-1.17 1.17a.75.75 0 1 0 1.06 1.06l1.17-1.17 1.17 1.17a.75.75 0 0 0 1.06-1.06l-1.17-1.17 1.17-1.17Z", "key": "075b516eadb011b4f7dd2532def9048a7e715c27" }]]);
const BranchCrossB = createMeisterIcons("branch-cross-b", [["path", { "fill": "currentColor", "d": "M17.63 16.87a.75.75 0 0 1 0 1.06l-3.4 3.4a.75.75 0 1 1-1.06-1.06l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "f77f52c8f9d5b3bc7f6fa4e4cefbed818d516c18" }], ["path", { "fill": "currentColor", "d": "M13.17 16.87a.75.75 0 0 1 1.06 0l3.4 3.4a.75.75 0 1 1-1.06 1.06l-3.4-3.4a.75.75 0 0 1 0-1.06ZM18 10.2h-8c-1.1 0-2-.9-2-2v-1c0-1.1.9-2 2-2h8c1.1 0 2 .9 2 2v1c0 1.1-.9 2-2 2Z", "key": "894cdc0be95eaa027c830343ddc6bc8f00915ce9" }], ["path", { "fill": "currentColor", "d": "M10 5.95c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25h8c.686 0 1.25-.564 1.25-1.25v-1c0-.686-.564-1.25-1.25-1.25h-8ZM7.25 7.2A2.756 2.756 0 0 1 10 4.45h8a2.756 2.756 0 0 1 2.75 2.75v1A2.756 2.756 0 0 1 18 10.95h-8A2.756 2.756 0 0 1 7.25 8.2v-1ZM10 13.95c-.686 0-1.25.564-1.25 1.25v1c0 .686.564 1.25 1.25 1.25a.75.75 0 1 1 0 1.5 2.756 2.756 0 0 1-2.75-2.75v-1A2.756 2.756 0 0 1 10 12.45h8a2.756 2.756 0 0 1 2.75 2.75.75.75 0 0 1-1.5 0c0-.686-.564-1.25-1.25-1.25h-8Z", "key": "393e3d90162ef4f0e70d118c1bf39c0f82d9f947" }], ["path", { "fill": "currentColor", "d": "M4 2.45a.75.75 0 0 1 .75.75v10.5c0 .686.564 1.25 1.25 1.25h2a.75.75 0 1 1 0 1.5H6a2.756 2.756 0 0 1-2.75-2.75V3.2A.75.75 0 0 1 4 2.45Z", "key": "3f0cf48bd842fafa69db8be20d4ecfe0cbb2d824" }], ["path", { "fill": "currentColor", "d": "M3.25 7.5A.75.75 0 0 1 4 6.75h4a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "66e004246ca2390491af37c9c8a4faab7310a7dd" }]]);
const Bread = createMeisterIcons("bread", [["path", { "fill": "currentColor", "d": "M5.05 8.2a.75.75 0 0 1 .75.75v8.6c0 .986.764 1.75 1.75 1.75h9c.986 0 1.75-.764 1.75-1.75v-8.6a.75.75 0 0 1 1.5 0v8.6a3.226 3.226 0 0 1-3.25 3.25h-9a3.226 3.226 0 0 1-3.25-3.25v-8.6a.75.75 0 0 1 .75-.75Z", "key": "e3fa9f62c8e381a058067459da1596d2e41f8948" }], ["path", { "fill": "currentColor", "d": "M5.55 4.8c-.598 0-1.02.176-1.214.419C4 5.637 3.8 6.076 3.8 6.55c0 .824.627 1.524 1.384 1.662a.75.75 0 1 1-.268 1.476C3.473 9.426 2.3 8.126 2.3 6.55c0-.926.4-1.687.864-2.268C3.77 3.524 4.748 3.3 5.55 3.3h12.8a3.439 3.439 0 0 1 3.45 3.45v.074l-.015.073A3.893 3.893 0 0 1 20.78 8.78a3.476 3.476 0 0 1-1.683.905.75.75 0 1 1-.294-1.47c.339-.068.71-.288.917-.495.27-.27.492-.694.579-1.046A1.938 1.938 0 0 0 18.35 4.8H5.55Zm10.03 9.72a.75.75 0 0 1 0 1.06l-2 2a.75.75 0 1 1-1.06-1.06l2-2a.75.75 0 0 1 1.06 0Zm-1-3a.75.75 0 0 1 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06l4-4a.75.75 0 0 1 1.06 0Z", "key": "b05b2ca6f4dfdc755005656d357f3ed47f148e36" }]]);
const BreadB = createMeisterIcons("bread-b", [["path", { "fill": "currentColor", "d": "M21.05 6.7c-.1.6-.4 1.2-.8 1.6-.3.3-.8.6-1.3.7v8.5c0 1.4-1.1 2.5-2.5 2.5h-9c-1.4 0-2.5-1.1-2.5-2.5V9c-1.1-.2-2-1.2-2-2.5 0-.7.3-1.3.7-1.8.4-.5 1.1-.7 1.8-.7h12.8c1.6.1 2.8 1.3 2.8 2.7Z", "key": "27377fc5fc89af5dea876b8bf938423d8dd9c2ac" }], ["path", { "fill": "currentColor", "d": "M5.45 4.75c-.598 0-1.02.176-1.214.419C3.9 5.587 3.7 6.026 3.7 6.5c0 .942.645 1.628 1.384 1.762l.616.112V17.5c0 .986.764 1.75 1.75 1.75h9c.986 0 1.75-.764 1.75-1.75V8.385l.603-.12c.34-.068.71-.288.917-.495.268-.269.493-.694.579-1.131-.035-.918-.847-1.803-2.074-1.889H5.45Zm-2.386-.519c.606-.757 1.584-.981 2.386-.981h12.823l.024.001C20.23 3.372 21.8 4.845 21.8 6.7v.062l-.01.061c-.124.742-.49 1.488-1.01 2.007-.27.27-.652.535-1.08.717V17.5a3.226 3.226 0 0 1-3.25 3.25h-9A3.226 3.226 0 0 1 4.2 17.5V9.557c-1.157-.475-2-1.64-2-3.057 0-.926.4-1.687.864-2.269Z", "key": "07c4fe365495d910a27a27e265a1fc3516939e64" }], ["path", { "fill": "#fff", "d": "M15.58 14.57a.75.75 0 0 1 0 1.06l-2 2a.75.75 0 1 1-1.06-1.06l2-2a.75.75 0 0 1 1.06 0Zm-1-3a.75.75 0 0 1 0 1.06l-4 4a.75.75 0 1 1-1.06-1.06l4-4a.75.75 0 0 1 1.06 0Z", "key": "3a8a8c7a48bfc193745501cb5cfae102030524e0" }]]);
const Breadloaf = createMeisterIcons("breadloaf", [["path", { "fill": "currentColor", "d": "M20.65 8.2a.75.75 0 0 1 .75.75v8.6c0 1.655-1.092 3.25-2.75 3.25h-7.2a.75.75 0 0 1 0-1.5h7.2c.543 0 1.25-.605 1.25-1.75v-8.6a.75.75 0 0 1 .75-.75Z", "key": "40c1c6a940956e79eee7a02c86969ab4991873de" }], ["path", { "fill": "currentColor", "d": "M9.1 4.05a.75.75 0 0 1 .75-.75h10.3c1.583 0 2.961 1.512 2.85 3.376-.008.815-.402 1.56-.75 2.024-.39.52-.832.831-1.418.978a.75.75 0 0 1-.364-1.456c.214-.053.373-.143.582-.422.249-.332.45-.775.45-1.15v-.025l.002-.025c.075-1.125-.742-1.8-1.352-1.8H9.85a.75.75 0 0 1-.75-.75ZM3.45 8.2a.75.75 0 0 1 .75.75v8.6c0 1.145.707 1.75 1.25 1.75h7.2c.543 0 1.25-.605 1.25-1.75v-8.6a.75.75 0 0 1 1.5 0v8.6c0 1.655-1.093 3.25-2.75 3.25h-7.2c-1.658 0-2.75-1.595-2.75-3.25v-8.6a.75.75 0 0 1 .75-.75Z", "key": "6b82c548d489790dccd55536f2678defb10da113" }], ["path", { "fill": "currentColor", "d": "M3.85 4.8c-.278 0-.56.101-.814.419-.284.354-.436.784-.436 1.331 0 .998.48 1.561.997 1.665a.75.75 0 0 1-.294 1.47C1.82 9.39 1.1 7.953 1.1 6.55c0-.853.248-1.623.764-2.268.547-.683 1.264-.982 1.986-.982h10.3c1.74 0 2.958 1.674 2.85 3.475-.006.742-.254 1.54-.82 2.105l-.04.04c-.27.273-.702.706-1.308.858a.75.75 0 0 1-.364-1.456c.163-.04.319-.17.652-.502.227-.228.38-.619.38-1.07v-.025l.002-.025c.079-1.189-.7-1.9-1.352-1.9H3.85Z", "key": "f9967654392c24cf1a54a1c34bc0affb147c8a70" }]]);
const BringBack = createMeisterIcons("bring-back", [["path", { "fill": "currentColor", "d": "M14.75 8.5a.75.75 0 0 1 .75-.75h1a4.762 4.762 0 0 1 4.75 4.75v4a4.762 4.762 0 0 1-4.75 4.75h-4a4.762 4.762 0 0 1-4.75-4.75v-1a.75.75 0 0 1 1.5 0v1a3.262 3.262 0 0 0 3.25 3.25h4a3.262 3.262 0 0 0 3.25-3.25v-4a3.262 3.262 0 0 0-3.25-3.25h-1a.75.75 0 0 1-.75-.75Z", "key": "4b370ad00368dc83829fc06b33df8e6ae3a8d875" }], ["path", { "fill": "currentColor", "d": "M5.681 3.083A5 5 0 0 1 7.5 2.75h1a.75.75 0 0 1 0 1.5h-1c-.466 0-.894.083-1.275.231a.75.75 0 0 1-.544-1.398ZM9.75 3.5a.75.75 0 0 1 .75-.75h1c.642 0 1.257.13 1.818.364a.75.75 0 1 1-.577 1.384A3.214 3.214 0 0 0 11.5 4.25h-1a.75.75 0 0 1-.75-.75ZM4.054 5.255a.75.75 0 0 1 .427.97c-.148.381-.231.81-.231 1.275v1a.75.75 0 0 1-1.5 0v-1a5 5 0 0 1 .333-1.819.75.75 0 0 1 .971-.426Zm10.851.023a.75.75 0 0 1 .981.404c.235.56.364 1.176.364 1.818v1a.75.75 0 0 1-1.5 0v-1c0-.44-.088-.858-.248-1.24a.75.75 0 0 1 .403-.982ZM3.5 9.75a.75.75 0 0 1 .75.75v1c0 .44.088.858.248 1.24a.75.75 0 1 1-1.384.578A4.713 4.713 0 0 1 2.75 11.5v-1a.75.75 0 0 1 .75-.75Zm12 0a.75.75 0 0 1 .75.75v1c0 .642-.13 1.257-.364 1.818a.75.75 0 1 1-1.384-.577c.16-.383.248-.801.248-1.241v-1a.75.75 0 0 1 .75-.75ZM5.278 14.906a.75.75 0 0 1 .981-.404c.383.16.801.248 1.241.248h1a.75.75 0 0 1 0 1.5h-1c-.642 0-1.257-.13-1.818-.364a.75.75 0 0 1-.404-.98Zm8.444 0a.75.75 0 0 1-.404.98 4.713 4.713 0 0 1-1.818.364h-1a.75.75 0 0 1 0-1.5h1c.44 0 .858-.088 1.24-.248a.75.75 0 0 1 .982.403Z", "key": "f034765ce79436a324538fc7c7a8c0e22eb26056" }]]);
const BringFont = createMeisterIcons("bring-font", [["path", { "fill": "currentColor", "d": "M7.55 4.25A3.262 3.262 0 0 0 4.3 7.5v4a3.262 3.262 0 0 0 3.25 3.25h4a3.262 3.262 0 0 0 3.25-3.25v-4a3.262 3.262 0 0 0-3.25-3.25h-4ZM2.8 7.5a4.762 4.762 0 0 1 4.75-4.75h4A4.762 4.762 0 0 1 16.3 7.5v4a4.762 4.762 0 0 1-4.75 4.75h-4A4.762 4.762 0 0 1 2.8 11.5v-4Z", "key": "9bb6391ad6df4ac7549674555793e112f8aebde2" }], ["path", { "fill": "currentColor", "d": "M14.8 8.5a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm4.162.73a.75.75 0 0 1 1.057.082c.185.215.355.449.505.7a.75.75 0 0 1-.235 1.012.75.75 0 0 1 .838.616c.048.276.073.563.073.86v1a.75.75 0 0 1-1.5 0v-1c0-.213-.018-.414-.05-.604a.75.75 0 0 1 .328-.756.75.75 0 0 1-.743-.36 3.568 3.568 0 0 0-.354-.492.75.75 0 0 1 .08-1.057Zm1.488 5.52a.75.75 0 0 1 .75.75v1c0 .642-.13 1.257-.364 1.818a.75.75 0 1 1-1.384-.577c.16-.383.248-.801.248-1.241v-1a.75.75 0 0 1 .75-.75ZM8.615 17.73a.75.75 0 0 1 1.006.335c.12.24.285.47.49.681a.75.75 0 1 1-1.079 1.044 4.265 4.265 0 0 1-.753-1.055.75.75 0 0 1 .336-1.006Zm10.057 2.175a.75.75 0 0 1-.404.981 4.713 4.713 0 0 1-1.818.364h-1a.75.75 0 0 1 0-1.5h1c.44 0 .858-.088 1.24-.248a.75.75 0 0 1 .982.404Zm-8.001.242a.75.75 0 0 1 .925-.517c.277.078.565.12.854.12h1a.75.75 0 0 1 0 1.5h-1a4.64 4.64 0 0 1-1.262-.177.75.75 0 0 1-.518-.926Z", "key": "f6ec137e7569d1cc9f8fbeab548d5d964c582804" }], ["path", { "fill": "currentColor", "d": "M8.55 14.65a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75Z", "key": "c90b0778b3a5130849e75e85ee664c673be83848" }]]);
const BringFontB = createMeisterIcons("bring-font-b", [["path", { "fill": "currentColor", "d": "M11.375 15.375h-4c-2.2 0-4-1.8-4-4v-4c0-2.2 1.8-4 4-4h4c2.2 0 4 1.8 4 4v4c0 2.2-1.8 4-4 4Z", "key": "8acf53a1768165985a6ce1f02438e4913cd5c2c0" }], ["path", { "fill": "currentColor", "d": "M7.375 3.875a3.512 3.512 0 0 0-3.5 3.5v4c0 1.924 1.576 3.5 3.5 3.5h4c1.924 0 3.5-1.576 3.5-3.5v-4c0-1.924-1.576-3.5-3.5-3.5h-4Zm-4.5 3.5c0-2.476 2.024-4.5 4.5-4.5h4c2.476 0 4.5 2.024 4.5 4.5v4c0 2.476-2.024 4.5-4.5 4.5h-4a4.512 4.512 0 0 1-4.5-4.5v-4Z", "key": "d41e9f424be015a8c4e984b253ba55b6b0bfa201" }], ["path", { "fill": "currentColor", "d": "M14.625 8.375a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm4.262.731a.75.75 0 0 1 1.057.08c.185.216.355.45.505.7a.75.75 0 0 1-.235 1.013.75.75 0 0 1 .838.616c.048.276.073.563.073.86v1a.75.75 0 0 1-1.5 0v-1c0-.213-.018-.414-.05-.604a.75.75 0 0 1 .328-.756.75.75 0 0 1-.742-.36 3.56 3.56 0 0 0-.356-.492.75.75 0 0 1 .082-1.057Zm1.488 5.519a.75.75 0 0 1 .75.75v1c0 .642-.13 1.257-.364 1.818a.75.75 0 1 1-1.384-.577c.16-.383.248-.801.248-1.241v-1a.75.75 0 0 1 .75-.75ZM8.54 17.605a.75.75 0 0 1 1.006.335c.12.24.285.47.49.681a.75.75 0 1 1-1.079 1.044 4.265 4.265 0 0 1-.753-1.055.75.75 0 0 1 .336-1.006Zm10.057 2.175a.75.75 0 0 1-.404.981 4.713 4.713 0 0 1-1.818.364h-1a.75.75 0 0 1 0-1.5h1c.44 0 .858-.088 1.24-.248a.75.75 0 0 1 .982.404Zm-8.002.242a.75.75 0 0 1 .926-.517c.277.078.565.12.854.12h1a.75.75 0 0 1 0 1.5h-1a4.64 4.64 0 0 1-1.262-.177.75.75 0 0 1-.518-.926Z", "key": "39fec19b99bd58692122daee9c576ab709e24319" }], ["path", { "fill": "currentColor", "d": "M8.375 14.625a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75Z", "key": "b6f1873df747ad5de97a7ae67c2871cb17882b55" }]]);
const Bug = createMeisterIcons("bug", [["path", { "fill": "currentColor", "d": "M12 3.25c-3.446 0-6.25 2.923-6.25 6.65v4.2c0 3.727 2.804 6.65 6.25 6.65 3.346 0 6.25-3.023 6.25-6.65V9.9c0-3.727-2.804-6.65-6.25-6.65Zm-7.749 11c.075 4.405 3.443 8 7.749 8 4.205 0 7.67-3.69 7.749-8H21a.75.75 0 0 0 0-1.5h-1.25v-1.5H21a.75.75 0 0 0 0-1.5h-1.251c-.075-4.405-3.443-8-7.749-8-4.306 0-7.674 3.595-7.749 8H3a.75.75 0 0 0 0 1.5h1.25v1.5H3a.75.75 0 0 0 0 1.5h1.251ZM8.25 10A.75.75 0 0 1 9 9.25h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM9 13.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5H9Z", "key": "0a2c9b9b9ae2b7f5031322ed55058ce41cff4da5" }]]);
const BugB = createMeisterIcons("bug-b", [["path", { "fill": "currentColor", "d": "M12 21.55c-3.9 0-7-3.3-7-7.4v-4.3c0-4.1 3.1-7.4 7-7.4s7 3.3 7 7.4v4.2c0 4.1-3.2 7.5-7 7.5Z", "key": "8dedc0b624c96a660d0c124642642f0eb55bf755" }], ["path", { "fill": "currentColor", "d": "M12 3.2c-3.446 0-6.25 2.923-6.25 6.65v4.3c0 3.727 2.804 6.65 6.25 6.65 3.34 0 6.25-3.017 6.25-6.75v-4.2c0-3.727-2.804-6.65-6.25-6.65ZM4.25 9.85C4.25 5.377 7.646 1.7 12 1.7s7.75 3.677 7.75 8.15v4.2c0 4.467-3.49 8.25-7.75 8.25-4.354 0-7.75-3.677-7.75-8.15v-4.3Z", "key": "a68bb59b982dbc234505015fd76f548e0f6708f6" }], ["path", { "fill": "#fff", "d": "M8.25 10.05A.75.75 0 0 1 9 9.3h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Zm0 4A.75.75 0 0 1 9 13.3h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "c3bfd47ad4fd4e00909ce29fa7101abde7d362d0" }], ["path", { "fill": "currentColor", "d": "M18.25 10.55A.75.75 0 0 1 19 9.8h2a.75.75 0 1 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm-16 0A.75.75 0 0 1 3 9.8h2a.75.75 0 1 1 0 1.5H3a.75.75 0 0 1-.75-.75Zm16 3a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm-16 0A.75.75 0 0 1 3 12.8h2a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75Z", "key": "5cd0c50d041e4bda6d98687c598fa1e7b78163ed" }]]);
const Bulb = createMeisterIcons("bulb", [["path", { "fill": "currentColor", "d": "M12 2.5a7.707 7.707 0 0 0-7.75 7.75c0 2.213.915 4.149 2.318 5.556-.14.289-.218.61-.218.944C6.35 17.964 7.386 19 8.6 19h.335a3.222 3.222 0 0 0 3.165 2.5 3.222 3.222 0 0 0 3.166-2.5h.334c1.214 0 2.25-1.036 2.25-2.25 0-.387-.105-.755-.288-1.078 1.33-1.395 2.188-3.278 2.188-5.422A7.707 7.707 0 0 0 12 2.5ZM13.689 19c-.275.598-.873 1-1.589 1a1.725 1.725 0 0 1-1.589-1h3.178Zm.911-1.5h1c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-7c-.386 0-.75.364-.75.75s.364.75.75.75h6Zm-6-3a2.18 2.18 0 0 0-.98.236c-1.141-1.15-1.87-2.71-1.87-4.486A6.207 6.207 0 0 1 12 4a6.207 6.207 0 0 1 6.25 6.25c0 1.743-.702 3.28-1.807 4.422a2.168 2.168 0 0 0-.843-.172h-7Zm.35-5.85c0-.886.664-1.55 1.55-1.55a.75.75 0 0 0 0-1.5 3.013 3.013 0 0 0-3.05 3.05.75.75 0 0 0 1.5 0Z", "key": "b96fb4b0a77cb958187353f75689885a10196efd" }]]);
const BulbB = createMeisterIcons("bulb-b", [["path", { "fill": "currentColor", "d": "M19 10.25c0 2.2-1 4.1-2.5 5.4-.3-.2-.6-.4-1-.4h-7c-.4 0-.7.1-1 .4-1.5-1.3-2.5-3.2-2.5-5.4 0-3.9 3.1-7 7-7s7 3.1 7 7Z", "key": "26f81aed5e9c29134555310194e0d7c7147dcdf0" }], ["path", { "fill": "currentColor", "d": "M12 4a6.207 6.207 0 0 0-6.25 6.25c0 1.752.71 3.294 1.823 4.439.04-.019.08-.036.12-.052.272-.104.544-.137.807-.137h7c.352 0 .653.098.9.217 1.13-1.147 1.85-2.7 1.85-4.467A6.207 6.207 0 0 0 12 4Zm-7.75 6.25A7.707 7.707 0 0 1 12 2.5a7.707 7.707 0 0 1 7.75 7.75c0 2.438-1.11 4.538-2.759 5.967l-.432.374-.475-.317c-.324-.216-.443-.274-.584-.274h-7a.737.737 0 0 0-.268.038.576.576 0 0 0-.202.142l-.493.494-.528-.457C5.36 14.788 4.25 12.687 4.25 10.25Z", "key": "194f631c2daf4cf93b95229a9a3c2404d4a39b88" }], ["path", { "fill": "#fff", "d": "M10.4 7.1c-.886 0-1.55.664-1.55 1.55a.75.75 0 0 1-1.5 0A3.013 3.013 0 0 1 10.4 5.6a.75.75 0 0 1 0 1.5Z", "key": "3020ee9a8c6957c3766f84988d6d00dce649ed78" }], ["path", { "fill": "currentColor", "d": "M8.5 16c-.14 0-.26.058-.584.274-.042.028-.166.162-.166.476 0 .386.364.75.75.75h7c.386 0 .75-.364.75-.75 0-.314-.124-.448-.166-.476l-.062-.041-.052-.053a.576.576 0 0 0-.202-.142A.737.737 0 0 0 15.5 16h-7Zm-1.38-.999c.282-.188.75-.501 1.38-.501h7c.263 0 .535.033.807.137.254.098.475.246.674.434.514.38.769 1.02.769 1.679 0 1.214-1.036 2.25-2.25 2.25h-7c-1.214 0-2.25-1.036-2.25-2.25 0-.686.276-1.352.834-1.724l.037-.025Z", "key": "47b06b9bb2acc433113cba1fad2ba3db9a346f50" }], ["path", { "fill": "currentColor", "d": "M14.5 18.25c0 1.4-1.1 2.5-2.5 2.5s-2.5-1.1-2.5-2.5h5Z", "key": "61c5a3f006f2b7d414c696456cdbcfb3545f16ce" }], ["path", { "fill": "currentColor", "d": "M8.75 18.25a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 .75.75A3.226 3.226 0 0 1 12 21.5a3.226 3.226 0 0 1-3.25-3.25Zm1.661.75c.275.598.874 1 1.589 1s1.314-.402 1.589-1H10.41Z", "key": "fa759d488939c4e1e7f9b942bbdd0852a2b6a760" }]]);
const Bullseye = createMeisterIcons("bullseye", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12ZM12 6.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM5.25 12a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Zm4.5 0a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM12 8.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z", "key": "5f7c95ce0883fbdc4db19d38c4f01f36620a0502" }]]);
const BullseyeB = createMeisterIcons("bullseye-b", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "162487da73ccb073c1874abf68ba21475254def6" }], ["path", { "fill": "#fff", "d": "M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z", "key": "9e7af5a0b5b8d9b6dfd957616ee56402333b8fc4" }], ["path", { "fill": "currentColor", "d": "M12 6.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM5.25 12a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Z", "key": "df5f7a92cc84a5f4b6e0af1c8524503b3c1d4020" }], ["path", { "fill": "currentColor", "d": "M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "78f59e5a9f8f1005a9f852201afdd5965bd70d6f" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "bb753471c39c5a548b0d643b472c2c7084ac0ff8" }]]);
const Burger = createMeisterIcons("burger", [["path", { "fill": "currentColor", "d": "M2.6 9.8c0-4.436 4.37-7.95 9.45-7.95 5.073 0 9.45 3.408 9.45 7.95 0 .591-.117 1.16-.222 1.582a.75.75 0 1 1-1.456-.364c.095-.378.178-.809.178-1.218 0-3.457-3.423-6.45-7.95-6.45-4.52 0-7.95 3.087-7.95 6.45 0 .346.056.62.14 1.025l.045.228a.75.75 0 1 1-1.47.294 28.185 28.185 0 0 0-.041-.198C2.69 10.745 2.6 10.31 2.6 9.8Z", "key": "8805e6a4dd18ce4aeaf90fee690d293cbcc6133f" }], ["path", { "fill": "currentColor", "d": "M2.7 11.2a.75.75 0 0 1 .75-.75h17.1a.75.75 0 0 1 0 1.5H3.45a.75.75 0 0 1-.75-.75Zm1.533 6.79a.47.47 0 0 0-.133.31v1.9c0 .125.051.233.14.317a.47.47 0 0 0 .31.133h15c.132 0 .377-.12.45-.51V18.3a.427.427 0 0 0-.14-.317.47.47 0 0 0-.31-.133h-15a.427.427 0 0 0-.317.14ZM2.6 18.3c0-.973.796-1.95 1.95-1.95h15c.973 0 1.95.796 1.95 1.95v1.953l-.008.053c-.139.973-.879 1.844-1.942 1.844h-15c-.973 0-1.95-.796-1.95-1.95v-1.9Zm.6-4.2a.75.75 0 0 1 .75-.75h16.1a.75.75 0 0 1 0 1.5H3.95a.75.75 0 0 1-.75-.75Z", "key": "e46a014f028888a4661c3165f9ba79baf406af4a" }]]);
const BurgerB = createMeisterIcons("burger-b", [["path", { "fill": "currentColor", "d": "M20.75 9.8c0 .3 0 .5-.1.8-.1.3-.4.6-.7.6H4.05c-.3 0-.7-.3-.7-.6 0-.2-.1-.5-.1-.8 0-4 3.9-7.1 8.7-7.1 4.8 0 8.8 3.1 8.8 7.1Z", "key": "1cfd7bd2ee9cda8838f2bdd94aaa38c3467ac497" }], ["path", { "fill": "currentColor", "d": "M11.95 3.45C7.408 3.45 4 6.354 4 9.8c0 .075.013.166.038.303l.006.035.032.18c.006.039.012.083.016.132H19.88a.28.28 0 0 0 .06-.087c.058-.176.061-.27.061-.563 0-3.436-3.496-6.35-8.05-6.35Zm-7.847 7.006h-.002.002ZM2.5 9.8c0-4.555 4.392-7.85 9.45-7.85 5.046 0 9.55 3.286 9.55 7.85v.018c0 .301 0 .603-.139 1.02-.093.28-.27.538-.484.732-.21.188-.53.38-.927.38H4.05c-.37 0-.708-.17-.937-.357-.22-.18-.513-.521-.513-.993v.002s0-.016-.007-.055l-.022-.127a3.184 3.184 0 0 1-.07-.62Zm18.25 8.5v1.9c0 .6-.5 1.2-1.2 1.2h-15c-.6 0-1.2-.5-1.2-1.2v-1.9c0-.6.5-1.2 1.2-1.2h15c.6 0 1.2.6 1.2 1.2Z", "key": "e3a69210bf839e4eac526ec7768ea622b98403f7" }], ["path", { "fill": "currentColor", "d": "M4.233 17.99a.47.47 0 0 0-.133.31v1.9c0 .125.051.233.14.317a.47.47 0 0 0 .31.133h15a.427.427 0 0 0 .317-.14.47.47 0 0 0 .133-.31v-1.9c0-.056-.036-.175-.155-.295-.12-.12-.239-.155-.295-.155h-15a.427.427 0 0 0-.317.14ZM2.6 18.3c0-.973.796-1.95 1.95-1.95h15c.544 0 1.025.264 1.355.595.33.33.595.81.595 1.355v1.9c0 .973-.796 1.95-1.95 1.95h-15c-.973 0-1.95-.796-1.95-1.95v-1.9Zm.6-4.2a.75.75 0 0 1 .75-.75h16.1a.75.75 0 1 1 0 1.5H3.95a.75.75 0 0 1-.75-.75Z", "key": "7b6bb3042fbf2e1a8494e487b3ac27b1b548fe60" }]]);
const Button = createMeisterIcons("button", [["path", { "fill": "currentColor", "d": "M12.05 3.8a8.213 8.213 0 0 0-8.25 8.25c0 4.491 3.67 8.25 8.25 8.25a8.213 8.213 0 0 0 8.25-8.25 8.213 8.213 0 0 0-8.25-8.25ZM2.3 12.05a9.713 9.713 0 0 1 9.75-9.75 9.713 9.713 0 0 1 9.75 9.75 9.713 9.713 0 0 1-9.75 9.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "c7ebda0e9a46cb2dac316e311b48c08480a1c13a" }], ["path", { "fill": "currentColor", "d": "M14.75 11.35c.2-.2.5-.3.7-.3.1 0 .3 0 .4.1.1 0 .2.1.3.2.1.1.1.2.2.3 0 .1.1.3.1.4 0 .5-.5 1-1 1-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7Zm-3.4 3.4c.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.2.3.5.3.7 0 .5-.5 1-1 1-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.6.3-.7Zm-.1-6.9c.2-.2.5-.3.7-.3.1 0 .3 0 .4.1.1 0 .2.1.3.2.1.1.2.2.2.3 0 .1.1.3.1.4 0 .5-.5 1-1 1-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.2-.1-.3-.4-.3-.7 0-.2.1-.5.3-.7Zm-3.4 3.4c.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.2.3.5.3.7 0 .5-.5 1-1 1-.3 0-.5-.1-.7-.3-.1-.2-.2-.4-.2-.7 0-.3.1-.5.2-.7Z", "key": "309315b92a5620a6f16b55cf4966df99fa0be5b9" }]]);
const ButtonB = createMeisterIcons("button-b", [["path", { "fill": "currentColor", "d": "M3.05 12.05c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4.1-9-9Z", "key": "7abd555466b00adcf864b86b8fe2210c38b87573" }], ["path", { "fill": "currentColor", "d": "M12.05 3.8a8.213 8.213 0 0 0-8.25 8.25c0 4.491 3.67 8.25 8.25 8.25a8.213 8.213 0 0 0 8.25-8.25 8.213 8.213 0 0 0-8.25-8.25ZM2.3 12.05a9.713 9.713 0 0 1 9.75-9.75 9.713 9.713 0 0 1 9.75 9.75 9.713 9.713 0 0 1-9.75 9.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "76a5d3a381031e9d025efd3bcaef6eb48b4762b0" }], ["path", { "fill": "#fff", "d": "M14.75 11.35c.2-.2.5-.3.7-.3.1 0 .3 0 .4.1.1 0 .2.1.3.2.1.1.1.2.2.3 0 .1.1.3.1.4 0 .5-.5 1-1 1-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7Zm-3.4 3.4c.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.2.3.5.3.7 0 .5-.5 1-1 1-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.6.3-.7Zm-.1-6.9c.2-.2.5-.3.7-.3.1 0 .3 0 .4.1.1 0 .2.1.3.2.1.1.2.2.2.3 0 .1.1.3.1.4 0 .5-.5 1-1 1-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.2-.1-.3-.4-.3-.7 0-.2.1-.5.3-.7Zm-3.4 3.4c.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.2.3.5.3.7 0 .5-.5 1-1 1-.3 0-.5-.1-.7-.3-.1-.2-.2-.4-.2-.7 0-.3.1-.5.2-.7Z", "key": "111a3f1ea0db46e9fcd14bb9c446d344804d99f2" }]]);
const Cake = createMeisterIcons("cake", [["path", { "fill": "currentColor", "d": "M4.9 9.2c-.686 0-1.25.564-1.25 1.25v6.7c0 .686.564 1.25 1.25 1.25h14.2c.686 0 1.25-.564 1.25-1.25v-6.7c0-.662-.54-1.25-1.35-1.25H4.9Zm-2.75 1.25A2.756 2.756 0 0 1 4.9 7.7H19c1.59 0 2.85 1.212 2.85 2.75v6.7a2.756 2.756 0 0 1-2.75 2.75H4.9a2.756 2.756 0 0 1-2.75-2.75v-6.7Z", "key": "91555c9d0c23c14b3e057de91711ce7b0b9a0e1e" }], ["path", { "fill": "currentColor", "d": "M6.9 11.3a.75.75 0 0 1 .75.75A2.756 2.756 0 0 1 4.9 14.8c-1.27 0-2.214-.853-2.602-1.887a.75.75 0 0 1 1.404-.526c.212.566.669.913 1.198.913.686 0 1.25-.564 1.25-1.25a.75.75 0 0 1 .75-.75Z", "key": "29b578a2ea873e81e0db1719d2448c4e9f4fa4c4" }], ["path", { "fill": "currentColor", "d": "M7 11.2a.75.75 0 0 1 .75.75v1.5c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-1.1a.75.75 0 1 1 1.5 0v1.1A2.756 2.756 0 0 1 9 16.2a2.756 2.756 0 0 1-2.75-2.75v-1.5A.75.75 0 0 1 7 11.2Z", "key": "f05d2fcd7e2347ad2669c60dc9c73bfe57a6d447" }], ["path", { "fill": "currentColor", "d": "M11 11.6a.75.75 0 0 1 .75.75c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25a.75.75 0 1 1 1.5 0A2.756 2.756 0 0 1 13 15.1a2.756 2.756 0 0 1-2.75-2.75.75.75 0 0 1 .75-.75Z", "key": "6c539ce0a750801e18bbb9eeb5b54a2b64292fea" }], ["path", { "fill": "currentColor", "d": "M15.1 11.6a.75.75 0 0 1 .75.75v1.5c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.9a.75.75 0 1 1 1.5 0v.9a2.756 2.756 0 0 1-2.75 2.75 2.756 2.756 0 0 1-2.75-2.75v-1.5a.75.75 0 0 1 .75-.75Z", "key": "ec42310f767428d140fde9e110cda18a264f5687" }], ["path", { "fill": "currentColor", "d": "M19.037 12.118a.75.75 0 0 1 .895.57c.12.537.6.912 1.168.912a.75.75 0 0 1 0 1.5c-1.232 0-2.352-.825-2.632-2.087a.75.75 0 0 1 .57-.895ZM7.7 4.2a.75.75 0 0 1 .75.75v3.5a.75.75 0 1 1-1.5 0v-3.5a.75.75 0 0 1 .75-.75Zm8.6 0a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5a.75.75 0 0 1 .75-.75Z", "key": "f2e5e14170b5c5f20b6ddd60ab719b04745a8ac6" }]]);
const Calculator = createMeisterIcons("calculator", [["path", { "fill": "currentColor", "d": "M8 3.75c-1.286 0-2.25.964-2.25 2.25v12c0 1.286.964 2.25 2.25 2.25h8c1.286 0 2.25-.964 2.25-2.25V6c0-1.286-.964-2.25-2.25-2.25H8ZM4.25 6c0-2.114 1.636-3.75 3.75-3.75h8c2.114 0 3.75 1.636 3.75 3.75v12c0 2.114-1.636 3.75-3.75 3.75H8c-2.114 0-3.75-1.636-3.75-3.75V6Z", "key": "298cf34cec7370069ddd8915a3c113a177b33ddd" }], ["path", { "fill": "currentColor", "d": "M8.805 6.805c-.015.016-.055.065-.055.195v3c0 .13.04.18.055.195.016.015.065.055.195.055h6c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157V7c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055H9c-.13 0-.18.04-.195.055Zm-1.06-1.06C8.079 5.41 8.53 5.25 9 5.25h6c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v3c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532H9c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255V7c0-.47.16-.92.495-1.255ZM9 14.7c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.2-.5.2Zm3 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.2-.3.6-.4.8-.2.1 0 .2.1.2.2.1.1.2.3.2.5s-.1.4-.2.5l-.2.2H12Zm3 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.5.2-.6.2Zm0 3c-.1 0-.2 0-.3-.1-.1 0-.2-.1-.2-.2-.1-.1-.2-.3-.2-.5s.1-.4.2-.5l.2-.2c.3-.1.6-.1.8.2.1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.3-.5.3Zm-6 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.2-.5.2Zm3 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.5.2-.6.2Z", "key": "de9746bddca1a3ebf194022a88cd5bd0ab34e48b" }]]);
const CalculatorB = createMeisterIcons("calculator-b", [["path", { "fill": "currentColor", "d": "M8 3h8c1.7 0 3 1.3 3 3v12c0 1.7-1.3 3-3 3H8c-1.7 0-3-1.3-3-3V6c0-1.7 1.3-3 3-3Z", "key": "b9ddc5580604a2c82d9d8352c5c3dc2e3a66a45e" }], ["path", { "fill": "currentColor", "d": "M8 3.75c-1.286 0-2.25.964-2.25 2.25v12c0 1.286.964 2.25 2.25 2.25h8c1.286 0 2.25-.964 2.25-2.25V6c0-1.286-.964-2.25-2.25-2.25H8ZM4.25 6c0-2.114 1.636-3.75 3.75-3.75h8c2.114 0 3.75 1.636 3.75 3.75v12c0 2.114-1.636 3.75-3.75 3.75H8c-2.114 0-3.75-1.636-3.75-3.75V6Z", "key": "fb1bcead43503cfbd3deab07bf17b1b4630726bf" }], ["path", { "fill": "#fff", "d": "M15 11H9c-.6 0-1-.4-1-1V7c0-.6.4-1 1-1h6c.6 0 1 .4 1 1v3c0 .5-.5 1-1 1Z", "key": "427eb0884188b2a61973b3381847a15d255a8a29" }], ["path", { "fill": "#fff", "d": "M8.805 6.805c-.015.016-.055.065-.055.195v3c0 .13.04.18.055.195.016.015.065.055.195.055h6c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157V7c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055H9c-.13 0-.18.04-.195.055Zm-1.06-1.06C8.079 5.41 8.53 5.25 9 5.25h6c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v3c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532H9c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255V7c0-.47.16-.92.495-1.255ZM9 14.7c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.2-.5.2Zm3 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.2-.3.6-.4.8-.2.1 0 .2.1.2.2.1.1.2.3.2.5s-.1.4-.2.5l-.2.2H12Zm3 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.5.2-.6.2Zm0 3c-.1 0-.2 0-.3-.1-.1 0-.2-.1-.2-.2-.1-.1-.2-.3-.2-.5s.1-.4.2-.5l.2-.2c.3-.1.6-.1.8.2.1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.3-.5.3Zm-6 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.2-.5.2Zm3 0c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.5.2-.6.2Z", "key": "0d7394f22346cc0141c7004fa01302eab552104b" }]]);
const Calendar = createMeisterIcons("calendar", [["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v1.25h6.5V3a.75.75 0 0 1 1.5 0v1.31c2.26.361 4 2.33 4 4.69v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9c0-2.36 1.74-4.329 4-4.69V3A.75.75 0 0 1 8 2.25Zm7.25 3.5V7a.75.75 0 0 0 1.5 0V5.838A3.266 3.266 0 0 1 19.25 9v8A3.262 3.262 0 0 1 16 20.25H8c-1.874 0-3.25-1.452-3.25-3.25V9a3.266 3.266 0 0 1 2.5-3.162V7a.75.75 0 0 0 1.5 0V5.75h6.5Z", "key": "95b6774d7191a89996cc47f63bc1048c978d1209" }]]);
const Calendar7 = createMeisterIcons("calendar7", [["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "a1a79a3c5284ee01aa94c3404dc34f55a0ca7cbe" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm4 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Zm4 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Zm-3 9.15H9.8v-1.2h4.7v1.2l-2.7 5.8h-1.6l2.8-5.8Z", "key": "7de0090789b54d01fa40b26a7387b504d1d210be" }]]);
const Calendar7B = createMeisterIcons("calendar7-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "53d63e82ec8c51d05767ff0ebba67d26fce04b3e" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "2d6860cffaa55389f09a7daf0d20369f3d367bd9" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm4 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Zm4 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "e0b7f43d2021553d8efb71120b044d5f1e802820" }], ["path", { "fill": "#fff", "d": "M13 11.4H9.8v-1.2h4.7v1.2l-2.7 5.8h-1.6l2.8-5.8Z", "key": "1eaaf114288d62e58ae35c0ea5652c503f560973" }]]);
const CalendarA = createMeisterIcons("calendar-a", [["path", { "fill": "currentColor", "d": "M8.75 3a.75.75 0 0 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8c0 2.602 2.024 4.75 4.75 4.75h8A4.762 4.762 0 0 0 20.75 17V9c0-2.36-1.74-4.329-4-4.69V3a.75.75 0 0 0-1.5 0v1.25h-6.5V3Zm10.5 6.25V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v.25h14.5Zm-14.5 1.5h14.5V17A3.262 3.262 0 0 1 16 20.25H8c-1.874 0-3.25-1.452-3.25-3.25v-6.25Z", "key": "843b39d0f2a3af943a6c117f621f02bc443a8f37" }]]);
const CalendarAadd = createMeisterIcons("calendar-aadd", [["path", { "fill": "currentColor", "d": "M8.75 3a.75.75 0 0 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8A4.762 4.762 0 0 0 8 21.75h4a.75.75 0 0 0 0-1.5H8A3.262 3.262 0 0 1 4.75 17v-6.25h14.5V15a.75.75 0 0 0 1.5 0V9c0-2.36-1.74-4.329-4-4.69V3a.75.75 0 0 0-1.5 0v1.25h-6.5V3Zm10.5 6.25V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v.25h14.5ZM16.75 15a.75.75 0 0 0-1.5 0v2.25H13a.75.75 0 0 0 0 1.5h2.25V21a.75.75 0 0 0 1.5 0v-2.25H19a.75.75 0 0 0 0-1.5h-2.25V15Z", "key": "5bb1af2b7f064ca305df2d0df158f812ca22e801" }]]);
const CalendarAaddB = createMeisterIcons("calendar-aadd-b", [["path", { "fill": "currentColor", "d": "M16 14.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "d25ae7db6ad32347352095e68940146c971039fd" }], ["path", { "fill": "currentColor", "d": "M12.25 18a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75ZM20 9v1H4V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "be76ae3d0e243b34f5f8480a21a8cd71ae4cc8de" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v.25h14.5V9c0-1.874-1.452-3.25-3.25-3.25H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8c2.602 0 4.75 2.024 4.75 4.75v1.75H3.25V9Z", "key": "e8cdd647d357e558e8ca2b726a88225783703767" }], ["path", { "fill": "currentColor", "d": "M4 9.25a.75.75 0 0 1 .75.75v7A3.262 3.262 0 0 0 8 20.25h4a.75.75 0 0 1 0 1.5H8A4.762 4.762 0 0 1 3.25 17v-7A.75.75 0 0 1 4 9.25Zm16 0a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-1.5 0v-5a.75.75 0 0 1 .75-.75Zm-12-7a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "98acbc46b970542fc644087fc938ff7bcd7c224d" }]]);
const CalendarAb = createMeisterIcons("calendar-ab", [["path", { "fill": "currentColor", "d": "M20 9v1H4V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "0a23c3ae5ef8c464e5b8cf0c31aa2c5b9fe37443" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v.25h14.5V9c0-1.874-1.452-3.25-3.25-3.25H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8c2.602 0 4.75 2.024 4.75 4.75v1.75H3.25V9Z", "key": "a457c99e9b4d424efa0aa068e565e5f0adf6176b" }], ["path", { "fill": "currentColor", "d": "M3.25 9.25h17.5V17A4.762 4.762 0 0 1 16 21.75H8A4.762 4.762 0 0 1 3.25 17V9.25Zm1.5 1.5V17A3.262 3.262 0 0 0 8 20.25h8A3.262 3.262 0 0 0 19.25 17v-6.25H4.75ZM8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "4cbd6a833352faa11f9ac3c6f2cc4e28d7f00bdf" }]]);
const CalendarAcheck = createMeisterIcons("calendar-acheck", [["path", { "fill": "currentColor", "d": "M7.5 1.713a.75.75 0 0 1 .75.75v1.25h6.5v-1.25a.75.75 0 0 1 1.5 0v1.309c2.26.362 4 2.331 4 4.69v6a.75.75 0 0 1-1.5 0v-4.25H4.25v6.25a3.262 3.262 0 0 0 3.25 3.25h4a.75.75 0 0 1 0 1.5h-4a4.762 4.762 0 0 1-4.75-4.75v-8c0-2.359 1.74-4.328 4-4.69v-1.31a.75.75 0 0 1 .75-.75Zm11.25 6.75v.25H4.25v-.25A3.266 3.266 0 0 1 6.75 5.3v1.162a.75.75 0 1 0 1.5 0v-1.25h6.5v1.25a.75.75 0 0 0 1.5 0V5.3a3.266 3.266 0 0 1 2.5 3.162Zm2.274 9.536a.75.75 0 1 0-1.048-1.073l-3.72 3.629-1.156-1.543a.75.75 0 0 0-1.2.9l1.532 2.043.038.038c.222.222.506.295.73.295.222 0 .504-.072.726-.29l4.098-3.999Z", "key": "52fa46bfe2948b803dbd3e8b3802f04aa7311fe5" }]]);
const CalendarAcheckB = createMeisterIcons("calendar-acheck-b", [["path", { "fill": "currentColor", "d": "M19.5 8.463v1h-16v-1c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "1376caacbceec4371a429ef0c550ac6839cdb697" }], ["path", { "fill": "currentColor", "d": "M7.5 5.213a3.262 3.262 0 0 0-3.25 3.25v.25h14.5v-.25c0-1.874-1.452-3.25-3.25-3.25h-8Zm-4.75 3.25a4.762 4.762 0 0 1 4.75-4.75h8c2.602 0 4.75 2.023 4.75 4.75v1.75H2.75v-1.75Z", "key": "5cc298c737af095c1a12cc385d75301f8c1ae7b8" }], ["path", { "fill": "currentColor", "d": "M3.5 8.713a.75.75 0 0 1 .75.75v7a3.262 3.262 0 0 0 3.25 3.25h4a.75.75 0 0 1 0 1.5h-4a4.762 4.762 0 0 1-4.75-4.75v-7a.75.75 0 0 1 .75-.75Zm16 0a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-1.5 0v-5a.75.75 0 0 1 .75-.75Zm-12-7a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm5.537 15.226a.75.75 0 0 1-.013 1.06l-4.098 3.998a1.03 1.03 0 0 1-.726.29c-.224 0-.508-.072-.73-.294l-.038-.038-1.532-2.042a.75.75 0 0 1 1.2-.9l1.157 1.542 3.72-3.63a.75.75 0 0 1 1.06.014Z", "key": "7a5ce69d24aff74c50b67d63af637047f51808df" }]]);
const CalendarAcross = createMeisterIcons("calendar-across", [["path", { "fill": "currentColor", "d": "M8.2 2.45a.75.75 0 1 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8a4.762 4.762 0 0 0 4.75 4.75h4a.75.75 0 0 0 0-1.5h-4a3.262 3.262 0 0 1-3.25-3.25V10.2h14.5v4.25a.75.75 0 0 0 1.5 0v-6c0-2.36-1.74-4.329-4-4.69V2.45a.75.75 0 0 0-1.5 0V3.7H8.2V2.45ZM18.7 8.7v-.25a3.266 3.266 0 0 0-2.5-3.162V6.45a.75.75 0 0 1-1.5 0V5.2H8.2v1.25a.75.75 0 1 1-1.5 0V5.288A3.266 3.266 0 0 0 4.2 8.45v.25h14.5Zm2.38 9.08a.75.75 0 0 0-1.06-1.06l-1.62 1.62-1.62-1.62a.75.75 0 1 0-1.06 1.06l1.62 1.62-1.62 1.62a.75.75 0 1 0 1.06 1.06l1.62-1.62 1.62 1.62a.75.75 0 1 0 1.06-1.06l-1.62-1.62 1.62-1.62Z", "key": "af39e1cf184b54515cc160aa1db433f7a2c64423" }]]);
const CalendarAcrossB = createMeisterIcons("calendar-across-b", [["path", { "fill": "currentColor", "d": "M21.08 16.72a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 1 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "b118d71b5f42d7b0ab711e4f9c632678d721b6f3" }], ["path", { "fill": "currentColor", "d": "M15.72 16.72a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 1 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Zm3.73-8.27v1h-16v-1c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "9589897f99bf506c6ce6ea26c30037bbe2f5b3f0" }], ["path", { "fill": "currentColor", "d": "M7.45 5.2A3.262 3.262 0 0 0 4.2 8.45v.25h14.5v-.25c0-1.873-1.452-3.25-3.25-3.25h-8ZM2.7 8.45A4.762 4.762 0 0 1 7.45 3.7h8c2.602 0 4.75 2.024 4.75 4.75v1.75H2.7V8.45Z", "key": "c1307c06e5478ec527f9ee592efd57fd4576ca72" }], ["path", { "fill": "currentColor", "d": "M3.45 8.7a.75.75 0 0 1 .75.75v7a3.262 3.262 0 0 0 3.25 3.25h4a.75.75 0 0 1 0 1.5h-4a4.762 4.762 0 0 1-4.75-4.75v-7a.75.75 0 0 1 .75-.75Zm16 0a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-1.5 0v-5a.75.75 0 0 1 .75-.75Zm-12-7a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "c88048365e69787ffc3bed1cc845d626f8ffd028" }]]);
const CalendarAdd = createMeisterIcons("calendar-add", [["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v1.25h6.5V3a.75.75 0 0 1 1.5 0v1.31c2.26.361 4 2.33 4 4.69v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9c0-2.36 1.74-4.329 4-4.69V3A.75.75 0 0 1 8 2.25Zm7.25 3.5V7a.75.75 0 0 0 1.5 0V5.838A3.266 3.266 0 0 1 19.25 9v8A3.262 3.262 0 0 1 16 20.25H8c-1.874 0-3.25-1.452-3.25-3.25V9a3.266 3.266 0 0 1 2.5-3.162V7a.75.75 0 0 0 1.5 0V5.75h6.5Zm-7 7.25a.75.75 0 0 1 .75-.75h2.25V10a.75.75 0 0 1 1.5 0v2.25H15a.75.75 0 0 1 0 1.5h-2.25V16a.75.75 0 0 1-1.5 0v-2.25H9a.75.75 0 0 1-.75-.75Z", "key": "d17a83b6185b901f586b48627b93d59b0b67b03b" }]]);
const CalendarAddB = createMeisterIcons("calendar-add-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "ce9b26c2bc8846283b29cae4f1858d2a3a2aa499" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "f1b6eef06cadf9693e78fa7d0f78d85aa5d5c4ca" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "9c49629168ca5aa8bd89eed2d4dd51b2c8493d38" }], ["path", { "fill": "#fff", "d": "M8.25 13a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "01b0f6e3feaf15c90a0d4c4ed7d974edee9a7bd4" }], ["path", { "fill": "#fff", "d": "M12 9.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "5144771c14084c9314235e0860da076c7b809160" }]]);
const CalendarAdot = createMeisterIcons("calendar-adot", [["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v1.25h6.5V3a.75.75 0 0 1 1.5 0v1.31c2.26.361 4 2.33 4 4.69v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9c0-2.36 1.74-4.329 4-4.69V3A.75.75 0 0 1 8 2.25ZM19.25 9v.25H4.75V9a3.266 3.266 0 0 1 2.5-3.162V7a.75.75 0 0 0 1.5 0V5.75h6.5V7a.75.75 0 0 0 1.5 0V5.838A3.266 3.266 0 0 1 19.25 9Zm0 1.75H4.75V17c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17v-6.25Zm-11 3.75a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM9 12.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "46a9502bb47da8d8020b3d816085353758e565b9" }]]);
const CalendarAdotB = createMeisterIcons("calendar-adot-b", [["path", { "fill": "#fff", "d": "M0 0h24v24H0z", "key": "74ac32519fdf214853c3cc520bd06819f41f41a6" }], ["path", { "fill": "currentColor", "d": "M20 9v1H4V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "409774545c5cf161ea5f2c6ce211cecf65094e0f" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v.25h14.5V9c0-1.874-1.452-3.25-3.25-3.25H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8c2.602 0 4.75 2.024 4.75 4.75v1.75H3.25V9Z", "key": "b726e1e02e5f615e9c24c4ce9ebaf7899ce0cecc" }], ["path", { "fill": "currentColor", "d": "M3.25 9.25h17.5V17A4.762 4.762 0 0 1 16 21.75H8A4.762 4.762 0 0 1 3.25 17V9.25Zm1.5 1.5V17A3.262 3.262 0 0 0 8 20.25h8A3.262 3.262 0 0 0 19.25 17v-6.25H4.75Zm4.25 3c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25-1.036 2.25-2.25 2.25-2.25-1.036-2.25-2.25Z", "key": "c3f766297b9db1f44e6ef285b98c83d33851fc11" }], ["path", { "fill": "currentColor", "d": "M9 13.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "1eb70997692a7ef000ea2da60337f483bfe4232d" }], ["path", { "fill": "currentColor", "d": "M9 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "e1c15b0a8373a9f1575cc9cb2281aa9fc08c56b6" }], ["path", { "fill": "currentColor", "d": "M9 13.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "9c971372ade6c0640eaf2f2228137f04f3af637b" }]]);
const CalendarAdots = createMeisterIcons("calendar-adots", [["path", { "fill": "currentColor", "d": "M8.75 3a.75.75 0 0 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8c0 2.602 2.024 4.75 4.75 4.75h8A4.762 4.762 0 0 0 20.75 17V9c0-2.36-1.74-4.329-4-4.69V3a.75.75 0 0 0-1.5 0v1.25h-6.5V3Zm10.5 6.25V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v.25h14.5Zm-14.5 1.5h14.5V17A3.262 3.262 0 0 1 16 20.25H8c-1.874 0-3.25-1.452-3.25-3.25v-6.25Zm4.25 3a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm7.5 0a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75-2.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "acc96452cc12c32594260f91e660ccc3ddab536a" }]]);
const CalendarAdotsB = createMeisterIcons("calendar-adots-b", [["path", { "fill": "currentColor", "d": "M20 9v1H4V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "26fe49e471c58cea99fe52e77bfeb05ed3b3db83" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v.25h14.5V9c0-1.874-1.452-3.25-3.25-3.25H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8c2.602 0 4.75 2.024 4.75 4.75v1.75H3.25V9Z", "key": "6e87a91ead86ef59336bc0e66253ba9e72dd0d52" }], ["path", { "fill": "currentColor", "d": "M3.25 9.25h17.5V17A4.762 4.762 0 0 1 16 21.75H8A4.762 4.762 0 0 1 3.25 17V9.25Zm1.5 1.5V17A3.262 3.262 0 0 0 8 20.25h8A3.262 3.262 0 0 0 19.25 17v-6.25H4.75Zm4.25 3c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25-1.036 2.25-2.25 2.25-2.25-1.036-2.25-2.25Zm8.25-.75c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25-1.036 2.25-2.25 2.25-2.25-1.036-2.25-2.25Z", "key": "9f485b90d5ef3ac61b615771668cf69ee07d4e00" }], ["path", { "fill": "currentColor", "d": "M9 13.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm8.25-.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "6af8a116d7bda4cb6c2616b5840b4906b1085d39" }], ["path", { "fill": "currentColor", "d": "M9 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "39a54c6ecda8397645a4f04167120640c4101518" }], ["path", { "fill": "currentColor", "d": "M9 13.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM15 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "23ceb208ed3fd953d1c7a7104f0fd8cbe435a9c5" }], ["path", { "fill": "currentColor", "d": "M15 13.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "ca7be7d3348da763fbb09996b6c3b1767ad845a7" }]]);
const CalendarAgrid = createMeisterIcons("calendar-agrid", [["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v1.25h6.5V3a.75.75 0 0 1 1.5 0v1.31c2.26.361 4 2.33 4 4.69v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9c0-2.36 1.74-4.329 4-4.69V3A.75.75 0 0 1 8 2.25Zm7.75 18H16A3.262 3.262 0 0 0 19.25 17v-1.25h-3.5v4.5Zm-1.5-4.5v4.5h-4.5v-4.5h4.5Zm1.5-1.5h3.5v-3.5h-3.5v3.5Zm-1.5-3.5v3.5h-4.5v-3.5h4.5Zm.75-1.5h4.25V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v.25H15Zm-6.75 11v-4.5h-3.5V17c0 1.798 1.376 3.25 3.25 3.25h.25Zm0-6v-3.5h-3.5v3.5h3.5Z", "key": "2900231f5df601c18b2186b2eb79bfcf444ef27f" }]]);
const CalendarAgridB = createMeisterIcons("calendar-agrid-b", [["path", { "fill": "currentColor", "d": "M20 9v1H4V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "8a85c9c9c81fa2564b852a9d39564ad843919caf" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v.25h14.5V9c0-1.874-1.452-3.25-3.25-3.25H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8c2.602 0 4.75 2.024 4.75 4.75v1.75H3.25V9Z", "key": "c815bc5a699e620daf036da884ef76dc04385bd5" }], ["path", { "fill": "currentColor", "d": "M3.25 9.25h17.5V17A4.762 4.762 0 0 1 16 21.75H8A4.762 4.762 0 0 1 3.25 17V9.25Zm1.5 1.5V17A3.262 3.262 0 0 0 8 20.25h8A3.262 3.262 0 0 0 19.25 17v-6.25H4.75ZM8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "c64a17b8bffafad36f452233457c5b13d90ef529" }], ["path", { "fill": "currentColor", "d": "M3.25 15a.75.75 0 0 1 .75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "7da2d7f3cd94d454d6393285524d6f1256176059" }], ["path", { "fill": "currentColor", "d": "M9 9.25a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-1.5 0V10A.75.75 0 0 1 9 9.25Zm6 0a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-1.5 0V10a.75.75 0 0 1 .75-.75Z", "key": "f792d12a228f19372a8c2d66d2d2b084b574f3a6" }]]);
const CalendarAheart = createMeisterIcons("calendar-aheart", [["path", { "fill": "currentColor", "d": "M14.6 16.938a.907.907 0 0 0-.67.28c-.283.284-.305.839-.064 1.164l.378.19 1.806 1.805 1.88-1.88c.244-.335.32-.56.32-.71 0-.155-.086-.374-.28-.57-.307-.306-.933-.306-1.24 0l-.73.731-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.039c-.393-.254-.86-.461-1.38-.461-.72 0-1.305.294-1.73.72-.893.892-.893 2.467 0 3.36l.086.086.4.2 1.672 1.672c.242.314.601.487.984.487.396 0 .753-.18 1.018-.445l1.8-1.8.238-.238.032-.042c.332-.444.65-1.006.65-1.65 0-.644-.314-1.226-.72-1.63-.796-.797-2.135-.883-3.05-.259Zm-.03 4.575Z", "key": "32b52b19922cd782c20e7b1170d310ed53aea003" }], ["path", { "fill": "currentColor", "d": "M3.25 8.788A4.762 4.762 0 0 1 8 4.038h8a4.762 4.762 0 0 1 4.75 4.75v4a.75.75 0 0 1-1.5 0v-4A3.262 3.262 0 0 0 16 5.538H8a3.262 3.262 0 0 0-3.25 3.25v8A3.262 3.262 0 0 0 8 20.038a.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-8Z", "key": "19db0209d7cf61c58d86ff2eb23c8ac86c43b1e6" }], ["path", { "fill": "currentColor", "d": "M8 2.038a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75ZM3.25 9.788a.75.75 0 0 1 .75-.75h16a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75Z", "key": "addadf8b7d4e18b72e32eb9cce0621a4484321fa" }]]);
const CalendarB = createMeisterIcons("calendar-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "5e63e017b034ef8d31991082e5f5c921866e798a" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "fca6212684510ee4a62665e6d34553f2d04e71a4" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "7be26382ff411cf2a4203a3fce54db77c84ee35f" }]]);
const CalendarCheck = createMeisterIcons("calendar-check", [["path", { "fill": "currentColor", "d": "M8.75 3a.75.75 0 0 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8c0 2.602 2.024 4.75 4.75 4.75h8A4.762 4.762 0 0 0 20.75 17V9c0-2.36-1.74-4.329-4-4.69V3a.75.75 0 0 0-1.5 0v1.25h-6.5V3Zm6.5 4V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0Zm.274 5.537a.75.75 0 1 0-1.048-1.074l-3.72 3.63L9.6 13.55a.75.75 0 1 0-1.2.9l1.532 2.043.038.037c.222.223.506.295.73.295.222 0 .504-.071.726-.29l4.098-3.998Z", "key": "2c7d89ace32020f1cfec36cc6bd328240f46fb44" }]]);
const CalendarCheckB = createMeisterIcons("calendar-check-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "9a4b9ee11d545d6325939e18bf98d36af2dbdc36" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "49c287e0ec7f4ac41585333519436a636ab4bf7e" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "1863e1968a7017a9c1792279ff3a27070cfcc2b5" }], ["path", { "fill": "#fff", "d": "M15.537 11.476a.75.75 0 0 1-.013 1.06l-4.098 3.999c-.222.219-.504.29-.726.29a1.03 1.03 0 0 1-.73-.295l-.038-.037L8.4 14.45a.75.75 0 0 1 1.2-.9l1.157 1.542 3.72-3.629a.75.75 0 0 1 1.06.013Z", "key": "0383c32e72c767ec9eb7dae354a8a4345a2ae41b" }]]);
const CalendarCode = createMeisterIcons("calendar-code", [["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v1.25h6.5V3a.75.75 0 0 1 1.5 0v1.31c2.26.361 4 2.33 4 4.69v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9c0-2.36 1.74-4.329 4-4.69V3A.75.75 0 0 1 8 2.25Zm7.25 3.5V7a.75.75 0 0 0 1.5 0V5.838A3.266 3.266 0 0 1 19.25 9v8A3.262 3.262 0 0 1 16 20.25H8c-1.874 0-3.25-1.452-3.25-3.25V9a3.266 3.266 0 0 1 2.5-3.162V7a.75.75 0 0 0 1.5 0V5.75h6.5Zm-1.88 4.82a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03s-.174.76-.445 1.03l-1.4 1.4a.75.75 0 1 1-1.06-1.06L14.74 13l-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64.1a.75.75 0 0 1 0 1.06L9.36 13.1l1.37 1.37a.75.75 0 0 1-1.06 1.06l-1.4-1.4c-.27-.27-.445-.63-.445-1.03s.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Zm-1.4 2.4a.1.1 0 0 1-.015-.018l.002.003a.097.097 0 0 1 .006.022l.007-.007Z", "key": "90f5486d0ccdae4405cf2895cf4410373a957511" }]]);
const CalendarCodeB = createMeisterIcons("calendar-code-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "3c1dc5311c60b06d2e004b4e454b259de4fbebf6" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "d593d84b1dfbd386b3b7b77a6ca5f475da4a0d81" }], ["path", { "fill": "#fff", "d": "M13.37 10.57a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03s-.174.76-.445 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06L14.74 13l-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.658-.018a.75.75 0 0 1 .036 1.06L9.36 13.099l1.37 1.37a.75.75 0 0 1-1.06 1.061l-1.4-1.4c-.27-.27-.445-.63-.445-1.03 0-.396.17-.75.434-1.02l1.393-1.492a.75.75 0 0 1 1.06-.036Z", "key": "2c88e0b60945dbe116e217d77c1665500110d391" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "eb048070f99efc99a618966620d87f6d7b5b8891" }]]);
const CalendarCross = createMeisterIcons("calendar-cross", [["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v1.25h6.5V3a.75.75 0 0 1 1.5 0v1.31c2.26.361 4 2.33 4 4.69v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9c0-2.36 1.74-4.329 4-4.69V3A.75.75 0 0 1 8 2.25Zm7.25 3.5V7a.75.75 0 0 0 1.5 0V5.838A3.266 3.266 0 0 1 19.25 9v8A3.262 3.262 0 0 1 16 20.25H8c-1.874 0-3.25-1.452-3.25-3.25V9a3.266 3.266 0 0 1 2.5-3.162V7a.75.75 0 0 0 1.5 0V5.75h6.5Zm-5.98 4.52a.75.75 0 0 1 1.06 0l1.62 1.62 1.62-1.62a.75.75 0 1 1 1.06 1.06l-1.62 1.62 1.62 1.62a.75.75 0 1 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 0-1.06Z", "key": "1b1ec8b46b6240c84d0a0715c8158a8b08bba4aa" }]]);
const CalendarCrossB = createMeisterIcons("calendar-cross-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "9e7913b22fcdb2c5e439f4249619eeec07a1650d" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "ab202e250d96da40a283d3272d4a2f9ad7461f46" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "8f41e64a754f87ff1a4128d312a3982dad0d316c" }], ["path", { "fill": "#fff", "d": "M9.27 10.27a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 0 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "4c0961b69622e4ecba136005d63bf885a2a37460" }], ["path", { "fill": "#fff", "d": "M14.63 10.27a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 0 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "8c52c8dce69c831cbe6c0bac1223b753efb9b0a0" }]]);
const CalendarDash = createMeisterIcons("calendar-dash", [["path", { "fill": "currentColor", "d": "M8.75 3a.75.75 0 0 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8c0 2.602 2.024 4.75 4.75 4.75h8A4.762 4.762 0 0 0 20.75 17V9c0-2.36-1.74-4.329-4-4.69V3a.75.75 0 0 0-1.5 0v1.25h-6.5V3Zm6.5 4V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0ZM8 10.25a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5H8Z", "key": "bfaa378484e22db589c80f9c07b74a704dbc970f" }]]);
const CalendarDashB = createMeisterIcons("calendar-dash-b", [["path", { "fill": "currentColor", "d": "M20 9v8c0 2.2-1.8 4-4 4H8c-2.2 0-4-1.8-4-4V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.7 4 4Z", "key": "630c19789bbeaec255bd688f8b1415d9e206ddf4" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8A3.262 3.262 0 0 0 8 20.25h8A3.262 3.262 0 0 0 19.25 17V9c0-1.874-1.452-3.25-3.25-3.25H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8c2.602 0 4.75 2.024 4.75 4.75v8A4.762 4.762 0 0 1 16 21.75H8A4.762 4.762 0 0 1 3.25 17V9Z", "key": "a17ced17f81f01dcb3facd23c73dcf3b273cb273" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "c30dd23f9e12d1073da524a9c2743a3a0473263d" }], ["path", { "fill": "#fff", "d": "M7.25 11a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75Z", "key": "2703de5c073eb0e0d643f501fb78baea3e051697" }]]);
const CalendarDot = createMeisterIcons("calendar-dot", [["path", { "fill": "currentColor", "d": "M8.75 3a.75.75 0 0 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8c0 2.602 2.024 4.75 4.75 4.75h8A4.762 4.762 0 0 0 20.75 17V9c0-2.36-1.74-4.329-4-4.69V3a.75.75 0 0 0-1.5 0v1.25h-6.5V3Zm6.5 4V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0Zm-7.5 4.5a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75-2.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "12ca85232a69bc9e6b88da5e32874fadaee8bda1" }]]);
const CalendarDotB = createMeisterIcons("calendar-dot-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "7d95925c3758f57249a587393d2b335f57adc0c6" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "7571f8dc6b651a25c3cc74c9b49c5ef8612e1330" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "fb817cb9666fe92244d5ea7b248c118f9df2c585" }], ["path", { "fill": "#fff", "d": "M8.5 13a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "a92670ab1940e099871cd4a5de60bd6b8129db48" }], ["path", { "fill": "#fff", "d": "M8.5 10.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "de6952aa071ec2f82139ac8a75abf5dc9a607550" }]]);
const CalendarHeart = createMeisterIcons("calendar-heart", [["path", { "fill": "currentColor", "d": "M10.6 11.15a.907.907 0 0 0-.67.28c-.297.297-.306.892-.03 1.208l.393.294 1.757 1.757 1.88-1.88c.244-.334.32-.56.32-.709a.907.907 0 0 0-.28-.67c-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.468 0 3.36l.037.038.4.3 1.721 1.72c.242.315.601.487.984.487.396 0 .753-.18 1.018-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.72-.294-1.305-.72-1.73-.796-.797-2.135-.883-3.05-.258Zm-.03 4.675v-.001Z", "key": "6cb9be006cb5e6c3afa0467c26e1da3f327600de" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "e405d6c3a315a84800290b3b5d183dbbf796d410" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "3e309ba941aaf20f149aa955427b204da747d1a0" }]]);
const CalendarLines = createMeisterIcons("calendar-lines", [["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v1.25h6.5V3a.75.75 0 0 1 1.5 0v1.31c2.26.361 4 2.33 4 4.69v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9c0-2.36 1.74-4.329 4-4.69V3A.75.75 0 0 1 8 2.25Zm7.25 3.5V7a.75.75 0 0 0 1.5 0V5.838A3.266 3.266 0 0 1 19.25 9v8A3.262 3.262 0 0 1 16 20.25H8c-1.874 0-3.25-1.452-3.25-3.25V9a3.266 3.266 0 0 1 2.5-3.162V7a.75.75 0 0 0 1.5 0V5.75h6.5Zm-8 5.25a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75ZM8 15.25a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5H8Z", "key": "db1516c285f8ead418dce0436eea2dfceb3cc4f2" }]]);
const CalendarLinesB = createMeisterIcons("calendar-lines-b", [["path", { "fill": "currentColor", "d": "M4 17V9c0-2.2 1.8-4 4-4h8c2.2 0 4 1.8 4 4v8c0 2.2-1.8 4-4 4H8c-2.3 0-4-1.8-4-4Z", "key": "ba162a6e01ab59fea1f1930caa194deaa917c90d" }], ["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "e18f03fd23157d2119eb8d2a3d41df6be034778e" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "c0862c12161a9a5d8468bde89c5a2de5ffaf9997" }], ["path", { "fill": "#fff", "d": "M7.25 11a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75Zm0 5a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75Z", "key": "a5141ff15d49cb0702e9b1323b9041aea2c79e7a" }]]);
const CalendarStar = createMeisterIcons("calendar-star", [["path", { "fill": "currentColor", "d": "M8.75 3a.75.75 0 0 0-1.5 0v1.31c-2.26.361-4 2.33-4 4.69v8c0 2.602 2.024 4.75 4.75 4.75h8A4.762 4.762 0 0 0 20.75 17V9c0-2.36-1.74-4.329-4-4.69V3a.75.75 0 0 0-1.5 0v1.25h-6.5V3Zm6.5 4V5.75h-6.5V7a.75.75 0 0 1-1.5 0V5.838A3.266 3.266 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9a3.266 3.266 0 0 0-2.5-3.162V7a.75.75 0 0 1-1.5 0Zm-3.501 4.327.25-.418.252.418a2 2 0 0 0 1.263.917l.475.11-.32.368a2 2 0 0 0-.482 1.484l.042.486-.449-.19a2 2 0 0 0-1.56 0l-.45.19.043-.486a2 2 0 0 0-.482-1.484l-.32-.368.475-.11a2 2 0 0 0 1.263-.917Zm-.178-2.615a.5.5 0 0 1 .857 0l1.108 1.841a.5.5 0 0 0 .316.23l2.094.484a.5.5 0 0 1 .265.815l-1.41 1.623a.5.5 0 0 0-.12.371l.186 2.141a.5.5 0 0 1-.693.504l-1.979-.838a.5.5 0 0 0-.39 0l-1.979.838a.5.5 0 0 1-.693-.504l.186-2.14a.5.5 0 0 0-.12-.372l-1.41-1.623a.5.5 0 0 1 .265-.815l2.094-.484a.5.5 0 0 0 .315-.23l1.109-1.841Z", "key": "c2527c12548f863c45c91024d32354e530ca6a4c" }]]);
const CalendarStarB = createMeisterIcons("calendar-star-b", [["path", { "fill": "currentColor", "d": "M8 5.75A3.262 3.262 0 0 0 4.75 9v8c0 1.798 1.376 3.25 3.25 3.25h8A3.262 3.262 0 0 0 19.25 17V9A3.262 3.262 0 0 0 16 5.75H8ZM3.25 9A4.762 4.762 0 0 1 8 4.25h8A4.762 4.762 0 0 1 20.75 9v8A4.762 4.762 0 0 1 16 21.75H8c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "c08bbd831ad7b8cb254487090812473656819803" }], ["path", { "fill": "currentColor", "d": "M8 2.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3A.75.75 0 0 1 8 2.25Zm8 0a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75ZM11.8 15.2l-1.6.9c-.2.1-.4-.1-.4-.3l.3-1.9c0-.1 0-.2-.1-.2l-1.4-1.3c-.2-.1-.1-.4.1-.4l1.9-.3c.1 0 .2-.1.2-.1l.8-1.7c.1-.2.4-.2.5 0l.8 1.7c0 .1.1.1.2.1l1.9.3c.2 0 .3.3.1.4l-1.4 1.3c-.1.1-.1.1-.1.2l.3 1.9c0 .2-.2.4-.4.3l-1.4-.9h-.3Z", "key": "41cdd8549851b45e3cb50ae91355023a451bd51e" }], ["path", { "fill": "currentColor", "d": "m11.85 11.13.333.708a.822.822 0 0 0 .542.561c.12.04.245.05.316.051l.772.122-.633.588-.01.01-.005.005c-.02.02-.052.052-.08.083a.861.861 0 0 0-.23.508 1.309 1.309 0 0 0-.005.13v.063l.146.925-.676-.434h-.716l-.912.513.158-1.004v-.062c0-.024.005-.203-.051-.372a.84.84 0 0 0-.398-.476l-.514-.477.796-.126c.233-.021.403-.127.47-.172a1.205 1.205 0 0 0 .154-.121l.013-.013.006-.005.002-.002.001-.002h.001l-.53-.531.53.53.093-.092.427-.908Zm-1.594-.135.67-1.422.003-.008c.377-.753 1.466-.753 1.842 0l.004.008.67 1.422 1.633.258c.468.036.755.394.843.704.093.325.02.78-.365 1.043l-1.168 1.084.262 1.657v.059c0 .335-.159.642-.395.839a.995.995 0 0 1-1.09.132l-.036-.018-1.195-.768-1.382.778-.017.008a.994.994 0 0 1-1.09-.132 1.102 1.102 0 0 1-.395-.839v-.059l.262-1.657L8.144 13c-.385-.263-.458-.718-.365-1.043.088-.31.375-.668.844-.704l1.633-.258Z", "key": "04f51008afe9149ec679699c4d9e71e8c1044520" }]]);
const Camera = createMeisterIcons("camera", [["path", { "fill": "currentColor", "d": "M7.75 5.25c0-.586.464-1.05 1.05-1.05h6.4c.586 0 1.05.464 1.05 1.05v1.2c0 .017 0 .034.002.05a.75.75 0 0 0 .748.8 3.262 3.262 0 0 1 3.25 3.25v6A3.262 3.262 0 0 1 17 19.8H7a3.262 3.262 0 0 1-3.25-3.25v-6A3.262 3.262 0 0 1 6.979 7.3H7a.75.75 0 0 0 .75-.75v-1.3Zm-1.5.61v-.61A2.542 2.542 0 0 1 8.8 2.7h6.4a2.542 2.542 0 0 1 2.55 2.55v.61c2.26.361 4 2.33 4 4.69v6A4.762 4.762 0 0 1 17 21.3H7a4.762 4.762 0 0 1-4.75-4.75v-6c0-2.36 1.74-4.329 4-4.69ZM12 12.3a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM10 7.8a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Z", "key": "0a75f99378bb37f6e2e45d4b81b26655356da3ae" }]]);
const Camera1 = createMeisterIcons("camera1", [["path", { "fill": "currentColor", "d": "M7.75 5.25c0-.586.464-1.05 1.05-1.05h6.4c.586 0 1.05.464 1.05 1.05v1.2c0 .017 0 .034.002.05a.75.75 0 0 0 .748.8 3.266 3.266 0 0 1 3.162 2.5H19.9c-1.414 0-2.65 1.236-2.65 2.65v2.2c0 1.414 1.236 2.65 2.65 2.65h.262A3.266 3.266 0 0 1 17 19.8H7a3.266 3.266 0 0 1-3.162-2.5H4.1c1.414 0 2.65-1.236 2.65-2.65v-2.2c0-1.414-1.236-2.65-2.65-2.65h-.262a3.266 3.266 0 0 1 3.14-2.5H7a.75.75 0 0 0 .75-.75v-1.3Zm-5.5 5.3c0-2.36 1.74-4.329 4-4.69v-.61A2.542 2.542 0 0 1 8.8 2.7h6.4a2.542 2.542 0 0 1 2.55 2.55v.61c2.26.361 4 2.33 4 4.69v6A4.762 4.762 0 0 1 17 21.3H7a4.762 4.762 0 0 1-4.75-4.75v-6Zm1.5 5.25v-4.5h.35c.586 0 1.15.564 1.15 1.15v2.2c0 .586-.564 1.15-1.15 1.15h-.35Zm16.15-4.5h.35v4.5h-.35c-.586 0-1.15-.564-1.15-1.15v-2.2c0-.586.564-1.15 1.15-1.15Zm-7.9 1a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM10 7.8a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5h-4Z", "key": "3ba9cb680d48434129390347f7794092198f0a26" }]]);
const Camera1B = createMeisterIcons("camera1-b", [["path", { "fill": "currentColor", "d": "M7 7.3a3.262 3.262 0 0 0-3.25 3.25.75.75 0 1 1-1.5 0A4.762 4.762 0 0 1 7 5.8a.75.75 0 0 1 0 1.5Zm-4 8.5a.75.75 0 0 1 .75.75A3.262 3.262 0 0 0 7 19.8h10a3.262 3.262 0 0 0 3.25-3.25.75.75 0 0 1 1.5 0A4.762 4.762 0 0 1 17 21.3H7a4.762 4.762 0 0 1-4.75-4.75.75.75 0 0 1 .75-.75Zm13.25-9.25A.75.75 0 0 1 17 5.8a4.762 4.762 0 0 1 4.75 4.75.75.75 0 1 1-1.5 0A3.262 3.262 0 0 0 17 7.3a.75.75 0 0 1-.75-.75Z", "key": "542696c0c1bb0e9561ad07f3664e7b868bee50a1" }], ["path", { "fill": "currentColor", "d": "M8.8 4.2c-.586 0-1.05.464-1.05 1.05v1.3a.75.75 0 0 1-1.5 0v-1.3A2.543 2.543 0 0 1 8.8 2.7h6.4a2.543 2.543 0 0 1 2.55 2.55v1.2a.75.75 0 0 1-1.5 0v-1.2c0-.586-.464-1.05-1.05-1.05H8.8ZM12 17.55a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "2c2618aec0d059c59b5df9346fce90d2797db548" }], ["path", { "fill": "currentColor", "d": "M12 12.3a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm1-6A.75.75 0 0 1 10 7.8h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Zm11.75 2v6h-1.1c-1 0-1.9-.9-1.9-1.9v-2.3c0-1 .8-1.9 1.9-1.9H21v.1Z", "key": "b1697a0c8ba0151ab86b43c382f8bf31e01c704f" }], ["path", { "fill": "currentColor", "d": "M19.9 11.2c-.66 0-1.15.538-1.15 1.15v2.3c0 .586.564 1.15 1.15 1.15h.35v-4.6h-.35Zm-2.65 1.15c0-1.388 1.11-2.65 2.65-2.65h1.85v7.6H19.9c-1.414 0-2.65-1.236-2.65-2.65v-2.3ZM6 12.35v2.2c0 1-.8 1.9-1.9 1.9H3v-6h1.1c1 .1 1.9.9 1.9 1.9Z", "key": "411eba4231d7fc413e95308e3c3d26078fd27460" }], ["path", { "fill": "currentColor", "d": "M2.25 9.7h1.887l.038.004c1.288.129 2.575 1.172 2.575 2.646v2.2c0 1.388-1.11 2.65-2.65 2.65H2.25V9.7Zm1.5 1.5v4.5h.35c.66 0 1.15-.538 1.15-1.15v-2.2c0-.518-.497-1.065-1.191-1.15H3.75Z", "key": "2a14e062f930d6ee9f2cc65011446234fe6d05b9" }]]);
const Camera2 = createMeisterIcons("camera2", [["path", { "fill": "currentColor", "d": "M8.8 4.2c-.586 0-1.05.464-1.05 1.05v1.3A.75.75 0 0 1 7 7.3h-.021a3.262 3.262 0 0 0-3.229 3.25v6A3.262 3.262 0 0 0 7 19.8h10a3.266 3.266 0 0 0 3.162-2.5H19.9c-1.414 0-2.65-1.236-2.65-2.65v-2.2c0-1.414 1.236-2.65 2.65-2.65h.262A3.266 3.266 0 0 0 17 7.3a.75.75 0 0 1-.748-.8.747.747 0 0 1-.002-.05v-1.2c0-.586-.464-1.05-1.05-1.05H8.8Zm11.45 7.1h-.35c-.586 0-1.15.564-1.15 1.15v2.2c0 .586.564 1.15 1.15 1.15h.35v-4.5Zm1.5 5.25v-6c0-2.36-1.74-4.329-4-4.69v-.61A2.542 2.542 0 0 0 15.2 2.7H8.8a2.542 2.542 0 0 0-2.55 2.55v.61c-2.26.361-4 2.33-4 4.69v6A4.762 4.762 0 0 0 7 21.3h10a4.762 4.762 0 0 0 4.75-4.75Zm-12-2a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM12 10.8a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5ZM9.25 8.55A.75.75 0 0 1 10 7.8h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z", "key": "9cb4c41042d461549e702f97e8f25f7b5be5d5d1" }]]);
const Camera2B = createMeisterIcons("camera2-b", [["path", { "fill": "currentColor", "d": "M16.25 6.55A.75.75 0 0 1 17 5.8a4.762 4.762 0 0 1 4.75 4.75.75.75 0 1 1-1.5 0A3.262 3.262 0 0 0 17 7.3a.75.75 0 0 1-.75-.75Zm-14 4A4.762 4.762 0 0 1 7 5.8a.75.75 0 0 1 0 1.5 3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 19.8h10a3.262 3.262 0 0 0 3.25-3.25.75.75 0 0 1 1.5 0A4.762 4.762 0 0 1 17 21.3H7a4.762 4.762 0 0 1-4.75-4.75v-6Z", "key": "36d63bfd073993b8c8970329a262895b70a46c37" }], ["path", { "fill": "currentColor", "d": "M8.8 4.2c-.586 0-1.05.464-1.05 1.05v1.3a.75.75 0 0 1-1.5 0v-1.3A2.543 2.543 0 0 1 8.8 2.7h6.4a2.543 2.543 0 0 1 2.55 2.55v1.2a.75.75 0 0 1-1.5 0v-1.2c0-.586-.464-1.05-1.05-1.05H8.8ZM12 17.55a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "0da2448d00a2a8fe9ae1a1cb9a8fea0f27ce8ff4" }], ["path", { "fill": "currentColor", "d": "M12 12.3a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm1-6A.75.75 0 0 1 10 7.8h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Zm11.75 2v6h-1.1c-1 0-1.9-.9-1.9-1.9v-2.3c0-1 .8-1.9 1.9-1.9H21v.1Z", "key": "875d5cf7d4502a0acb61f9a8b19f5fe4cc228c43" }], ["path", { "fill": "currentColor", "d": "M19.9 11.2c-.66 0-1.15.538-1.15 1.15v2.3c0 .586.564 1.15 1.15 1.15h.35v-4.6h-.35Zm-2.65 1.15c0-1.388 1.11-2.65 2.65-2.65h1.85v7.6H19.9c-1.414 0-2.65-1.236-2.65-2.65v-2.3Z", "key": "8ddcb349e0e1466bab789ea9dbeb8ba9b8adad91" }]]);
const CameraB = createMeisterIcons("camera-b", [["path", { "fill": "currentColor", "d": "M7 7.3a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 19.8h10a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 7.3a.75.75 0 0 1 0-1.5 4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 21.3H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 5.8a.75.75 0 0 1 0 1.5Z", "key": "f5b5900eddc13c5d56d9a0b0dabc7ab172ff4f0b" }], ["path", { "fill": "currentColor", "d": "M8.8 4.2c-.586 0-1.05.464-1.05 1.05v1.3a.75.75 0 0 1-1.5 0v-1.3A2.543 2.543 0 0 1 8.8 2.7h6.4a2.543 2.543 0 0 1 2.55 2.55v1.2a.75.75 0 0 1-1.5 0v-1.2c0-.586-.464-1.05-1.05-1.05H8.8ZM12 17.55a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "0e6fb69ae60a17a33e63ee7c14890b9dad3d6608" }], ["path", { "fill": "currentColor", "d": "M12 12.3a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Zm1-6A.75.75 0 0 1 10 7.8h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z", "key": "fe0b3983a768b3e9436432309cf3fb8537bcbd32" }]]);
const CameraMinimal = createMeisterIcons("camera-minimal", [["path", { "fill": "currentColor", "d": "M8.8 4.2c-.586 0-1.05.464-1.05 1.05v1.3A.75.75 0 0 1 7 7.3a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 19.8h10a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 7.3a.75.75 0 0 1-.748-.8.829.829 0 0 1-.002-.05v-1.2c0-.586-.464-1.05-1.05-1.05H8.8ZM6.25 5.25v.61c-2.26.361-4 2.33-4 4.69v6A4.762 4.762 0 0 0 7 21.3h10a4.762 4.762 0 0 0 4.75-4.75v-6c0-2.36-1.74-4.329-4-4.69v-.61A2.543 2.543 0 0 0 15.2 2.7H8.8a2.543 2.543 0 0 0-2.55 2.55Zm3.5 8.3a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM12 9.8a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z", "key": "671a0f44bde1a5e30dc3c56b4c60770163b59282" }]]);
const CameraMinimalB = createMeisterIcons("camera-minimal-b", [["path", { "fill": "currentColor", "d": "M7 7.3a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 19.8h10a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 7.3a.75.75 0 0 1 0-1.5 4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 21.3H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 5.8a.75.75 0 0 1 0 1.5Z", "key": "c0d1e0244272b1b05a8de159e22a138f304550fb" }], ["path", { "fill": "currentColor", "d": "M8.8 4.2c-.586 0-1.05.464-1.05 1.05v1.3a.75.75 0 0 1-1.5 0v-1.3A2.543 2.543 0 0 1 8.8 2.7h6.4a2.543 2.543 0 0 1 2.55 2.55v1.2a.75.75 0 0 1-1.5 0v-1.2c0-.586-.464-1.05-1.05-1.05H8.8ZM12 16.55a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "2540348deb8c40f1b90174909691005af5047bb7" }], ["path", { "fill": "currentColor", "d": "M12 11.3a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "5031f3d47874e252b41546b878ac886ed525984d" }]]);
const CameraPaper = createMeisterIcons("camera-paper", [["path", { "fill": "currentColor", "d": "M5.75 12.5c-1.086 0-1.95.864-1.95 1.95v4.1c0 1.086.864 1.95 1.95 1.95h6.7c1.086 0 1.95-.864 1.95-1.95v-4.1c0-1.086-.864-1.95-1.95-1.95a.75.75 0 0 1 0-1.5 3.439 3.439 0 0 1 3.45 3.45v4.1A3.439 3.439 0 0 1 12.45 22h-6.7a3.439 3.439 0 0 1-3.45-3.45v-4.1A3.439 3.439 0 0 1 5.75 11a.75.75 0 0 1 0 1.5Z", "key": "49ad4ee4f7002cb71966eb1c767647d15720bd0b" }], ["path", { "fill": "currentColor", "d": "M6.95 10.4c-.286 0-.45.164-.45.45v.9a.75.75 0 0 1-1.5 0v-.9c0-1.114.836-1.95 1.95-1.95h4.3c1.114 0 1.95.836 1.95 1.95v.8a.75.75 0 0 1-1.5 0v-.8c0-.286-.164-.45-.45-.45h-4.3Zm2.1 4.8a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM6.3 16.45a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "1f379ec5265d75327152a1df6bc9778b5a35b50d" }], ["path", { "fill": "currentColor", "d": "M11.35 3.5c-.886 0-1.55.664-1.55 1.55v4.6a.75.75 0 0 1-1.5 0v-4.6A3.013 3.013 0 0 1 11.35 2h7.3a3.013 3.013 0 0 1 3.05 3.05v9.5a3.013 3.013 0 0 1-3.05 3.05h-3.5a.75.75 0 0 1 0-1.5h3.5c.886 0 1.55-.664 1.55-1.55v-9.5c0-.886-.664-1.55-1.55-1.55h-7.3Z", "key": "affb8fc2b45c4184a3979f2e9ebef479855c608b" }]]);
const CameraPaperB = createMeisterIcons("camera-paper-b", [["path", { "fill": "currentColor", "d": "M5.75 12.55c-1.086 0-1.95.864-1.95 1.95v4c0 1.086.864 1.95 1.95 1.95h6.7c1.086 0 1.95-.864 1.95-1.95v-1.6a.75.75 0 0 1 1.5 0v1.6a3.439 3.439 0 0 1-3.45 3.45h-6.7A3.439 3.439 0 0 1 2.3 18.5v-4a3.439 3.439 0 0 1 3.45-3.45.75.75 0 0 1 0 1.5Z", "key": "73ebdde18c191a9977972fec23b52d672c39640f" }], ["path", { "fill": "currentColor", "d": "M6.95 10.45c-.286 0-.45.164-.45.45v.8a.75.75 0 0 1-1.5 0v-.8c0-1.114.836-1.95 1.95-1.95h2.2a.75.75 0 0 1 0 1.5h-2.2Zm2.1 4.8a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM6.3 16.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "c6e9b8c9cf7bebb2569854939502a20c47bd7ea2" }], ["path", { "fill": "currentColor", "d": "M20.95 5.1v9.5c0 1.3-1 2.3-2.3 2.3h-3.5v-2.5c0-1.5-1.2-2.7-2.7-2.7v-.8c0-.7-.5-1.2-1.2-1.2h-2.2V5.1c0-1.3 1-2.3 2.3-2.3h7.2c1.3.1 2.4 1.1 2.4 2.3Z", "key": "4874ca82f4a95a7a1bdd7fa93ca375fd9351f9da" }], ["path", { "fill": "currentColor", "d": "M11.35 3.55c-.886 0-1.55.664-1.55 1.55v3.85h1.45c1.114 0 1.95.836 1.95 1.95v.13c1.55.34 2.7 1.714 2.7 3.37v1.75h2.75c.886 0 1.55-.664 1.55-1.55V5.1c0-.713-.69-1.462-1.68-1.55h-7.17ZM8.3 5.1a3.013 3.013 0 0 1 3.05-3.05h7.229l.029.002C20.203 2.175 21.7 3.42 21.7 5.1v9.5a3.013 3.013 0 0 1-3.05 3.05H14.4V14.4c0-1.086-.864-1.95-1.95-1.95h-.75V10.9c0-.286-.164-.45-.45-.45H8.3V5.1Z", "key": "c4817de6fe268666150739d8a8867ff60e40fce3" }]]);
const Candy = createMeisterIcons("candy", [["path", { "fill": "currentColor", "d": "M8.216 15.756c-1.122-1.11-2.86-1.373-4.151-.727a1.45 1.45 0 0 0-.766 1.053c-.07.396.01.888.37 1.249l3 3c.361.36.853.44 1.249.37.4-.07.827-.314 1.053-.765l.006-.013.006-.012c.604-1.33.511-2.993-.767-4.155Zm-3.415.584 2.856 2.857c.346-.84.224-1.725-.459-2.34l-.014-.013-.014-.014c-.658-.657-1.668-.802-2.37-.49ZM16.082 3.399c.396-.07.888.01 1.248.37l3 3c.361.361.441.853.371 1.249-.07.4-.314.827-.766 1.053-1.291.646-3.03.383-4.151-.727-1.278-1.162-1.37-2.825-.767-4.154l.006-.013.006-.012a1.45 1.45 0 0 1 1.053-.766Zm.26 1.504L19.2 7.76c-.701.312-1.71.168-2.369-.49l-.014-.014-.014-.013c-.683-.615-.805-1.5-.46-2.34Z", "key": "b71c0b09881e1f32ae4fc6bdc7ffc45feba2856a" }], ["path", { "fill": "currentColor", "d": "M14.77 7.73a2.57 2.57 0 0 0-3.64 0l-3.4 3.4a2.57 2.57 0 0 0 0 3.64l1.5 1.5a2.57 2.57 0 0 0 3.64 0l3.4-3.4a2.57 2.57 0 0 0 0-3.64l-1.5-1.5Zm-4.7-1.06a4.07 4.07 0 0 1 5.76 0l1.5 1.5a4.07 4.07 0 0 1 0 5.76l-3.4 3.4a4.07 4.07 0 0 1-5.76 0l-1.5-1.5a4.07 4.07 0 0 1 0-5.76l3.4-3.4Z", "key": "685fd00ebb518e0e88a18da8cf6ec5200d621bb8" }]]);
const CandyB = createMeisterIcons("candy-b", [["path", { "fill": "currentColor", "d": "M8.216 15.756c-1.122-1.11-2.86-1.373-4.151-.727a1.45 1.45 0 0 0-.766 1.053c-.07.396.01.888.37 1.249l3 3c.361.36.853.44 1.249.37.4-.07.827-.314 1.053-.765l.006-.013.006-.012c.604-1.33.511-2.993-.767-4.155Zm-3.415.584 2.856 2.857c.346-.84.224-1.725-.459-2.34l-.014-.013-.014-.014c-.658-.657-1.668-.802-2.37-.49ZM16.082 3.399c.396-.07.888.01 1.248.37l3 3c.361.361.441.853.371 1.249-.07.4-.314.827-.766 1.053-1.291.646-3.03.383-4.151-.727-1.278-1.162-1.37-2.825-.767-4.154l.006-.013.006-.012a1.45 1.45 0 0 1 1.053-.766Zm.26 1.504L19.2 7.76c-.701.312-1.71.168-2.369-.49l-.014-.014-.014-.013c-.683-.615-.805-1.5-.46-2.34Z", "key": "971f1792638b947067c7b5742c97d81c94e486c8" }], ["path", { "fill": "currentColor", "d": "m16.8 13.4-3.4 3.4a3.32 3.32 0 0 1-4.7 0l-1.5-1.5a3.32 3.32 0 0 1 0-4.7l3.4-3.4c1.3-1.3 3.4-1.3 4.7 0l1.5 1.5c1.3 1.3 1.3 3.4 0 4.7Z", "key": "3f4ab27d6e1f7c2fc8ef14aa9c4c1959642ae497" }], ["path", { "fill": "currentColor", "d": "M14.77 7.73a2.57 2.57 0 0 0-3.64 0l-3.4 3.4a2.57 2.57 0 0 0 0 3.64l1.5 1.5a2.57 2.57 0 0 0 3.64 0l3.4-3.4a2.57 2.57 0 0 0 0-3.64l-1.5-1.5Zm-4.7-1.06a4.07 4.07 0 0 1 5.76 0l1.5 1.5a4.07 4.07 0 0 1 0 5.76l-3.4 3.4a4.07 4.07 0 0 1-5.76 0l-1.5-1.5a4.07 4.07 0 0 1 0-5.76l3.4-3.4Z", "key": "e0be8288ac9c5fecdef53bcd3cc801d96b7e7118" }]]);
const Car = createMeisterIcons("car", [["path", { "fill": "currentColor", "d": "M3.4 10.2H21v7.25c0 1.637-1.36 2.85-2.85 2.85-.785 0-1.48-.27-2.03-.82a2.726 2.726 0 0 1-.754-1.38H9.034a2.72 2.72 0 0 1-.754 1.38c-.55.55-1.244.82-2.03.82-.785 0-1.48-.27-2.03-.82-.55-.55-.82-1.245-.82-2.03V10.2Zm1.5 1.5v5.75c0 .414.13.72.38.97s.556.38.97.38c.415 0 .72-.13.97-.38s.38-.556.38-.97h.75-.75v-.026a.846.846 0 0 1 .092-.36.839.839 0 0 1 .758-.464h7.5v.75-.75h.026a.674.674 0 0 1 .113.012.837.837 0 0 1 .711.838c0 .414.13.72.38.97s.555.38.97.38c.71 0 1.35-.587 1.35-1.35V11.7H4.9Z", "key": "fe7bf9234b41f36d55e06ce4fc7a8e06f1c7516e" }], ["path", { "fill": "currentColor", "d": "M6.8 13.95a.75.75 0 0 1 .75-.75h1.5a.75.75 0 1 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm7.7 0a.75.75 0 0 1 .75-.75h1.4a.75.75 0 1 1 0 1.5h-1.4a.75.75 0 0 1-.75-.75ZM7.65 5.2c-.568 0-1.048.374-1.168.913l-.008.037-1.32 3.958-.006.016a.082.082 0 0 0 .015.03.102.102 0 0 0 .087.045h13.8c.034.001.075-.012.117-.067a.253.253 0 0 0 .048-.116l-1.276-3.829c-.193-.578-.795-.987-1.389-.987h-8.9Zm-2.623.547C5.322 4.507 6.431 3.7 7.65 3.7h8.9c1.206 0 2.404.79 2.811 2.013l1.315 3.944.01.046c.182.91-.51 1.997-1.636 1.997H5.25c-1.087 0-1.894-1.087-1.506-2.105l1.283-3.848Z", "key": "70f66095ac40e0d6c1eba87cecd86c64f2053244" }], ["path", { "fill": "currentColor", "d": "M2.22 9.12a.75.75 0 0 1 1.06 0l1.3 1.3a.75.75 0 1 1-1.06 1.06l-1.3-1.3a.75.75 0 0 1 0-1.06Zm19.56-.3a.75.75 0 0 1 0 1.06l-1.3 1.3a.75.75 0 1 1-1.06-1.06l1.3-1.3a.75.75 0 0 1 1.06 0Z", "key": "536296056ae502dca9dbbf80c36bc31b6440cd60" }]]);
const CarB = createMeisterIcons("car-b", [["path", { "fill": "currentColor", "d": "M20.25 10.95v6.5c0 1.2-1 2.1-2.1 2.1-.6 0-1.1-.2-1.5-.6-.4-.4-.6-.9-.6-1.5 0-.1-.1-.1-.1-.1h-7.5c-.1 0-.1.1-.1.1 0 .6-.2 1.1-.6 1.5-.4.4-.9.6-1.5.6s-1.1-.2-1.5-.6c-.4-.4-.6-.9-.6-1.5v-6.5h16.1Z", "key": "f2579ba7032e79ea2c9fe9b8e2e4c6fbdcf8eb93" }], ["path", { "fill": "currentColor", "d": "M3.4 10.2H21v7.25c0 1.637-1.36 2.85-2.85 2.85-.785 0-1.48-.27-2.03-.82a2.726 2.726 0 0 1-.754-1.38H9.034a2.72 2.72 0 0 1-.754 1.38c-.55.55-1.244.82-2.03.82-.785 0-1.48-.27-2.03-.82-.55-.55-.82-1.245-.82-2.03V10.2Zm1.5 1.5v5.75c0 .414.13.72.38.97s.556.38.97.38c.415 0 .72-.13.97-.38s.38-.556.38-.97h.75-.75v-.026a.846.846 0 0 1 .092-.36.839.839 0 0 1 .758-.464h7.5v.75-.75h.026a.674.674 0 0 1 .113.012.837.837 0 0 1 .711.838c0 .414.13.72.38.97s.555.38.97.38c.71 0 1.35-.587 1.35-1.35V11.7H4.9Z", "key": "34632caa2891eae6a49f2a76fb5fcafcf408c10b" }], ["path", { "fill": "#fff", "d": "M6.8 13.95a.75.75 0 0 1 .75-.75h1.5a.75.75 0 1 1 0 1.5h-1.5a.75.75 0 0 1-.75-.75Zm7.7 0a.75.75 0 0 1 .75-.75h1.4a.75.75 0 1 1 0 1.5h-1.4a.75.75 0 0 1-.75-.75Z", "key": "e01472748226908565d59ddafcce3cbbd6484b0a" }], ["path", { "fill": "currentColor", "d": "M7.65 5.2c-.568 0-1.048.374-1.168.913l-.008.037-1.32 3.958-.006.016a.082.082 0 0 0 .015.03.102.102 0 0 0 .087.045h13.8c.034.001.075-.012.117-.067a.253.253 0 0 0 .048-.116l-1.276-3.829c-.193-.578-.795-.987-1.389-.987h-8.9Zm-2.623.547C5.322 4.507 6.431 3.7 7.65 3.7h8.9c1.206 0 2.404.79 2.811 2.013l1.315 3.944.01.046c.182.91-.51 1.997-1.636 1.997H5.25c-1.087 0-1.894-1.087-1.506-2.105l1.283-3.848Z", "key": "018b5e7e22d8d02322d1f40951f9bd94c7985dff" }], ["path", { "fill": "currentColor", "d": "M2.22 9.12a.75.75 0 0 1 1.06 0l1.3 1.3a.75.75 0 1 1-1.06 1.06l-1.3-1.3a.75.75 0 0 1 0-1.06Zm19.56-.3a.75.75 0 0 1 0 1.06l-1.3 1.3a.75.75 0 1 1-1.06-1.06l1.3-1.3a.75.75 0 0 1 1.06 0Z", "key": "297c1f95519430b1248610780627d830a3423bc1" }]]);
const Card = createMeisterIcons("card", [["path", { "fill": "currentColor", "d": "M3.75 7c0-.686.564-1.25 1.25-1.25h14c.686 0 1.25.564 1.25 1.25v2.25H3.75V7Zm0 3.75V17c0 .71.489 1.25 1.25 1.25h14c.686 0 1.25-.564 1.25-1.25v-6.25H3.75ZM5 4.25A2.756 2.756 0 0 0 2.25 7v10c0 1.49 1.111 2.75 2.75 2.75h14A2.756 2.756 0 0 0 21.75 17V7A2.756 2.756 0 0 0 19 4.25H5Z", "key": "68d67c51cdc00ce94b5a577dfd4a3081dd79907c" }]]);
const CardAdd = createMeisterIcons("card-add", [["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v10c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17V7A2.756 2.756 0 0 1 5 4.25h14A2.756 2.756 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7c0-.686-.564-1.25-1.25-1.25H5Z", "key": "9221797f92ff39e1440c5e987890336f1d88efda" }], ["path", { "fill": "currentColor", "d": "M3 9.25h18v1.5H3v-1.5Zm14.8 4.1a.75.75 0 0 1 .75.75V19a.75.75 0 1 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "fc5e72c1f9c5706baea5d10d1979c10f32ea5a68" }], ["path", { "fill": "currentColor", "d": "M14.55 16.6a.75.75 0 0 1 .75-.75h4.9a.75.75 0 1 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "9cb124dec113401c41d1df08fd9947d39055933d" }]]);
const CardAddB = createMeisterIcons("card-add-b", [["path", { "fill": "currentColor", "d": "M21 7v3H3V7c0-1.1.9-2 2-2h14c1 0 2 .9 2 2Z", "key": "413b836ecf833addd5646c26449d2044cb9687ab" }], ["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.662-.64-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14c1.39 0 2.75 1.212 2.75 2.75v3.75H2.25V7Z", "key": "089cbe20f5fe04990ccc9b3dc4fddf5392aa49b2" }], ["path", { "fill": "currentColor", "d": "M21 9.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v7c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17v-7A.75.75 0 0 1 3 9.25Zm14.8 4.1a.75.75 0 0 1 .75.75V19a.75.75 0 1 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "11913bcfaf4e52cf2e3a23d8eec41ab7de642640" }], ["path", { "fill": "currentColor", "d": "M14.55 16.6a.75.75 0 0 1 .75-.75h4.9a.75.75 0 1 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "e81dd743af82dd9186ae2953eb5be0d5144bb430" }]]);
const CardAlt = createMeisterIcons("card-alt", [["path", { "fill": "currentColor", "d": "M3.838 8.25A3.266 3.266 0 0 1 7 5.75h10a3.266 3.266 0 0 1 3.162 2.5H3.838Zm-.088 1.5V15c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 15V9.75H3.75ZM7 4.25A4.762 4.762 0 0 0 2.25 9v6c0 2.602 2.024 4.75 4.75 4.75h10A4.762 4.762 0 0 0 21.75 15V9A4.762 4.762 0 0 0 17 4.25H7Z", "key": "58b15ba3458265bd989674c3241970d2266b1d4f" }]]);
const CardAltB = createMeisterIcons("card-alt-b", [["path", { "fill": "currentColor", "d": "M21 9H3c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "f1f329a425ecdba0c532cf0f9caf34264537aa74" }], ["path", { "fill": "currentColor", "d": "M3.838 8.25h16.33c-.328-1.48-1.62-2.5-3.168-2.5H7a3.266 3.266 0 0 0-3.162 2.5ZM2.25 9A4.762 4.762 0 0 1 7 4.25h10c2.602 0 4.75 2.024 4.75 4.75v.75H2.25V9Z", "key": "66bf421768757d8b011a715a35fa6ffbdda44c51" }], ["path", { "fill": "currentColor", "d": "M2.25 8.25h19.5V15A4.762 4.762 0 0 1 17 19.75H7A4.762 4.762 0 0 1 2.25 15V8.25Zm1.5 1.5V15A3.262 3.262 0 0 0 7 18.25h10A3.262 3.262 0 0 0 20.25 15V9.75H3.75Z", "key": "7f0356768e6f6e28164dbf456282e85f09277609" }]]);
const CardAltVarB = createMeisterIcons("card-alt-var-b", [["path", { "fill": "currentColor", "d": "M21 9v6c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V9h18Z", "key": "e900026088665ad4277c7c5187bc5ee633a3119c" }], ["path", { "fill": "currentColor", "d": "M2.25 8.25h19.5V15A4.762 4.762 0 0 1 17 19.75H7A4.762 4.762 0 0 1 2.25 15V8.25Zm1.5 1.5V15A3.262 3.262 0 0 0 7 18.25h10A3.262 3.262 0 0 0 20.25 15V9.75H3.75Z", "key": "542dce7f91ebd002886171c2875168271a46b58b" }], ["path", { "fill": "currentColor", "d": "M3.838 8.25h16.33c-.328-1.48-1.62-2.5-3.168-2.5H7a3.266 3.266 0 0 0-3.162 2.5ZM2.25 9A4.762 4.762 0 0 1 7 4.25h10c2.602 0 4.75 2.024 4.75 4.75v.75H2.25V9Z", "key": "afaea9440601196de42cbee37d921a4221b74216" }]]);
const CardB = createMeisterIcons("card-b", [["path", { "fill": "currentColor", "d": "M21 7v3H3V7c0-1.1.9-2 2-2h14c1 0 2 .8 2 2Z", "key": "d545a8c339172278a26d9ce298e3dd92a8d45615" }], ["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.738-.615-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14c1.365 0 2.75 1.088 2.75 2.75v3.75H2.25V7Z", "key": "b76b16d29f0eda84bf1cf03fa1310fe590127d78" }], ["path", { "fill": "currentColor", "d": "M2.25 9.25h19.5V17A2.756 2.756 0 0 1 19 19.75H5A2.756 2.756 0 0 1 2.25 17V9.25Zm1.5 1.5V17c0 .686.564 1.25 1.25 1.25h14c.686 0 1.25-.564 1.25-1.25v-6.25H3.75Z", "key": "8bfa23c971385ef27818ecf69314b723475847f0" }]]);
const CardBlock = createMeisterIcons("card-block", [["path", { "fill": "currentColor", "d": "M5 5.688c-.686 0-1.25.564-1.25 1.25v10c0 .685.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5a2.756 2.756 0 0 1-2.75-2.75v-10A2.756 2.756 0 0 1 5 4.188h14a2.756 2.756 0 0 1 2.75 2.75v5a.75.75 0 0 1-1.5 0v-5c0-.686-.564-1.25-1.25-1.25H5Z", "key": "f1b7c9392fc3f1cb1eb17c252cdfd0e371ef4350" }], ["path", { "fill": "currentColor", "d": "M3 9.188h18v1.5H3v-1.5Zm15.345 5.654c-.689-.758-1.993-.796-2.815.026l-.012.012-.013.012c-.758.69-.796 1.993.025 2.815.807.807 2.033.807 2.84 0l.012-.012.013-.012c.759-.69.797-1.993-.025-2.815l-.013-.013-.012-.013Zm1.098-1.022c-1.31-1.424-3.585-1.387-4.96-.025-1.43 1.313-1.387 3.599-.013 4.973 1.388 1.389 3.554 1.393 4.948.012 1.424-1.309 1.387-3.585.025-4.96Z", "key": "ab37be5044cd7c8996b8266626de8e5b57c25b5c" }], ["path", { "fill": "currentColor", "d": "m14.47 17.707 3.9-3.9 1.06 1.06-3.9 3.9-1.06-1.06Z", "key": "0f50ebeaa4eb29548523ad64e16206b2cce37692" }]]);
const CardBlockB = createMeisterIcons("card-block-b", [["path", { "fill": "currentColor", "d": "M21 6.938v3H3v-3c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2Z", "key": "0afdf5a1529ec8d0c81c87c7d94d5081db8055b2" }], ["path", { "fill": "currentColor", "d": "M5 5.688c-.686 0-1.25.564-1.25 1.25v2.25h16.5v-2.25c0-.686-.564-1.25-1.25-1.25H5Zm-2.75 1.25A2.756 2.756 0 0 1 5 4.188h14a2.756 2.756 0 0 1 2.75 2.75v3.75H2.25v-3.75Z", "key": "090859875c03f0c3dd01927232e3e08c43dd66d8" }], ["path", { "fill": "currentColor", "d": "M21 9.188a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v7c0 .685.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5a2.756 2.756 0 0 1-2.75-2.75v-7a.75.75 0 0 1 .75-.75Zm15.345 5.654c-.689-.758-1.993-.796-2.815.026l-.012.012-.013.012c-.758.69-.796 1.993.025 2.815.807.807 2.033.807 2.84 0l.012-.012.013-.012c.759-.69.797-1.993-.025-2.815l-.013-.013-.012-.013Zm1.098-1.022c-1.31-1.424-3.585-1.387-4.96-.025-1.43 1.313-1.387 3.599-.013 4.973 1.388 1.389 3.554 1.393 4.948.012 1.424-1.309 1.387-3.585.025-4.96Z", "key": "ba6ffd4888d6697bfa828d27351dc6b8ebb97345" }], ["path", { "fill": "currentColor", "d": "m14.47 17.707 3.9-3.9 1.06 1.06-3.9 3.9-1.06-1.06Z", "key": "0c1967ca0c5eb1c7f53c166692a958a98ba32092" }]]);
const CardCheck = createMeisterIcons("card-check", [["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v10c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17V7A2.756 2.756 0 0 1 5 4.25h14A2.756 2.756 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7c0-.686-.564-1.25-1.25-1.25H5Z", "key": "18ee5df66529afbdaefd1eaa01d7b2a5d38ce510" }], ["path", { "fill": "currentColor", "d": "M3 9.25h18v1.5H3v-1.5Zm17.238 5.828a.75.75 0 0 1-.016 1.06l-3.206 3.109a.835.835 0 0 1-.256.248.902.902 0 0 1-.473.13c-.229 0-.505-.083-.717-.295l-.038-.037L14.3 17.65a.75.75 0 0 1 1.2-.9l.815 1.087 2.863-2.775a.75.75 0 0 1 1.06.016Z", "key": "edf91a7120e8d869c31d508b2381755cdd255860" }]]);
const CardCheckB = createMeisterIcons("card-check-b", [["path", { "fill": "currentColor", "d": "M21 7v3H3V7c0-1.1.9-2 2-2h14c1 0 2 .9 2 2Z", "key": "8192804d73e631973148167baa119133e9c1d768" }], ["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.662-.64-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14c1.39 0 2.75 1.212 2.75 2.75v3.75H2.25V7Z", "key": "104d9494ee8f553f4ecc9efc3929f1b80ce49ffe" }], ["path", { "fill": "currentColor", "d": "M21 9.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v7c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17v-7A.75.75 0 0 1 3 9.25Zm17.238 5.828a.75.75 0 0 1-.016 1.06l-3.206 3.109a.835.835 0 0 1-.256.248.902.902 0 0 1-.473.13c-.229 0-.505-.083-.717-.295l-.038-.037L14.3 17.65a.75.75 0 0 1 1.2-.9l.815 1.087 2.863-2.775a.75.75 0 0 1 1.06.016Z", "key": "8fe42707e2d26ec693d56eef4c6a213a17b90ecb" }]]);
const CardCode = createMeisterIcons("card-code", [["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v10c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17V7A2.756 2.756 0 0 1 5 4.25h14A2.756 2.756 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7c0-.686-.564-1.25-1.25-1.25H5Z", "key": "6f057adbf258cf565004ac024d225ee9fe968831" }], ["path", { "fill": "currentColor", "d": "M3 9.25h18v1.5H3v-1.5Zm15.97 5.12a.75.75 0 0 1 1.06 0l1.2 1.2-.53.53-.4.4m-1.33-2.13a.75.75 0 0 0 0 1.06v-1.06Zm0 1.06 1.074 1.075-1.074-1.075Zm1.074 1.075L18.95 17.69a.75.75 0 1 0 1.102 1.018l1.192-1.292c.263-.27.357-.623.357-.917 0-.299-.097-.658-.37-.93l-.53.53M16.83 14.47a.75.75 0 0 1 0 1.06l-1.07 1.07 1.07 1.07a.75.75 0 1 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l.53.53-.53-.53 1.2-1.2a.75.75 0 0 1 1.06 0Z", "key": "745244f13179a43dff3d6401cdf7d45b15f39c27" }]]);
const CardCodeB = createMeisterIcons("card-code-b", [["path", { "fill": "currentColor", "d": "M21 7v3H3V7c0-1.1.9-2 2-2h14c1 0 2 .8 2 2Z", "key": "459c54432baad0e529184782a88e7a272b6d16bf" }], ["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.738-.615-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14c1.365 0 2.75 1.088 2.75 2.75v3.75H2.25V7Z", "key": "bbf914f9bcd5ee52bf51c09d36b6358d0321d299" }], ["path", { "fill": "currentColor", "d": "M21 9.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v7c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17v-7A.75.75 0 0 1 3 9.25Zm15.97 5.12a.75.75 0 0 1 1.06 0l1.2 1.2-.53.53-.4.4m-1.33-2.13a.75.75 0 0 0 0 1.06v-1.06Zm0 1.06 1.074 1.075-1.074-1.075Zm1.074 1.075L18.95 17.69a.75.75 0 1 0 1.102 1.018l1.192-1.292c.263-.27.357-.623.357-.917 0-.299-.097-.658-.37-.93l-.53.53M16.83 14.47a.75.75 0 0 1 0 1.06l-1.07 1.07 1.07 1.07a.75.75 0 1 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l.53.53-.53-.53 1.2-1.2a.75.75 0 0 1 1.06 0Z", "key": "2b091d37a9a71f174390b798133ebd6ac1f8ef26" }]]);
const CardCross = createMeisterIcons("card-cross", [["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v10c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17V7A2.756 2.756 0 0 1 5 4.25h14A2.756 2.756 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7c0-.686-.564-1.25-1.25-1.25H5Z", "key": "94fe248be5eb007df648e933a650105aaf282035" }], ["path", { "fill": "currentColor", "d": "M3 9.25h18v1.5H3v-1.5Zm17.038 5.127a.75.75 0 0 1-.015 1.061l-3.5 3.4a.75.75 0 0 1-1.046-1.076l3.5-3.4a.75.75 0 0 1 1.061.015Z", "key": "5fe87fff2cdcf5a2e6c6249413d896e339585928" }], ["path", { "fill": "currentColor", "d": "M15.462 14.377a.75.75 0 0 1 1.06-.015l3.5 3.4a.75.75 0 1 1-1.045 1.076l-3.5-3.4a.75.75 0 0 1-.015-1.06Z", "key": "ecf40d90de640e3da1c561ba77b1e329cf3618f5" }]]);
const CardCrossB = createMeisterIcons("card-cross-b", [["path", { "fill": "currentColor", "d": "M21 7v3H3V7c0-1.1.9-2 2-2h14c1 0 2 .8 2 2Z", "key": "d06aa19a0121bad51363072db689adcbdc8145a5" }], ["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.738-.615-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14c1.365 0 2.75 1.088 2.75 2.75v3.75H2.25V7Z", "key": "efba9b3398cd7858c1b446baf39515fe56ee2c56" }], ["path", { "fill": "currentColor", "d": "M21 9.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v7c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17v-7A.75.75 0 0 1 3 9.25Zm17.038 5.127a.75.75 0 0 1-.015 1.061l-3.5 3.4a.75.75 0 0 1-1.046-1.076l3.5-3.4a.75.75 0 0 1 1.061.015Z", "key": "7839745c06af65c45582c11e1206d9f16c17f523" }], ["path", { "fill": "currentColor", "d": "M15.462 14.377a.75.75 0 0 1 1.06-.015l3.5 3.4a.75.75 0 1 1-1.045 1.076l-3.5-3.4a.75.75 0 0 1-.015-1.06Z", "key": "bda1c129b75fd441b056ca1ae683b02597227d25" }]]);
const CardDiamond = createMeisterIcons("card-diamond", [["path", { "fill": "currentColor", "d": "M9.05 3.65C6.774 3.65 5 5.504 5 7.7v8.6c0 2.276 1.854 4.05 4.05 4.05h5.9c2.196 0 4.05-1.774 4.05-4.05V7.7c0-2.275-1.854-4.05-4.05-4.05h-5.9ZM3.5 7.7c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v8.6c0 3.124-2.546 5.55-5.55 5.55h-5.9c-3.004 0-5.55-2.426-5.55-5.55V7.7Z", "key": "1de8e2d5905842ffd2d54a44857a1f30d1807462" }], ["path", { "fill": "currentColor", "d": "M11.95 10.25a.24.24 0 0 0-.17.08l-1.6 1.6a.24.24 0 0 0-.08.17.24.24 0 0 0 .08.17l1.6 1.6c.047.047.126.08.208.08a.17.17 0 0 0 .07-.011l.024-.031 1.638-1.638a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-1.6-1.6a.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0l1.6 1.6a1.716 1.716 0 0 1 0 2.46l-1.569 1.57c-.324.395-.801.55-1.223.55a1.8 1.8 0 0 1-1.268-.52l-1.6-1.6a1.716 1.716 0 0 1 0-2.46l1.6-1.6ZM7.85 7.3c-.2 0-.4-.1-.6-.2-.1-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.1.3.3.3.6 0 .2-.1.4-.2.6-.2.1-.5.2-.7.2Zm8.3 11.2c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.2.3-.4.3-.6.3Z", "key": "693e064a553d1da3327fc8f065027825240835b4" }]]);
const CardDiamondAlt = createMeisterIcons("card-diamond-alt", [["path", { "fill": "currentColor", "d": "M9.05 3.65C6.774 3.65 5 5.504 5 7.7v8.6c0 2.276 1.854 4.05 4.05 4.05h5.9c2.196 0 4.05-1.774 4.05-4.05V7.7c0-2.275-1.854-4.05-4.05-4.05h-5.9ZM3.5 7.7c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v8.6c0 3.124-2.546 5.55-5.55 5.55h-5.9c-3.004 0-5.55-2.426-5.55-5.55V7.7Z", "key": "b7bcbd7534d9d23575b0031da333a007b589cf49" }], ["path", { "fill": "currentColor", "d": "M11.95 10.25a.24.24 0 0 0-.17.08l-1.6 1.6a.24.24 0 0 0-.08.17.24.24 0 0 0 .08.17l1.6 1.6c.047.047.126.08.208.08a.17.17 0 0 0 .07-.011l.024-.031 1.638-1.638a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-1.6-1.6a.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0l1.6 1.6a1.716 1.716 0 0 1 0 2.46l-1.569 1.57c-.324.395-.801.55-1.223.55a1.8 1.8 0 0 1-1.268-.52l-1.6-1.6a1.716 1.716 0 0 1 0-2.46l1.6-1.6Z", "key": "4cfd78644fca01e59c238e82d954c9acc99d7cc6" }]]);
const CardDiamondAltB = createMeisterIcons("card-diamond-alt-b", [["path", { "fill": "currentColor", "d": "M14.95 21.1h-5.9c-2.6 0-4.8-2.1-4.8-4.8V7.7c0-2.6 2.1-4.8 4.8-4.8h5.9c2.6 0 4.8 2.1 4.8 4.8v8.6c0 2.7-2.2 4.8-4.8 4.8Z", "key": "6b92953f25158463ac9002c94faddc709af727bf" }], ["path", { "fill": "currentColor", "d": "M9.05 3.65C6.774 3.65 5 5.504 5 7.7v8.6c0 2.276 1.854 4.05 4.05 4.05h5.9c2.196 0 4.05-1.774 4.05-4.05V7.7c0-2.275-1.854-4.05-4.05-4.05h-5.9ZM3.5 7.7c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v8.6c0 3.124-2.546 5.55-5.55 5.55h-5.9c-3.004 0-5.55-2.426-5.55-5.55V7.7Z", "key": "3fcc0b22e07eccb8c46287f8e09041f598ae47be" }], ["path", { "fill": "#fff", "d": "m11.25 14.4-1.6-1.6c-.4-.4-.4-1 0-1.4l1.6-1.6c.4-.4 1-.4 1.4 0l1.6 1.6c.4.4.4 1 0 1.4l-1.6 1.6c-.3.4-1 .4-1.4 0Z", "key": "1c3c0cc643fec78fa208dc09f18fa1f4f4933ef8" }], ["path", { "fill": "#fff", "d": "M11.95 10.25a.24.24 0 0 0-.17.08l-1.6 1.6a.24.24 0 0 0-.08.17.24.24 0 0 0 .08.17l1.6 1.6c.047.047.126.08.208.08a.17.17 0 0 0 .07-.011l.024-.031 1.638-1.638a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-1.6-1.6a.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0l1.6 1.6a1.716 1.716 0 0 1 0 2.46l-1.569 1.57c-.324.395-.801.55-1.223.55a1.8 1.8 0 0 1-1.268-.52l-1.6-1.6a1.716 1.716 0 0 1 0-2.46l1.6-1.6Z", "key": "65a7553eec3ab9e927781025e6e5e1f64084a2a6" }]]);
const CardDiamondB = createMeisterIcons("card-diamond-b", [["path", { "fill": "currentColor", "d": "M14.95 21.1h-5.9c-2.6 0-4.8-2.1-4.8-4.8V7.7c0-2.6 2.1-4.8 4.8-4.8h5.9c2.6 0 4.8 2.1 4.8 4.8v8.6c0 2.7-2.2 4.8-4.8 4.8Z", "key": "59c5d25755b1fa33ea6afba3e795a4359b93af30" }], ["path", { "fill": "currentColor", "d": "M9.05 3.65C6.774 3.65 5 5.504 5 7.7v8.6c0 2.276 1.854 4.05 4.05 4.05h5.9c2.196 0 4.05-1.774 4.05-4.05V7.7c0-2.275-1.854-4.05-4.05-4.05h-5.9ZM3.5 7.7c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v8.6c0 3.124-2.546 5.55-5.55 5.55h-5.9c-3.004 0-5.55-2.426-5.55-5.55V7.7Z", "key": "e7cc458456a3be99e74ac0fe632d9ba923a8b541" }], ["path", { "fill": "#fff", "d": "m11.25 14.4-1.6-1.6c-.4-.4-.4-1 0-1.4l1.6-1.6c.4-.4 1-.4 1.4 0l1.6 1.6c.4.4.4 1 0 1.4l-1.6 1.6c-.3.4-1 .4-1.4 0Z", "key": "e5ff21ec7e531ba98588ed203290339d2ceba58e" }], ["path", { "fill": "#fff", "d": "M11.95 10.25a.24.24 0 0 0-.17.08l-1.6 1.6a.24.24 0 0 0-.08.17.24.24 0 0 0 .08.17l1.6 1.6c.047.047.126.08.208.08a.17.17 0 0 0 .07-.011l.024-.031 1.638-1.638a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-1.6-1.6a.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0l1.6 1.6a1.716 1.716 0 0 1 0 2.46l-1.569 1.57c-.324.395-.801.55-1.223.55a1.8 1.8 0 0 1-1.268-.52l-1.6-1.6a1.716 1.716 0 0 1 0-2.46l1.6-1.6ZM7.85 7.3c-.2 0-.4-.1-.6-.2-.1-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.1.3.3.3.6 0 .2-.1.4-.2.6-.2.1-.5.2-.7.2Zm8.3 11.2c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.2.3-.4.3-.6.3Z", "key": "0d6c27e1b4b177998817d3a01d8417596308453e" }]]);
const CardDownload = createMeisterIcons("card-download", [["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v10c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17V7A2.756 2.756 0 0 1 5 4.25h14A2.756 2.756 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7c0-.686-.564-1.25-1.25-1.25H5Z", "key": "397f0ad8375bd51fecadc99c68fac7ee018530af" }], ["path", { "fill": "currentColor", "d": "M3 9.25h18v1.5H3v-1.5Zm14 3.6a.75.75 0 0 1 .75.75v4.1a.75.75 0 0 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "5dad2b509a6ba2d52370403f9cbe125b911bc856" }], ["path", { "fill": "currentColor", "d": "M14.47 15.87a.75.75 0 0 1 1.06 0l1.42 1.42 1.42-1.42a.75.75 0 1 1 1.06 1.06l-1.7 1.7a1.041 1.041 0 0 1-.742.295 1.4 1.4 0 0 1-.623-.154l-.11-.055-1.785-1.786a.75.75 0 0 1 0-1.06Z", "key": "03c444f0ccea5f874489f1a5537211ea5d9fa38e" }]]);
const CardDownloadB = createMeisterIcons("card-download-b", [["path", { "fill": "currentColor", "d": "M21 7v3H3V7c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2Z", "key": "32450cf83ba68ccd438c1c57d05501520b6bae2d" }], ["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.686-.564-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14A2.756 2.756 0 0 1 21.75 7v3.75H2.25V7Z", "key": "4951207cc27a7c41bd3516289ecfb1b44109225a" }], ["path", { "fill": "currentColor", "d": "M21 9.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v7c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17v-7A.75.75 0 0 1 3 9.25Zm14 3.6a.75.75 0 0 1 .75.75v4.1a.75.75 0 0 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "9d88cf8ad1dc87b196f30068d5772e530c8d9a2d" }], ["path", { "fill": "currentColor", "d": "M14.47 15.87a.75.75 0 0 1 1.06 0l1.42 1.42 1.42-1.42a.75.75 0 1 1 1.06 1.06l-1.7 1.7a1.041 1.041 0 0 1-.742.295 1.4 1.4 0 0 1-.623-.154l-.11-.055-1.785-1.786a.75.75 0 0 1 0-1.06Z", "key": "05f1330eacc02ed8b98a6167aaba738b9699c739" }]]);
const CardHeart = createMeisterIcons("card-heart", [["path", { "fill": "currentColor", "d": "M9.05 3.65C6.774 3.65 5 5.504 5 7.7v8.6c0 2.276 1.854 4.05 4.05 4.05h5.9c2.196 0 4.05-1.774 4.05-4.05V7.7c0-2.275-1.854-4.05-4.05-4.05h-5.9ZM3.5 7.7c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v8.6c0 3.124-2.546 5.55-5.55 5.55h-5.9c-3.004 0-5.55-2.426-5.55-5.55V7.7Z", "key": "2bedb2e7d1a5c6e0a0065450b2f04cc2f9e78932" }], ["path", { "fill": "currentColor", "d": "M7.85 7.3c-.2 0-.4-.1-.6-.2-.1-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.1.3.3.3.6 0 .2-.1.4-.2.6-.2.1-.5.2-.7.2Zm8.3 11.2c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.2.3-.4.3-.6.3Zm-5.3-8.25a.907.907 0 0 0-.67.28c-.307.308-.307.933 0 1.24l.2.2 1.72 1.72 1.88-1.88c.244-.335.32-.56.32-.71 0-.156-.086-.375-.28-.57-.307-.306-.933-.306-1.24 0l-1.48 1.48V10.4c-.197-.11-.343-.15-.45-.15Zm1.28-1.102c-.372-.224-.804-.398-1.28-.398-.72 0-1.305.295-1.73.72-.893.893-.893 2.468 0 3.36l.2.2 1.758 1.759c.242.314.601.486.985.486.395 0 .752-.18 1.017-.444l2.038-2.038.032-.043c.332-.443.65-1.005.65-1.65 0-.644-.315-1.225-.72-1.63-.768-.768-2.041-.876-2.95-.322Zm-.13 4.64v-.002.001Z", "key": "50724c439a05206b2eb15e3b4405adbb6aab39e5" }]]);
const CardHeartAlt = createMeisterIcons("card-heart-alt", [["path", { "fill": "currentColor", "d": "M10.85 10.25a.907.907 0 0 0-.67.28c-.307.308-.307.933 0 1.24l.2.2 1.72 1.72 1.88-1.88c.244-.335.32-.56.32-.71 0-.156-.086-.375-.28-.57-.307-.306-.933-.306-1.24 0l-1.48 1.48V10.4c-.197-.11-.343-.15-.45-.15Zm1.28-1.102c-.372-.224-.804-.398-1.28-.398-.72 0-1.305.295-1.73.72-.893.893-.893 2.468 0 3.36l.2.2 1.758 1.759c.242.314.601.486.985.486.395 0 .752-.18 1.017-.444l2.038-2.038.032-.043c.332-.443.65-1.005.65-1.65 0-.644-.315-1.225-.72-1.63-.768-.768-2.041-.876-2.95-.322Zm-.13 4.64v-.002.001Z", "key": "53815f69cdbfaab3fefa4300120f18d334634dd7" }], ["path", { "fill": "currentColor", "d": "M9.05 3.65C6.774 3.65 5 5.504 5 7.7v8.6c0 2.276 1.854 4.05 4.05 4.05h5.9c2.196 0 4.05-1.774 4.05-4.05V7.7c0-2.275-1.854-4.05-4.05-4.05h-5.9ZM3.5 7.7c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v8.6c0 3.124-2.546 5.55-5.55 5.55h-5.9c-3.004 0-5.55-2.426-5.55-5.55V7.7Z", "key": "6593536ad39e4c278e24c4bbe741591172467470" }]]);
const CardUpload = createMeisterIcons("card-upload", [["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v10c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17V7A2.756 2.756 0 0 1 5 4.25h14A2.756 2.756 0 0 1 21.75 7v5a.75.75 0 0 1-1.5 0V7c0-.686-.564-1.25-1.25-1.25H5Z", "key": "3e2aeb050740ba66647090255b932184dad69c40" }], ["path", { "fill": "currentColor", "d": "M3 9.25h18v1.5H3v-1.5Zm14 4.1a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "71ebd273f7d63f0bf04cd8287f3b19ae5651f313" }], ["path", { "fill": "currentColor", "d": "m17.05 14.51 1.42 1.42a.75.75 0 0 0 1.06-1.06l-1.786-1.786-.109-.055a1.404 1.404 0 0 0-.623-.154c-.219 0-.51.063-.742.295l-1.7 1.7a.75.75 0 0 0 1.06 1.06l1.42-1.42Z", "key": "c81981fc15850bae170aaf06261bcd84179ea30b" }]]);
const CardUploadB = createMeisterIcons("card-upload-b", [["path", { "fill": "currentColor", "d": "M21 7v3H3V7c0-1.1.9-2 2-2h14c1 0 2 .9 2 2Z", "key": "b5eea0eca71bbe4b1f4f397c544c0ad9f2b41ea4" }], ["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.662-.64-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14c1.39 0 2.75 1.212 2.75 2.75v3.75H2.25V7Z", "key": "a32cf56b480aa1ab6e3856d8031268b33b0f99ca" }], ["path", { "fill": "currentColor", "d": "M21 9.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v7c0 .686.564 1.25 1.25 1.25h7a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 17v-7A.75.75 0 0 1 3 9.25Zm14 4.1a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "9770edef9784f11733caaac673fcf56e1550bd70" }], ["path", { "fill": "currentColor", "d": "m17.05 14.51 1.42 1.42a.75.75 0 0 0 1.06-1.06l-1.786-1.786-.109-.055a1.404 1.404 0 0 0-.623-.154c-.219 0-.51.063-.742.295l-1.7 1.7a.75.75 0 0 0 1.06 1.06l1.42-1.42Z", "key": "e942c6244d99c819f51ccb1ad926b15ef04597b1" }]]);
const CardVarB = createMeisterIcons("card-var-b", [["path", { "fill": "currentColor", "d": "M5 5.75c-.686 0-1.25.564-1.25 1.25v2.25h16.5V7c0-.738-.615-1.25-1.25-1.25H5ZM2.25 7A2.756 2.756 0 0 1 5 4.25h14c1.365 0 2.75 1.088 2.75 2.75v3.75H2.25V7Z", "key": "a38e7b1c0de2eedea99f678cf6929359e22ff46f" }], ["path", { "fill": "currentColor", "d": "M21 10v7c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2v-7h18Z", "key": "b9f11f72640a2939c025fa13407fe268e9079ed2" }], ["path", { "fill": "currentColor", "d": "M2.25 9.25h19.5V17A2.756 2.756 0 0 1 19 19.75H5A2.756 2.756 0 0 1 2.25 17V9.25Zm1.5 1.5V17c0 .686.564 1.25 1.25 1.25h14c.686 0 1.25-.564 1.25-1.25v-6.25H3.75Z", "key": "b56c27796e06ba8270031ff0bb612d0379ceec82" }]]);
const CaretDoubleDownleft = createMeisterIcons("caret-double-downleft", [["path", { "fill": "currentColor", "d": "M11.792 5.455a1.17 1.17 0 0 1 .924.044l.112.056 5.486 5.588c.2.202.249.446.255.603.006.167-.03.324-.087.457-.1.235-.384.617-.902.617h-5.5a.95.95 0 0 1-.668-.283.95.95 0 0 1-.282-.667v-5.5c0-.536.404-.818.662-.915Zm.838 2.04v3.825h3.756L12.63 7.495Zm-6.66 3.791c.318-.159.669-.126.946.013l.109.054 5.586 5.586c.203.203.252.45.258.608.006.166-.03.323-.087.456-.1.235-.384.617-.902.617h-5.5a.95.95 0 0 1-.668-.283.95.95 0 0 1-.282-.667v-5.5c0-.377.204-.716.54-.884Zm.96 2.094v3.74h3.74l-3.74-3.74Z", "key": "195c2e8a16a977666eadb43d68a0f863850d1a0c" }]]);
const CaretDoubleDownleftB = createMeisterIcons("caret-double-downleft-b", [["path", { "fill": "currentColor", "d": "M11.88 6.37v5.5c0 .1.1.2.2.2h5.5c.2 0 .3-.3.2-.4l-5.4-5.5c-.2-.1-.5 0-.5.2Z", "key": "81bb7be0f7575c98e2801cbd5b21fbad1264beab" }], ["path", { "fill": "currentColor", "d": "M11.792 5.455a1.17 1.17 0 0 1 .924.044l.112.056 5.486 5.588c.2.202.25.446.255.603.006.167-.03.324-.087.457-.1.235-.383.617-.902.617h-5.5a.95.95 0 0 1-.667-.283.95.95 0 0 1-.283-.667v-5.5c0-.536.404-.818.662-.915Zm.838 2.04v3.825h3.756L12.63 7.495ZM6.18 12.17v5.5c0 .1.1.2.2.2h5.5c.2 0 .3-.3.2-.4l-5.5-5.5c-.2-.1-.4 0-.4.2Z", "key": "b47596f92ec682aefea92a98f484e2ae9baaaba7" }], ["path", { "fill": "currentColor", "d": "M5.97 11.286c.318-.159.67-.126.946.013l.109.054 5.586 5.586c.203.203.252.45.258.608.006.166-.03.323-.087.456-.1.235-.383.617-.902.617h-5.5a.95.95 0 0 1-.667-.283.95.95 0 0 1-.283-.667v-5.5c0-.377.204-.716.54-.884Zm.96 2.094v3.74h3.74l-3.74-3.74Z", "key": "cee81778de289a30b27f51bbfb04abe521975dae" }]]);
const CaretDoubleDownright = createMeisterIcons("caret-double-downright", [["path", { "fill": "currentColor", "d": "M12.203 5.468c.235.1.617.384.617.902v5.5a.95.95 0 0 1-.283.667.95.95 0 0 1-.667.283h-5.5a.978.978 0 0 1-.884-.54 1.055 1.055 0 0 1 .013-.946l.054-.109L11.14 5.64a.902.902 0 0 1 .608-.258c.166-.006.323.03.456.087ZM11.32 7.58l-3.74 3.74h3.74V7.58Zm6.683 3.688c.235.1.617.384.617.902v5.5a.95.95 0 0 1-.282.667.95.95 0 0 1-.668.283h-5.5a.978.978 0 0 1-.884-.54 1.058 1.058 0 0 1 .013-.946l.054-.109 5.586-5.586a.902.902 0 0 1 .608-.258c.166-.006.323.03.456.087Zm-.883 2.112-3.74 3.74h3.74v-3.74Z", "key": "18b086e38f45e275a4c2a0ed384b7440196a407f" }]]);
const CaretDoubleDownrightB = createMeisterIcons("caret-double-downright-b", [["path", { "fill": "currentColor", "d": "M6.37 12.07h5.5c.1 0 .2-.1.2-.2v-5.5c0-.2-.3-.3-.4-.2l-5.5 5.5c-.1.2 0 .4.2.4Z", "key": "fd792ce34d861ccd83dceacf71b0ba68ca41b4a3" }], ["path", { "fill": "currentColor", "d": "M12.203 5.468c.235.1.617.384.617.902v5.5a.95.95 0 0 1-.283.667.95.95 0 0 1-.667.283h-5.5a.978.978 0 0 1-.884-.54 1.055 1.055 0 0 1 .013-.946l.054-.109L11.14 5.64a.902.902 0 0 1 .608-.258c.166-.006.323.03.456.087ZM11.32 7.58l-3.74 3.74h3.74V7.58Zm.85 10.29h5.5c.1 0 .2-.1.2-.2v-5.5c0-.2-.3-.3-.4-.2l-5.5 5.5c-.1.2 0 .4.2.4Z", "key": "d7a00e07c2575eb56a8055c7d6565f2e7ce4af47" }], ["path", { "fill": "currentColor", "d": "M18.003 11.268c.235.1.617.384.617.902v5.5a.95.95 0 0 1-.282.667.95.95 0 0 1-.668.283h-5.5a.978.978 0 0 1-.884-.54 1.058 1.058 0 0 1 .013-.946l.054-.109 5.586-5.586a.902.902 0 0 1 .608-.258c.166-.006.323.03.456.087Zm-.883 2.112-3.74 3.74h3.74v-3.74Z", "key": "18857eef759cd64e3415c45d6980f8ad85f27952" }]]);
const CaretDoubleLeft = createMeisterIcons("caret-double-left", [["path", { "fill": "currentColor", "d": "M17.357 7.93c.205-.204.647-.475 1.14-.228.451.226.54.692.54.959v7.7c0 .318-.15.668-.459.874a.934.934 0 0 1-.643.15 1.007 1.007 0 0 1-.578-.294l-3.809-3.809a.833.833 0 0 1-.255-.261.901.901 0 0 1-.13-.473c0-.23.082-.506.294-.718l3.9-3.9Zm.18 1.941-2.639 2.64 2.64 2.639V9.87ZM9.157 7.93c.205-.204.647-.475 1.14-.228.451.226.54.692.54.959v7.7c0 .318-.15.668-.458.874a.934.934 0 0 1-.644.15 1.006 1.006 0 0 1-.578-.294l-3.809-3.809a.833.833 0 0 1-.255-.261.902.902 0 0 1-.13-.473c0-.23.082-.506.294-.718l3.9-3.9Zm.18 1.941-2.639 2.64 2.64 2.639V9.871Z", "key": "916f912e6701d47f9c3606243f43cf22c5aceac3" }]]);
const CaretDoubleLeftB = createMeisterIcons("caret-double-left-b", [["path", { "fill": "currentColor", "d": "m17.888 7.962-3.9 3.9c-.1.1-.1.3 0 .3l3.9 3.9c.2.2.4 0 .4-.2v-7.7c0-.3-.2-.4-.4-.2Z", "key": "0d83a5c3521833c6d7a27d269360527e71dda871" }], ["path", { "fill": "currentColor", "d": "M17.357 7.432c.205-.205.647-.475 1.14-.228.451.225.54.692.54.958v7.7c0 .318-.15.668-.458.874a.934.934 0 0 1-.644.15 1.006 1.006 0 0 1-.578-.294l-3.808-3.808a.833.833 0 0 1-.256-.262.902.902 0 0 1-.13-.472c0-.23.082-.506.294-.718l3.9-3.9Zm.18 1.94-2.639 2.64 2.64 2.64v-5.28Zm-7.849-1.41-3.9 3.9c-.1.1-.1.3 0 .3l3.9 3.9c.2.2.4 0 .4-.2v-7.7c0-.3-.2-.4-.4-.2Z", "key": "0611097d62ebbd399a0281a47483c6d3b0fa425c" }], ["path", { "fill": "currentColor", "d": "M9.157 7.432c.205-.205.647-.475 1.14-.228.451.225.54.692.54.958v7.7c0 .319-.15.668-.458.874a.934.934 0 0 1-.644.15 1.006 1.006 0 0 1-.578-.294l-3.809-3.808a.832.832 0 0 1-.255-.262.901.901 0 0 1-.13-.472c0-.23.082-.506.294-.718l3.9-3.9Zm.18 1.94-2.639 2.64 2.64 2.64v-5.28Z", "key": "ff631641f83ddbe11d80ef695e23ccb47b9e6040" }]]);
const CaretDoubleRight = createMeisterIcons("caret-double-right", [["path", { "fill": "currentColor", "d": "M7.951 5.412h7.877c.319 0 .668.15.874.46a.928.928 0 0 1 .15.643.998.998 0 0 1-.294.578l-3.808 3.809a.835.835 0 0 1-.262.256.902.902 0 0 1-.472.13 1.03 1.03 0 0 1-.714-.29L7.314 7.11l-.057-.113a1.083 1.083 0 0 1-.03-.918c.118-.279.336-.474.566-.588l.158-.08Zm1.308 1.5 2.714 2.645 2.644-2.645H9.26Zm-2.014 7.34a.978.978 0 0 1 .883-.54h7.7c.319 0 .668.15.874.46a.928.928 0 0 1 .15.643.998.998 0 0 1-.294.578l-3.808 3.809a.833.833 0 0 1-.261.255.901.901 0 0 1-.473.13c-.23 0-.506-.082-.718-.294l-3.986-3.986-.055-.11a1.056 1.056 0 0 1-.012-.945Zm2.094.96 2.64 2.64 2.639-2.64h-5.28Z", "key": "b63bb82fe5f6d8253d831da9fce8d5d47054fd8a" }]]);
const CaretDoubleRight1 = createMeisterIcons("caret-double-right1", [["path", { "fill": "currentColor", "d": "M6.065 7.647c.245.033.44.156.578.294l3.809 3.81a.83.83 0 0 1 .255.26.9.9 0 0 1 .13.473c0 .23-.082.506-.294.718l-3.986 3.986-.11.055a1.056 1.056 0 0 1-.945.012.977.977 0 0 1-.54-.883v-7.7c0-.319.15-.668.46-.874a.934.934 0 0 1 .643-.15Zm.398 2.235 2.639 2.64-2.64 2.64v-5.28Zm7.802-2.235c.245.033.44.156.578.294l3.808 3.81c.11.07.196.162.256.26.11.178.13.357.13.473 0 .23-.082.506-.294.718l-3.9 3.9a.902.902 0 0 1-.607.258 1.066 1.066 0 0 1-.457-.086c-.235-.101-.617-.384-.617-.902v-7.7c0-.319.15-.668.46-.874a.934.934 0 0 1 .643-.15Zm.397 2.235v5.28l2.64-2.64-2.64-2.64Z", "key": "cfdc4d3b26b954ada4b7b8c71083b6d7a79916ce" }]]);
const CaretDoubleRightB = createMeisterIcons("caret-double-right-b", [["path", { "fill": "currentColor", "d": "m7.928 6.162 3.9 3.8c.1.1.3.1.3 0l3.9-3.9c.2-.2 0-.4-.2-.4h-7.7c-.2.1-.3.3-.2.5Z", "key": "af01c20bfcadb18a2db3d24a7f74d74790e3dbb6" }], ["path", { "fill": "currentColor", "d": "M7.951 4.912h7.877c.319 0 .668.15.874.46a.928.928 0 0 1 .15.643.998.998 0 0 1-.294.578l-3.808 3.809a.835.835 0 0 1-.262.256.902.902 0 0 1-.472.13 1.03 1.03 0 0 1-.714-.29L7.314 6.61l-.057-.113a1.083 1.083 0 0 1-.03-.918c.118-.279.336-.474.566-.588l.158-.08Zm1.308 1.5 2.714 2.645 2.644-2.645H9.26Zm-1.331 7.951 3.9 3.9c.1.1.3.1.3 0l3.9-3.9c.2-.2 0-.4-.2-.4h-7.7c-.2 0-.3.2-.2.4Z", "key": "38001d0aba63a6b90b571bcf1fb57e7be17ecde2" }], ["path", { "fill": "currentColor", "d": "M7.245 13.752a.978.978 0 0 1 .883-.54h7.7c.319 0 .668.15.874.46a.928.928 0 0 1 .15.643.998.998 0 0 1-.294.578l-3.808 3.809a.833.833 0 0 1-.262.255.901.901 0 0 1-.472.13c-.23 0-.506-.082-.718-.294l-3.986-3.986-.055-.11a1.056 1.056 0 0 1-.012-.945Zm2.094.96 2.64 2.64 2.639-2.64h-5.28Z", "key": "e4afb2e5021f31a424fdcc18145a306ec03ebe6c" }]]);
const CaretDoubleRightB1 = createMeisterIcons("caret-double-right-b1", [["path", { "fill": "currentColor", "d": "m6.113 16.072 3.9-3.9c.1-.1.1-.3 0-.3l-3.9-3.9c-.2-.2-.4 0-.4.2v7.7c0 .2.2.3.4.2Z", "key": "60015b360b9d185f3937b28da015d2a90ce2ae1c" }], ["path", { "fill": "currentColor", "d": "M6.065 7.147c.245.033.44.156.578.294l3.809 3.81a.83.83 0 0 1 .255.26.9.9 0 0 1 .13.473c0 .23-.082.506-.294.718l-3.986 3.986-.11.055a1.056 1.056 0 0 1-.945.012.977.977 0 0 1-.54-.883v-7.7c0-.319.15-.668.46-.874a.934.934 0 0 1 .643-.15Zm.398 2.235 2.639 2.64-2.64 2.64v-5.28Zm7.85 6.69 3.9-3.9c.1-.1.1-.3 0-.3l-3.9-3.9c-.2-.2-.4 0-.4.2v7.7c0 .2.3.3.4.2Z", "key": "6e99db9ce783bbc962d34d90a1f3f7b3997f45b0" }], ["path", { "fill": "currentColor", "d": "M14.265 7.147c.245.033.44.156.578.294l3.809 3.81a.83.83 0 0 1 .255.26.9.9 0 0 1 .13.473c0 .23-.082.506-.294.718l-3.9 3.9a.902.902 0 0 1-.607.258 1.066 1.066 0 0 1-.456-.086c-.236-.101-.617-.384-.617-.902v-7.7c0-.319.15-.668.458-.874a.934.934 0 0 1 .644-.15Zm.397 2.235v5.28l2.64-2.64-2.64-2.64Z", "key": "772db90acfeec7f1ae76857f65432bdb1ae70fc2" }]]);
const CaretDoubleTop = createMeisterIcons("caret-double-top", [["path", { "fill": "currentColor", "d": "M11.99 13.663c.318 0 .548.162.68.294l3.844 3.845a.922.922 0 0 1 .302 1.118c-.17.4-.567.617-.977.617h-7.7c-.318 0-.668-.15-.874-.459a.934.934 0 0 1-.15-.643c.032-.245.156-.44.294-.578l3.9-3.9a.962.962 0 0 1 .68-.295Zm0 1.735-2.64 2.64h5.279l-2.64-2.64Zm-.038-9.935c.23 0 .506.082.718.294l3.844 3.845a.922.922 0 0 1 .302 1.118c-.17.4-.567.617-.977.617h-7.7c-.518 0-.8-.381-.901-.617a1.065 1.065 0 0 1-.087-.456.902.902 0 0 1 .258-.607l3.809-3.809a.833.833 0 0 1 .261-.255.902.902 0 0 1 .473-.13Zm.037 1.735L9.35 9.838h5.279l-2.64-2.64Z", "key": "4f5ef2483e1ffc76a4ca19de9bb5c88aeece3ce3" }]]);
const CaretDoubleTopB = createMeisterIcons("caret-double-top-b", [["path", { "fill": "currentColor", "d": "m16.04 17.888-3.9-3.9c-.1-.1-.2-.1-.3 0l-3.9 3.9c-.2.2 0 .4.2.4h7.7c.3 0 .4-.3.2-.4Z", "key": "e7fb62581d7615a2ed61d9b63a35af6baca2e6ef" }], ["path", { "fill": "currentColor", "d": "M11.99 13.163a.96.96 0 0 1 .68.294l3.845 3.845a.921.921 0 0 1 .301 1.118c-.17.4-.567.617-.977.617h-7.7c-.318 0-.668-.15-.874-.459a.934.934 0 0 1-.15-.643c.032-.245.156-.44.294-.578l3.9-3.9a.962.962 0 0 1 .68-.295Zm0 1.735-2.64 2.64h5.279l-2.64-2.64Zm4.05-5.21-3.9-3.9c-.1-.1-.3-.1-.3 0l-3.9 3.9c-.1.1 0 .4.2.4h7.7c.3 0 .4-.3.2-.4Z", "key": "4622a30bf3215b9ee72f25c457dc896baf5fbc9f" }], ["path", { "fill": "currentColor", "d": "M11.952 4.963c.23 0 .506.082.718.294l3.845 3.845a.922.922 0 0 1 .301 1.118c-.17.4-.567.617-.977.617h-7.7c-.518 0-.8-.381-.901-.617a1.065 1.065 0 0 1-.087-.456.902.902 0 0 1 .258-.607l3.809-3.809a.833.833 0 0 1 .261-.255.901.901 0 0 1 .473-.13Zm.037 1.735L9.35 9.338h5.279l-2.64-2.64Z", "key": "032300bd332907fda5f19d588e8fd7ac97b00a36" }]]);
const CaretDoubleTopleft = createMeisterIcons("caret-double-topleft", [["path", { "fill": "currentColor", "d": "M11.478 11.412a.95.95 0 0 1 .668-.282h5.5c.534 0 .843.406.927.743a1.09 1.09 0 0 1-.297 1.038l-5.4 5.4a.902.902 0 0 1-.607.258 1.063 1.063 0 0 1-.456-.087c-.236-.1-.617-.384-.617-.902v-5.5a.95.95 0 0 1 .282-.668Zm1.218 1.218v3.74l3.739-3.74h-3.74ZM5.678 5.712a.95.95 0 0 1 .668-.282h5.5c.376 0 .715.204.883.54.159.318.126.669-.013.946l-.054.109-5.586 5.586a.901.901 0 0 1-.607.258 1.065 1.065 0 0 1-.456-.087c-.236-.1-.617-.384-.617-.902v-5.5a.95.95 0 0 1 .282-.668ZM6.896 6.93v3.74l3.739-3.74h-3.74Z", "key": "a7961d4e449cc48d7fe860d4d9fef02d4ea72139" }]]);
const CaretDoubleTopleftB = createMeisterIcons("caret-double-topleft-b", [["path", { "fill": "currentColor", "d": "M17.646 11.88h-5.5c-.1 0-.2.1-.2.2v5.5c0 .2.3.3.4.2l5.4-5.4c.2-.2.1-.5-.1-.5Z", "key": "39fb003402e102f0e57f0ab0bd184464e32b0274" }], ["path", { "fill": "currentColor", "d": "M11.478 11.412a.95.95 0 0 1 .668-.282h5.5c.534 0 .843.406.927.743a1.09 1.09 0 0 1-.297 1.038l-5.4 5.4a.902.902 0 0 1-.607.258 1.063 1.063 0 0 1-.456-.087c-.236-.1-.617-.384-.617-.902v-5.5a.95.95 0 0 1 .282-.668Zm1.218 1.218v3.74l3.739-3.74h-3.74Zm-.85-6.45h-5.5c-.1 0-.2.1-.2.2v5.5c0 .2.3.3.4.2l5.5-5.5c.1-.2 0-.4-.2-.4Z", "key": "7b958b1dada09a9ccdf5ad7721af52264a2c2646" }], ["path", { "fill": "currentColor", "d": "M5.678 5.712a.95.95 0 0 1 .668-.282h5.5c.376 0 .715.204.883.54.159.318.126.669-.013.946l-.054.109-5.586 5.586a.901.901 0 0 1-.607.258 1.065 1.065 0 0 1-.456-.087c-.236-.1-.617-.384-.617-.902v-5.5a.95.95 0 0 1 .282-.668ZM6.896 6.93v3.74l3.739-3.74h-3.74Z", "key": "77dcae3f158ea52e509fd96881123d5c472a84f4" }]]);
const CaretDoubleTopright = createMeisterIcons("caret-double-topright", [["path", { "fill": "currentColor", "d": "M6.48 11.18a.87.87 0 0 0-.564.066.928.928 0 0 0-.448.476 1.14 1.14 0 0 0 .03.944l.055.109 5.672 5.672.11.054c.276.139.627.172.945.013a.978.978 0 0 0 .54-.884v-5.5a.95.95 0 0 0-.283-.668.95.95 0 0 0-.667-.282H6.48Zm1.1 1.5 3.74 3.74v-3.74H7.58Zm3.706-6.76a.978.978 0 0 1 .884-.54h5.5a.95.95 0 0 1 .667.283.95.95 0 0 1 .283.667v5.5a.978.978 0 0 1-.54.884c-.318.159-.67.126-.946-.013l-.109-.054-5.672-5.672-.054-.11a1.056 1.056 0 0 1-.013-.945Zm2.094.96 3.74 3.74V6.88h-3.74Z", "key": "7533779e16770c132f118c5fc4b32ad86b92a9bd" }]]);
const CaretDoubleToprightB = createMeisterIcons("caret-double-topright-b", [["path", { "fill": "currentColor", "d": "M12.07 17.63v-5.5c0-.1-.1-.2-.2-.2h-5.5c-.2-.1-.3.2-.2.4l5.5 5.5c.2.1.4 0 .4-.2Z", "key": "76aba84b228e3213a8923b6f107d2bb6fbc3b163" }], ["path", { "fill": "currentColor", "d": "M6.48 11.18a.87.87 0 0 0-.564.066.928.928 0 0 0-.448.476 1.14 1.14 0 0 0 .03.944l.055.109 5.672 5.672.11.054c.276.139.627.172.945.013a.978.978 0 0 0 .54-.884v-5.5a.95.95 0 0 0-.283-.668.95.95 0 0 0-.667-.282H6.48Zm1.1 1.5 3.74 3.74v-3.74H7.58Zm10.29-.85v-5.5c0-.1-.1-.2-.2-.2h-5.5c-.2 0-.3.2-.2.4l5.5 5.5c.2.1.4 0 .4-.2Z", "key": "981af09a76dc2d6e256b20df33dd4ec39e6c77d2" }], ["path", { "fill": "currentColor", "d": "M11.286 5.92a.978.978 0 0 1 .884-.54h5.5a.95.95 0 0 1 .667.283.95.95 0 0 1 .283.667v5.5a.978.978 0 0 1-.54.884c-.318.159-.67.126-.946-.013l-.109-.054-5.672-5.672-.054-.11a1.056 1.056 0 0 1-.013-.945Zm2.094.96 3.74 3.74V6.88h-3.74Z", "key": "80481fbdcf6cff812acbe155615fea3d5729b3d7" }]]);
const Cart = createMeisterIcons("cart", [["path", { "fill": "currentColor", "d": "M9.5 17.55a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75ZM5.551 7.1H18.75c1.435 0 2.629 1.293 2.338 2.785l-.999 5.89a.75.75 0 0 1-1.479-.25l1.002-5.911.003-.011c.1-.502-.303-1.003-.865-1.003H7.349l1.239 6.816a.75.75 0 1 1-1.476.268L5.552 7.1Z", "key": "5714e7f49344b57158546fa958672457ce36a045" }], ["path", { "fill": "currentColor", "d": "M7.85 14.8a.75.75 0 0 1 .75.75v.1a.75.75 0 1 1-1.5 0v-.1a.75.75 0 0 1 .75-.75ZM2.5 4.45a.75.75 0 0 1 .75-.75c1.358 0 2.267.51 2.835 1.062.277.27.465.54.585.747a2.893 2.893 0 0 1 .18.373l.004.01.002.005v.002s.001.001-.706.251l.707-.25.02.059.312 1.76a.75.75 0 1 1-1.478.261l-.285-1.616a1.97 1.97 0 0 0-.386-.526C4.733 5.54 4.192 5.2 3.25 5.2a.75.75 0 0 1-.75-.75Z", "key": "04a7e51d3b007d4510e6efc586cc1b2d8adf31e1" }], ["path", { "fill": "currentColor", "d": "M8.25 16.3a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM5.5 17.55a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm13.25-1.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM16 17.55a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "b7870bcca2de01a1ab6455ce5f7ace9c305f01e6" }]]);
const CartB = createMeisterIcons("cart-b", [["path", { "fill": "currentColor", "d": "M9.5 17.55a.75.75 0 0 1 .75-.75h6.5a.75.75 0 0 1 0 1.5h-6.5a.75.75 0 0 1-.75-.75ZM5.551 7.1H18.75c1.435 0 2.629 1.293 2.338 2.785l-.999 5.89a.75.75 0 0 1-1.479-.25l1.002-5.911.003-.011c.1-.502-.303-1.003-.865-1.003H7.349l1.239 6.816a.75.75 0 1 1-1.476.268L5.552 7.1Z", "key": "9dcd427d35457dc1b6564bec4fb3d7877c198237" }], ["path", { "fill": "currentColor", "d": "M7.85 14.8a.75.75 0 0 1 .75.75v.1a.75.75 0 1 1-1.5 0v-.1a.75.75 0 0 1 .75-.75ZM2.5 4.45a.75.75 0 0 1 .75-.75c1.358 0 2.267.51 2.835 1.062.277.27.465.54.585.747a2.893 2.893 0 0 1 .18.373l.004.01.002.005v.002s.001.001-.706.251l.707-.25.02.059.312 1.76a.75.75 0 1 1-1.478.261l-.285-1.616a1.97 1.97 0 0 0-.386-.526C4.733 5.54 4.192 5.2 3.25 5.2a.75.75 0 0 1-.75-.75Z", "key": "ae7b2014c7b866d1ff226843e637e48871338d82" }], ["path", { "fill": "currentColor", "d": "M8.25 19.55a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "ddbaaf53ee26727acaa302b27eee5490f284a81a" }], ["path", { "fill": "currentColor", "d": "M8.25 16.3a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM5.5 17.55a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm13.25 2a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "488b420fd51c7ae38f16b9b00e12ed266e5264f6" }], ["path", { "fill": "currentColor", "d": "M18.75 16.3a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM16 17.55a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "c8c80493464008008b0b0722fce56d3c41ac048b" }]]);
const Chalkboard = createMeisterIcons("chalkboard", [["path", { "fill": "currentColor", "d": "M5.95 6.2c-.886 0-1.55.664-1.55 1.55V17.8h15V7.75c0-.886-.664-1.55-1.55-1.55H5.95Zm14.3 12.35v.75H2.9V7.75A3.013 3.013 0 0 1 5.95 4.7h11.9a3.013 3.013 0 0 1 3.05 3.05v10.8h-.65Z", "key": "c36ca789a59beb2b542c0bf2bb4fbfe9a0296cd5" }], ["path", { "fill": "currentColor", "d": "M1.7 18.55a.75.75 0 0 1 .75-.75h19.1a.75.75 0 0 1 0 1.5H2.45a.75.75 0 0 1-.75-.75Z", "key": "70e111c190b54734ca00f2fb6d626c7eff46b5ba" }], ["path", { "fill": "currentColor", "d": "M8.55 16.8a.146.146 0 0 0-.15.15v1.6a.75.75 0 0 1-1.5 0v-1.6c0-.914.736-1.65 1.65-1.65h6.8c.914 0 1.65.736 1.65 1.65v1.6a.75.75 0 0 1-1.5 0v-1.6a.146.146 0 0 0-.15-.15h-6.8Z", "key": "231ab7b79c813e7176d5325fd888d46b41c3a5bd" }]]);
const ChalkboardB = createMeisterIcons("chalkboard-b", [["path", { "fill": "currentColor", "d": "M5.95 6.2c-.886 0-1.55.664-1.55 1.55V17.8h2.5v-.85c0-.914.736-1.65 1.65-1.65h6.9c.914 0 1.65.736 1.65 1.65v.85h2.4V7.75c0-.865-.643-1.55-1.65-1.55H5.95ZM2.9 7.75A3.013 3.013 0 0 1 5.95 4.7h11.9C19.643 4.7 21 6.015 21 7.75V19.3h-5.4v-2.35a.146.146 0 0 0-.15-.15h-6.9a.146.146 0 0 0-.15.15v2.35H2.9V7.75Z", "key": "4c451b2947460a8de7c96427d7d7d28ee492df11" }], ["path", { "fill": "currentColor", "d": "M15.6 18.45a.75.75 0 0 1 .75-.75h5.2a.75.75 0 0 1 0 1.5h-5.2a.75.75 0 0 1-.75-.75Zm-13.9 0a.75.75 0 0 1 .75-.75h5.2a.75.75 0 0 1 0 1.5h-5.2a.75.75 0 0 1-.75-.75Z", "key": "940afee1e77cc55340cd1cc4989a3e8c781c843c" }], ["path", { "fill": "currentColor", "d": "M16.35 16.85v1.6h-8.7v-1.6c0-.5.4-.9.9-.9h6.8c.6 0 1 .4 1 .9Z", "key": "d33728c98bf946693da7ab1ebdc1830bc3da2674" }], ["path", { "fill": "currentColor", "d": "M8.55 16.7a.146.146 0 0 0-.15.15v.85h7.2v-.85a.11.11 0 0 0-.035-.088c-.023-.02-.084-.062-.215-.062h-6.8Zm-1.65.15c0-.914.736-1.65 1.65-1.65h6.8c.96 0 1.75.684 1.75 1.65v2.35H6.9v-2.35Z", "key": "48c61c64758d304a8c2edaa30a410f3b8aa7f1dc" }]]);
const ChartSquare = createMeisterIcons("chart-square", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h10A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25H7c-1.874 0-3.25-1.452-3.25-3.25V7ZM7 2.25A4.762 4.762 0 0 0 2.25 7v10c0 2.602 2.024 4.75 4.75 4.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7ZM8.75 14a.75.75 0 0 0-1.5 0v2.3a.75.75 0 0 0 1.5 0V14ZM12 10.05a.75.75 0 0 1 .75.75v5.5a.75.75 0 1 1-1.5 0v-5.5a.75.75 0 0 1 .75-.75Zm4.75-2.55a.75.75 0 0 0-1.5 0v8.8a.75.75 0 0 0 1.5 0V7.5Z", "key": "70f5585643fece1ae86bf619ef72bd4722895f17" }]]);
const ChartSquareB = createMeisterIcons("chart-square-b", [["path", { "fill": "currentColor", "d": "M3 17V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "eddc5d6f4410fb875b0b2e3ec661434f43999d82" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Z", "key": "25172153175e7e478eb50eaad5b31d4ba6e9b55b" }], ["path", { "fill": "#fff", "d": "M8 13.25a.75.75 0 0 1 .75.75v2.3a.75.75 0 0 1-1.5 0V14a.75.75 0 0 1 .75-.75Zm4-3.2a.75.75 0 0 1 .75.75v5.5a.75.75 0 1 1-1.5 0v-5.5a.75.75 0 0 1 .75-.75Zm4-3.3a.75.75 0 0 1 .75.75v8.8a.75.75 0 0 1-1.5 0V7.5a.75.75 0 0 1 .75-.75Z", "key": "5dcd8e5e74647f5a8f65cb669568a4ee36528161" }]]);
const ChartSquareH = createMeisterIcons("chart-square-h", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "81d040af16e7b99da205146f1a9b6383af07cfe9" }], ["path", { "fill": "currentColor", "d": "M6.75 8a.75.75 0 0 1 .75-.75H10a.75.75 0 0 1 0 1.5H7.5A.75.75 0 0 1 6.75 8Zm0 4a.75.75 0 0 1 .75-.75h5.6a.75.75 0 0 1 0 1.5H7.5a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h8.8a.75.75 0 0 1 0 1.5H7.5a.75.75 0 0 1-.75-.75Z", "key": "529f61451fed41f3af0b6334e4234d71e2555c91" }]]);
const ChartSquareHb = createMeisterIcons("chart-square-hb", [["path", { "fill": "currentColor", "d": "M7 3h10c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V7c0-2.3 1.7-4 4-4Z", "key": "4328e26daefd375c678e796497799e0545bd6674" }], ["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "35347341faac38c13d2b146cf6aa4cf15a0722cf" }], ["path", { "fill": "#fff", "d": "M6.75 8a.75.75 0 0 1 .75-.75H10a.75.75 0 0 1 0 1.5H7.5A.75.75 0 0 1 6.75 8Zm0 4a.75.75 0 0 1 .75-.75h5.6a.75.75 0 0 1 0 1.5H7.5a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h8.8a.75.75 0 0 1 0 1.5H7.5a.75.75 0 0 1-.75-.75Z", "key": "503e5316cf60bd80cf41847504af75af490915b2" }]]);
const CheckCircle = createMeisterIcons("check-circle", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25c4.486 0 8.25-3.764 8.25-8.25A8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Z", "key": "0ca5d1923aac69d5facb5f51e16892458a8bcc16" }], ["path", { "fill": "currentColor", "d": "M16.435 8.775a.75.75 0 0 1-.01 1.06l-5.298 5.198c-.181.181-.46.367-.827.367-.37 0-.649-.188-.83-.37l-.035-.034-2.03-2.639a.75.75 0 0 1 1.19-.914l1.742 2.265 5.038-4.943a.75.75 0 0 1 1.06.01Z", "key": "1c2dc24abbe831c1cfca3cf1bdebb3f179249f6a" }]]);
const CheckCircleB = createMeisterIcons("check-circle-b", [["path", { "fill": "currentColor", "d": "M12 21c-5 0-9-4-9-9s4-9 9-9 9 4 9 9c0 4.9-4.1 9-9 9Z", "key": "a10533bfafebcc94ee5cebe9ac3f3e6bc0ce7776" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25c4.486 0 8.25-3.764 8.25-8.25A8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Z", "key": "0fb2751c5037f530d6eb12328dc567ee356a6a31" }], ["path", { "fill": "#fff", "d": "M16.435 8.775a.75.75 0 0 1-.01 1.06l-5.298 5.198c-.181.181-.46.367-.827.367-.37 0-.649-.188-.83-.37l-.035-.034-2.03-2.639a.75.75 0 1 1 1.19-.914l1.742 2.265 5.038-4.943a.75.75 0 0 1 1.06.01Z", "key": "e2fad06da9ea2bf4bf7009c319e8ce3ee70721b8" }]]);
const Checklist = createMeisterIcons("checklist", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "dc9c24e9af17504661e3d229d85aef093cfeed35" }], ["path", { "fill": "currentColor", "d": "M10.03 13.47a.75.75 0 0 1 0 1.06l-2.6 2.6a.75.75 0 0 1-1.06-1.06l2.6-2.6a.75.75 0 0 1 1.06 0Z", "key": "96978f882be04b8fa0d0a5ee84b5c7c6bea31d68" }], ["path", { "fill": "currentColor", "d": "M6.37 13.47a.75.75 0 0 1 1.06 0l2.6 2.6a.75.75 0 0 1-1.06 1.06l-2.6-2.6a.75.75 0 0 1 0-1.06Zm4.072-6.788a.75.75 0 0 1-.024 1.06l-2.185 2.09a.81.81 0 0 1-.695.393.957.957 0 0 1-.668-.295l-.027-.026-.923-1.13a.75.75 0 0 1 1.16-.949l.475.58 1.827-1.747a.75.75 0 0 1 1.06.024ZM12.65 8.3a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5h-3.9a.75.75 0 0 1-.75-.75Zm0 7a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5h-3.9a.75.75 0 0 1-.75-.75Z", "key": "acc6b74ae97d1142464d922f62725121a111a478" }]]);
const ChecklistB = createMeisterIcons("checklist-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "7a1fa18ea946b41f1111f2bf0963904780e0cb9c" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "311a25e32c033d3c5b466c52da808eac2f724627" }], ["path", { "fill": "#fff", "d": "M10.03 13.47a.75.75 0 0 1 0 1.06l-2.6 2.6a.75.75 0 0 1-1.06-1.06l2.6-2.6a.75.75 0 0 1 1.06 0Z", "key": "54bd1255ac43684dc1a1447cfe269deae9d67590" }], ["path", { "fill": "#fff", "d": "M6.37 13.47a.75.75 0 0 1 1.06 0l2.6 2.6a.75.75 0 0 1-1.06 1.06l-2.6-2.6a.75.75 0 0 1 0-1.06Zm4.072-6.788a.75.75 0 0 1-.024 1.06l-2.185 2.09a.81.81 0 0 1-.695.393.957.957 0 0 1-.668-.295l-.027-.026-.923-1.13a.75.75 0 0 1 1.16-.949l.475.58 1.827-1.747a.75.75 0 0 1 1.06.024ZM12.65 8.3a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5h-3.9a.75.75 0 0 1-.75-.75Zm0 7a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5h-3.9a.75.75 0 0 1-.75-.75Z", "key": "6d9d3d6aaf31ab92d25faa0b0a4d0cd6f7d85672" }]]);
const CheckSquare = createMeisterIcons("check-square", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v6c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25V9ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9Zm7.425 7.585a.75.75 0 0 0-1.05-1.07l-5.038 4.943-1.743-2.265a.75.75 0 1 0-1.188.914l2.03 2.639.034.034c.181.182.46.37.83.37.367 0 .645-.186.827-.367l5.298-5.198Z", "key": "e7ebac413636804e7ec0c7fcd279b30bb9522163" }]]);
const CheckSquareB = createMeisterIcons("check-square-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "d305cc2fc42ac18327de5856a05faa22afd01c2d" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "f64c4970665d9c5896f0d7d5ebc79dc502715d78" }], ["path", { "fill": "#fff", "d": "M16.435 8.775a.75.75 0 0 1-.01 1.06l-5.298 5.198c-.181.181-.46.367-.827.367-.37 0-.649-.188-.83-.37l-.035-.034-2.03-2.639a.75.75 0 1 1 1.19-.914l1.742 2.265 5.038-4.943a.75.75 0 0 1 1.06.01Z", "key": "c1c60d47a7375ce1d27ac0392fc65530bd68fb19" }]]);
const ChevronBreakDown = createMeisterIcons("chevron-break-down", [["path", { "fill": "currentColor", "d": "M5.87 7.12a.75.75 0 0 1 1.06 0l4.9 4.9-.53.53.53-.53a.24.24 0 0 0 .17.08.24.24 0 0 0 .17-.08l.53.53-.53-.53 4.9-4.9a.75.75 0 1 1 1.06 1.06l-4.9 4.9a1.716 1.716 0 0 1-2.46 0l-4.9-4.9a.75.75 0 0 1 0-1.06Zm-.62 9.23A.75.75 0 0 1 6 15.6h12a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75Z", "key": "f04eb3666f57a0dc066c89082779ec39fa58c46e" }]]);
const ChevronBreakLeft = createMeisterIcons("chevron-break-left", [["path", { "fill": "currentColor", "d": "M16.88 5.87a.75.75 0 0 1 0 1.06l-4.9 4.9-.53-.53.53.53a.24.24 0 0 0-.08.17.24.24 0 0 0 .08.17l-.53.53.53-.53 4.9 4.9a.75.75 0 1 1-1.06 1.06l-4.9-4.9a1.716 1.716 0 0 1 0-2.46l4.9-4.9a.75.75 0 0 1 1.06 0Zm-9.23-.62A.75.75 0 0 1 8.4 6v12a.75.75 0 0 1-1.5 0V6a.75.75 0 0 1 .75-.75Z", "key": "20f9a7254c897dc5bac20cb0649c0b903ec9d6db" }]]);
const ChevronBreakRight = createMeisterIcons("chevron-break-right", [["path", { "fill": "currentColor", "d": "M7.12 18.13a.75.75 0 0 1 0-1.06l4.9-4.9.53.53-.53-.53a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l.53-.53-.53.53-4.9-4.9a.75.75 0 0 1 1.06-1.06l4.9 4.9a1.716 1.716 0 0 1 0 2.46l-4.9 4.9a.75.75 0 0 1-1.06 0Zm9.23.62a.75.75 0 0 1-.75-.75V6a.75.75 0 0 1 1.5 0v12a.75.75 0 0 1-.75.75Z", "key": "5cd8c71a7cd6fe245436ab146ffdb1ae2261ff3c" }]]);
const ChevronBreakTop = createMeisterIcons("chevron-break-top", [["path", { "fill": "currentColor", "d": "M18.13 16.88a.75.75 0 0 1-1.06 0l-4.9-4.9.53-.53-.53.53a.24.24 0 0 0-.17-.08.24.24 0 0 0-.17.08l-.53-.53.53.53-4.9 4.9a.75.75 0 0 1-1.06-1.06l4.9-4.9a1.716 1.716 0 0 1 2.46 0l4.9 4.9a.75.75 0 0 1 0 1.06Zm.62-9.23a.75.75 0 0 1-.75.75H6a.75.75 0 1 1 0-1.5h12a.75.75 0 0 1 .75.75Z", "key": "8c677ea9ad8d10d90952559cbfe39326dfc7c990" }]]);
const ChevronCircleDown = createMeisterIcons("chevron-circle-down", [["path", { "fill": "currentColor", "d": "M20.25 12a8.25 8.25 0 1 0-16.5 0 8.25 8.25 0 0 0 16.5 0ZM12 2.25c5.385 0 9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25Z", "key": "194ddaa50bc67c38419a52e6f57ad395d190cb70" }], ["path", { "fill": "currentColor", "d": "M7.82 9.757a.75.75 0 0 1 1.06 0l3.12 3.12 3.12-3.12a.75.75 0 0 1 1.06 1.06l-3.2 3.2a1.45 1.45 0 0 1-1.018.446c-.383 0-.742-.173-.984-.487L7.82 10.818a.75.75 0 0 1 0-1.06Zm4.08 3.217Z", "key": "988c380dd233bbe82fa6b9af0053b2c4c51b0d8d" }]]);
const ChevronCircleLeft = createMeisterIcons("chevron-circle-left", [["path", { "fill": "currentColor", "d": "M20.25 12a8.25 8.25 0 1 0-16.5 0 8.25 8.25 0 0 0 16.5 0ZM12 2.25c5.385 0 9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25Z", "key": "a262d1203c11f924aaaa2b56f9201acb55cd42e8" }], ["path", { "fill": "currentColor", "d": "M14.243 7.82a.75.75 0 0 1 0 1.06L11.123 12l3.12 3.12a.75.75 0 0 1-1.06 1.06l-3.2-3.2.53-.53m0 0-.53.53a1.45 1.45 0 0 1-.446-1.018c0-.383.173-.742.487-.984l3.158-3.158a.75.75 0 0 1 1.06 0m-3.216 4.08Z", "key": "5f87aaf9a9e731af56acddfb10732529327c4c76" }]]);
const ChevronCircleRight = createMeisterIcons("chevron-circle-right", [["path", { "fill": "currentColor", "d": "M20.25 12a8.25 8.25 0 1 0-16.5 0 8.25 8.25 0 0 0 16.5 0ZM12 2.25c5.385 0 9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25Z", "key": "5006b9118f5fd6472c3a1d912c55bade38cb0259" }], ["path", { "fill": "currentColor", "d": "M9.757 7.82a.75.75 0 0 1 1.06 0l3.2 3.2c.266.264.446.622.446 1.018 0 .383-.173.742-.487.984l-3.158 3.158a.75.75 0 1 1-1.06-1.06L12.876 12l-3.12-3.12a.75.75 0 0 1 0-1.06Zm3.217 4.28Z", "key": "1cbe6d74977c292f7325dd8b0966e5132154393a" }]]);
const ChevronCircleTop = createMeisterIcons("chevron-circle-top", [["path", { "fill": "currentColor", "d": "M20.25 12a8.25 8.25 0 1 0-16.5 0 8.25 8.25 0 0 0 16.5 0ZM12 2.25c5.385 0 9.75 4.365 9.75 9.75s-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25Z", "key": "761ed47e27f63724ba74a91ee340fefb294deac2" }], ["path", { "fill": "currentColor", "d": "M12.1 11.026Zm-.1.097-3.12 3.12a.75.75 0 1 1-1.06-1.06l3.2-3.2a1.45 1.45 0 0 1 1.018-.446c.383 0 .742.173.984.487l3.158 3.158a.75.75 0 0 1-1.06 1.06L12 11.124Z", "key": "0b1890b38fdf6a0823073124d4451fc57c0f8ead" }]]);
const ChevronDoubleDown = createMeisterIcons("chevron-double-down", [["path", { "fill": "currentColor", "d": "M7.82 6.757a.75.75 0 0 1 1.06 0L12 9.877l3.12-3.12a.75.75 0 0 1 1.06 1.06l-3.2 3.2a1.45 1.45 0 0 1-1.018.446c-.383 0-.742-.173-.984-.487L7.82 7.818a.75.75 0 0 1 0-1.06Zm4.08 3.217Zm-4.08 2.783a.75.75 0 0 1 1.06 0l3.12 3.12 3.12-3.12a.75.75 0 0 1 1.06 1.06l-3.2 3.2a1.45 1.45 0 0 1-1.018.445c-.383 0-.742-.172-.984-.486L7.82 13.818a.75.75 0 0 1 0-1.06Zm4.08 3.217Z", "key": "00ecedce60a7a46b7914b93a6640be6ed85a31fa" }]]);
const ChevronDoubleDownleft = createMeisterIcons("chevron-double-downleft", [["path", { "fill": "currentColor", "d": "M12.751 5.837a.75.75 0 0 1 .75.75v4.412h4.412a.75.75 0 1 1 0 1.5h-4.525a1.45 1.45 0 0 1-1.034-.406 1.232 1.232 0 0 1-.353-1.04V6.587a.75.75 0 0 1 .75-.75Zm.61 5.16h.002-.002Zm-4.852-.917a.75.75 0 0 1 .75.75v4.411h4.412a.75.75 0 1 1 0 1.5H9.145a1.45 1.45 0 0 1-1.034-.405 1.232 1.232 0 0 1-.352-1.04V10.83a.75.75 0 0 1 .75-.75Zm.61 5.159h.001-.002Z", "key": "ff6f103c8694182e47e1cd08df0f58950281e5d7" }]]);
const ChevronDoubleDownright = createMeisterIcons("chevron-double-downright", [["path", { "fill": "currentColor", "d": "M11.296 5.872a.75.75 0 0 1 .738.762l-.07 4.45c-.002.372-.128.75-.406 1.027a1.23 1.23 0 0 1-1.033.353l-4.39.07a.75.75 0 0 1-.025-1.5l4.355-.069.07-4.355a.75.75 0 0 1 .761-.738Zm-.835 5.232v-.002.002Zm5.078-.989a.75.75 0 0 1 .738.762l-.071 4.45a1.454 1.454 0 0 1-.405 1.027c-.27.269-.643.402-1.033.353l-4.391.07a.75.75 0 1 1-.024-1.5l4.355-.07.069-4.354a.75.75 0 0 1 .762-.738Zm-.835 5.231v-.002.002Z", "key": "4e0b6aaa794f068d88478ab89d34585c8eb904cc" }]]);
const ChevronDoubleLeft = createMeisterIcons("chevron-double-left", [["path", { "fill": "currentColor", "d": "M17.243 7.82a.75.75 0 0 1 0 1.06L14.123 12l3.12 3.12a.75.75 0 0 1-1.06 1.06l-3.2-3.2a1.45 1.45 0 0 1-.446-1.018c0-.383.173-.742.487-.984l3.158-3.158a.75.75 0 0 1 1.06 0Zm-3.217 4.08Zm-2.783-4.08a.75.75 0 0 1 0 1.06L8.123 12l3.12 3.12a.75.75 0 0 1-1.06 1.06l-3.2-3.2a1.45 1.45 0 0 1-.446-1.018c0-.383.173-.742.487-.984l3.158-3.158a.75.75 0 0 1 1.06 0ZM8.026 11.9Z", "key": "ddfb85014d60c86dfc89b8031edf03a0c6040d4a" }]]);
const ChevronDoubleRight = createMeisterIcons("chevron-double-right", [["path", { "fill": "currentColor", "d": "M6.816 7.811a.75.75 0 0 1 1.06.017l3.097 3.196c.262.265.44.62.44 1.014 0 .38-.17.738-.481.98l-3.056 3.154A.75.75 0 1 1 6.8 15.128L9.829 12 6.8 8.872a.75.75 0 0 1 .017-1.06Zm3.108 4.29v-.002.002Zm2.892-4.29a.75.75 0 0 1 1.06.017l3.097 3.196c.262.265.44.62.44 1.014 0 .38-.17.738-.481.98l-3.056 3.154a.75.75 0 1 1-1.077-1.044L15.829 12 12.8 8.872a.75.75 0 0 1 .017-1.06Zm3.108 4.29v-.002.002Z", "key": "aeb6ab3d64b51efba0cbee7dd597172a4d12109c" }]]);
const ChevronDoubleTop = createMeisterIcons("chevron-double-top", [["path", { "fill": "currentColor", "d": "M12.1 14.026Zm-.1.097-3.12 3.12a.75.75 0 1 1-1.06-1.06l3.2-3.2a1.45 1.45 0 0 1 1.018-.446c.383 0 .742.173.984.487l3.158 3.158a.75.75 0 0 1-1.06 1.06L12 14.124Zm.1-6.097Zm-.1.097-3.12 3.12a.75.75 0 1 1-1.06-1.06l3.2-3.2a1.45 1.45 0 0 1 1.018-.446c.383 0 .742.173.984.487l3.158 3.158a.75.75 0 0 1-1.06 1.06L12 8.124Z", "key": "aa14ff65a2ee800139e85b624a3ea4ac39e8178b" }]]);
const ChevronDoubleTopleft = createMeisterIcons("chevron-double-topleft", [["path", { "fill": "currentColor", "d": "M18.663 13.251a.75.75 0 0 1-.75.75h-4.412v4.412a.75.75 0 0 1-1.5 0v-4.525c0-.375.126-.755.406-1.034.27-.271.647-.404 1.04-.353h4.466a.75.75 0 0 1 .75.75Zm-5.16.61v.002-.002Zm.917-4.852a.75.75 0 0 1-.75.75H9.26v4.412a.75.75 0 0 1-1.5 0V9.645c0-.374.125-.755.405-1.034.27-.271.647-.404 1.04-.352h4.467a.75.75 0 0 1 .75.75Zm-5.16.61v.001-.002Z", "key": "dd3a8c40d653075e441052f85f83027a4516d1af" }]]);
const ChevronDoubleTopright = createMeisterIcons("chevron-double-topright", [["path", { "fill": "currentColor", "d": "M10.639 14.004h-.002.002Zm-.14-.003H6.087a.75.75 0 0 1 0-1.5h4.525c.375 0 .755.126 1.034.406.271.27.404.647.353 1.04v4.466a.75.75 0 0 1-1.5 0v-4.412Zm4.383-4.241h-.002.002Zm-.14-.001h-4.413a.75.75 0 1 1 0-1.5h4.526c.374 0 .755.125 1.034.405.271.27.404.647.352 1.04v4.467a.75.75 0 0 1-1.5 0V9.759Z", "key": "f1e00800c68360e049966a0d06b14a431c346b68" }]]);
const ChevronDown = createMeisterIcons("chevron-down", [["path", { "fill": "currentColor", "d": "M5.82 8.82a.75.75 0 0 1 1.06 0l5 5a.24.24 0 0 0 .17.08.239.239 0 0 0 .168-.079l4.896-4.996a.75.75 0 1 1 1.072 1.05L13.28 14.88a1.716 1.716 0 0 1-2.46 0l-5-5a.75.75 0 0 1 0-1.06Z", "key": "ca51c6faee32c546b542d2f602b0985e95b03a9e" }]]);
const ChevronLeft = createMeisterIcons("chevron-left", [["path", { "fill": "currentColor", "d": "M15.18 5.82a.75.75 0 0 1 0 1.06l-5 5a.24.24 0 0 0-.08.17.24.24 0 0 0 .078.168l4.997 4.896a.75.75 0 1 1-1.05 1.072L9.12 13.28a1.716 1.716 0 0 1 0-2.461l5-5a.75.75 0 0 1 1.06 0Z", "key": "b23298c33855c8efde46cac07b6989d4ecd769ca" }]]);
const ChevronRight = createMeisterIcons("chevron-right", [["path", { "fill": "currentColor", "d": "M8.82 18.18a.75.75 0 0 1 0-1.06l5-5a.24.24 0 0 0 .08-.17.238.238 0 0 0-.078-.168L8.825 6.886a.75.75 0 0 1 1.05-1.072l5.005 4.906a1.716 1.716 0 0 1 0 2.46l-5 5a.75.75 0 0 1-1.06 0Z", "key": "c7dd7b724809f2ebc0ec81414c6347548ad49ba6" }]]);
const ChevronSquareDown = createMeisterIcons("chevron-square-down", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "92e481d7c0afcd04b7ebe8aeeb9e32d95255977c" }], ["path", { "fill": "currentColor", "d": "M7.82 9.757a.75.75 0 0 1 1.06 0l3.12 3.12 3.12-3.12a.75.75 0 0 1 1.06 1.06l-3.2 3.2a1.45 1.45 0 0 1-1.018.446c-.383 0-.742-.173-.984-.487L7.82 10.818a.75.75 0 0 1 0-1.06Zm4.08 3.217Z", "key": "87eaf86da2a55691930a85236f09acbe59078523" }]]);
const ChevronSquareDownB = createMeisterIcons("chevron-square-down-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "c5b2ae350910e9dc01107f760d6824c5a69d1d96" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "d5fe12be6dc9c9b2c7b8653fa5f09fcbb60616e3" }], ["path", { "fill": "#fff", "d": "M7.77 9.77a.75.75 0 0 1 1.06 0l3.12 3.12 3.12-3.12a.75.75 0 1 1 1.06 1.06l-3.2 3.2a1.45 1.45 0 0 1-1.018.445 1.23 1.23 0 0 1-.984-.486L7.77 10.83a.75.75 0 0 1 0-1.06Zm4.08 3.217v-.001Z", "key": "789aca52ea6250f37e0624f0c98032195ec22045" }]]);
const ChevronSquareLeft = createMeisterIcons("chevron-square-left", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "93afd3b352bcced4858d8d28749b967a371d8363" }], ["path", { "fill": "currentColor", "d": "M14.243 7.82a.75.75 0 0 1 0 1.06L11.123 12l3.12 3.12a.75.75 0 1 1-1.06 1.06l-3.2-3.2.53-.53m0 0-.53.53a1.45 1.45 0 0 1-.446-1.017c0-.383.173-.743.487-.985l3.158-3.158a.75.75 0 0 1 1.06 0m-3.216 4.08Z", "key": "34959f2edfe3ba78ec49df3bf98c18e240bc9b58" }]]);
const ChevronSquareLeftB = createMeisterIcons("chevron-square-left-b", [["path", { "fill": "currentColor", "d": "M3 15V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6H9c-3.4 0-6-2.7-6-6Z", "key": "c1feaf56ec72bf1ef07fea42747b95de6c2b2cad" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.894 2.272 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.822 0-6.75-3.044-6.75-6.75V9Z", "key": "4a564824ae43158f6eb434e04e5595880aac729b" }], ["path", { "fill": "#fff", "d": "M14.23 7.77a.75.75 0 0 1 0 1.06L11.06 12l3.07 3.07a.75.75 0 0 1-1.06 1.06l-3.2-3.2c-.301-.3-.378-.719-.356-1.033.023-.31.154-.702.496-.968l3.16-3.16a.75.75 0 0 1 1.06 0Z", "key": "d06c694b792a91748f8ef02aec00bc8b0f90ad79" }]]);
const ChevronSquareRight = createMeisterIcons("chevron-square-right", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "6db684582d4551c969e7827b925a654dee15cd0c" }], ["path", { "fill": "currentColor", "d": "M9.757 7.82a.75.75 0 0 1 1.06 0l3.2 3.2c.266.265.446.622.446 1.018 0 .383-.173.743-.487.984l-3.158 3.158a.75.75 0 0 1-1.06-1.06L12.876 12l-3.12-3.12a.75.75 0 0 1 0-1.06Zm3.217 4.28Z", "key": "0a22108dcb762eb42dced1dd874037490c29086b" }]]);
const ChevronSquareRightB = createMeisterIcons("chevron-square-right-b", [["path", { "fill": "currentColor", "d": "M21 9v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "dcae823ad1159c0f56f307e1fcc73bc7a1f812ba" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "b0ff5e9e16f1ca3d1c6a2963491e4811d046f212" }], ["path", { "fill": "#fff", "d": "M9.77 7.77a.75.75 0 0 1 1.06 0l3.2 3.2c.265.264.445.622.445 1.018 0 .383-.172.742-.486.984L10.83 16.13a.75.75 0 1 1-1.06-1.06l3.12-3.12-3.12-3.12a.75.75 0 0 1 0-1.06Zm3.217 4.28h-.001Z", "key": "a3b54540d6fc1d25b511d250d10635c0f8a77e1e" }]]);
const ChevronSquareTop = createMeisterIcons("chevron-square-top", [["path", { "fill": "currentColor", "d": "M9 3.75C6.106 3.75 3.75 6.022 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.822 3.044-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "6625b84c87b49e7e40838b06c48d2941c832e4bf" }], ["path", { "fill": "currentColor", "d": "M12.1 11.026Zm-.1.097-3.12 3.12a.75.75 0 0 1-1.06-1.06l3.2-3.2a1.45 1.45 0 0 1 1.018-.445c.383 0 .742.172.984.486l3.158 3.158a.75.75 0 1 1-1.06 1.06L12 11.124Z", "key": "00711e1c2eebf919518384179731e051adb0d8b2" }]]);
const ChevronSquareTopB = createMeisterIcons("chevron-square-top-b", [["path", { "fill": "currentColor", "d": "M9 3h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.4 2.6-6 6-6Z", "key": "523aae3c8bacea18653662a89832b76c3bafef2f" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.014 3.75 3.75 6.014 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.814 2.936-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "33ccf8877638e671bc1864a12ecdf0933ad46980" }], ["path", { "fill": "#fff", "d": "m11.9 11.06-3.07 3.07a.75.75 0 0 1-1.06-1.06l3.2-3.2c.3-.301.718-.378 1.033-.356.31.023.702.154.968.496l3.16 3.16a.75.75 0 1 1-1.061 1.06l-3.17-3.17Z", "key": "bf238febfec21c3a1ac8ba59d2c3da97702d8c7d" }]]);
const ChevronTop = createMeisterIcons("chevron-top", [["path", { "fill": "currentColor", "d": "M18.18 15.18a.75.75 0 0 1-1.06 0l-5-5a.24.24 0 0 0-.17-.08.239.239 0 0 0-.168.079l-4.896 4.996a.75.75 0 0 1-1.072-1.05L10.72 9.12a1.716 1.716 0 0 1 2.46 0l5 5a.75.75 0 0 1 0 1.06Z", "key": "7e48bc3ec9f5dac3333317b0d82f6544e4a1330a" }]]);
const Chip = createMeisterIcons("chip", [["path", { "fill": "currentColor", "d": "M10.75 3.5a.75.75 0 0 0-1.5 0v1.75H9C6.886 5.25 5.25 6.886 5.25 9v.25H3.5a.75.75 0 0 0 0 1.5h1.75v2.5H3.5a.75.75 0 0 0 0 1.5h1.75V15c0 1.998 1.62 3.75 3.75 3.75h.25v1.75a.75.75 0 0 0 1.5 0v-1.75h2.5v1.75a.75.75 0 0 0 1.5 0v-1.75H15c2.114 0 3.75-1.636 3.75-3.75v-.25h1.75a.75.75 0 0 0 0-1.5h-1.75v-2.5h1.75a.75.75 0 0 0 0-1.5h-1.75V9c0-2.114-1.636-3.75-3.75-3.75h-.25V3.5a.75.75 0 0 0-1.5 0v1.75h-2.5V3.5Zm6.5 10.5V9c0-1.286-.964-2.25-2.25-2.25H9c-1.286 0-2.25.964-2.25 2.25v6c0 1.202.98 2.25 2.25 2.25h6c1.286 0 2.25-.964 2.25-2.25v-1Z", "key": "293fde67f3629191a2d3f42d76bfbd6d67fe92dd" }]]);
const ChipB = createMeisterIcons("chip-b", [["path", { "fill": "currentColor", "d": "M6 15V9c0-1.7 1.3-3 3-3h6c1.7 0 3 1.3 3 3v6c0 1.7-1.3 3-3 3H9c-1.7 0-3-1.4-3-3Z", "key": "7dace9642c542060710fd9aba3b3b1c8afff780d" }], ["path", { "fill": "currentColor", "d": "M9 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.202.98 2.25 2.25 2.25h6c1.286 0 2.25-.964 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H9ZM5.25 9c0-2.114 1.636-3.75 3.75-3.75h6c2.114 0 3.75 1.636 3.75 3.75v6c0 2.114-1.636 3.75-3.75 3.75H9c-2.13 0-3.75-1.752-3.75-3.75V9Z", "key": "c31ddb8e1ddf1031d9867976db53299eeddc4d01" }], ["path", { "fill": "currentColor", "d": "M10 17.25a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0V18a.75.75 0 0 1 .75-.75Zm0-14.5a.75.75 0 0 1 .75.75V6a.75.75 0 0 1-1.5 0V3.5a.75.75 0 0 1 .75-.75Zm4 14.5a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0V18a.75.75 0 0 1 .75-.75Zm0-14.5a.75.75 0 0 1 .75.75V6a.75.75 0 0 1-1.5 0V3.5a.75.75 0 0 1 .75-.75ZM2.75 10a.75.75 0 0 1 .75-.75H6a.75.75 0 0 1 0 1.5H3.5a.75.75 0 0 1-.75-.75Zm14.5 0a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5H18a.75.75 0 0 1-.75-.75Zm-14.5 4a.75.75 0 0 1 .75-.75H6a.75.75 0 0 1 0 1.5H3.5a.75.75 0 0 1-.75-.75Zm14.5 0a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5H18a.75.75 0 0 1-.75-.75Z", "key": "d3efec93c99ab24c08c981af79e6c863034fe7fe" }]]);
const Circle = createMeisterIcons("circle", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "d15daa7bcfc310211c91af12542699136396aab6" }]]);
const Circle1 = createMeisterIcons("circle1", [["path", { "fill": "currentColor", "d": "M5.237 7.25A8.216 8.216 0 0 1 12 3.75c2.753 0 5.23 1.378 6.736 3.5h-13.5Zm-.832 1.5A8.301 8.301 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25 8.213 8.213 0 0 0 20.25 12a8.17 8.17 0 0 0-.67-3.25H4.405ZM12 2.25A9.713 9.713 0 0 0 2.25 12 9.713 9.713 0 0 0 12 21.75 9.713 9.713 0 0 0 21.75 12c0-5.42-4.441-9.75-9.75-9.75Z", "key": "ec13817678cc6013c9b3ee009fba9173d5687d34" }]]);
const Circle10 = createMeisterIcons("circle10", [["path", { "fill": "currentColor", "d": "M12 3.75a8.212 8.212 0 0 0-7.31 4.4h14.62A8.212 8.212 0 0 0 12 3.75ZM3.75 12c0-.818.117-1.606.334-2.35H7.25v9.113A8.216 8.216 0 0 1 3.75 12Zm5 7.595a8.301 8.301 0 0 0 3.25.655A8.213 8.213 0 0 0 20.25 12a8.36 8.36 0 0 0-.334-2.35H8.75v9.945ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12Z", "key": "9dc7bf23e4403c6721ba9370bdfbe0bb2dab4b17" }]]);
const Circle10B = createMeisterIcons("circle10-b", [["path", { "fill": "currentColor", "d": "M20.4 8.9H3.5c.4-1.3 1.2-2.4 2.1-3.3C7.2 4 9.5 3 12 3c3.9 0 7.2 2.4 8.4 5.9Z", "key": "456c07ccbfd56e6ebe38a8560999e60fbbd3de64" }], ["path", { "fill": "currentColor", "d": "M12 3.75c-2.302 0-4.41.921-5.87 2.38-.597.598-1.13 1.272-1.515 2.02h14.658c-1.331-2.647-4.075-4.4-7.273-4.4ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c4.216 0 7.804 2.6 9.11 6.407l.34.993H2.485l.298-.97C3.23 7.225 4.115 6.023 5.07 5.07Z", "key": "7cd88ccca724bc5765a9f09a5baada6f1201af2d" }], ["path", { "fill": "currentColor", "d": "M2.96 8.25h17.927l.198.445c.448 1.007.665 2.112.665 3.305 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82-1.497 0-3.008-.319-4.32-.972-.997-.445-1.865-1.103-2.61-1.848-1.741-1.74-2.82-4.232-2.82-6.93 0-1.193.217-2.273.538-3.237l.171-.513Zm1.096 1.5A8.523 8.523 0 0 0 3.75 12c0 2.302.921 4.41 2.38 5.87.652.65 1.377 1.19 2.175 1.545l.015.007.015.007c1.085.542 2.367.821 3.665.821 2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12c0-.823-.122-1.571-.36-2.25H4.057Z", "key": "1a350e9d1ad7a8a7b4cc4e44865a14e0952cae05" }], ["path", { "fill": "currentColor", "d": "M8.75 8.9V20h-1.5V8.9h1.5Z", "key": "1843c5221ba284726ecc6c64bd67f61ea645a96d" }]]);
const Circle11 = createMeisterIcons("circle11", [["path", { "fill": "currentColor", "d": "M12 3.75c-.818 0-1.606.117-2.35.334v7.166h10.567A8.209 8.209 0 0 0 12 3.75Zm8.217 9H9.65v7.158a8.195 8.195 0 0 0 2.35.342 8.209 8.209 0 0 0 8.217-7.5ZM3.75 12a8.212 8.212 0 0 1 4.4-7.31v14.6c-2.624-1.396-4.4-4.166-4.4-7.291Zm-1.5 0A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "940e9b4cd34ad75d2178d9ad6392fdb9532a9d59" }]]);
const Circle11B = createMeisterIcons("circle11-b", [["path", { "fill": "currentColor", "d": "M8.9 3.5v16.9c-1.3-.5-2.4-1.2-3.3-2.1C4 16.7 3 14.4 3 11.9 3 8 5.4 4.7 8.9 3.5Z", "key": "1b20d76daf1b6bab9d37dbaf8559090d730010c9" }], ["path", { "fill": "currentColor", "d": "M9.65 2.45v19.042L8.63 21.1c-1.388-.534-2.58-1.289-3.56-2.27-1.741-1.74-2.82-4.231-2.82-6.93 0-4.216 2.6-7.804 6.407-9.11l.993-.34Zm-1.5 2.177c-2.647 1.331-4.4 4.074-4.4 7.273 0 2.301.921 4.41 2.38 5.87a8.212 8.212 0 0 0 2.02 1.471V4.627Z", "key": "f74cf781354d818f58a36ba53163bc62c1aa3df3" }], ["path", { "fill": "currentColor", "d": "M9.75 4.059v15.885c.695.19 1.445.306 2.25.306 2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12c0-2.274-1-4.39-2.381-5.87C16.295 4.656 14.28 3.75 12 3.75c-.731 0-1.532.119-2.25.309Zm-.987-1.27A10.677 10.677 0 0 1 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82-1.193 0-2.273-.217-3.237-.538l-.513-.171V2.959l.513-.17Z", "key": "4d6a4e094d563091662dcbbb1f3b821a4357351c" }], ["path", { "fill": "currentColor", "d": "M8.9 11.25H21v1.5H8.9v-1.5Z", "key": "1edb06f06a782edf9d766c797822f434ddf40948" }]]);
const Circle12 = createMeisterIcons("circle12", [["path", { "fill": "currentColor", "d": "M11.25 3.783A8.209 8.209 0 0 0 3.75 12a8.209 8.209 0 0 0 7.5 8.217V3.783Zm1.5 16.432c4.148-.391 7.5-3.982 7.5-8.215a8.209 8.209 0 0 0-7.5-8.217v16.432ZM12 2.25A9.713 9.713 0 0 0 2.25 12 9.713 9.713 0 0 0 12 21.75c5.314 0 9.75-4.436 9.75-9.75A9.713 9.713 0 0 0 12 2.25Z", "key": "5c77395ad9223934e163a7608176ebfe4bda9d49" }]]);
const Circle12B = createMeisterIcons("circle12-b", [["path", { "fill": "currentColor", "d": "M11.25 2.25H12c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82h-.75V2.25Zm1.5 1.533v16.434c2.002-.175 3.813-1.045 5.112-2.34C19.34 16.304 20.25 14.286 20.25 12c0-2.274-1-4.39-2.381-5.87-1.399-1.31-3.146-2.172-5.119-2.347Z", "key": "9bf85d4f7c8deadedef8a5edfb16e19c32bed4a9" }], ["path", { "fill": "currentColor", "d": "M12 3v18c-5 0-9-4-9-9 0-2.5 1-4.7 2.6-6.4C7.2 4 9.5 3 12 3Z", "key": "9af8221fb3027ac17d037a867df3625c0f572b92" }], ["path", { "fill": "currentColor", "d": "M6.138 6.122C4.66 7.697 3.75 9.715 3.75 12a8.209 8.209 0 0 0 7.5 8.217V3.783c-2.002.175-3.813 1.045-5.112 2.34ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25h.75v19.5H12A9.713 9.713 0 0 1 2.25 12c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008Z", "key": "67d7dc659881f68320fe21ef017a96eb0cad76ad" }]]);
const Circle12VarB = createMeisterIcons("circle12-var-b", [["path", { "fill": "currentColor", "d": "M6.138 6.122C4.66 7.697 3.75 9.715 3.75 12c0 2.186.91 4.299 2.38 5.87 1.4 1.31 3.147 2.172 5.12 2.347V3.783c-2.002.175-3.813 1.045-5.112 2.34ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25h.75v19.5H12c-2.71 0-5.09-1.087-6.914-2.804l-.017-.015-.015-.017C3.334 17.087 2.25 14.607 2.25 12c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008Z", "key": "219d31f6601dc8153f2e1e921626f66f59e92c14" }], ["path", { "fill": "currentColor", "d": "M12 21V3c5 0 9 4 9 9 0 2.5-1 4.7-2.6 6.4-1.7 1.5-4 2.6-6.4 2.6Z", "key": "40844be70da4f874fc346e0432275bbc86886bb3" }], ["path", { "fill": "currentColor", "d": "M11.25 2.25H12A9.713 9.713 0 0 1 21.75 12c0 2.71-1.087 5.09-2.804 6.914l-.024.025-.026.023C17.093 20.553 14.624 21.75 12 21.75h-.75V2.25Zm1.5 1.533v16.428c1.899-.196 3.718-1.115 5.128-2.35 1.469-1.573 2.372-3.584 2.372-5.861a8.209 8.209 0 0 0-7.5-8.217Z", "key": "6380da297bddc1ec01504450e7097c9347e0accb" }]]);
const Circle13 = createMeisterIcons("circle13", [["path", { "fill": "currentColor", "d": "M3.783 11.25A8.209 8.209 0 0 1 12 3.75a8.209 8.209 0 0 1 8.217 7.5H3.783Zm.001 1.5c.381 4.152 3.893 7.5 8.216 7.5a8.209 8.209 0 0 0 8.217-7.5H3.784ZM12 2.25A9.713 9.713 0 0 0 2.25 12c0 5.309 4.33 9.75 9.75 9.75A9.713 9.713 0 0 0 21.75 12 9.713 9.713 0 0 0 12 2.25Z", "key": "f201033760c2d54559172bf0a43523ebf571c61a" }]]);
const Circle13B = createMeisterIcons("circle13-b", [["path", { "fill": "currentColor", "d": "M2.25 11.25h19.5V12c0 2.71-1.087 5.09-2.804 6.914l-.024.025-.026.023C17.093 20.553 14.624 21.75 12 21.75c-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008C3.329 17.19 2.25 14.698 2.25 12v-.75Zm1.533 1.5c.175 2.002 1.045 3.813 2.34 5.112C7.696 19.34 9.714 20.25 12 20.25c2.164 0 4.283-.992 5.878-2.39 1.305-1.397 2.164-3.14 2.339-5.11H3.783Z", "key": "efe15c1c0b9997b9473287ef132ac3b286be3f8e" }], ["path", { "fill": "currentColor", "d": "M21 12H3c0-5 4-9 9-9 2.5 0 4.7 1 6.4 2.6C19.9 7.2 21 9.5 21 12Z", "key": "400b3d03cfed9e283e19ea7f4d0aabab3bca2151" }], ["path", { "fill": "currentColor", "d": "M3.783 11.25h16.43c-.19-1.985-1.117-3.803-2.344-5.12C16.295 4.656 14.28 3.75 12 3.75a8.209 8.209 0 0 0-8.217 7.5ZM2.25 12A9.713 9.713 0 0 1 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12v.75H2.25V12Z", "key": "e7a7b5e8ff5ca139bb5322e0f702bb82507762d9" }]]);
const Circle13VarB = createMeisterIcons("circle13-var-b", [["path", { "fill": "currentColor", "d": "M6.138 6.122c-1.314 1.4-2.18 3.15-2.355 5.128h16.434c-.175-2.002-1.045-3.813-2.34-5.112C16.304 4.66 14.286 3.75 12 3.75c-2.297 0-4.403.918-5.862 2.372ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.008.008.008.008c1.741 1.74 2.82 4.23 2.82 6.93v.75H2.25V12c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008Z", "key": "ee2e99e79ba22406c2e146574a5d645075917270" }], ["path", { "fill": "currentColor", "d": "M3 12h18c0 5-4 9-9 9-2.5 0-4.7-1-6.4-2.6C4 16.7 3 14.4 3 12Z", "key": "a824733f4da7ff2a40326926c77d54a0a48702a2" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h19.5V12A9.713 9.713 0 0 1 12 21.75c-2.71 0-5.09-1.087-6.914-2.804l-.017-.015-.015-.017C3.334 17.087 2.25 14.607 2.25 12v-.75Zm1.536 1.5c.18 1.914 1.043 3.729 2.345 5.12 1.573 1.474 3.588 2.38 5.869 2.38a8.209 8.209 0 0 0 8.217-7.5H3.786Z", "key": "ee40f6527d6a838d25d31a192a32e63edc8f1443" }]]);
const Circle14 = createMeisterIcons("circle14", [["path", { "fill": "currentColor", "d": "M3.783 11.25a8.204 8.204 0 0 1 7.467-7.467v7.467H3.783Zm.001 1.5c.36 3.909 3.493 7.105 7.466 7.466V12.75H3.784Zm8.966 0v7.467a8.204 8.204 0 0 0 7.467-7.467H12.75Zm7.467-1.5a8.204 8.204 0 0 0-7.467-7.467v7.467h7.467ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "59168bba0682d69cfa4e2980219a8686e540580d" }]]);
const Circle14AltVarB = createMeisterIcons("circle14-alt-var-b", [["path", { "fill": "currentColor", "d": "M3.783 11.25h7.467V3.783a8.204 8.204 0 0 0-7.467 7.467ZM2.25 12A9.713 9.713 0 0 1 12 2.25h.75v10.5H2.25V12Z", "key": "357d9d40d40735e953c50115729df435c7b732db" }], ["path", { "fill": "currentColor", "d": "M21 12h-9V3c2.5 0 4.7 1 6.4 2.6C19.9 7.2 21 9.5 21 12Z", "key": "e022d15cc4b8ea72427ce0b0f8286828d8b355c5" }], ["path", { "fill": "currentColor", "d": "M11.25 2.25H12c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12v.75h-10.5V2.25Zm1.5 1.533v7.467h7.464c-.19-1.985-1.117-3.803-2.345-5.12-1.399-1.31-3.146-2.172-5.119-2.347Z", "key": "016f768b9b1226c53959b4a6367b9d0491e98ddc" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h10.5V12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82h-.75v-10.5Zm1.5 1.5v7.467c2.002-.175 3.813-1.045 5.112-2.34 1.314-1.4 2.18-3.15 2.355-5.127H12.75Z", "key": "7e3ac859e3ce73a1ea20c13c1f3b91ec48f68a0d" }], ["path", { "fill": "currentColor", "d": "M12 12v9c-2.5 0-4.7-1-6.4-2.6C4 16.8 3 14.5 3 12h9Z", "key": "99f09f0fb81376a31729f5138fa8002a780f8ac4" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h10.5v10.5H12c-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008C3.329 17.19 2.25 14.698 2.25 12v-.75Zm1.533 1.5c.175 2.002 1.045 3.813 2.34 5.112 1.4 1.314 3.15 2.18 5.127 2.355V12.75H3.783Z", "key": "e40c9f9ecc44f6715a5ceca21918b4355f445c52" }]]);
const Circle14B = createMeisterIcons("circle14-b", [["path", { "fill": "currentColor", "d": "M12 3v9H3c0-5 4-9 9-9Z", "key": "424451da40f106d22c249e5b77dab16c8910ec58" }], ["path", { "fill": "currentColor", "d": "M3.783 11.25h7.467V3.783a8.204 8.204 0 0 0-7.467 7.467ZM2.25 12A9.713 9.713 0 0 1 12 2.25h.75v10.5H2.25V12Z", "key": "602dd370594c01ba41aeb339603c5eb6d9397a1b" }], ["path", { "fill": "currentColor", "d": "M11.25 2.25H12c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12v.75h-10.5V2.25Zm1.5 1.533v7.467h7.464c-.19-1.985-1.117-3.803-2.345-5.12-1.399-1.31-3.146-2.172-5.119-2.347Z", "key": "1e90a0a2d1db7f0c90c6198e8b6e9f7dd93c4cb4" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h10.5V12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82h-.75v-10.5Zm1.5 1.5v7.467c2.002-.175 3.813-1.045 5.112-2.34 1.314-1.4 2.18-3.15 2.355-5.127H12.75Z", "key": "4df4d96ea964e2471573e547336e8e6d0a44eb7b" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h10.5v10.5H12c-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008C3.329 17.19 2.25 14.698 2.25 12v-.75Zm1.533 1.5c.175 2.002 1.045 3.813 2.34 5.112 1.4 1.314 3.15 2.18 5.127 2.355V12.75H3.783Z", "key": "4a2090f72ccd26688a0282afb5873891805628c1" }]]);
const Circle14VarB = createMeisterIcons("circle14-var-b", [["path", { "fill": "currentColor", "d": "M12 3v9H3c0-5 4-9 9-9Z", "key": "c1f295efe70eda8413ba1cd42f2ddc27d34f10ad" }], ["path", { "fill": "currentColor", "d": "M3.783 11.25h7.467V3.783a8.204 8.204 0 0 0-7.467 7.467ZM2.25 12A9.713 9.713 0 0 1 12 2.25h.75v10.5H2.25V12Z", "key": "0b12aff2b9d083261fd4710187cb46e538f665e6" }], ["path", { "fill": "currentColor", "d": "M11.25 2.25H12c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12v.75h-10.5V2.25Zm1.5 1.533v7.467h7.464c-.19-1.985-1.117-3.803-2.345-5.12-1.399-1.31-3.146-2.172-5.119-2.347Z", "key": "20eb1af6db92e2cce8fdc161aef1010fda5e9172" }], ["path", { "fill": "currentColor", "d": "M21 12c0 2.5-1 4.7-2.6 6.4C16.8 20 14.5 21 12 21v-9h9Z", "key": "600464dbe493f1fabb2a7a39c15aa87110b5dff3" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h10.5V12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82h-.75v-10.5Zm1.5 1.5v7.467c2.002-.175 3.813-1.045 5.112-2.34 1.314-1.4 2.18-3.15 2.355-5.127H12.75Z", "key": "8008da85965fced5a693a9cc8353c3bc0f36ac0c" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h10.5v10.5H12c-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008C3.329 17.19 2.25 14.698 2.25 12v-.75Zm1.533 1.5c.175 2.002 1.045 3.813 2.34 5.112 1.4 1.314 3.15 2.18 5.127 2.355V12.75H3.783Z", "key": "61ce9bce4306f442ba2b83dbe1ab7f0a56518937" }]]);
const Circle15 = createMeisterIcons("circle15", [["path", { "fill": "currentColor", "d": "M3.75 12a8.25 8.25 0 1 1 15.323 4.25H4.927A8.212 8.212 0 0 1 3.75 12Zm.218 5.528A9.74 9.74 0 0 0 12 21.75c5.385 0 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25 2.25 6.615 2.25 12c0 1.95.572 3.765 1.557 5.288a.75.75 0 0 0 .16.24Zm2.116.222h11.832A8.226 8.226 0 0 1 12 20.25a8.226 8.226 0 0 1-5.916-2.5Z", "key": "670f9fb77c7d8ce08bf56ab6c1e0c3b2f112c769" }]]);
const Circle15B = createMeisterIcons("circle15-b", [["path", { "fill": "currentColor", "d": "M3.9 16H20c-.4.9-1 1.7-1.7 2.4-1.6 1.6-3.9 2.6-6.4 2.6-2.5 0-4.7-1-6.4-2.6-.6-.8-1.2-1.6-1.6-2.4Z", "key": "94bb69bef5c3b813db7e2257cd7ced46cdb52853" }], ["path", { "fill": "currentColor", "d": "M2.687 15.25h18.467l-.469 1.055c-.445 1.003-1.106 1.877-1.855 2.625-1.74 1.741-4.231 2.82-6.93 2.82-2.71 0-5.09-1.087-6.914-2.804l-.047-.044-.062-.083c-.583-.778-1.217-1.623-1.648-2.484l-.542-1.085Zm2.539 1.5c.254.37.537.75.835 1.147C7.63 19.355 9.633 20.25 11.9 20.25c2.301 0 4.41-.921 5.87-2.38.351-.352.67-.725.945-1.12H5.225Z", "key": "b58de7c7039eb99237029b036d54002676e04c12" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 1.136.214 2.26.63 3.25h15.24c.416-.99.63-2.114.63-3.25 0-2.297-.918-4.403-2.372-5.862C16.303 4.66 14.285 3.75 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.008.008.008.008c1.741 1.74 2.82 4.23 2.82 6.93 0 1.502-.321 3.02-.98 4.335l-.206.415H3.436l-.207-.415C2.571 15.02 2.25 13.502 2.25 12Z", "key": "d959a94b7c268013f48a94d54d9895e7d2d174c5" }]]);
const Circle15VarB = createMeisterIcons("circle15-var-b", [["path", { "fill": "currentColor", "d": "M2.687 15.25h18.467l-.469 1.055c-.445 1.003-1.106 1.877-1.855 2.625-1.74 1.741-4.231 2.82-6.93 2.82-2.71 0-5.09-1.087-6.914-2.804l-.047-.044-.062-.083c-.583-.778-1.217-1.623-1.648-2.484l-.542-1.085Zm2.539 1.5c.254.37.537.75.835 1.147C7.63 19.355 9.633 20.25 11.9 20.25c2.301 0 4.41-.921 5.87-2.38.351-.352.67-.725.945-1.12H5.225Z", "key": "797b4e65d9afa32093921079f07bc0376be46e00" }], ["path", { "fill": "currentColor", "d": "M12 3c2.5 0 4.7 1 6.4 2.6C20 7.2 21 9.5 21 12c0 1.4-.3 2.8-.9 4H3.9c-.6-1.2-.9-2.6-.9-4 0-5 4-9 9-9Z", "key": "c2d7a87524e3d8d046bc7b5e3c99567b665ed622" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 1.136.214 2.26.63 3.25h15.24c.416-.99.63-2.114.63-3.25 0-2.297-.918-4.403-2.372-5.862C16.303 4.66 14.285 3.75 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.008.008.008.008c1.741 1.74 2.82 4.23 2.82 6.93 0 1.502-.321 3.02-.98 4.335l-.206.415H3.436l-.207-.415C2.571 15.02 2.25 13.502 2.25 12Z", "key": "72c43db732082f2adfd00d577797e02a13ceb397" }]]);
const Circle1B = createMeisterIcons("circle1-b", [["path", { "fill": "currentColor", "d": "M20.05 8H3.95c.4-.9 1-1.7 1.7-2.4C7.25 4 9.55 3 12.05 3c2.5 0 4.7 1 6.4 2.6.6.7 1.2 1.5 1.6 2.4Z", "key": "8e280a26b25fac0eb7db6256bd8761459560f1ad" }], ["path", { "fill": "currentColor", "d": "M12.05 3.75c-2.302 0-4.411.921-5.87 2.38a8.291 8.291 0 0 0-.946 1.12h13.54a12.22 12.22 0 0 0-.868-1.131c-1.572-1.467-3.582-2.369-5.857-2.369ZM5.118 5.07c1.74-1.741 4.232-2.82 6.93-2.82 2.711 0 5.09 1.087 6.914 2.804l.03.027.026.03c.618.722 1.272 1.587 1.716 2.584l.468 1.055H2.795l.469-1.055C3.709 6.693 4.37 5.818 5.119 5.07Z", "key": "9c534321153804b1e0d506ceb2577cdf3c53ad86" }], ["path", { "fill": "currentColor", "d": "M3.486 7.25h17.027l.207.415c.657 1.313.978 2.827.98 4.327.103 5.326-4.342 9.758-9.65 9.758-2.712 0-5.091-1.087-6.915-2.804l-.008-.008-.008-.008c-1.741-1.74-2.82-4.232-2.82-6.93 0-1.502.321-3.02.98-4.335l.207-.415Zm.943 1.5c-.416.99-.63 2.114-.63 3.25 0 2.297.918 4.403 2.372 5.862 1.575 1.478 3.593 2.388 5.878 2.388 4.489 0 8.242-3.764 8.15-8.235V12c0-1.136-.214-2.26-.63-3.25H4.429Z", "key": "ce08b81e885f7219d328486942d39618310a3178" }]]);
const Circle1VarB = createMeisterIcons("circle1-var-b", [["path", { "fill": "currentColor", "d": "M12.05 3.75c-2.302 0-4.411.921-5.87 2.38a8.291 8.291 0 0 0-.946 1.12h13.54a12.22 12.22 0 0 0-.868-1.131c-1.572-1.467-3.582-2.369-5.857-2.369ZM5.118 5.07c1.74-1.741 4.232-2.82 6.93-2.82 2.711 0 5.09 1.087 6.914 2.804l.03.027.026.03c.618.722 1.272 1.587 1.716 2.584l.468 1.055H2.795l.469-1.055C3.709 6.693 4.37 5.818 5.119 5.07Z", "key": "a08850076f46e02d1f8a469a4802543c6e6b9957" }], ["path", { "fill": "currentColor", "d": "M12.05 21c-2.5 0-4.7-1-6.4-2.6-1.6-1.6-2.6-3.9-2.6-6.4 0-1.4.3-2.8.9-4h16.1c.6 1.2.9 2.6.9 4 .1 4.9-4 9-8.9 9Z", "key": "3cbf2f3ba397480441d0cd7dda5374876f97e8b3" }], ["path", { "fill": "currentColor", "d": "M3.486 7.25h17.027l.207.415c.657 1.313.978 2.827.98 4.327.103 5.326-4.342 9.758-9.65 9.758-2.712 0-5.091-1.087-6.915-2.804l-.008-.008-.008-.008c-1.741-1.74-2.82-4.232-2.82-6.93 0-1.502.321-3.02.98-4.335l.207-.415Zm.943 1.5c-.416.99-.63 2.114-.63 3.25 0 2.297.918 4.403 2.372 5.862 1.575 1.478 3.593 2.388 5.878 2.388 4.489 0 8.242-3.764 8.15-8.235V12c0-1.136-.214-2.26-.63-3.25H4.429Z", "key": "4e0adae26f3e216e39b78cd5ada0d8aa87a80fb7" }]]);
const Circle2 = createMeisterIcons("circle2", [["path", { "fill": "currentColor", "d": "M7.25 5.237A8.216 8.216 0 0 0 3.75 12a8.216 8.216 0 0 0 3.5 6.763V5.237Zm1.5-.832v15.19a8.301 8.301 0 0 0 3.25.655 8.043 8.043 0 0 0 3.25-.688V4.405A8.302 8.302 0 0 0 12 3.75a8.301 8.301 0 0 0-3.25.655ZM20.25 12c0 2.731-1.396 5.195-3.5 6.705V5.237A8.216 8.216 0 0 1 20.25 12Zm-18 0A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Z", "key": "fec715539cbf4631a0888db3c21477b2600c2de0" }]]);
const Circle2B = createMeisterIcons("circle2-b", [["path", { "fill": "currentColor", "d": "M8 3.95v16.1c-3-1.5-5-4.5-5-8.1 0-2.5 1-4.7 2.6-6.4.7-.6 1.5-1.2 2.4-1.6Z", "key": "f4d22c1784d5b69a8f4a0a2a67f8d77bf49d5e17" }], ["path", { "fill": "currentColor", "d": "M8.75 2.796v18.468l-1.085-.543C4.42 19.099 2.25 15.845 2.25 11.95c0-2.71 1.087-5.09 2.804-6.914l.027-.03.03-.025c.722-.619 1.587-1.273 2.584-1.716l1.055-.469ZM6.119 6.093C4.652 7.665 3.75 9.675 3.75 11.95c0 2.85 1.36 5.283 3.5 6.783V5.225c-.394.264-.77.56-1.131.868Z", "key": "ee72269b40e54af8eed0af86d687733e3d668a61" }], ["path", { "fill": "currentColor", "d": "M8.75 4.43v15.14c.99.416 2.114.63 3.25.63 1.136 0 2.26-.213 3.25-.63V4.43c-.99-.416-2.114-.63-3.25-.63-1.136 0-2.26.214-3.25.63ZM7.665 3.28C8.98 2.62 10.498 2.3 12 2.3c1.502 0 3.02.321 4.335.98l.415.206v17.028l-.415.207c-1.315.658-2.833.979-4.335.979-1.502 0-3.02-.321-4.335-.98l-.415-.206V3.486l.415-.207Z", "key": "45a879e62ab3c477197861d6a040e693934b68dd" }], ["path", { "fill": "currentColor", "d": "M21 12.05c0 2.5-1 4.7-2.6 6.4-.7.7-1.5 1.3-2.4 1.7V3.95c.9.4 1.7 1 2.4 1.7 1.5 1.6 2.6 3.9 2.6 6.4Z", "key": "940fd1989d8ede5581704bf288644a0efd208ada" }], ["path", { "fill": "currentColor", "d": "m15.25 2.796 1.055.469c1.003.445 1.877 1.106 2.625 1.855l.009.008.008.01c1.611 1.717 2.803 4.195 2.803 6.912 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-.748.75-1.622 1.41-2.625 1.855l-1.055.47V2.795Zm1.5 2.439v13.63a8.29 8.29 0 0 0 1.112-.937c1.478-1.575 2.388-3.593 2.388-5.878 0-2.278-1.004-4.397-2.389-5.878a8.298 8.298 0 0 0-1.111-.937Z", "key": "1244c0ab663d6c5aa0eb499ba5e375f6845600af" }]]);
const Circle2VarB = createMeisterIcons("circle2-var-b", [["path", { "fill": "currentColor", "d": "m15.25 2.796 1.055.469c1.003.445 1.877 1.106 2.625 1.855l.009.008.008.01c1.611 1.717 2.803 4.195 2.803 6.912 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-.748.75-1.622 1.41-2.625 1.855l-1.055.47V2.795Zm1.5 2.439v13.63a8.29 8.29 0 0 0 1.112-.937c1.478-1.575 2.388-3.593 2.388-5.878 0-2.278-1.004-4.397-2.389-5.878a8.298 8.298 0 0 0-1.111-.937Z", "key": "a4ba42ca38940db8ae559c7480a8617751801a53" }], ["path", { "fill": "currentColor", "d": "M16 3.95v16.1c-1.2.6-2.6.9-4 .9s-2.8-.3-4-.9V3.95c1.2-.6 2.6-.9 4-.9s2.8.3 4 .9Z", "key": "8077e1ea45ac7b08100d23e08de23115ee12d801" }], ["path", { "fill": "currentColor", "d": "M8.75 4.43v15.14c.99.416 2.114.63 3.25.63 1.136 0 2.26-.213 3.25-.63V4.43c-.99-.416-2.114-.63-3.25-.63-1.136 0-2.26.214-3.25.63ZM7.665 3.28C8.98 2.62 10.498 2.3 12 2.3c1.502 0 3.02.321 4.335.98l.415.206v17.028l-.415.207c-1.315.658-2.833.979-4.335.979-1.502 0-3.02-.321-4.335-.98l-.415-.206V3.486l.415-.207Z", "key": "f85e36bb7e884f63b8f34c7bbf7b0cf5a172e8b7" }], ["path", { "fill": "currentColor", "d": "M8.75 2.796v18.468l-1.085-.543C4.42 19.099 2.25 15.845 2.25 11.95c0-2.71 1.087-5.09 2.804-6.914l.027-.03.03-.025c.722-.619 1.587-1.273 2.584-1.716l1.055-.469ZM6.119 6.093C4.652 7.665 3.75 9.675 3.75 11.95c0 2.85 1.36 5.283 3.5 6.783V5.225c-.394.264-.77.56-1.131.868Z", "key": "f202598e872ae9172bd3624fb9d87640e62a5ace" }]]);
const Circle3 = createMeisterIcons("circle3", [["path", { "fill": "currentColor", "d": "M3.75 12A8.213 8.213 0 0 1 12 3.75c1.157 0 2.255.233 3.25.655v15.157a8.043 8.043 0 0 1-3.25.688A8.213 8.213 0 0 1 3.75 12Zm13 6.705c2.104-1.51 3.5-3.974 3.5-6.705a8.216 8.216 0 0 0-3.5-6.763v13.468ZM12 2.25A9.713 9.713 0 0 0 2.25 12 9.713 9.713 0 0 0 12 21.75c5.314 0 9.75-4.436 9.75-9.75A9.713 9.713 0 0 0 12 2.25Z", "key": "93799196b3d3e9038ba308042e15430233e7dae7" }]]);
const Circle3B = createMeisterIcons("circle3-b", [["path", { "fill": "currentColor", "d": "M16 20.05V3.95c.9.4 1.7 1 2.4 1.7 1.6 1.6 2.6 3.9 2.6 6.4 0 2.5-1 4.7-2.6 6.4-.8.6-1.6 1.2-2.4 1.6Z", "key": "f46a71b272c25b0ec73fabfa0ac26e67ecda6f02" }], ["path", { "fill": "currentColor", "d": "m15.25 2.795 1.055.469c1.003.445 1.877 1.106 2.625 1.855 1.741 1.74 2.82 4.232 2.82 6.93 0 2.711-1.087 5.09-2.804 6.914l-.044.047-.083.062c-.778.584-1.623 1.218-2.484 1.648l-1.085.543V2.795Zm1.5 2.439v13.49c.37-.254.75-.538 1.147-.835 1.458-1.57 2.353-3.573 2.353-5.84 0-2.301-.921-4.41-2.38-5.87a8.307 8.307 0 0 0-1.12-.945Z", "key": "99049edc7e4cf5f4b1d63ac773599c3fa0989027" }], ["path", { "fill": "currentColor", "d": "M6.138 6.171C4.66 7.746 3.75 9.764 3.75 12.05c0 4.494 3.67 8.242 8.235 8.15H12c1.136 0 2.26-.213 3.25-.63V4.429c-.99-.416-2.114-.63-3.25-.63-2.297 0-4.403.918-5.862 2.372ZM5.07 5.12C6.81 3.378 9.3 2.299 12 2.299c1.502 0 3.02.321 4.335.98l.415.207v17.027l-.415.207c-1.313.657-2.827.978-4.328.98-5.43.104-9.757-4.348-9.757-9.65 0-2.712 1.087-5.09 2.804-6.915l.008-.008.008-.008Z", "key": "b47fe148de789768ac6ad1892323402feeb6536d" }]]);
const Circle3VarB = createMeisterIcons("circle3-var-b", [["path", { "fill": "currentColor", "d": "m15.25 2.795 1.055.469c1.003.445 1.877 1.106 2.625 1.855 1.741 1.74 2.82 4.232 2.82 6.93 0 2.711-1.087 5.09-2.804 6.914l-.044.047-.083.062c-.778.584-1.623 1.218-2.484 1.648l-1.085.543V2.795Zm1.5 2.439v13.49c.37-.254.75-.538 1.147-.835 1.458-1.57 2.353-3.573 2.353-5.84 0-2.301-.921-4.41-2.38-5.87a8.307 8.307 0 0 0-1.12-.945Z", "key": "b621abd6726873a36a8c3017b575f9c2be97a61a" }], ["path", { "fill": "currentColor", "d": "M3 12.05c0-2.5 1-4.7 2.6-6.4 1.6-1.6 3.9-2.6 6.4-2.6 1.4 0 2.8.3 4 .9v16.1c-1.2.6-2.6.9-4 .9-5 .1-9-4-9-8.9Z", "key": "b7ddec0fb10cdc00692cebe703bbe68363fa46f7" }], ["path", { "fill": "currentColor", "d": "M6.138 6.171C4.66 7.746 3.75 9.764 3.75 12.05c0 4.494 3.67 8.242 8.235 8.15H12c1.136 0 2.26-.213 3.25-.63V4.429c-.99-.416-2.114-.63-3.25-.63-2.297 0-4.403.918-5.862 2.372ZM5.07 5.12C6.81 3.378 9.3 2.299 12 2.299c1.502 0 3.02.321 4.335.98l.415.207v17.027l-.415.207c-1.313.657-2.827.978-4.328.98-5.43.104-9.757-4.348-9.757-9.65 0-2.712 1.087-5.09 2.804-6.915l.008-.008.008-.008Z", "key": "55ffcddf7dc42efe17d41f903a44d9975eb353be" }]]);
const Circle4 = createMeisterIcons("circle4", [["path", { "fill": "currentColor", "d": "M7.35 18.832a8.215 8.215 0 0 1-3.6-6.824 8.472 8.472 0 0 1 3.6-6.791v13.615Zm1.5.804a8.307 8.307 0 0 0 3.15.614A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75a8.07 8.07 0 0 0-3.15.637v15.25ZM12 2.25c-5.322 0-9.642 4.34-9.75 9.735V12A9.713 9.713 0 0 0 12 21.75 9.713 9.713 0 0 0 21.75 12 9.713 9.713 0 0 0 12 2.25Z", "key": "9b4268cb8ffe55c8897cd357dae02c4c8a2473d8" }]]);
const Circle4B = createMeisterIcons("circle4-b", [["path", { "fill": "currentColor", "d": "M8 3.9V20c-.9-.4-1.7-1-2.4-1.7C4 16.7 3 14.4 3 11.9c0-2.5 1-4.7 2.6-6.4.7-.6 1.5-1.2 2.4-1.6Z", "key": "79b297bacfe9fbba39ab3f094dcd844bb6ae8c85" }], ["path", { "fill": "currentColor", "d": "M8.75 2.746v18.408l-1.055-.469C6.693 20.24 5.818 19.58 5.07 18.83c-1.741-1.74-2.82-4.23-2.82-6.93 0-2.71 1.087-5.09 2.804-6.914l.027-.03.03-.025c.722-.619 1.587-1.273 2.584-1.716l1.055-.47ZM6.119 6.043C4.652 7.615 3.75 9.625 3.75 11.9c0 2.301.921 4.41 2.38 5.87.352.351.725.67 1.12.945V5.175c-.394.264-.77.56-1.131.868Z", "key": "3cce3f7ad9579c348fc22504baa096b4f06af831" }], ["path", { "fill": "currentColor", "d": "M8.75 4.38v15.24c.99.416 2.114.63 3.25.63 2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12c0-4.58-3.759-8.25-8.25-8.25-1.136 0-2.26.214-3.25.63ZM7.665 3.23c1.315-.66 2.833-.98 4.335-.98 5.309 0 9.75 4.33 9.75 9.75 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82-1.502 0-3.02-.321-4.335-.98l-.415-.206V3.436l.415-.207Z", "key": "de0654fae5a9231bd9134ab1c932e61e6ff5203f" }]]);
const Circle4VarB = createMeisterIcons("circle4-var-b", [["path", { "fill": "currentColor", "d": "M8.75 2.746v18.408l-1.055-.469C6.693 20.24 5.818 19.58 5.07 18.83c-1.741-1.74-2.82-4.23-2.82-6.93 0-2.71 1.087-5.09 2.804-6.914l.027-.03.03-.025c.722-.619 1.587-1.273 2.584-1.716l1.055-.47ZM6.119 6.043C4.652 7.615 3.75 9.625 3.75 11.9c0 2.301.921 4.41 2.38 5.87.352.351.725.67 1.12.945V5.175c-.394.264-.77.56-1.131.868Z", "key": "55b7f5e7f9235aec88f9aa9427c8a3901a10d425" }], ["path", { "fill": "currentColor", "d": "M21 12c0 2.5-1 4.7-2.6 6.4C16.8 20 14.5 21 12 21c-1.4 0-2.8-.3-4-.9V3.9c1.2-.6 2.6-.9 4-.9 4.9 0 9 4 9 9Z", "key": "0f544a621df5204a32150b5ab55ddbebe7b93437" }], ["path", { "fill": "currentColor", "d": "M8.75 4.38v15.24c.99.416 2.114.63 3.25.63 2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12c0-4.58-3.759-8.25-8.25-8.25-1.136 0-2.26.214-3.25.63ZM7.665 3.23c1.315-.66 2.833-.98 4.335-.98 5.309 0 9.75 4.33 9.75 9.75 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82-1.502 0-3.02-.321-4.335-.98l-.415-.206V3.436l.415-.207Z", "key": "cfb814cfa6d0e5723993b2022f9c9d17f03cf358" }]]);
const Circle5 = createMeisterIcons("circle5", [["path", { "fill": "currentColor", "d": "M3.75 12.008A8.213 8.213 0 0 0 12 20.25a8.296 8.296 0 0 0 3.35-.698V9.65H4.128a8.616 8.616 0 0 0-.378 2.358Zm13.1-2.358v9.042A8.216 8.216 0 0 0 20.25 12a8.36 8.36 0 0 0-.334-2.35H16.85ZM4.752 8.15h14.559A8.212 8.212 0 0 0 12 3.75c-3.115 0-5.844 1.771-7.248 4.4ZM2.25 11.985C2.358 6.591 6.678 2.25 12 2.25A9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12v-.015Z", "key": "47fe8e377671683ab288436cc01247d842712db0" }]]);
const Circle5B = createMeisterIcons("circle5-b", [["path", { "fill": "currentColor", "d": "M20.4 8.9H3.5c.4-1.3 1.2-2.4 2.1-3.3C7.2 4 9.5 3 12 3c3.9 0 7.2 2.4 8.4 5.9Z", "key": "34e32e49d91f6e2e6b2157ed8e466a80d1641e4a" }], ["path", { "fill": "currentColor", "d": "M12 3.75c-2.301 0-4.41.921-5.87 2.38-.597.598-1.13 1.272-1.515 2.02h14.658C17.942 5.503 15.2 3.75 12 3.75ZM5.07 5.07C6.81 3.329 9.302 2.25 12 2.25c4.217 0 7.804 2.6 9.11 6.407l.34.993H2.485l.298-.97c.448-1.454 1.332-2.656 2.287-3.61Z", "key": "ee4074a04e996019b43a18553502a63cacec3c17" }], ["path", { "fill": "currentColor", "d": "M2.96 8.25h17.927l.198.445c.448 1.007.665 2.112.665 3.305 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-.745.745-1.613 1.403-2.61 1.848-1.312.653-2.823.972-4.32.972-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008C3.329 17.19 2.25 14.698 2.25 12c0-1.193.217-2.273.538-3.237l.171-.513Zm1.096 1.5A8.523 8.523 0 0 0 3.75 12c0 2.297.918 4.403 2.372 5.862C7.697 19.34 9.715 20.25 12 20.25c1.297 0 2.58-.279 3.665-.82l.015-.008.015-.007c.794-.353 1.517-.89 2.167-1.537C19.34 16.303 20.25 14.285 20.25 12c0-.823-.122-1.571-.36-2.25H4.057Z", "key": "0799372eb2748a893d002b533ed1c4a1e2b5e21b" }], ["path", { "fill": "currentColor", "d": "M16.75 8.9V20h-1.5V8.9h1.5Z", "key": "93a8027a96698e249b68f563e43cd7083d208e72" }]]);
const Circle6 = createMeisterIcons("circle6", [["path", { "fill": "currentColor", "d": "M12 20.25a8.307 8.307 0 0 1-3.15-.614V15.65h10.562A8.212 8.212 0 0 1 12 20.25Zm7.972-6.1H8.85v-4.5h11.066A8.36 8.36 0 0 1 20.25 12c0 .745-.097 1.465-.278 2.15Zm1.128 1.379c.42-1.093.65-2.282.65-3.529A9.713 9.713 0 0 0 12 2.25c-5.322 0-9.642 4.34-9.75 9.735V12A9.713 9.713 0 0 0 12 21.75a9.71 9.71 0 0 0 9.053-6.1h.047v-.121ZM7.35 9.649v9.183a8.215 8.215 0 0 1-3.6-6.824 8.616 8.616 0 0 1 .378-2.358H7.35Zm11.96-1.5H4.753C6.156 5.522 8.885 3.75 12 3.75a8.212 8.212 0 0 1 7.31 4.4Z", "key": "e02f57dfca7332300ed5895efc3c4ae817a7e8c5" }]]);
const Circle6B = createMeisterIcons("circle6-b", [["path", { "fill": "currentColor", "d": "M20.4 8.9H3.5c.4-1.3 1.2-2.4 2.1-3.3C7.2 4 9.5 3 12 3c3.9 0 7.2 2.4 8.4 5.9Z", "key": "e54315b3ba88f7858cf179ed4ef1d82eeca6d767" }], ["path", { "fill": "currentColor", "d": "M12 3.75c-2.302 0-4.41.921-5.87 2.38-.597.598-1.13 1.272-1.515 2.02h14.658c-1.331-2.647-4.075-4.4-7.273-4.4ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c4.216 0 7.804 2.6 9.11 6.407l.34.993H2.485l.298-.97C3.23 7.225 4.115 6.023 5.07 5.07Z", "key": "d1fa76815a56317a2e1456ab863639554896c402" }], ["path", { "fill": "currentColor", "d": "M2.96 8.25h17.927l.198.445c.448 1.007.665 2.112.665 3.305 0 1.098-.22 2.175-.532 3.216l-.008.027-.01.026a11.533 11.533 0 0 1-2.242 3.633l-.014.014-.014.014c-1.74 1.741-4.232 2.82-6.93 2.82-1.497 0-3.008-.319-4.32-.972-.997-.445-1.865-1.103-2.61-1.848-1.741-1.74-2.82-4.232-2.82-6.93 0-1.193.217-2.273.538-3.237l.171-.513Zm1.096 1.5A8.523 8.523 0 0 0 3.75 12c0 2.302.921 4.41 2.38 5.87.652.65 1.377 1.19 2.175 1.545l.015.007.015.007c1.085.542 2.367.821 3.665.821 2.294 0 4.397-.915 5.856-2.366a10.028 10.028 0 0 0 1.934-3.127c.283-.95.46-1.864.46-2.757 0-.823-.122-1.571-.36-2.25H4.057Z", "key": "e40d1c60ac02677bb259843a9a48abf7f8808445" }], ["path", { "fill": "currentColor", "d": "M7.25 8.9h1.5V20h-1.5V8.9Z", "key": "dd0b1339e8dec7ad72a801f3d934f29d7f762430" }], ["path", { "fill": "currentColor", "d": "M21 15.65H8v-1.5h13v1.5Z", "key": "ca21f3a7436c262c1a8e91f7012cf230aa8ec775" }]]);
const Circle7 = createMeisterIcons("circle7", [["path", { "fill": "currentColor", "d": "M12 3.75a8.212 8.212 0 0 0-7.31 4.4h14.62A8.212 8.212 0 0 0 12 3.75ZM3.75 12c0-.818.117-1.606.334-2.35h7.166v10.567A8.209 8.209 0 0 1 3.75 12Zm9 8.217A8.209 8.209 0 0 0 20.25 12a8.36 8.36 0 0 0-.334-2.35H12.75v10.567ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12Z", "key": "94c7454b38eccebc2591ffef7cba40baca56627f" }]]);
const Circle7B = createMeisterIcons("circle7-b", [["path", { "fill": "currentColor", "d": "M20.4 8.9H3.5c.4-1.3 1.2-2.4 2.1-3.3C7.2 4 9.5 3 12 3c3.9 0 7.2 2.4 8.4 5.9Z", "key": "097dc6e782ad1bc841b958ea8cf8b39821fe8b10" }], ["path", { "fill": "currentColor", "d": "M12 3.75c-2.302 0-4.41.921-5.87 2.38-.597.598-1.13 1.272-1.515 2.02h14.658c-1.331-2.647-4.075-4.4-7.273-4.4ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c4.216 0 7.804 2.6 9.11 6.407l.34.993H2.485l.298-.97C3.23 7.225 4.115 6.023 5.07 5.07Z", "key": "d04852073a4c0c93d63bcc63a468c4bb59e3d394" }], ["path", { "fill": "currentColor", "d": "M2.96 8.25h17.927l.198.445c.448 1.007.665 2.112.665 3.305 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008C3.329 17.19 2.25 14.698 2.25 12c0-1.193.217-2.273.538-3.237l.171-.513Zm1.096 1.5A8.523 8.523 0 0 0 3.75 12c0 2.297.918 4.403 2.372 5.862C7.697 19.34 9.715 20.25 12 20.25c2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12c0-.823-.122-1.571-.36-2.25H4.057Z", "key": "a199354b470691709f32b5dbcb5cd3b92726f335" }], ["path", { "fill": "currentColor", "d": "M12.75 8.9V21h-1.5V8.9h1.5Z", "key": "dceb477dc8e748cb43cd5b1679581015679776a8" }]]);
const Circle8 = createMeisterIcons("circle8", [["path", { "fill": "currentColor", "d": "M4.69 8.15A8.212 8.212 0 0 1 12 3.75a8.212 8.212 0 0 1 7.31 4.4H4.69Zm-.606 1.5A8.358 8.358 0 0 0 3.75 12a8.216 8.216 0 0 0 3.5 6.763V9.65H4.084ZM12 20.25a8.301 8.301 0 0 1-3.25-.655V9.65h6.5v9.945a8.301 8.301 0 0 1-3.25.655Zm4.75-1.487A8.216 8.216 0 0 0 20.25 12a8.36 8.36 0 0 0-.334-2.35H16.75v9.113ZM12 2.25A9.713 9.713 0 0 0 2.25 12 9.713 9.713 0 0 0 12 21.75 9.713 9.713 0 0 0 21.75 12 9.713 9.713 0 0 0 12 2.25Z", "key": "10c12f82f9c09a8bc2fe0dfde09935a8dcf3f18c" }]]);
const Circle8B = createMeisterIcons("circle8-b", [["path", { "fill": "currentColor", "d": "M20.4 8.9H3.5c.4-1.3 1.2-2.4 2.1-3.3C7.2 4 9.5 3 12 3c3.9 0 7.2 2.4 8.4 5.9Z", "key": "32ce9d626c36836d81546b3a39857f13180c282f" }], ["path", { "fill": "currentColor", "d": "M12 3.75c-2.301 0-4.41.921-5.87 2.38-.597.598-1.13 1.272-1.515 2.02h14.658C17.942 5.503 15.2 3.75 12 3.75ZM5.07 5.07C6.81 3.329 9.302 2.25 12 2.25c4.217 0 7.804 2.6 9.11 6.407l.34.993H2.485l.298-.97c.448-1.454 1.332-2.656 2.287-3.61Z", "key": "ebe9815f8dc0e3dcb4106d4af8a7dfa939e41284" }], ["path", { "fill": "currentColor", "d": "M2.96 8.25h17.927l.198.445c.448 1.007.665 2.112.665 3.305 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-.745.745-1.613 1.403-2.61 1.848-1.312.653-2.823.972-4.32.972-1.497 0-3.008-.319-4.32-.972-.997-.445-1.865-1.103-2.61-1.848-1.741-1.74-2.82-4.232-2.82-6.93 0-1.193.217-2.273.538-3.237l.171-.513Zm1.096 1.5A8.523 8.523 0 0 0 3.75 12c0 2.302.921 4.41 2.38 5.87.652.65 1.377 1.19 2.175 1.545l.015.007.015.007c1.085.542 2.367.821 3.665.821 1.297 0 2.58-.279 3.665-.82l.015-.008.015-.007c.794-.353 1.517-.89 2.167-1.537C19.34 16.303 20.25 14.285 20.25 12c0-.823-.122-1.571-.36-2.25H4.057Z", "key": "5e7a7f50cbd11eb560318f5b12889e56923d23ac" }], ["path", { "fill": "currentColor", "d": "M8.75 8.9V20h-1.5V8.9h1.5Zm8 0V20h-1.5V8.9h1.5Z", "key": "67e78640dc9ef9337b3c6d25f74ded810dc2e189" }]]);
const Circle9 = createMeisterIcons("circle9", [["path", { "fill": "currentColor", "d": "M4.69 8.15A8.212 8.212 0 0 1 12 3.75a8.212 8.212 0 0 1 7.31 4.4H4.69Zm-.606 1.5A8.358 8.358 0 0 0 3.75 12c0 .745.097 1.465.278 2.15h7.222v-4.5H4.084Zm7.166 6H4.588a8.203 8.203 0 0 0 6.662 4.567V15.65Zm1.5.009 6.619.079a8.203 8.203 0 0 1-6.619 4.479v-4.558Zm7.196-1.415-7.196-.085v-4.51h7.166A8.36 8.36 0 0 1 20.25 12c0 .78-.106 1.532-.304 2.244ZM12 2.25A9.713 9.713 0 0 0 2.25 12 9.713 9.713 0 0 0 12 21.75 9.713 9.713 0 0 0 21.75 12 9.713 9.713 0 0 0 12 2.25Z", "key": "c491a1916aa7589220aa9dc5c381580e1ab463c1" }]]);
const Circle9B = createMeisterIcons("circle9-b", [["path", { "fill": "currentColor", "d": "M20.4 8.9H3.5c.4-1.3 1.2-2.4 2.1-3.3C7.2 4 9.5 3 12 3c3.9 0 7.2 2.4 8.4 5.9Z", "key": "04f05db40aad6d3b6ffc57a912a9e2ccf88e123b" }], ["path", { "fill": "currentColor", "d": "M12 3.75c-2.302 0-4.41.921-5.87 2.38-.597.598-1.13 1.272-1.515 2.02h14.658c-1.331-2.647-4.075-4.4-7.273-4.4ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c4.216 0 7.804 2.6 9.11 6.407l.34.993H2.485l.298-.97C3.23 7.225 4.115 6.023 5.07 5.07Z", "key": "f453e1e1caf886a65e296804cdeb59b7344fbb91" }], ["path", { "fill": "currentColor", "d": "M2.96 8.25h17.927l.198.445c.448 1.007.665 2.112.665 3.305 0 1.086-.215 2.262-.536 3.229-.447 1.449-1.33 2.642-2.256 3.673l-.014.014-.014.014c-1.74 1.741-4.232 2.82-6.93 2.82-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008c-.97-.969-1.841-2.268-2.284-3.701-.32-.962-.536-2.04-.536-3.229 0-1.193.217-2.273.538-3.237l.171-.513Zm1.096 1.5A8.523 8.523 0 0 0 3.75 12a8.67 8.67 0 0 0 .462 2.763l.002.008.003.008c.357 1.16 1.08 2.255 1.905 3.083C7.697 19.34 9.715 20.25 12 20.25c2.294 0 4.397-.916 5.856-2.367.865-.963 1.576-1.962 1.927-3.104l.003-.008.002-.008A9.18 9.18 0 0 0 20.25 12c0-.823-.122-1.571-.36-2.25H4.057Z", "key": "c9eaab020d1bfe295f79e9ed90f19acb5fa94ec1" }], ["path", { "fill": "currentColor", "d": "M12.75 8.9V21h-1.5V8.9h1.5Z", "key": "47fc5bce111aa023e82fcc9c50b5feda59a93f47" }], ["path", { "fill": "currentColor", "d": "M11.996 15.65H3.5v-1.5h8.509l8.4.1-.018 1.5-8.395-.1Z", "key": "be4b0268df225a704b3b7ed7f76cec8b45f57a7c" }]]);
const CircleB = createMeisterIcons("circle-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "1f05729f1e4f50691c9c94b455076ebeabd2add9" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "e2f5b50be72596ba0ce0b0472a4ac1d7eefa8324" }]]);
const CircleHeart = createMeisterIcons("circle-heart", [["path", { "fill": "currentColor", "d": "M14.84 9.698c-.486-.546-1.384-.593-2.01.032l-.037.038-.963.722-.76-.76a1.583 1.583 0 0 0-.478-.328c-.173-.074-.29-.078-.345-.067l-.073.015H10.1c-.441 0-.825.146-1.055.366a1.551 1.551 0 0 0 .002 2.07l2.734 2.735a.423.423 0 0 0 .207.054c.056 0 .083-.01.09-.014l2.492-2.491.269-.27c.294-.376.411-.708.411-1.1 0-.333-.142-.731-.38-.97l-.016-.015-.015-.017Zm1.106-1.012c-1.06-1.176-2.82-1.188-3.996-.183a3.047 3.047 0 0 0-.767-.48c-.331-.142-.735-.236-1.151-.172-.73.014-1.507.264-2.062.819l-.016.015-.015.017a3.052 3.052 0 0 0 0 4.096l.015.017 2.853 2.853.043.032c.34.255.75.375 1.138.375.38 0 .817-.119 1.142-.445l2.83-2.829.026-.032c.488-.61.764-1.271.764-2.069 0-.66-.253-1.453-.804-2.014Z", "key": "f58a3d2a49f1845d2b5131e525d4d7dbbd180fcf" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25c4.486 0 8.25-3.764 8.25-8.25A8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Z", "key": "1c59399badfbd3a57acc94f206e48aef2e202878" }]]);
const CircleTimes = createMeisterIcons("circle-times", [["path", { "fill": "currentColor", "d": "M5.66 6.72A8.217 8.217 0 0 0 3.75 12c0 1.983.7 3.802 1.865 5.224l5.274-5.274L5.66 6.72Zm1.06-1.06 5.23 5.23 5.275-5.275A8.216 8.216 0 0 0 12 3.75a8.217 8.217 0 0 0-5.28 1.91Zm5.23 7.35-5.284 5.284A8.217 8.217 0 0 0 12 20.25a8.217 8.217 0 0 0 5.28-1.91l-5.33-5.33Zm6.39 4.27-5.33-5.33 5.284-5.284A8.217 8.217 0 0 1 20.25 12a8.217 8.217 0 0 1-1.91 5.28ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "7a9f4e29d97b76731281d908c69b631e375823fd" }]]);
const ClockCircle = createMeisterIcons("clock-circle", [["path", { "fill": "currentColor", "d": "M3.75 12a8.25 8.25 0 1 1 16.5 0 8.25 8.25 0 0 1-16.5 0ZM12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM12.75 6a.75.75 0 0 0-1.5 0v5.2c0 .705.284 1.394.82 1.93l2.4 2.4a.75.75 0 1 0 1.06-1.06l-2.4-2.4a1.226 1.226 0 0 1-.38-.87V6Z", "key": "f3ee245f8ff0d927482488910a321995fc791fa1" }]]);
const ClockCircleB = createMeisterIcons("clock-circle-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "027f94fcae9d1a5d05e0ecb82eac658ec1a06c8e" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "549bbf09a1e671d5575566bb733bb967cf9cd44f" }], ["path", { "fill": "#fff", "d": "M12 5.25a.75.75 0 0 1 .75.75v5.2c0 .295.117.606.38.87l-.53.53.53-.53 2.4 2.4a.75.75 0 1 1-1.06 1.06l-2.4-2.4a2.724 2.724 0 0 1-.82-1.93V6a.75.75 0 0 1 .75-.75Z", "key": "00bc2222b90d13b9dd6fe7273165fb653dde9dd5" }]]);
const ClockSqaure = createMeisterIcons("clock-sqaure", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v6c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25V9ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9ZM12.75 7a.75.75 0 0 0-1.5 0v5.2c0 .705.284 1.394.82 1.93l2.4 2.4a.75.75 0 1 0 1.06-1.06l-2.4-2.4a1.226 1.226 0 0 1-.38-.87V7Z", "key": "b6e30255fc2cf60a1d18aee5327f4af9846d4660" }]]);
const ClockSqaureB = createMeisterIcons("clock-sqaure-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "9bc400c3f00e7aa1ecc191a760a55e23e4d7ce6e" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "b45576ab02ea3a2b920d6b1f05bfcecde34dc14a" }], ["path", { "fill": "#fff", "d": "M12 6.25a.75.75 0 0 1 .75.75v5.2c0 .295.117.606.38.87l2.4 2.4a.75.75 0 1 1-1.06 1.06l-2.4-2.4a2.724 2.724 0 0 1-.82-1.93V7a.75.75 0 0 1 .75-.75Z", "key": "33e69b94d964750b7e763a65414c7523ca1db9c4" }]]);
const Cloud = createMeisterIcons("cloud", [["path", { "fill": "currentColor", "d": "M7.75 10c0-2.386 1.864-4.25 4.25-4.25s4.25 1.864 4.25 4.25c0 .414.336.75.75.75A3.262 3.262 0 0 1 20.25 14c0 .915-.329 1.697-.944 2.236l-.019.016-.017.018c-.582.581-1.398.98-2.27.98H7A3.262 3.262 0 0 1 3.75 14c0-.915.329-1.697.944-2.236l.019-.016.017-.018c.582-.581 1.398-.98 2.27-.98a.75.75 0 0 0 .75-.75Zm-1.46-.692C6.624 6.429 9.02 4.25 12 4.25c2.978 0 5.374 2.177 5.71 5.053A4.765 4.765 0 0 1 21.75 14c0 1.277-.465 2.487-1.437 3.348-.818.81-1.994 1.402-3.313 1.402H7A4.762 4.762 0 0 1 2.25 14c0-1.277.465-2.487 1.437-3.348A4.846 4.846 0 0 1 6.29 9.308Z", "key": "2249b59f2340fa855f54999f78c004e36d4b7295" }]]);
const CloudB = createMeisterIcons("cloud-b", [["path", { "fill": "currentColor", "d": "M21 14.5c0 1.1-.5 2.1-1.2 2.8-.7.7-1.7 1.2-2.8 1.2H7c-2.2 0-4-1.8-4-4 0-1.1.5-2.1 1.2-2.8.7-.7 1.7-1.2 2.8-1.2 0-2.8 2.2-5 5-5s5 2.2 5 5c2.2 0 4 1.7 4 4Z", "key": "9fc09ccc3b6186e6cb418d94a77fcb752c4f3d0b" }], ["path", { "fill": "currentColor", "d": "M12 6.25c-2.386 0-4.25 1.864-4.25 4.25v.75H7c-.872 0-1.688.399-2.27.98-.581.582-.98 1.398-.98 2.27A3.262 3.262 0 0 0 7 17.75h10c.872 0 1.688-.399 2.27-.98.581-.582.98-1.398.98-2.27 0-1.873-1.452-3.25-3.25-3.25h-.75v-.75c0-2.386-1.864-4.25-4.25-4.25ZM6.29 9.808C6.624 6.929 9.02 4.75 12 4.75c2.977 0 5.372 2.176 5.71 5.051 2.271.33 4.04 2.225 4.04 4.699 0 1.328-.601 2.512-1.42 3.33-.818.819-2.002 1.42-3.33 1.42H7a4.762 4.762 0 0 1-4.75-4.75c0-1.328.601-2.512 1.42-3.33a4.848 4.848 0 0 1 2.62-1.362Z", "key": "36a480615e91019f4324a021c66e34a6ceea3369" }]]);
const CloudCircle = createMeisterIcons("cloud-circle", [["path", { "fill": "currentColor", "d": "M7.859 12.303c.272-.26.675-.453 1.141-.453a.75.75 0 0 0 0-1.5c-.917 0-1.703.393-2.23.92l-.03.029-.026.033c-.453.566-.864 1.329-.864 2.168 0 1.714 1.436 3.15 3.15 3.15h5.9c.917 0 1.703-.393 2.23-.92l.03-.03.026-.031c.453-.567.864-1.33.864-2.169 0-1.714-1.436-3.15-3.15-3.15a.75.75 0 0 0 0 1.5c.886 0 1.65.764 1.65 1.65 0 .351-.18.775-.509 1.197-.272.26-.675.453-1.141.453H9c-.886 0-1.65-.764-1.65-1.65 0-.351.18-.775.509-1.197Z", "key": "1e48cc8bd8077b6bab8a42ad594d04cad2b4791c" }], ["path", { "fill": "currentColor", "d": "M11.9 8.95c-1.186 0-2.15.964-2.15 2.15a.75.75 0 0 1-1.5 0 3.652 3.652 0 0 1 3.65-3.65 3.652 3.652 0 0 1 3.65 3.65.75.75 0 0 1-1.5 0c0-1.186-.964-2.15-2.15-2.15Z", "key": "1e28fa5287f6cd520f44f488ea6bb4ff20f94abf" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "3d9c4da99bdd8a839cda3c028906d17cc4919e04" }]]);
const CloudCircleB = createMeisterIcons("cloud-circle-b", [["path", { "fill": "currentColor", "d": "M14.95 11.15c1.3 0 2.4 1.1 2.4 2.4 0 .6-.3 1.2-.7 1.7-.4.4-1 .7-1.7.7h-5.9c-1.3 0-2.4-1.1-2.4-2.4 0-.6.3-1.2.7-1.7.4-.4 1-.7 1.7-.7", "key": "5b359b48049485e2c16902a3f8254ed2532ca3bf" }], ["path", { "fill": "currentColor", "d": "M7.909 12.353c.272-.26.675-.453 1.141-.453a.75.75 0 0 0 0-1.5c-.917 0-1.703.393-2.23.92l-.03.03-.026.032c-.453.566-.864 1.329-.864 2.168 0 1.714 1.436 3.15 3.15 3.15h5.9c.917 0 1.703-.393 2.23-.92l.03-.029.026-.032c.453-.567.864-1.33.864-2.169 0-1.714-1.436-3.15-3.15-3.15a.75.75 0 0 0 0 1.5c.886 0 1.65.764 1.65 1.65 0 .351-.18.775-.509 1.197-.272.26-.675.453-1.141.453h-5.9c-.886 0-1.65-.764-1.65-1.65 0-.351.18-.775.509-1.197Z", "key": "1ba6d76353fde919924a1d0331a69b87e99cd8c3" }], ["path", { "fill": "currentColor", "d": "M9.05 11.15c0-1.6 1.3-2.9 2.9-2.9 1.6 0 2.9 1.3 2.9 2.9", "key": "4258f61a4f38738a0b2ce0e8c4d086074c0d279a" }], ["path", { "fill": "currentColor", "d": "M11.95 9c-1.186 0-2.15.964-2.15 2.15a.75.75 0 0 1-1.5 0 3.652 3.652 0 0 1 3.65-3.65 3.652 3.652 0 0 1 3.65 3.65.75.75 0 0 1-1.5 0c0-1.186-.964-2.15-2.15-2.15Z", "key": "50d114412f589bf789c4e69598dbe3067c7aa838" }], ["path", { "fill": "currentColor", "d": "M12.05 3.8a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.3 12.05c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75-9.75-4.365-9.75-9.75Z", "key": "dd5594a92d216e5bcd39af015cf8a16dc1397f5b" }]]);
const CloudSun = createMeisterIcons("cloud-sun", [["path", { "fill": "currentColor", "d": "M11.3 7.45a3.731 3.731 0 0 0-3.75 3.75v.75H6.8c-.788 0-1.5.312-2.07.88-.569.57-.88 1.282-.88 2.07a2.835 2.835 0 0 0 2.85 2.85h9.1c.788 0 1.5-.312 2.07-.88.569-.57.88-1.282.88-2.07 0-1.572-1.25-2.85-2.95-2.85h-.75v-.75a3.731 3.731 0 0 0-3.75-3.75Zm-5.205 3.056A5.23 5.23 0 0 1 11.3 5.95a5.23 5.23 0 0 1 5.205 4.552c2.152.322 3.745 2.104 3.745 4.298 0 1.212-.488 2.3-1.32 3.13-.83.832-1.918 1.32-3.13 1.32H6.7a4.335 4.335 0 0 1-4.35-4.35c0-1.212.488-2.3 1.32-3.13a4.42 4.42 0 0 1 2.425-1.264Z", "key": "fa30a50957b688ab409c58a3badf41ec393eb967" }], ["path", { "fill": "currentColor", "d": "M12.886 6.77A4.77 4.77 0 0 1 16.8 4.75c2.602 0 4.85 2.124 4.85 4.85 0 1.67-.84 3.084-2.109 4.007a.75.75 0 0 1-.882-1.214c.93-.677 1.491-1.662 1.491-2.793 0-1.874-1.552-3.35-3.35-3.35a3.27 3.27 0 0 0-2.686 1.38.75.75 0 1 1-1.228-.86Z", "key": "1c3738d8f6b3d18498d1a6996c68456fa287e63d" }]]);
const CloudSunB = createMeisterIcons("cloud-sun-b", [["path", { "fill": "currentColor", "d": "M19.45 14.8c0 1-.4 1.9-1.1 2.6-.7.6-1.6 1.1-2.6 1.1h-9c-2 0-3.6-1.6-3.6-3.6 0-1 .4-1.9 1.1-2.6.7-.6 1.6-1.1 2.6-1.1 0-2.5 2-4.5 4.5-4.5.8 0 1.5.2 2.1.5 1.5.8 2.5 2.3 2.5 4 1.4 0 2.5.7 3.2 1.8.1.6.3 1.2.3 1.8Z", "key": "c1b0f2ea420387ae8f01d7c4fa374962799a5482" }], ["path", { "fill": "currentColor", "d": "M11.35 7.45A3.731 3.731 0 0 0 7.6 11.2v.75h-.75c-.74 0-1.464.37-2.09.9-.556.566-.86 1.271-.86 2.05a2.835 2.835 0 0 0 2.85 2.85h9c.74 0 1.464-.37 2.09-.9.556-.566.86-1.271.86-2.05 0-.222-.037-.461-.097-.747-.016-.08-.036-.169-.057-.263-.035-.16-.074-.334-.107-.505-.577-.837-1.422-1.335-2.489-1.335h-.75v-.75c0-1.39-.816-2.648-2.094-3.334a3.898 3.898 0 0 0-1.756-.416Zm-5.206 3.066A5.23 5.23 0 0 1 11.35 5.95c.93 0 1.744.233 2.435.58l.01.004.008.004c1.514.808 2.61 2.256 2.849 3.964 1.352.202 2.426.988 3.13 2.095l.083.13.025.15c.03.181.067.348.109.534l.073.336c.065.314.128.675.128 1.053 0 1.212-.488 2.3-1.32 3.13l-.02.02-.022.02c-.77.66-1.838 1.28-3.088 1.28h-9A4.335 4.335 0 0 1 2.4 14.9c0-1.212.489-2.3 1.32-3.13l.02-.02.022-.02c.62-.531 1.434-1.038 2.382-1.214Z", "key": "8aeb12d92d4094a0632c5375be08267b793c97db" }], ["path", { "fill": "currentColor", "d": "M14.55 7.047a5.08 5.08 0 0 1 2.006 3.455c1.048.155 1.98.653 2.642 1.409A3.375 3.375 0 0 0 20.1 9.6c0-1.862-1.54-3.35-3.45-3.35-.752 0-1.489.3-2.1.797Zm-1.786-.316c.912-1.14 2.314-1.981 3.886-1.981 2.69 0 4.95 2.112 4.95 4.85 0 1.641-.819 3.187-2.147 4.033l-.677.43-.384-.704c-.459-.84-1.394-1.409-2.542-1.409h-.75v-.75c0-1.509-.832-2.744-2.067-3.32l-.864-.404.595-.745Z", "key": "3d863cc28871da8dfd2bc34644598a1aa5e3ca89" }]]);
const CloudSunVarB = createMeisterIcons("cloud-sun-var-b", [["path", { "fill": "currentColor", "d": "M11.35 7.45A3.731 3.731 0 0 0 7.6 11.2v.75h-.75c-.788 0-1.5.312-2.07.88-.569.57-.88 1.282-.88 2.07a2.835 2.835 0 0 0 2.85 2.85h9.1c.788 0 1.5-.312 2.07-.88.568-.57.88-1.282.88-2.07 0-1.572-1.25-2.85-2.95-2.85h-.75v-.75a3.731 3.731 0 0 0-3.75-3.75Zm-5.205 3.056A5.23 5.23 0 0 1 11.35 5.95a5.229 5.229 0 0 1 5.205 4.552c2.152.322 3.745 2.104 3.745 4.298 0 1.212-.489 2.3-1.32 3.13-.83.832-1.918 1.32-3.13 1.32h-9.1A4.335 4.335 0 0 1 2.4 14.9c0-1.212.488-2.3 1.32-3.13a4.42 4.42 0 0 1 2.425-1.264Z", "key": "9cbc8d991aacf3ac9d154af498b6ebeb0de66727" }], ["path", { "fill": "currentColor", "d": "M18.545 13.065c1.1-.8 2.305-2.065 2.305-3.465 0-2.3-1.8-4.1-4.1-4.1-1.4 0-2.6.7-3.3 1.7", "key": "37870a84f867aed700940e263b605bf48c3c1613" }], ["path", { "fill": "currentColor", "d": "M12.836 6.77a4.77 4.77 0 0 1 3.914-2.02A4.805 4.805 0 0 1 21.6 9.6c0 1.67-.84 3.084-2.109 4.007a.75.75 0 0 1-.882-1.214c.93-.677 1.491-1.662 1.491-2.793 0-1.886-1.464-3.35-3.35-3.35a3.27 3.27 0 0 0-2.686 1.38.75.75 0 1 1-1.228-.86Z", "key": "11bc468a86ca77f2f5af5d4939c7f36ad1470558" }]]);
const Coathanger = createMeisterIcons("coathanger", [["path", { "fill": "currentColor", "d": "M11.948 9.112 21.5 16.25c.977.732.47 2.25-.75 2.25H3.25c-1.22 0-1.726-1.516-.751-2.25H2.5l9.448-7.138Zm.005 1.876L3.996 17h16.002l-8.046-6.012Z", "key": "37b1154575ccee04436e4aaa1d891ec2b5bf472d" }], ["path", { "fill": "currentColor", "d": "M14.52 7.48c-.607-.607-1.432-.607-2.04 0-.607.608-.607 1.433 0 2.04a.75.75 0 0 1-1.06 1.06c-1.193-1.192-1.193-2.967 0-4.16s2.967-1.193 4.16 0a.75.75 0 0 1-1.06 1.06Z", "key": "cc2aaa25048a18076de3eab1e5f95ff24a301ae7" }]]);
const CoathangerB = createMeisterIcons("coathanger-b", [["path", { "fill": "currentColor", "d": "m11.95 10.05-9 6.8c-.4.3-.2.9.3.9h17.5c.5 0 .7-.6.3-.9l-9.1-6.8Z", "key": "e472fbb795f46c457ac90ef15990381cb1907ff4" }], ["path", { "fill": "currentColor", "d": "M11.948 9.112 21.5 16.25c.977.732.47 2.25-.75 2.25H3.25c-1.22 0-1.726-1.516-.751-2.25H2.5l9.448-7.138Zm.005 1.876L3.996 17h16.002l-8.046-6.012Z", "key": "e8122a28652a2193e572927916617812f40995c4" }], ["path", { "fill": "currentColor", "d": "M14.52 7.48c-.607-.607-1.432-.607-2.04 0-.607.608-.607 1.433 0 2.04a.75.75 0 0 1-1.06 1.06c-1.193-1.192-1.193-2.967 0-4.16s2.967-1.193 4.16 0a.75.75 0 0 1-1.06 1.06Z", "key": "b214b84c8f1ec9bbbcdfb1722eff24b6b9e98c4a" }]]);
const CodeBox = createMeisterIcons("code-box", [["path", { "fill": "currentColor", "d": "M6.048 6.95c0-1.848 1.424-3.35 3.05-3.35h5.8c1.637 0 3.05 1.414 3.05 3.35v10.133c.083 1.893-1.296 3.317-3.05 3.317h-5.8c-1.637 0-3.05-1.414-3.05-3.35V6.95Zm3.05-4.85c-2.574 0-4.55 2.299-4.55 4.85v10.1c0 2.664 1.987 4.85 4.55 4.85h5.8c2.64 0 4.658-2.166 4.55-4.866V6.95c0-2.664-1.987-4.85-4.55-4.85h-5.8Zm-.15 5.65c0-.686.564-1.25 1.25-1.25h3.7c.686 0 1.25.564 1.25 1.25v2.7c0 .686-.564 1.25-1.25 1.25h-3.7c-.686 0-1.25-.564-1.25-1.25v-2.7ZM10.198 5a2.756 2.756 0 0 0-2.75 2.75v2.7a2.756 2.756 0 0 0 2.75 2.75h3.7a2.756 2.756 0 0 0 2.75-2.75v-2.7A2.756 2.756 0 0 0 13.898 5h-3.7Zm1.23 9.92a.75.75 0 0 1 0 1.06l-.82.82.82.82a.75.75 0 0 1-1.06 1.06l-1-1a1.233 1.233 0 0 1 0-1.76l1-1a.75.75 0 0 1 1.06 0Zm2.7-.1a.75.75 0 0 0-1.06 1.06l.82.82-.82.82a.75.75 0 0 0 1.06 1.06l1-1a1.233 1.233 0 0 0 0-1.76l-1-1Z", "key": "0bff13af752bde9261ee0b115a640cde13461d28" }]]);
const CodeBoxAlt = createMeisterIcons("code-box-alt", [["path", { "fill": "currentColor", "d": "M17.083 6.051C18.976 5.97 20.4 7.348 20.4 9.102v5.8c0 1.637-1.414 3.05-3.35 3.05H6.95c-1.848 0-3.35-1.424-3.35-3.05v-5.8c0-1.637 1.414-3.05 3.35-3.05h10.133ZM21.9 9.102c0-2.64-2.166-4.659-4.866-4.55H6.95c-2.664 0-4.85 1.987-4.85 4.55v5.8c0 2.574 2.299 4.55 4.85 4.55h10.1c2.664 0 4.85-1.987 4.85-4.55v-5.8Zm-15.4 1c0-.686.564-1.25 1.25-1.25h2.7c.686 0 1.25.564 1.25 1.25v3.7c0 .686-.564 1.25-1.25 1.25h-2.7c-.686 0-1.25-.564-1.25-1.25v-3.7Zm1.25-2.75A2.756 2.756 0 0 0 5 10.102v3.7a2.756 2.756 0 0 0 2.75 2.75h2.7a2.756 2.756 0 0 0 2.75-2.75v-3.7a2.756 2.756 0 0 0-2.75-2.75h-2.7Zm7.17 5.22a.75.75 0 0 1 1.06 0l.82.82.82-.82a.75.75 0 0 1 1.06 1.06l-1 1a1.233 1.233 0 0 1-1.76 0l-1-1a.75.75 0 0 1 0-1.06Zm2.6-1.64-.82-.82-.82.82a.75.75 0 1 1-1.06-1.06l1-1a1.233 1.233 0 0 1 1.76 0l1 1a.75.75 0 1 1-1.06 1.06Z", "key": "61c60116ce3801e86100e32eda5928ef7a8671f5" }]]);
const CodeBoxAltB = createMeisterIcons("code-box-alt-b", [["path", { "fill": "currentColor", "d": "M17.048 5.3h-10.1c-2.2 0-4 1.7-4 3.8v5.8c0 2.1 1.8 3.8 4 3.8h10.1c2.2 0 4-1.7 4-3.8V9.1c.1-2.1-1.7-3.8-4-3.8Zm-4.6 8.5c0 1.1-.9 2-2 2h-2.7c-1.1 0-2-.9-2-2v-3.7c0-1.1.9-2 2-2h2.7c1.1 0 2 .9 2 2v3.7Z", "key": "810620917ce01f0be6bdeb31b51af730e857bcdd" }], ["path", { "fill": "currentColor", "d": "M2.198 9.1c0-2.551 2.174-4.55 4.75-4.55h10.1c2.647 0 4.862 1.977 4.75 4.567V14.9c0 2.551-2.174 4.55-4.75 4.55h-10.1c-2.576 0-4.75-1.999-4.75-4.55V9.1Zm4.75-3.05c-1.824 0-3.25 1.401-3.25 3.05v5.8c0 1.649 1.426 3.05 3.25 3.05h10.1c1.824 0 3.25-1.401 3.25-3.05V9.064c.077-1.6-1.304-3.014-3.25-3.014h-10.1Zm.8 2.8c-.686 0-1.25.564-1.25 1.25v3.7c0 .686.564 1.25 1.25 1.25h2.7c.686 0 1.25-.564 1.25-1.25v-3.7c0-.686-.564-1.25-1.25-1.25h-2.7Zm-2.75 1.25a2.756 2.756 0 0 1 2.75-2.75h2.7a2.756 2.756 0 0 1 2.75 2.75v3.7a2.756 2.756 0 0 1-2.75 2.75h-2.7a2.756 2.756 0 0 1-2.75-2.75v-3.7Z", "key": "248ab87b93bb2fb070ec83c4b4e3c99b4d61a448" }], ["path", { "fill": "#fff", "d": "M7.748 8.85c-.686 0-1.25.564-1.25 1.25v3.7c0 .686.564 1.25 1.25 1.25h2.7c.686 0 1.25-.564 1.25-1.25v-3.7c0-.71-.489-1.25-1.25-1.25h-2.7Zm-2.75 1.25a2.756 2.756 0 0 1 2.75-2.75h2.7c1.639 0 2.75 1.26 2.75 2.75v3.7a2.756 2.756 0 0 1-2.75 2.75h-2.7a2.756 2.756 0 0 1-2.75-2.75v-3.7Zm9.92 2.57a.75.75 0 0 1 1.06 0l.82.82.82-.82a.75.75 0 0 1 1.06 1.06l-1 1a1.233 1.233 0 0 1-1.76 0l-1-1a.75.75 0 0 1 0-1.06Zm1.78-2.46.82.82a.75.75 0 1 0 1.06-1.06l-1-1a1.233 1.233 0 0 0-1.76 0l-1 1a.75.75 0 0 0 1.06 1.06l.82-.82Z", "key": "929ce3c8a853b900070bb226916441bbf884343f" }]]);
const CodeBoxB = createMeisterIcons("code-box-b", [["path", { "fill": "currentColor", "d": "M18.7 17.048v-10.1c0-2.2-1.7-4-3.8-4H9.1c-2.1 0-3.8 1.8-3.8 4v10.1c0 2.2 1.7 4 3.8 4h5.8c2.1.1 3.8-1.7 3.8-4Zm-8.6-4.6c-1.1 0-2-.9-2-2v-2.7c0-1.1.9-2 2-2h3.7c1.1 0 2 .9 2 2v2.7c0 1.1-.9 2-2 2h-3.7Z", "key": "0f86d66dc3ecf7ee268546e497e921f69636fbf2" }], ["path", { "fill": "currentColor", "d": "M4.55 6.948c0-2.576 1.999-4.75 4.55-4.75h5.8c2.551 0 4.55 2.174 4.55 4.75v10.1c0 2.647-1.977 4.862-4.567 4.75H9.1c-2.551 0-4.55-2.174-4.55-4.75v-10.1Zm4.55-3.25c-1.649 0-3.05 1.426-3.05 3.25v10.1c0 1.824 1.401 3.25 3.05 3.25h5.836c1.6.077 3.014-1.304 3.014-3.25v-10.1c0-1.824-1.401-3.25-3.05-3.25H9.1Zm1 2.8c-.686 0-1.25.564-1.25 1.25v2.7c0 .686.564 1.25 1.25 1.25h3.7c.686 0 1.25-.564 1.25-1.25v-2.7c0-.686-.564-1.25-1.25-1.25h-3.7Zm-2.75 1.25a2.756 2.756 0 0 1 2.75-2.75h3.7a2.756 2.756 0 0 1 2.75 2.75v2.7a2.756 2.756 0 0 1-2.75 2.75h-3.7a2.756 2.756 0 0 1-2.75-2.75v-2.7Z", "key": "7a215e4c2aa1eff38f446cee3c7d3306cd1f6f8e" }], ["path", { "fill": "#fff", "d": "M10.1 6.498c-.686 0-1.25.564-1.25 1.25v2.7c0 .686.564 1.25 1.25 1.25h3.7c.71 0 1.25-.489 1.25-1.25v-2.7c0-.686-.564-1.25-1.25-1.25h-3.7Zm-2.75 1.25a2.756 2.756 0 0 1 2.75-2.75h3.7a2.756 2.756 0 0 1 2.75 2.75v2.7c0 1.639-1.26 2.75-2.75 2.75h-3.7a2.756 2.756 0 0 1-2.75-2.75v-2.7Zm3.98 7.17a.75.75 0 0 1 0 1.06l-.82.82.82.82a.75.75 0 0 1-1.06 1.06l-1-1a1.233 1.233 0 0 1 0-1.76l1-1a.75.75 0 0 1 1.06 0Zm1.64-.1a.75.75 0 0 1 1.06 0l1 1a1.233 1.233 0 0 1 0 1.76l-1 1a.75.75 0 0 1-1.06-1.06l.82-.82-.82-.82a.75.75 0 0 1 0-1.06Z", "key": "0af3b5d4b8a57fb5f89ce02f727f9557187770b1" }]]);
const CodeCircle = createMeisterIcons("code-circle", [["path", { "fill": "currentColor", "d": "M3.75 12.008A8.213 8.213 0 0 0 12 20.25 8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75c-4.475 0-8.154 3.655-8.25 8.258Zm-1.5-.023C2.358 6.591 6.678 2.25 12 2.25A9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12v-.015ZM13.37 9.47a.75.75 0 0 1 1.06 0l1.4 1.4c.271.27.445.63.445 1.03s-.174.76-.444 1.03l-1.4 1.4a.75.75 0 0 1-1.061-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64 1.16a.75.75 0 1 0-1.06-1.06l-1.4 1.4c-.27.27-.445.63-.445 1.03s.174.76.445 1.03l1.4 1.4a.75.75 0 1 0 1.06-1.06L9.36 12l1.37-1.37Z", "key": "b0f44becf546c046228c3613f443e3a988395bf0" }]]);
const CodeCircleB = createMeisterIcons("code-circle-b", [["path", { "fill": "currentColor", "d": "M12 3c5 0 9 4 9 9s-4 9-9 9-9-4-9-9c.1-5 4.1-9 9-9Z", "key": "2f553fd24fb44a678275e045fdb3487e427057bd" }], ["path", { "fill": "currentColor", "d": "M3.75 12.008A8.213 8.213 0 0 0 12 20.25 8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75c-4.475 0-8.154 3.655-8.25 8.258Zm-1.5-.023C2.358 6.591 6.678 2.25 12 2.25A9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12v-.015Z", "key": "9364bdfb0bf37e0800ec811278d9e7114697d1d4" }], ["path", { "fill": "#fff", "d": "M13.388 9.452a.75.75 0 0 1 1.06.036l1.393 1.492c.264.27.434.624.434 1.02 0 .4-.174.76-.445 1.03l-1.4 1.4a.75.75 0 1 1-1.06-1.06L14.74 12l-1.388-1.488a.75.75 0 0 1 .036-1.06Zm-2.658.118a.75.75 0 0 1 0 1.06L9.36 12l1.37 1.37a.75.75 0 0 1-1.06 1.06l-1.4-1.4c-.27-.27-.445-.63-.445-1.03s.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Z", "key": "af2f35ab71ec1b84acb1e1a5bd8e4eddab227925" }]]);
const CodeCircleVertical = createMeisterIcons("code-circle-vertical", [["path", { "fill": "currentColor", "d": "M11.992 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25 8.213 8.213 0 0 0 20.25 12c0-4.47-3.75-8.154-8.258-8.25ZM2.25 12A9.713 9.713 0 0 1 12 2.25h.015c5.289.108 9.735 4.422 9.735 9.75A9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12Zm7.32 1.37a.75.75 0 0 1 1.06 0L12 14.74l1.37-1.37a.75.75 0 0 1 1.06 1.06l-1.4 1.4c-.27.271-.63.445-1.03.445s-.76-.174-1.03-.444l-1.4-1.4a.75.75 0 0 1 0-1.061Zm.96-2.64 1.37-1.37 1.37 1.37a.75.75 0 1 0 1.06-1.06l-1.4-1.4c-.27-.27-.63-.445-1.03-.445s-.76.174-1.03.445l-1.4 1.4a.75.75 0 1 0 1.06 1.06Z", "key": "34b69f88f6829279e2d96ff5a61275fe6e74297f" }]]);
const CodeCircleVerticalB = createMeisterIcons("code-circle-vertical-b", [["path", { "fill": "currentColor", "d": "M21 12c0 5-4 9-9 9s-9-4-9-9 4-9 9-9c4.9.1 9 4.1 9 9Z", "key": "6f0cbf608070e08e0ce3d7fcf7b97c96313cd30a" }], ["path", { "fill": "currentColor", "d": "M11.992 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25 8.213 8.213 0 0 0 20.25 12c0-4.47-3.75-8.154-8.258-8.25ZM2.25 12A9.713 9.713 0 0 1 12 2.25h.015c5.289.108 9.735 4.422 9.735 9.75A9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12Z", "key": "fcfca2ac256f817d92442e8c52f61850b5db08df" }], ["path", { "fill": "#fff", "d": "M14.498 13.388a.75.75 0 0 1-.036 1.06l-1.492 1.393c-.27.264-.624.434-1.02.434-.4 0-.76-.174-1.03-.445l-1.4-1.4a.75.75 0 0 1 1.06-1.06l1.37 1.37 1.488-1.388a.75.75 0 0 1 1.06.036Zm-4.996-2.743a.75.75 0 0 1 .036-1.06l1.492-1.393c.27-.264.625-.434 1.02-.434.4 0 .76.174 1.03.445l1.4 1.4a.75.75 0 1 1-1.06 1.06l-1.37-1.37-1.488 1.389a.75.75 0 0 1-1.06-.037Z", "key": "49513209dd85089d758d6f0cf7331667a5b7c27f" }]]);
const CodeHex = createMeisterIcons("code-hex", [["path", { "fill": "currentColor", "d": "m18.697 5.363-4.32-2.51c-1.432-.837-3.322-.837-4.755 0l-4.3 2.5A4.783 4.783 0 0 0 2.95 9.5v5c0 1.69.961 3.209 2.334 4.124l.02.013 4.318 2.51c1.434.837 3.322.837 4.756 0l4.319-2.51.019-.013c1.373-.915 2.334-2.433 2.334-4.124v-5c0-1.691-.961-3.209-2.334-4.124l-.02-.013Zm-8.32-1.215c.967-.564 2.279-.564 3.245 0h.001l4.28 2.488c1.016.686 1.647 1.761 1.647 2.864v5c0 1.102-.631 2.178-1.648 2.864l-4.28 2.488c-.966.564-2.278.564-3.244 0l-4.28-2.488C5.08 16.678 4.45 15.602 4.45 14.5v-5c0-1.225.652-2.283 1.628-2.852l4.3-2.5Zm2.893 5.321a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03 0 .401-.174.76-.445 1.031l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64.1a.75.75 0 0 1 0 1.061L9.26 12l1.37 1.37a.75.75 0 0 1-1.06 1.06l-1.4-1.4c-.27-.27-.445-.63-.445-1.03 0-.401.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Z", "key": "20d6de1eff3e1b5497109e924c0d27c6705e8e76" }]]);
const CodeHexB = createMeisterIcons("code-hex-b", [["path", { "fill": "currentColor", "d": "M20.3 14.5v-5c0-1.4-.8-2.7-2-3.5L14 3.5c-1.2-.7-2.8-.7-4 0L5.7 6c-1.2.7-2 2-2 3.5v5c0 1.4.8 2.7 2 3.5l4.3 2.5c1.2.7 2.8.7 4 0l4.3-2.5c1.2-.8 2-2.1 2-3.5Z", "key": "ff3440301e93c50d786098b4900a2c8380f72a93" }], ["path", { "fill": "currentColor", "d": "m14.378 2.852 4.319 2.511.019.013c1.373.915 2.334 2.433 2.334 4.124v5c0 1.69-.961 3.209-2.334 4.124l-.02.013-4.318 2.51c-1.434.837-3.322.837-4.756 0l-4.319-2.51-.02-.013C3.912 17.709 2.95 16.19 2.95 14.5v-5c0-1.775.948-3.317 2.372-4.148l4.3-2.5c1.433-.836 3.323-.836 4.756 0Zm-.756 1.296c-.966-.564-2.278-.564-3.244 0l-4.3 2.5A3.284 3.284 0 0 0 4.45 9.5v5c0 1.102.631 2.178 1.648 2.864l4.28 2.488c.966.564 2.278.564 3.244 0l4.28-2.488c1.017-.686 1.648-1.762 1.648-2.864v-5c0-1.103-.631-2.178-1.648-2.864l-4.28-2.488Z", "key": "4c8ca2e688a0b131fae9f1c9d227a812361224f2" }], ["path", { "fill": "#fff", "d": "M13.27 9.47a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03s-.174.76-.445 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64.1a.75.75 0 0 1 0 1.06L9.26 12l1.37 1.37a.75.75 0 0 1-1.06 1.06l-1.4-1.4c-.27-.27-.445-.63-.445-1.03s.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Z", "key": "a358efa3e071a4eaca759daab41f98484583914d" }]]);
const CodeHexVertical = createMeisterIcons("code-hex-vertical", [["path", { "fill": "currentColor", "d": "M9.5 2.95c-1.691 0-3.209.961-4.124 2.334l-.013.02-2.511 4.318c-.836 1.434-.836 3.323 0 4.756l2.5 4.3A4.784 4.784 0 0 0 9.5 21.05h5c1.69 0 3.209-.961 4.124-2.334l.013-.02 2.51-4.318c.837-1.434.837-3.322 0-4.756l-2.499-4.299v-.001A4.783 4.783 0 0 0 14.5 2.95h-5Zm-5.352 7.428 2.488-4.28C7.322 5.08 8.397 4.45 9.5 4.45h5c1.225 0 2.282.652 2.852 1.628l2.5 4.3c.564.966.564 2.278 0 3.244l-2.488 4.28c-.686 1.017-1.762 1.648-2.864 1.648h-5a3.284 3.284 0 0 1-2.852-1.628l-2.5-4.299c-.564-.967-.564-2.279 0-3.245ZM11.9 9.26l-1.37 1.37a.75.75 0 0 1-1.06-1.06l1.4-1.4c.27-.27.63-.445 1.03-.445s.76.174 1.03.445l1.4 1.4a.75.75 0 1 1-1.06 1.06L11.9 9.26Zm-2.33 4.01a.75.75 0 0 1 1.06 0L12 14.64l1.37-1.37a.75.75 0 1 1 1.06 1.06l-1.4 1.4c-.27.27-.63.445-1.03.445s-.76-.174-1.03-.445l-1.4-1.4a.75.75 0 0 1 0-1.06Z", "key": "4aa3646d59c643c1acdfbd380eff7c80780d835b" }]]);
const CodeHexVerticalB = createMeisterIcons("code-hex-vertical-b", [["path", { "fill": "currentColor", "d": "M9.5 20.3h5c1.4 0 2.7-.8 3.5-2l2.5-4.3c.7-1.2.7-2.8 0-4L18 5.7c-.7-1.2-2-2-3.5-2h-5c-1.4 0-2.7.8-3.5 2L3.5 10c-.7 1.2-.7 2.8 0 4L6 18.3c.7 1.2 2 2 3.5 2Z", "key": "8b6108d5d5ae2752dd871b285a88e725c48decbc" }], ["path", { "fill": "currentColor", "d": "M5.376 5.284C6.29 3.91 7.809 2.95 9.5 2.95h5c1.774 0 3.317.948 4.148 2.372v.001l2.5 4.299c.836 1.434.836 3.322 0 4.756l-2.511 4.319-.013.019c-.915 1.373-2.433 2.334-4.124 2.334h-5a4.784 4.784 0 0 1-4.148-2.372l-2.5-4.3c-.836-1.433-.836-3.322 0-4.755l2.511-4.32.013-.02Zm1.26.814-2.488 4.28c-.564.966-.564 2.278 0 3.244v.001l2.5 4.299A3.284 3.284 0 0 0 9.5 19.55h5c1.102 0 2.178-.631 2.864-1.648l2.488-4.28c.564-.966.564-2.278 0-3.244l-2.5-4.3A3.285 3.285 0 0 0 14.5 4.45h-5c-1.103 0-2.178.631-2.864 1.648Z", "key": "d4f6d2f72238f749eaebbb7d286607f8010fd255" }], ["path", { "fill": "#fff", "d": "M9.57 13.27a.75.75 0 0 1 1.06 0L12 14.64l1.37-1.37a.75.75 0 0 1 1.06 1.06l-1.4 1.4c-.27.27-.63.445-1.03.445s-.76-.174-1.03-.445l-1.4-1.4a.75.75 0 0 1 0-1.06Zm2.33-4.01-1.37 1.37a.75.75 0 1 1-1.06-1.06l1.4-1.4c.27-.27.63-.445 1.03-.445s.76.174 1.03.445M11.9 9.26l1.37 1.37a.75.75 0 0 0 1.06-1.06l-1.4-1.4", "key": "b8a4c4bcee1bc1b57b7934ef7d0564696e2f95e9" }]]);
const CodeRectanlge = createMeisterIcons("code-rectanlge", [["path", { "fill": "currentColor", "d": "M7 5.75A3.262 3.262 0 0 0 3.75 9v6c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 15V9A3.262 3.262 0 0 0 17 5.75H7ZM2.25 9A4.762 4.762 0 0 1 7 4.25h10A4.762 4.762 0 0 1 21.75 9v6A4.762 4.762 0 0 1 17 19.75H7c-2.726 0-4.75-2.148-4.75-4.75V9Zm11.02.47a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03s-.174.76-.445 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64 1.16a.75.75 0 1 0-1.06-1.06l-1.4 1.4c-.27.27-.445.63-.445 1.03s.174.76.445 1.03l1.4 1.4a.75.75 0 1 0 1.06-1.06L9.26 12l1.37-1.37Z", "key": "e74ff4ab36cb21803ffe2927203366f7abd3a14a" }]]);
const CodeRectanlgeB = createMeisterIcons("code-rectanlge-b", [["path", { "fill": "currentColor", "d": "M3 15V9c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v6c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "24c6e94ecaac9c5be7a9c5c7daa1af40ec8a7631" }], ["path", { "fill": "currentColor", "d": "M7 5.75A3.262 3.262 0 0 0 3.75 9v6c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 15V9A3.262 3.262 0 0 0 17 5.75H7ZM2.25 9A4.762 4.762 0 0 1 7 4.25h10A4.762 4.762 0 0 1 21.75 9v6A4.762 4.762 0 0 1 17 19.75H7c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "86f4d3153ee8a24fde6d140649aaafa42a81de8b" }], ["path", { "fill": "#fff", "d": "M13.288 9.452a.75.75 0 0 1 1.06.036l1.393 1.492c.264.27.434.624.434 1.02 0 .4-.174.76-.445 1.03l-1.4 1.4a.75.75 0 1 1-1.06-1.06L14.64 12l-1.388-1.488a.75.75 0 0 1 .036-1.06Zm-2.658.018a.75.75 0 0 1 0 1.06L9.26 11.9l1.388 1.488a.75.75 0 0 1-1.096 1.024L8.159 12.92a1.453 1.453 0 0 1-.434-1.02c0-.4.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Z", "key": "642721882231957257a51e0dca8058108b01dd01" }]]);
const CodeSquare = createMeisterIcons("code-square", [["path", { "fill": "currentColor", "d": "M7.011 3.743A3.262 3.262 0 0 0 3.757 6.99l-.014 10c-.002 1.798 1.372 3.252 3.246 3.254l10 .014a3.262 3.262 0 0 0 3.254-3.246l.014-10a3.262 3.262 0 0 0-3.246-3.254l-10-.014ZM2.257 6.987a4.762 4.762 0 0 1 4.756-4.744l10 .014a4.762 4.762 0 0 1 4.744 4.756l-.014 10a4.762 4.762 0 0 1-4.756 4.744l-10-.014c-2.726-.003-4.747-2.154-4.744-4.756l.014-10ZM13.273 9.47a.75.75 0 0 1 1.06.002l1.399 1.402c.27.27.444.63.443 1.03 0 .401-.175.76-.446 1.03l-1.402 1.398a.75.75 0 0 1-1.059-1.062l1.371-1.368-1.367-1.371a.75.75 0 0 1 .001-1.06Zm-2.64 1.157a.75.75 0 1 0-1.06-1.062L8.17 10.964c-.27.27-.445.63-.446 1.03 0 .4.173.76.443 1.031l1.398 1.402a.75.75 0 0 0 1.063-1.06l-1.368-1.37 1.371-1.369Z", "key": "65f76ea563f674dc95d424c77c68ebd289307f61" }]]);
const CodeSquareB = createMeisterIcons("code-square-b", [["path", { "fill": "currentColor", "stroke": "#000", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M3 17V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "d3e714f6e263bdbe1b78b3a901b9fa178e024e58" }], ["path", { "stroke": "#fff", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "m13.8 10 1.4 1.5c.3.3.3.7 0 1l-1.4 1.4m-3.7 0-1.4-1.4c-.3-.3-.3-.7 0-1l1.4-1.4", "key": "209e83af417b1795923ca5ed02910c2b7d1d4ab0" }]]);
const CodeSquareVertical = createMeisterIcons("code-square-vertical", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Zm7.32 6.27a.75.75 0 0 1 1.06 0L12 14.64l1.37-1.37a.75.75 0 0 1 1.06 1.06l-1.4 1.4c-.27.27-.63.445-1.03.445s-.76-.174-1.03-.445l-1.4-1.4a.75.75 0 0 1 0-1.06Zm.96-2.64 1.37-1.37 1.37 1.37a.75.75 0 1 0 1.06-1.06l-1.4-1.4c-.27-.27-.63-.445-1.03-.445s-.76.174-1.03.445l-1.4 1.4a.75.75 0 1 0 1.06 1.06Z", "key": "101f915629f425474e3d77ac34eff518fa260537" }]]);
const CodeSquareVerticalB = createMeisterIcons("code-square-vertical-b", [["path", { "fill": "currentColor", "d": "M7 3h10c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V7c0-2.3 1.7-4 4-4Z", "key": "1f3790c53826e25671ceb2d8eed957008184fbbf" }], ["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "e86ed402878f630e311fe29e9028412f95ce179c" }], ["path", { "fill": "#fff", "d": "M14.498 13.288a.75.75 0 0 1-.036 1.06l-1.492 1.393c-.27.264-.625.434-1.02.434-.4 0-.76-.174-1.03-.445l-1.4-1.4a.75.75 0 0 1 1.06-1.06l1.37 1.37 1.488-1.388a.75.75 0 0 1 1.06.036ZM9.446 10.53a.75.75 0 0 1 .036-1.06l1.492-1.392c.27-.264.624-.434 1.02-.434.4 0 .76.174 1.03.445l1.4 1.4a.75.75 0 1 1-1.06 1.06l-1.37-1.37-1.488 1.389a.75.75 0 0 1-1.06-.037Z", "key": "a419c606e45c4607b0baf05cfb75aad654335136" }]]);
const Coin = createMeisterIcons("coin", [["path", { "fill": "currentColor", "d": "M3.75 12a8.25 8.25 0 1 1 16.5 0 8.25 8.25 0 0 1-16.5 0ZM12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25ZM7.75 12a4.25 4.25 0 1 1 8.5 0 4.25 4.25 0 0 1-8.5 0ZM12 6.25a5.75 5.75 0 1 0 0 11.5 5.75 5.75 0 0 0 0-11.5Z", "key": "c9192b9292b11e1d3cbd94852277df71020ea929" }]]);
const CoinB = createMeisterIcons("coin-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "47e12120344e1a87cad0fcd885189da10decd4a3" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "5564d174003413cb0745764c9e30c0c946ac1b9f" }], ["path", { "fill": "#fff", "d": "M12 18a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z", "key": "899abcefec2e0b5607fbe2613648dc0e73407ecc" }], ["path", { "fill": "currentColor", "d": "M12 6.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM5.25 12a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Z", "key": "18603331b93755a15992c86e94f7345270e8158d" }], ["path", { "fill": "currentColor", "d": "M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "0712ca1751b79f8dfbbe1fef8d123e0b8a97af1d" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "1b3c8ca10ac2c45fd722d91cdacb7dc6eddd69fc" }]]);
const Coins = createMeisterIcons("coins", [["path", { "fill": "currentColor", "d": "M8.4 3.85C5.606 3.85 3.25 6.122 3.25 9a5.22 5.22 0 0 0 2.294 4.346c.484-1.832 1.736-3.324 3.406-4.213V9.1c0-1.814.726-3.459 1.904-4.658A5.246 5.246 0 0 0 8.4 3.85Zm.757 6.904c-1.297.867-2.154 2.212-2.307 3.781V15c0 2.878 2.356 5.151 5.15 5.151 2.591 0 4.818-2.046 5.116-4.574a6.653 6.653 0 0 1-7.959-4.822Zm8.646 3.002a.745.745 0 0 0-.372.16 5.15 5.15 0 1 1 .373-.159Zm.847 1.255a6.65 6.65 0 1 0-6.549-11.567C11.014 2.707 9.697 2.35 8.4 2.35 4.794 2.35 1.75 5.278 1.75 9a6.714 6.714 0 0 0 3.6 5.974V15c0 3.723 3.044 6.65 6.65 6.65 3.61 0 6.644-3.03 6.65-6.64Z", "key": "9bd944e7de2b5f31694fd03fc61fc92416953412" }]]);
const CoinsB = createMeisterIcons("coins-b", [["path", { "fill": "currentColor", "d": "M8.4 3.85C5.606 3.85 3.25 6.122 3.25 9a5.211 5.211 0 0 0 3.145 4.81.75.75 0 0 1-.59 1.38A6.711 6.711 0 0 1 1.75 9c0-3.722 3.044-6.65 6.65-6.65 1.447 0 2.918.444 4.069 1.364a.75.75 0 1 1-.937 1.172c-.85-.68-1.979-1.036-3.132-1.036Z", "key": "cd701ebd6c358e4e714f898d35a1ea522aca4d16" }], ["path", { "fill": "currentColor", "d": "M15.6 15a5.9 5.9 0 1 0 0-11.8 5.9 5.9 0 0 0 0 11.8Z", "key": "dd76c55f71879f872313ad1ee20fddd3a0ab6a9a" }], ["path", { "fill": "currentColor", "d": "M15.6 3.95a5.15 5.15 0 1 0 0 10.3 5.15 5.15 0 0 0 0-10.3ZM8.95 9.1a6.65 6.65 0 1 1 13.3 0 6.65 6.65 0 0 1-13.3 0Z", "key": "d697b26ee407228344d03885216074df61d6bf5f" }], ["path", { "fill": "currentColor", "d": "M10.396 9.321a.75.75 0 0 1-.417.975c-1.722.689-2.943 2.326-3.129 4.24v.463c0 2.878 2.356 5.15 5.15 5.15 2.786 0 5.15-2.363 5.15-5.15v-.498a.75.75 0 0 1 1.5-.001v.5c0 3.614-3.036 6.65-6.65 6.65-3.606 0-6.65-2.928-6.65-6.65v-.534l.003-.034c.225-2.473 1.8-4.62 4.068-5.528a.75.75 0 0 1 .975.417Z", "key": "742411f556cb0153de272e20cab24a6567a012e9" }]]);
const CommentHeart = createMeisterIcons("comment-heart", [["path", { "fill": "currentColor", "d": "M15.95 7.737v1.73l-1.44-1.442c-.335-.244-.56-.32-.71-.32a.907.907 0 0 0-.67.28c-.307.308-.307.933 0 1.24l.2.2 1.72 1.72 1.88-1.88c.244-.335.32-.56.32-.71a.907.907 0 0 0-.28-.67c-.245-.244-.693-.294-1.02-.148Zm-1 3.505Zm.048-4.686c.913-.612 2.24-.523 3.032.27a2.4 2.4 0 0 1 .72 1.73c0 .644-.318 1.206-.65 1.65l-.032.042-2.038 2.038a1.45 1.45 0 0 1-1.018.444c-.383 0-.742-.172-.984-.486l-1.758-1.758-.2-.2c-.893-.893-.893-2.468 0-3.36a2.406 2.406 0 0 1 1.73-.72c.442 0 .845.149 1.198.35Z", "key": "ac6a5644847853a97eb23da23b2e0023cb62418c" }], ["path", { "fill": "currentColor", "d": "M2.25 7.155A4.762 4.762 0 0 1 7 2.405h5a.75.75 0 0 1 0 1.5H7a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.405h2.5a.75.75 0 0 1 0 1.5H7a4.762 4.762 0 0 1-4.75-4.75v-7ZM21 9.405a.75.75 0 0 1 .75.75v4a4.762 4.762 0 0 1-4.75 4.75h-3a.75.75 0 0 1 0-1.5h3a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 .75-.75Z", "key": "f65b38e37710f952e53d5af7eb0b9b9c56a1ac12" }], ["path", { "fill": "currentColor", "d": "M9.018 17.581a.75.75 0 0 1 1.056.092l1.903 2.265 1.399-2.099a.75.75 0 1 1 1.248.832l-1.641 2.462-.053.053c-.217.217-.53.376-.868.404a1.165 1.165 0 0 1-1.057-.477l-2.08-2.475a.75.75 0 0 1 .093-1.057Z", "key": "e23531924b33d617819ee97683b4538b7083bd06" }]]);
const CompassCircle = createMeisterIcons("compass-circle", [["path", { "fill": "currentColor", "d": "M12.05 3.8a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.3 12.05c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75-9.75-4.365-9.75-9.75Z", "key": "80eecc9db341ce7399d203875a68b58eef7891b4" }], ["path", { "fill": "currentColor", "d": "m14.388 9.512-.94 3.95a.57.57 0 0 1-.086.086l-3.95.94.94-3.95a.565.565 0 0 1 .086-.086l3.95-.94Zm1.481.256a1.29 1.29 0 0 0-.348-1.394 1.515 1.515 0 0 0-1.318-.36l-.013.003L9.892 9.04l-.077.04c-.346.172-.663.49-.836.835l-.039.077-1.023 4.297-.002.014c-.096.478.041.974.359 1.318.33.357.852.538 1.394.348l4.24-1.01.077-.038a1.95 1.95 0 0 0 .836-.836l.039-.077 1.01-4.24Z", "key": "d024f45f788abf0e9250997d98e5c443fde0c67d" }]]);
const CompassCircleB = createMeisterIcons("compass-circle-b", [["path", { "fill": "currentColor", "d": "M12.05 21.05a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "d683d8703f610b31798180a3689871e8e14131bb" }], ["path", { "fill": "currentColor", "d": "M12.05 3.8a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.3 12.05c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75-9.75-4.365-9.75-9.75Z", "key": "82eb1e92b0c36080293f708b305846b27b1614e1" }], ["path", { "fill": "#fff", "d": "m8.65 14.45 1-4.2c.1-.2.3-.4.5-.5l4.2-1c.5-.1 1 .3.8.8l-1 4.2c-.1.2-.3.4-.5.5l-4.2 1c-.5.2-.9-.3-.8-.8Z", "key": "ee3b6961e89fd316b1f3d528ac488ad5eb3f33cb" }], ["path", { "fill": "#fff", "d": "m14.388 9.512-.94 3.95a.565.565 0 0 1-.086.086l-3.95.94.94-3.95a.565.565 0 0 1 .086-.086l3.95-.94Zm1.481.256a1.29 1.29 0 0 0-.348-1.394 1.515 1.515 0 0 0-1.318-.36l-.013.003L9.892 9.04l-.077.04c-.346.172-.663.49-.836.835l-.039.077-1.023 4.297-.002.014c-.096.478.041.974.359 1.318.33.357.852.538 1.394.348l4.24-1.01.077-.038a1.95 1.95 0 0 0 .836-.836l.039-.077 1.01-4.24Z", "key": "a35ae309895671e3fa5d1e657a5f1510b6612898" }]]);
const CompassSquare = createMeisterIcons("compass-square", [["path", { "fill": "currentColor", "d": "M9.05 3.8C6.164 3.8 3.8 6.164 3.8 9.05v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-6c0-2.886-2.364-5.25-5.25-5.25h-6ZM2.3 9.05c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75h-6c-3.714 0-6.75-3.036-6.75-6.75v-6Z", "key": "64e0cc511cea3ef63cd565e68d5eb58c34ec89ef" }], ["path", { "fill": "currentColor", "d": "m14.488 9.512-.94 3.95a.565.565 0 0 1-.086.086l-3.95.94.94-3.95a.565.565 0 0 1 .086-.086l3.95-.94Zm1.481.256a1.29 1.29 0 0 0-.348-1.394 1.515 1.515 0 0 0-1.318-.36l-.014.003L9.993 9.04l-.077.04c-.346.172-.663.49-.836.835l-.039.077-1.01 4.24c-.374 1.071.667 2.112 1.738 1.737l4.24-1.01.077-.038c.345-.173.663-.49.836-.836l.039-.077 1.01-4.24Z", "key": "1c62abbd3d14c0267440a45ebb1c17258a1724ed" }]]);
const CompassSquareB = createMeisterIcons("compass-square-b", [["path", { "fill": "currentColor", "d": "M15.05 21.05h-6c-3.3 0-6-2.7-6-6v-6c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "d02cd290892315cd78e164f1466861984addbb07" }], ["path", { "fill": "currentColor", "d": "M9.05 3.8C6.164 3.8 3.8 6.164 3.8 9.05v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-6c0-2.886-2.364-5.25-5.25-5.25h-6ZM2.3 9.05c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75h-6c-3.714 0-6.75-3.036-6.75-6.75v-6Z", "key": "5df8229a227afd4b5029d3bb976ae059bfad10c1" }], ["path", { "fill": "#fff", "d": "m8.75 14.45 1-4.2c.1-.2.3-.4.5-.5l4.2-1c.5-.1 1 .3.8.8l-1 4.2c-.1.2-.3.4-.5.5l-4.2 1c-.5.2-1-.3-.8-.8Z", "key": "2f66a6895ba7904b3d36e330af5c5ed6a6d51282" }], ["path", { "fill": "#fff", "d": "m14.488 9.512-.94 3.95a.565.565 0 0 1-.086.086l-3.95.94.94-3.95a.565.565 0 0 1 .086-.086l3.95-.94Zm1.481.256a1.29 1.29 0 0 0-.348-1.394 1.515 1.515 0 0 0-1.318-.36l-.014.003L9.993 9.04l-.077.04c-.346.172-.663.49-.836.835l-.039.077-1.01 4.24c-.374 1.071.667 2.112 1.738 1.737l4.24-1.01.077-.038c.345-.173.663-.49.836-.836l.039-.077 1.01-4.24Z", "key": "5a2ce84c4ad11169b85723165b68060903e6089b" }]]);
const Copy = createMeisterIcons("copy", [["path", { "fill": "currentColor", "d": "M4.6 5.8c0-1.286.964-2.25 2.25-2.25h6.3c1.27 0 2.25 1.048 2.25 2.25v8.4c0 1.286-.964 2.25-2.25 2.25h-6.3c-1.286 0-2.25-.964-2.25-2.25V5.8Zm2.25-3.75C4.736 2.05 3.1 3.686 3.1 5.8v8.4c0 2.114 1.636 3.75 3.75 3.75h6.3c2.114 0 3.75-1.636 3.75-3.75V5.8c0-1.998-1.62-3.75-3.75-3.75h-6.3ZM20.9 9.8a.75.75 0 0 0-1.5 0v8.4c0 1.286-.964 2.25-2.25 2.25h-6.3a.75.75 0 0 0 0 1.5h6.3c2.114 0 3.75-1.636 3.75-3.75V9.8Z", "key": "93871b3fbcfd3d9ae1d2285da8eea86fb29da4e2" }]]);
const CopyA = createMeisterIcons("copy-a", [["path", { "fill": "currentColor", "d": "M4.6 5.8c0-1.286.964-2.25 2.25-2.25h6.3c1.27 0 2.25 1.048 2.25 2.25v8.4c0 1.286-.964 2.25-2.25 2.25h-6.3c-1.286 0-2.25-.964-2.25-2.25V5.8Zm2.25-3.75C4.736 2.05 3.1 3.686 3.1 5.8v8.4c0 2.114 1.636 3.75 3.75 3.75h.25v.25c0 2.114 1.636 3.75 3.75 3.75h6.3c2.114 0 3.75-1.636 3.75-3.75V9.8c0-2.114-1.636-3.75-3.75-3.75h-.25V5.8c0-1.998-1.62-3.75-3.75-3.75h-6.3Zm10.05 5.5v6.65c0 2.114-1.636 3.75-3.75 3.75H8.6v.25c0 1.286.964 2.25 2.25 2.25h6.3c1.286 0 2.25-.964 2.25-2.25V9.8c0-1.286-.964-2.25-2.25-2.25h-.25Z", "key": "647134077e560587169805c0c36749ae4b8a9b6d" }]]);
const CopyAb = createMeisterIcons("copy-ab", [["path", { "fill": "currentColor", "d": "M16.1 5.85v8.4c0 1.7-1.3 3-3 3H6.9c-1.7 0-3-1.3-3-3v-8.4c0-1.7 1.3-3 3-3h6.2c1.7 0 3 1.3 3 3Z", "key": "f6cd96cbf9ea7068099ebe6cc583b9aa9eb78bcd" }], ["path", { "fill": "currentColor", "d": "M6.9 3.6c-1.286 0-2.25.964-2.25 2.25v8.4c0 1.286.964 2.25 2.25 2.25h6.2c1.286 0 2.25-.964 2.25-2.25v-8.4c0-1.286-.964-2.25-2.25-2.25H6.9ZM3.15 5.85c0-2.114 1.636-3.75 3.75-3.75h6.2c2.114 0 3.75 1.636 3.75 3.75v8.4c0 2.114-1.636 3.75-3.75 3.75H6.9c-2.114 0-3.75-1.636-3.75-3.75v-8.4Z", "key": "83891fdd37047b60ff6e451b1cef8d32ef5f1ccf" }], ["path", { "fill": "currentColor", "d": "M15.35 6.1h1.75c2.114 0 3.75 1.636 3.75 3.75v8.4c0 2.114-1.636 3.75-3.75 3.75h-6.2c-2.114 0-3.75-1.636-3.75-3.75V16.5h5.95c1.286 0 2.25-.964 2.25-2.25V6.1Zm1.5 1.5v6.65c0 2.114-1.636 3.75-3.75 3.75H8.65v.25c0 1.286.964 2.25 2.25 2.25h6.2c1.286 0 2.25-.964 2.25-2.25v-8.4c0-1.286-.964-2.25-2.25-2.25h-.25Z", "key": "a1a0c6e2d59c89d5a217d7533173ccf56cd01719" }]]);
const CopyAvarB = createMeisterIcons("copy-avar-b", [["path", { "fill": "currentColor", "d": "M6.9 3.6c-1.286 0-2.25.964-2.25 2.25v8.4c0 1.286.964 2.25 2.25 2.25h6.2c1.286 0 2.25-.964 2.25-2.25v-8.4c0-1.286-.964-2.25-2.25-2.25H6.9ZM3.15 5.85c0-2.114 1.636-3.75 3.75-3.75h6.2c2.114 0 3.75 1.636 3.75 3.75v8.4c0 2.114-1.636 3.75-3.75 3.75H6.9c-2.114 0-3.75-1.636-3.75-3.75v-8.4Z", "key": "be176bc309cba7e144b3c763349819b498ff2891" }], ["path", { "fill": "currentColor", "d": "M20.1 9.85v8.4c0 1.7-1.3 3-3 3h-6.2c-1.7 0-3-1.3-3-3v-1h5.2c1.7 0 3-1.3 3-3v-7.4h1c1.7 0 3 1.3 3 3Z", "key": "cf3243a5e32f05212477e746f65fbd084d568152" }], ["path", { "fill": "currentColor", "d": "M15.35 6.1h1.75c2.114 0 3.75 1.636 3.75 3.75v8.4c0 2.114-1.636 3.75-3.75 3.75h-6.2c-2.114 0-3.75-1.636-3.75-3.75V16.5h5.95c1.286 0 2.25-.964 2.25-2.25V6.1Zm1.5 1.5v6.65c0 2.114-1.636 3.75-3.75 3.75H8.65v.25c0 1.286.964 2.25 2.25 2.25h6.2c1.286 0 2.25-.964 2.25-2.25v-8.4c0-1.286-.964-2.25-2.25-2.25h-.25Z", "key": "d7ca765f4a1e6df721c4dbd0fcfd5ae96c0dd264" }]]);
const CopyB = createMeisterIcons("copy-b", [["path", { "fill": "currentColor", "d": "M16.1 5.85v8.4c0 1.7-1.3 3-3 3H6.9c-1.7 0-3-1.3-3-3v-8.4c0-1.7 1.3-3 3-3h6.2c1.7 0 3 1.3 3 3Z", "key": "a005d2db8ac3920374de80457f3de72750ef923a" }], ["path", { "fill": "currentColor", "d": "M6.9 3.6c-1.286 0-2.25.964-2.25 2.25v8.4c0 1.286.964 2.25 2.25 2.25h6.2c1.286 0 2.25-.964 2.25-2.25v-8.4c0-1.286-.964-2.25-2.25-2.25H6.9ZM3.15 5.85c0-2.114 1.636-3.75 3.75-3.75h6.2c2.114 0 3.75 1.636 3.75 3.75v8.4c0 2.114-1.636 3.75-3.75 3.75H6.9c-2.114 0-3.75-1.636-3.75-3.75v-8.4Z", "key": "e13833f3f25e708977765d8ad1e433ce847ef0d0" }], ["path", { "fill": "currentColor", "d": "M20.1 9.1a.75.75 0 0 1 .75.75v8.4c0 2.114-1.636 3.75-3.75 3.75h-6.2a.75.75 0 0 1 0-1.5h6.2c1.286 0 2.25-.964 2.25-2.25v-8.4a.75.75 0 0 1 .75-.75Z", "key": "c73aa6bf7146d4d76127d4be43e61dd12941d5fc" }]]);
const CopyOverlap = createMeisterIcons("copy-overlap", [["path", { "fill": "currentColor", "d": "M4.6 5.8c0-1.286.964-2.25 2.25-2.25h6.3c1.27 0 2.25 1.048 2.25 2.25v.25h-4.55C8.736 6.05 7.1 7.686 7.1 9.8v6.65h-.25c-1.286 0-2.25-.964-2.25-2.25V5.8Zm2.5 12.15h-.25c-2.114 0-3.75-1.636-3.75-3.75V5.8c0-2.114 1.636-3.75 3.75-3.75h6.3c2.13 0 3.75 1.752 3.75 3.75v.25h.25c2.13 0 3.75 1.752 3.75 3.75v8.4c0 2.114-1.636 3.75-3.75 3.75h-6.3c-2.114 0-3.75-1.636-3.75-3.75v-.25Zm9.8-10.4h.25c1.27 0 2.25 1.048 2.25 2.25v8.4c0 1.286-.964 2.25-2.25 2.25h-6.3c-1.286 0-2.25-.964-2.25-2.25v-.25h4.55c2.114 0 3.75-1.636 3.75-3.75V7.55Zm-1.5 0v6.65c0 1.286-.964 2.25-2.25 2.25H8.6V9.8c0-1.286.964-2.25 2.25-2.25h4.55Z", "key": "61fffa786124d80d31303bd8cd365f8a389e69ba" }]]);
const CopyOverlapB = createMeisterIcons("copy-overlap-b", [["path", { "fill": "currentColor", "d": "M6.9 3.6c-1.286 0-2.25.964-2.25 2.25v8.4c0 1.286.964 2.25 2.25 2.25h.25V9.85c0-2.114 1.636-3.75 3.75-3.75h4.45v-.25c0-1.286-.964-2.25-2.25-2.25H6.9ZM3.15 5.85c0-2.114 1.636-3.75 3.75-3.75h6.2c2.114 0 3.75 1.636 3.75 3.75V7.6H10.9c-1.286 0-2.25.964-2.25 2.25V18H6.9c-2.114 0-3.75-1.636-3.75-3.75v-8.4Z", "key": "c63c07d48f1306e7cc7e75a054523b5fd038096d" }], ["path", { "fill": "currentColor", "d": "M10.9 7.6c-1.286 0-2.25.964-2.25 2.25v6.65h4.45c1.286 0 2.25-.964 2.25-2.25V7.6H10.9ZM7.15 9.85c0-2.114 1.636-3.75 3.75-3.75h5.95v8.15c0 2.114-1.636 3.75-3.75 3.75H7.15V9.85Z", "key": "81eaed89186050c1ffe0f20e0e1b40a742d4676c" }], ["path", { "fill": "currentColor", "d": "M20.1 9.85v8.4c0 1.7-1.3 3-3 3h-6.2c-1.7 0-3-1.3-3-3v-1h5.2c1.7 0 3-1.3 3-3v-7.4h1c1.7 0 3 1.3 3 3Z", "key": "82ab1a8b6219ab48e01b9372c111ac0606c1ca9d" }], ["path", { "fill": "currentColor", "d": "M15.35 6.1h1.75c2.114 0 3.75 1.636 3.75 3.75v8.4c0 2.114-1.636 3.75-3.75 3.75h-6.2c-2.114 0-3.75-1.636-3.75-3.75V16.5h5.95c1.286 0 2.25-.964 2.25-2.25V6.1Zm1.5 1.5v6.65c0 2.114-1.636 3.75-3.75 3.75H8.65v.25c0 1.286.964 2.25 2.25 2.25h6.2c1.286 0 2.25-.964 2.25-2.25v-8.4c0-1.286-.964-2.25-2.25-2.25h-.25Z", "key": "d1ca0901ded8314db4f713035837207a799d98c5" }]]);
const CopySquare = createMeisterIcons("copy-square", [["path", { "fill": "currentColor", "d": "M6.5 4.25c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h6c1.186 0 2.25-1.064 2.25-2.25v-6c0-1.286-.964-2.25-2.25-2.25h-6ZM2.75 6.5c0-2.114 1.636-3.75 3.75-3.75h6c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-6c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "0f60f38ddb9e147d3cbdec6d7589109ebbab1591" }], ["path", { "fill": "currentColor", "d": "M11.5 9.25c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h6c1.186 0 2.25-1.064 2.25-2.25v-6c0-1.286-.964-2.25-2.25-2.25h-6ZM7.75 11.5c0-2.114 1.636-3.75 3.75-3.75h6c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-6c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "622341cd983c45a45dea3354c933b0e53c68e0c5" }]]);
const CopySquareB = createMeisterIcons("copy-square-b", [["path", { "fill": "currentColor", "d": "M12.55 15.55h-6c-1.7 0-3-1.3-3-3v-6c0-1.7 1.3-3 3-3h6c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "a5064448677b52e88d145b481174dd869ae22da4" }], ["path", { "fill": "currentColor", "d": "M6.55 4.3c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h6c1.186 0 2.25-1.064 2.25-2.25v-6c0-1.286-.964-2.25-2.25-2.25h-6ZM2.8 6.55c0-2.114 1.636-3.75 3.75-3.75h6c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-6c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "24cf547f20484b6f68bfe282066e7936087eca1e" }], ["path", { "fill": "currentColor", "d": "M11.55 9.3c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h6c1.186 0 2.25-1.064 2.25-2.25v-6c0-1.286-.964-2.25-2.25-2.25h-6ZM7.8 11.55c0-2.114 1.636-3.75 3.75-3.75h6c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-6c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "de8d99fe1ea3151d482fbdf72a683cb596b8bf04" }]]);
const CopySquareB1 = createMeisterIcons("copy-square-b1", [["path", { "fill": "currentColor", "d": "M6.55 4.3c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h6c1.186 0 2.25-1.064 2.25-2.25v-6c0-1.286-.964-2.25-2.25-2.25h-6ZM2.8 6.55c0-2.114 1.636-3.75 3.75-3.75h6c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-6c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "696cd5fb3f9e886b8ced1b06b38a06de59da4216" }], ["path", { "fill": "currentColor", "d": "M17.55 20.55h-6c-1.7 0-3-1.3-3-3v-6c0-1.7 1.3-3 3-3h6c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "91eea9b2c027e77f03c08560a690e288f8470871" }], ["path", { "fill": "currentColor", "d": "M11.55 9.3c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h6c1.186 0 2.25-1.064 2.25-2.25v-6c0-1.286-.964-2.25-2.25-2.25h-6ZM7.8 11.55c0-2.114 1.636-3.75 3.75-3.75h6c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-6c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "6e65783029a2fc5eaebf7c18f828142d40d6216c" }]]);
const CricketBall = createMeisterIcons("cricket-ball", [["path", { "fill": "currentColor", "d": "M7.155 18.696A8.24 8.24 0 0 0 12 20.25a8.24 8.24 0 0 0 4.904-1.597 9.48 9.48 0 0 1-1.238-1.691l-.245.116a.75.75 0 1 1-.642-1.356l.241-.114a9.99 9.99 0 0 1-.642-2.858H14.1a.75.75 0 0 1 0-1.5h.278a9.736 9.736 0 0 1 .688-2.936l-.287-.136a.75.75 0 1 1 .642-1.356l.311.148c.34-.576.737-1.116 1.18-1.618A8.24 8.24 0 0 0 12 3.75c-1.761 0-3.4.566-4.744 1.534a9.67 9.67 0 0 1 1.222 1.633l.201-.095a.75.75 0 0 1 .642 1.356l-.176.083c.375.93.614 1.935.683 2.989h.272a.75.75 0 0 1 0 1.5h-.286a9.73 9.73 0 0 1-.696 2.876l.203.096a.75.75 0 0 1-.642 1.356l-.233-.11a10.7 10.7 0 0 1-1.29 1.728Zm8.728-5.946h.217a.75.75 0 0 0 0-1.5h-.217a8.236 8.236 0 0 1 .54-2.293l.256.12a.75.75 0 1 0 .642-1.355l-.227-.107c.274-.447.589-.87.938-1.266A8.226 8.226 0 0 1 20.25 12a8.226 8.226 0 0 1-2.224 5.657 7.959 7.959 0 0 1-1-1.34l.295-.14a.75.75 0 1 0-.642-1.355l-.299.142a8.495 8.495 0 0 1-.497-2.214Zm-7.576 0a8.238 8.238 0 0 1-.547 2.233l-.339-.16a.75.75 0 0 0-.642 1.355l.304.144a9.24 9.24 0 0 1-1.059 1.388 8.225 8.225 0 0 1-2.274-5.703 8.499 8.499 0 0 1 2.371-5.74c.37.393.705.828.995 1.296l-.337.16a.75.75 0 1 0 .642 1.355l.366-.173a8.22 8.22 0 0 1 .538 2.345H8.1a.75.75 0 0 0 0 1.5h.207Zm-6.057-.765C2.358 6.591 6.678 2.25 12 2.25A9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12v-.015Z", "key": "23d01fe2825458edce25a257a40ca0c3b9c4914f" }]]);
const CricketBallB = createMeisterIcons("cricket-ball-b", [["path", { "fill": "currentColor", "d": "M21.05 12.05c0 2.5-1 4.7-2.6 6.4-.1.1-.2.2-.4.3-.1-.1-.2-.2-.4-.3-.7-.7-1.3-1.5-1.7-2.3-.6-1.2-1-2.6-1-4s.3-2.8 1-4c.4-.9 1-1.7 1.7-2.3.1-.1.2-.2.4-.3 1.8 1.4 3 3.8 3 6.5Z", "key": "1e823021cea91c093eeb9a9269ae0920cb4a7a02" }], ["path", { "fill": "currentColor", "d": "m18.137 4.668.373.29c1.995 1.551 3.29 4.176 3.29 7.092 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.01.01a2.103 2.103 0 0 1-.593.439l-.483.242-.382-.383a1.239 1.239 0 0 0-.101-.094.559.559 0 0 0-.104-.065l-.11-.055-.085-.086c-.747-.746-1.399-1.61-1.84-2.495-.642-1.283-1.08-2.797-1.08-4.335 0-1.49.316-3.012 1.082-4.342A7.328 7.328 0 0 1 17.14 5.3c.114-.115.281-.274.575-.42l.422-.212Zm-.11 1.85a5.852 5.852 0 0 0-1.392 1.937l-.016.037-.021.036c-.62 1.062-.898 2.324-.898 3.622 0 1.262.362 2.548.92 3.665.334.666.832 1.35 1.425 1.967 1.4-1.553 2.255-3.517 2.255-5.732 0-2.251-.908-4.249-2.273-5.533ZM9.05 12.05c0 1.4-.3 2.8-1 4-.4.9-1 1.7-1.7 2.3-.1.1-.2.2-.4.3-.1-.1-.2-.2-.4-.3-1.6-1.6-2.6-3.9-2.6-6.4 0-2.5 1-4.7 2.6-6.4.2 0 .3-.1.5-.3.8.8 1.5 1.7 2 2.7.6 1.2 1 2.6 1 4.1Z", "key": "f71fb2164d5e81c8c1672d49f201f594c84c7ecd" }], ["path", { "fill": "currentColor", "d": "m6.05 4.19.53.53c.843.842 1.597 1.806 2.14 2.895.645 1.287 1.08 2.801 1.08 4.435 0 1.49-.316 3.012-1.081 4.342A7.327 7.327 0 0 1 6.86 18.9a2.084 2.084 0 0 1-.575.42l-.483.243-.382-.383a1.244 1.244 0 0 0-.101-.094.564.564 0 0 0-.104-.065l-.11-.055-.085-.086c-1.741-1.74-2.82-4.23-2.82-6.93 0-2.71 1.087-5.09 2.804-6.914l.222-.236h.213a3.217 3.217 0 0 0 .08-.08l.531-.53Zm-.1 2.042a9.292 9.292 0 0 1 1.43 2.053c.555 1.113.92 2.399.92 3.765 0 1.297-.278 2.56-.898 3.622l-.02.036-.017.037a5.851 5.851 0 0 1-1.406 1.95C4.57 16.242 3.7 14.187 3.7 11.95c0-2.206.848-4.164 2.238-5.713l.012-.005Z", "key": "dbbc4564cf89e60ec06b07e525f0e50ee0e4af75" }], ["path", { "fill": "currentColor", "d": "M7.252 5.428A10.715 10.715 0 0 1 8.81 7.693c.772 1.333 1.09 2.862 1.09 4.357 0 1.538-.438 3.052-1.08 4.335-.392.786-.95 1.555-1.593 2.241 1.367.977 3.032 1.574 4.823 1.574 1.79 0 3.456-.597 4.823-1.574-.628-.673-1.192-1.46-1.51-2.364-.752-1.323-1.063-2.834-1.063-4.312 0-1.538.438-3.052 1.08-4.335.392-.786.95-1.555 1.593-2.241C15.606 4.397 13.941 3.8 12.15 3.8c-1.823 0-3.516.62-4.898 1.628Zm10.953.829c.235-.136.374-.275.474-.375l.568-.569-.603-.527C16.92 3.278 14.649 2.3 12.15 2.3c-2.5 0-4.771.978-6.494 2.486l-.603.527.567.567c.757.758 1.403 1.594 1.86 2.505l.01.022.012.02c.62 1.063.898 2.326.898 3.623 0 1.262-.362 2.548-.92 3.665-.345.688-.865 1.394-1.485 2.028a2.142 2.142 0 0 0-.473.375l-.57.569.604.527C7.28 20.722 9.551 21.7 12.05 21.7c2.5 0 4.771-.978 6.494-2.486l.84-.735-.999-.5a.562.562 0 0 1-.104-.065 1.239 1.239 0 0 1-.1-.094c-.657-.657-1.17-1.36-1.42-2.107l-.024-.074-.04-.067c-.619-1.062-.897-2.324-.897-3.622 0-1.262.362-2.548.92-3.665.345-.688.865-1.394 1.485-2.028Z", "key": "b1a1289e57f067261e7c36322688219e99fba07f" }], ["path", { "fill": "currentColor", "d": "M7.3 12.05a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm2.328-4.821a.75.75 0 0 1-.357.999l-1.9.9a.75.75 0 1 1-.642-1.356l1.9-.9a.75.75 0 0 1 .999.357Zm4.744 0a.75.75 0 0 1 .999-.357l1.9.9a.75.75 0 1 1-.642 1.356l-1.9-.9a.75.75 0 0 1-.357-1Zm3.256 8a.75.75 0 0 1-.357.999l-1.9.9a.75.75 0 1 1-.642-1.356l1.9-.9a.75.75 0 0 1 .999.357Zm-11.256 0a.75.75 0 0 1 1-.357l1.899.9a.75.75 0 1 1-.642 1.356l-1.9-.9a.75.75 0 0 1-.357-1ZM13.3 12.05a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Z", "key": "2c24694399838e16308007db2ce24f076fdea36b" }]]);
const Cross = createMeisterIcons("cross", [["path", { "fill": "currentColor", "d": "M18.18 5.82a.75.75 0 0 1 0 1.06l-11.3 11.3a.75.75 0 1 1-1.06-1.06l11.3-11.3a.75.75 0 0 1 1.06 0Z", "key": "123af52e75a45bf6b2d57cbc7e97465933f73007" }], ["path", { "fill": "currentColor", "d": "M5.82 5.82a.75.75 0 0 1 1.06 0l11.3 11.3a.75.75 0 0 1-1.06 1.06L5.82 6.88a.75.75 0 0 1 0-1.06Z", "key": "c434455365abed3ee14c5b0fd32a7734cc14e7bf" }]]);
const CrossBlock = createMeisterIcons("cross-block", [["path", { "fill": "currentColor", "d": "M15.884 4.927a.517.517 0 0 1 .736.003l2.4 2.4a.518.518 0 0 1 0 .74l-3.4 3.4a.75.75 0 0 0 1.06 1.06l3.4-3.4a2.017 2.017 0 0 0 0-2.86l-2.4-2.4a2.017 2.017 0 0 0-2.86 0l-3.308 3.408a.75.75 0 1 0 1.076 1.044l3.296-3.395ZM8.38 11.37a.75.75 0 0 1 0 1.06l-3.4 3.4a.518.518 0 0 0 0 .74l2.4 2.4a.518.518 0 0 0 .74 0l3.4-3.4a.75.75 0 1 1 1.06 1.06l-3.4 3.4a2.018 2.018 0 0 1-2.86 0l-2.4-2.4a2.018 2.018 0 0 1 0-2.86l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "d370c9c3cbdd5f171939ac1f79d1d52911490aaa" }], ["path", { "fill": "currentColor", "d": "M15.62 11.47a.75.75 0 0 1 1.06 0l3.4 3.4a2.017 2.017 0 0 1 0 2.86l-2.4 2.4a2.017 2.017 0 0 1-2.86 0l-3.4-3.4a.75.75 0 1 1 1.06-1.06l3.4 3.4a.518.518 0 0 0 .74 0l2.4-2.4a.518.518 0 0 0 0-.74l-3.4-3.4a.75.75 0 0 1 0-1.06Zm-7.5-6.54a.518.518 0 0 0-.74 0l-2.4 2.4a.518.518 0 0 0 0 .74l3.4 3.4a.75.75 0 0 1-1.06 1.06l-3.4-3.4a2.017 2.017 0 0 1 0-2.86l2.4-2.4a2.017 2.017 0 0 1 2.86 0l3.4 3.4a.75.75 0 0 1-1.06 1.06l-3.4-3.4Z", "key": "3f8c86cbe1aee157eca253ada0e6884e268c4ab3" }]]);
const CrossBlockB = createMeisterIcons("cross-block-b", [["path", { "fill": "currentColor", "d": "m19.55 8.6-3.4 3.4-4.1-4.2 3.3-3.4c.5-.5 1.3-.5 1.8 0l2.4 2.4c.5.5.5 1.3 0 1.8Z", "key": "6c5ea2808371d114b39e5e3ccb099474a3fb5594" }], ["path", { "fill": "currentColor", "d": "M15.884 4.927 13.096 7.8l3.06 3.134L19.02 8.07a.518.518 0 0 0 0-.74l-2.4-2.4a.517.517 0 0 0-.737-.003ZM14.82 3.87a2.017 2.017 0 0 1 2.86 0l2.4 2.4a2.017 2.017 0 0 1 0 2.86l-3.936 3.937-5.14-5.265L14.82 3.87ZM12.05 16.1l-3.4 3.4c-.5.5-1.3.5-1.8 0l-2.4-2.4c-.5-.5-.5-1.3 0-1.8l3.4-3.4 4.2 4.2Z", "key": "15816ab48e52fe40e5bf8b022286193e227b62bc" }], ["path", { "fill": "currentColor", "d": "m7.85 10.84 5.26 5.26-3.93 3.93a2.017 2.017 0 0 1-2.86 0l-2.4-2.4a2.017 2.017 0 0 1 0-2.86l3.93-3.93Zm0 2.12-2.87 2.87a.518.518 0 0 0 0 .74l2.4 2.4a.518.518 0 0 0 .74 0l2.87-2.87-3.14-3.14Z", "key": "80c87b6c2da6f95f986c0f0e42898a454dead863" }], ["path", { "fill": "currentColor", "d": "m19.55 17.2-2.4 2.4c-.5.5-1.3.5-1.8 0l-3.4-3.4 4.2-4.2 3.4 3.4c.5.4.5 1.3 0 1.8Z", "key": "c8d88dc158a0d04881b215752ec5bb19f22fdfcc" }], ["path", { "fill": "currentColor", "d": "m16.15 10.94 3.905 3.905c.442.374.62.923.62 1.417a2.08 2.08 0 0 1-.595 1.468l-2.4 2.4a2.018 2.018 0 0 1-2.86 0l-3.93-3.93 5.26-5.26Zm-3.14 5.26 2.87 2.87a.518.518 0 0 0 .74 0l2.4-2.4a.585.585 0 0 0 .155-.408c0-.167-.062-.251-.094-.276l-.032-.026-2.899-2.9-3.14 3.14Z", "key": "e23fd3a33608986710d35f167a4e6fb07d6eabed" }], ["path", { "fill": "currentColor", "d": "m11.99 7.802-4.172 4.172 4.172 4.172 4.172-4.172-4.172-4.172Z", "key": "72a863deb2dc825f9fe9f49f258bef789194a38a" }], ["path", { "fill": "currentColor", "d": "M6.757 11.974 11.99 6.74l5.233 5.233-5.233 5.232-5.233-5.232Zm2.122 0 3.111 3.111 3.111-3.111-3.111-3.111-3.111 3.11Z", "key": "3472316be28a1a3aa47d6b92f94e2ec6cdf73669" }], ["path", { "fill": "currentColor", "d": "M12.05 7.8 7.85 12l-3.4-3.4c-.5-.5-.5-1.3 0-1.8l2.4-2.4c.5-.5 1.3-.5 1.8 0l3.4 3.4Z", "key": "7f898592a97b0931a09bf317b7a886256066be74" }], ["path", { "fill": "currentColor", "d": "M8.12 4.93a.518.518 0 0 0-.74 0l-2.4 2.4a.518.518 0 0 0 0 .74l2.87 2.87 3.14-3.14-2.87-2.87Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0l3.93 3.93-5.26 5.26-3.93-3.93a2.017 2.017 0 0 1 0-2.86l2.4-2.4Z", "key": "a849712d652d0c7c23201d94ef151cb8708f3507" }]]);
const CrossSquare = createMeisterIcons("cross-square", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Zm7.02.27a.75.75 0 0 1 1.06 0l1.62 1.62 1.62-1.62a.75.75 0 1 1 1.06 1.06l-1.62 1.62 1.62 1.62a.75.75 0 1 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 0-1.06Z", "key": "74829fc558c051d5403bf5adb61c2bc26fe35782" }]]);
const CrossSquareB = createMeisterIcons("cross-square-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "b7e1df152effc2391b3ca4174373b7ad99a7b9ca" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "8389763ca12befdbdecf63b365e426972cacd05f" }], ["path", { "fill": "#fff", "d": "M9.27 9.27a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 0 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "bd49ce16c169c7939d14cd23ed4833c44f41b0bc" }], ["path", { "fill": "#fff", "d": "M14.63 9.27a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 1 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "e7450243abaa1536e2d6f27f32907d5af7e0b917" }]]);
const Crown = createMeisterIcons("crown", [["path", { "fill": "currentColor", "d": "m12.087 5.811 2.139 4.724.006.013c.4.798 1.401 1.037 2.078.595l4.045-2.55-1.692 9.4-.002.013a.652.652 0 0 1-.658.556h-12a.652.652 0 0 1-.657-.556l-.002-.013L3.66 8.637l3.973 2.529.035.017c.347.174.76.231 1.141.13.374-.1.742-.368.893-.82l2.385-4.682ZM11.08 4.496a1.217 1.217 0 0 1 2.048 0l.034.051 2.398 5.296 4.646-2.929.116-.03c.353-.087.774-.063 1.122.158.182.116.349.29.445.528.092.23.1.47.05.695l-1.794 9.968a2.152 2.152 0 0 1-2.14 1.83h-12a2.152 2.152 0 0 1-2.141-1.83L2.031 8.057l.06-.182a1.5 1.5 0 0 1 .66-.798c.3-.175.794-.3 1.26.006l4.338 2.76 2.706-5.31.024-.037Z", "key": "313938618af82ac4cb7b55161a87b730e06ea965" }]]);
const CrownAlt = createMeisterIcons("crown-alt", [["path", { "fill": "currentColor", "d": "M12.103 13.513c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7-.4.4-1 .4-1.4 0-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.4-.3.7-.3Z", "key": "69015fcb552967f163ec45820053e646c479c86f" }], ["path", { "fill": "currentColor", "d": "m12.087 5.811 2.139 4.724.006.013c.4.798 1.401 1.037 2.078.595l4.045-2.55-1.692 9.4-.002.013a.652.652 0 0 1-.658.556h-12a.652.652 0 0 1-.657-.556l-.002-.013L3.66 8.637l3.973 2.529.035.017c.347.174.76.231 1.14.13.375-.1.743-.368.894-.82l2.385-4.682Zm-1.008-1.315a1.218 1.218 0 0 1 2.048 0l.034.051 2.398 5.296 4.646-2.929.116-.03c.352-.087.774-.063 1.122.158.182.116.348.29.445.528.092.23.1.47.05.695l-1.794 9.968a2.152 2.152 0 0 1-2.14 1.83h-12a2.152 2.152 0 0 1-2.141-1.83L2.03 8.057l.06-.182a1.5 1.5 0 0 1 .66-.798c.3-.175.794-.3 1.26.006l4.338 2.76 2.706-5.31.024-.037Z", "key": "5e5d014563999fd459e5fe3c19645a0f0b02285a" }]]);
const CrownAltB = createMeisterIcons("crown-alt-b", [["path", { "fill": "currentColor", "d": "m21.203 8.113-1.8 10c-.1.7-.7 1.2-1.4 1.2h-12c-.7 0-1.3-.5-1.4-1.2l-1.8-10c.1-.3.5-.6.8-.4l4.4 2.8c.4.2.9.1 1-.3l2.7-5.3c.2-.3.6-.3.8 0l2.4 5.3c.2.4.7.5 1 .3l4.6-2.9c.4-.1.8.1.7.5Z", "key": "937109ada2668b00155ddd152d2a183ba0c6abda" }], ["path", { "fill": "currentColor", "d": "m12.087 5.811 2.139 4.724.006.013c.4.798 1.401 1.037 2.078.595l4.045-2.55-1.692 9.4-.002.013a.652.652 0 0 1-.658.556h-12a.652.652 0 0 1-.657-.556l-.002-.013L3.66 8.637l3.973 2.529.035.017c.347.174.76.231 1.14.13.375-.1.743-.368.894-.82l2.385-4.682Zm-1.008-1.315a1.218 1.218 0 0 1 2.048 0l.034.051 2.398 5.296 4.646-2.929.116-.03c.352-.087.774-.063 1.122.158.182.116.348.29.445.528.092.23.1.47.05.695l-1.794 9.968a2.152 2.152 0 0 1-2.14 1.83h-12a2.152 2.152 0 0 1-2.141-1.83L2.03 8.057l.06-.182a1.5 1.5 0 0 1 .66-.798c.3-.175.794-.3 1.26.006l4.338 2.76 2.706-5.31.024-.037Z", "key": "e3246ab7160df13b09398a303ddb1ea651454299" }], ["path", { "fill": "#fff", "d": "M12.103 13.513c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7-.4.4-1 .4-1.4 0-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.4-.3.7-.3Z", "key": "06ee9c0b8073bc1ab7b250687dcde340830933aa" }]]);
const CrownB = createMeisterIcons("crown-b", [["path", { "fill": "currentColor", "d": "m21.203 8.113-1.8 10c-.1.7-.7 1.2-1.4 1.2h-12c-.7 0-1.3-.5-1.4-1.2l-1.8-10c.1-.3.5-.6.8-.4l4.4 2.8c.4.2.9.1 1-.3l2.7-5.3c.2-.3.6-.3.8 0l2.4 5.3c.2.4.7.5 1 .3l4.6-2.9c.4-.1.8.1.7.5Z", "key": "3f0177bdde070eb44e96e72415b5db7d45611bfc" }], ["path", { "fill": "currentColor", "d": "m12.087 5.811 2.139 4.724.006.013c.4.798 1.401 1.037 2.078.595l4.045-2.55-1.692 9.4-.002.013a.652.652 0 0 1-.658.556h-12a.652.652 0 0 1-.657-.556l-.002-.013L3.66 8.637l3.973 2.529.035.017c.347.174.76.231 1.14.13.375-.1.743-.368.894-.82l2.385-4.682Zm-1.008-1.315a1.218 1.218 0 0 1 2.048 0l.034.051 2.398 5.296 4.646-2.929.116-.03c.352-.087.774-.063 1.122.158.182.116.348.29.445.528.092.23.1.47.05.695l-1.794 9.968a2.152 2.152 0 0 1-2.14 1.83h-12a2.152 2.152 0 0 1-2.141-1.83L2.03 8.057l.06-.182a1.5 1.5 0 0 1 .66-.798c.3-.175.794-.3 1.26.006l4.338 2.76 2.706-5.31.024-.037Z", "key": "4fbdf1aaea9ce867c0d67077be019dc6cefd3c1e" }]]);
const CubeOverlap = createMeisterIcons("cube-overlap", [["path", { "fill": "currentColor", "d": "M10.555 1.573a3.551 3.551 0 0 1 2.79 0l.043.018 6.734 3.92.003.002a2.894 2.894 0 0 1 1.475 2.55v7.7c0 1.076-.547 1.99-1.414 2.61l-.029.02-6.712 3.907c-.866.565-1.964.53-2.867.014l-.005-.003-6.695-3.897-.003-.002a2.894 2.894 0 0 1-1.475-2.55v-7.8c0-1.053.528-1.986 1.334-2.524l.019-.012 6.76-3.935.042-.018Zm.63 1.363L4.549 6.798A1.525 1.525 0 0 0 3.9 8.062v7.8c0 .534.258.984.722 1.25l.005.002 6.695 3.897.003.002c.488.278.979.246 1.309.025l.019-.012 6.688-3.893c.514-.378.759-.856.759-1.37v-7.7c0-.534-.258-.984-.722-1.25l-.005-.002-6.658-3.875a2.052 2.052 0 0 0-1.53 0Z", "key": "fd77804d2eb5f36232540263b598c38a37129cd6" }], ["path", { "fill": "currentColor", "d": "m11.204 13.224-7.481 4.29-.746-1.302 7.518-4.31.02-.01c.457-.229.875-.38 1.435-.38s.978.151 1.435.38l.02.01 7.518 4.31-.746 1.301-7.481-4.289c-.33-.164-.51-.212-.746-.212s-.415.048-.746.212Z", "key": "26fcc83fadd7f3adcf66b88d6dd2e0f481c358d0" }], ["path", { "fill": "currentColor", "d": "m2.977 7.613.746-1.301 7.5 4.3c-.001 0 0 0 0 0 .488.279.98.247 1.311.026l.021-.014 7.522-4.312.746 1.301-7.48 4.289c-.866.563-1.963.527-2.865.012l-7.501-4.3Z", "key": "4e741e5cacd766b670df2f5eb4126b6c6f6298b7" }], ["path", { "fill": "currentColor", "d": "M12.7 12.263v9.6h-1.5v-9.6h1.5Z", "key": "6ba680f94cefd1041232b4a24f98a0153d688deb" }]]);
const Cup = createMeisterIcons("cup", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h8c1.286 0 2.25.964 2.25 2.25v8c0 1.186-1.064 2.25-2.25 2.25H6c-1.286 0-2.25-.964-2.25-2.25V8Zm13.93 8.701c-.345 1.7-1.904 3.049-3.68 3.049H6c-2.114 0-3.75-1.636-3.75-3.75V8c0-2.114 1.636-3.75 3.75-3.75h8c1.874 0 3.372 1.285 3.688 3.05A4.765 4.765 0 0 1 21.75 12a4.765 4.765 0 0 1-4.07 4.701Zm.07-7.863A3.266 3.266 0 0 1 20.25 12a3.266 3.266 0 0 1-2.5 3.162V8.838Z", "key": "56b90d0fdc29db000961590992ce948360989304" }]]);
const CupAlt = createMeisterIcons("cup-alt", [["path", { "fill": "currentColor", "d": "M2.25 8.5V8c0-2.114 1.636-3.75 3.75-3.75h8c1.874 0 3.372 1.285 3.688 3.05A4.765 4.765 0 0 1 21.75 12a4.765 4.765 0 0 1-4.07 4.701c-.345 1.7-1.904 3.049-3.68 3.049H6c-2.114 0-3.75-1.636-3.75-3.75V8.5Zm1.5 6.25v-5.5H8c.006 0 .075.01.157.093.082.082.093.15.093.157v5c0 .006-.01.075-.093.157-.082.082-.15.093-.157.093H3.75Zm.012 1.5c.117 1.159 1.037 2 2.238 2h8c1.186 0 2.25-1.064 2.25-2.25V8c0-1.286-.964-2.25-2.25-2.25H6c-1.201 0-2.121.841-2.238 2H8c.494 0 .925.24 1.218.532.293.293.532.724.532 1.218v5c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532H3.762ZM20.25 12a3.266 3.266 0 0 0-2.5-3.162v6.324A3.266 3.266 0 0 0 20.25 12Z", "key": "14feb7a1023d7a9a3a6b0c6592f07f58f4acd533" }]]);
const CupAltB = createMeisterIcons("cup-alt-b", [["path", { "fill": "currentColor", "d": "M3.812 7.8H8.05c1.062 0 1.75.885 1.75 1.75v5c0 .865-.688 1.75-1.75 1.75H3.812c.117 1.159 1.037 2 2.238 2h8c1.286 0 2.25-.964 2.25-2.25v-8c0-1.27-1.048-2.25-2.25-2.25h-8c-1.201 0-2.121.841-2.238 2ZM2.3 8.05c0-2.114 1.636-3.75 3.75-3.75h8c1.998 0 3.75 1.62 3.75 3.75v8c0 2.114-1.636 3.75-3.75 3.75h-8c-2.114 0-3.75-1.636-3.75-3.75V14.8h5.75c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176v-5a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074H2.3V8.05Z", "key": "dc5cc40f2769aab9814b985378163c7293cfd9a7" }], ["path", { "fill": "currentColor", "d": "M16.3 8.05a.75.75 0 0 1 .75-.75 4.762 4.762 0 0 1 4.75 4.75 4.762 4.762 0 0 1-4.75 4.75.75.75 0 1 1 0-1.5 3.262 3.262 0 0 0 3.25-3.25 3.262 3.262 0 0 0-3.25-3.25.75.75 0 0 1-.75-.75Zm-7.25 1.5v5c0 .5-.4 1-1 1h-5v-7h5c.5 0 1 .4 1 1Z", "key": "b8f2fc4aebfce491040864c0a87ae62d53b75081" }], ["path", { "fill": "currentColor", "d": "M2.3 7.8h5.75c.865 0 1.75.688 1.75 1.75v5c0 .865-.688 1.75-1.75 1.75H2.3V7.8Zm1.5 1.5v5.5h4.25c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176v-5c0-.08-.03-.135-.074-.177A.27.27 0 0 0 8.05 9.3H3.8Z", "key": "5da87a3be3d663b67a075e4f09ed318c7dfb2a89" }]]);
const CupB = createMeisterIcons("cup-b", [["path", { "fill": "currentColor", "d": "M17.05 8.05v8c0 1.7-1.3 3-3 3h-8c-1.7 0-3-1.3-3-3v-8c0-1.7 1.3-3 3-3h8c1.6 0 3 1.3 3 3Z", "key": "3180f09b67a8f3678f2a72d66fb57088126285c2" }], ["path", { "fill": "currentColor", "d": "M6.05 5.8c-1.286 0-2.25.964-2.25 2.25v8c0 1.286.964 2.25 2.25 2.25h8c1.286 0 2.25-.964 2.25-2.25v-8c0-1.27-1.048-2.25-2.25-2.25h-8ZM2.3 8.05c0-2.114 1.636-3.75 3.75-3.75h8c1.998 0 3.75 1.62 3.75 3.75v8c0 2.114-1.636 3.75-3.75 3.75h-8c-2.114 0-3.75-1.636-3.75-3.75v-8Z", "key": "3cb5928bdb04cd421d0497fb06dd81915681b422" }], ["path", { "fill": "currentColor", "d": "M16.3 7.3h.75c2.602 0 4.75 2.024 4.75 4.75a4.762 4.762 0 0 1-4.75 4.75h-.75V7.3Zm1.5 1.583v6.329a3.266 3.266 0 0 0 2.5-3.162c0-1.604-1.065-2.844-2.5-3.167Z", "key": "452e282edf698fca2f5333cade84cdcd9704ec73" }]]);
const CupSmooth = createMeisterIcons("cup-smooth", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h8c1.286 0 2.25.964 2.25 2.25v4c0 .792-.177 1.601-.451 2.334-.89 2.31-3.112 3.916-5.799 3.916A6.207 6.207 0 0 1 3.75 12V8Zm13.143 7.562C15.63 18.072 13.04 19.75 10 19.75A7.707 7.707 0 0 1 2.25 12V8c0-2.114 1.636-3.75 3.75-3.75h8c2.114 0 3.75 1.636 3.75 3.75v.263c.085-.008.169-.013.25-.013 1.998 0 3.75 1.62 3.75 3.75 0 2.114-1.636 3.75-3.75 3.75-.37 0-.757-.079-1.107-.188ZM17.75 12V9.777c.096-.017.183-.027.25-.027 1.202 0 2.25.98 2.25 2.25 0 1.286-.964 2.25-2.25 2.25a2.19 2.19 0 0 1-.565-.092A7.932 7.932 0 0 0 17.75 12Z", "key": "fb5c89ea73a5463d9343ee2cb9d90161b6492c34" }]]);
const CupSmoothAlt = createMeisterIcons("cup-smooth-alt", [["path", { "fill": "currentColor", "d": "M6 5.75c-1.286 0-2.25.964-2.25 2.25v.25H8c.494 0 .925.24 1.218.532.293.293.532.724.532 1.218v5c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532H5.91a6.24 6.24 0 0 0 4.09 1.5c2.687 0 4.909-1.606 5.799-3.916.274-.733.451-1.542.451-2.334V8c0-1.286-.964-2.25-2.25-2.25H6ZM3.73 16.585A7.713 7.713 0 0 0 10 19.75c3.04 0 5.63-1.679 6.893-4.188.35.11.738.188 1.107.188 2.114 0 3.75-1.636 3.75-3.75 0-2.13-1.752-3.75-3.75-3.75-.081 0-.165.005-.25.013V8c0-2.114-1.636-3.75-3.75-3.75H6C3.886 4.25 2.25 5.886 2.25 8v4a7.76 7.76 0 0 0 1.235 4.227.751.751 0 0 0 .246.358Zm.913-1.335H8c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157v-5c0-.006-.01-.075-.093-.157-.082-.082-.15-.093-.157-.093H3.75V12c0 1.196.325 2.307.893 3.25ZM17.75 9.777V12c0 .743-.121 1.477-.315 2.158.2.057.4.092.565.092 1.286 0 2.25-.964 2.25-2.25 0-1.27-1.048-2.25-2.25-2.25-.067 0-.154.01-.25.027Z", "key": "8620f52c21973d726688ce083c062ed3994d7e13" }]]);
const CupSmoothAltB = createMeisterIcons("cup-smooth-alt-b", [["path", { "fill": "currentColor", "d": "M6.05 5.8c-1.286 0-2.25.964-2.25 2.25v1a.75.75 0 0 1-1.5 0v-1c0-2.114 1.636-3.75 3.75-3.75h8c2.114 0 3.75 1.636 3.75 3.75v1.2a.75.75 0 0 1-1.5 0v-1.2c0-1.286-.964-2.25-2.25-2.25h-8Zm10.67 8.15a.75.75 0 0 1 .43.97c-1.113 2.893-3.994 4.88-7.2 4.88-2.564 0-4.881-1.335-6.308-3.31a.75.75 0 1 1 1.216-.879c1.173 1.624 3.056 2.69 5.092 2.69 2.594 0 4.913-1.614 5.8-3.92a.75.75 0 0 1 .97-.43Z", "key": "d8c552f529289a168361adf5618a585ec256d2b3" }], ["path", { "fill": "currentColor", "d": "M17.8 9.727v2.323c0 .743-.121 1.477-.315 2.158.2.056.4.092.565.092 1.286 0 2.25-.964 2.25-2.25 0-1.253-1.034-2.26-2.27-2.35a1.583 1.583 0 0 0-.23.027Zm-.987-1.289c.32-.106.813-.238 1.237-.238h.023l.024.001c1.952.122 3.703 1.71 3.703 3.849 0 2.114-1.636 3.75-3.75 3.75-.66 0-1.378-.25-1.835-.48l-.604-.301.237-.632c.275-.734.452-1.544.452-2.337V8.61l.513-.172ZM9.05 10.05v5c0 .5-.4 1-1 1h-3.8c-.8-1.1-1.3-2.5-1.3-4v-3h5c.6 0 1.1.4 1.1 1Z", "key": "ab0f17dc1970fae4a08044f37fb64646dd71b86a" }], ["path", { "fill": "currentColor", "d": "M2.2 8.3h5.75c.917 0 1.85.645 1.85 1.75v5c0 .865-.688 1.75-1.75 1.75H3.868l-.225-.309A7.58 7.58 0 0 1 2.2 12.05V8.3Zm1.5 1.5v2.25c0 1.197.359 2.324.947 3.25H8.05c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176v-5a.195.195 0 0 0-.069-.16.427.427 0 0 0-.281-.09H3.7Z", "key": "6b74c77972ffdf3faa7575a4161ee25efa9b9c71" }]]);
const CupSmoothB = createMeisterIcons("cup-smooth-b", [["path", { "fill": "currentColor", "d": "M17.05 8.05v4c0 .9-.2 1.8-.5 2.6-1 2.6-3.6 4.4-6.5 4.4-3.9 0-7-3.1-7-7v-4c0-1.7 1.3-3 3-3h8c1.6 0 3 1.3 3 3Z", "key": "b5f4b0de1cfc7850049be3045805f0b813639ea8" }], ["path", { "fill": "currentColor", "d": "M6.05 5.8c-1.286 0-2.25.964-2.25 2.25v4a6.207 6.207 0 0 0 6.25 6.25c2.593 0 4.911-1.612 5.799-3.916.274-.733.451-1.542.451-2.334v-4c0-1.27-1.048-2.25-2.25-2.25h-8ZM2.3 8.05c0-2.114 1.636-3.75 3.75-3.75h8c1.998 0 3.75 1.62 3.75 3.75v4c0 1.007-.223 1.997-.548 2.863l-.002.006c-1.113 2.894-3.994 4.881-7.2 4.881a7.707 7.707 0 0 1-7.75-7.75v-4Z", "key": "14c4280dbd94095341d48b06ba47e44d17fb9040" }], ["path", { "fill": "currentColor", "d": "M17.8 9.727v2.323a7.97 7.97 0 0 1-.318 2.169c.18.05.368.081.568.081 1.286 0 2.25-.964 2.25-2.25 0-1.253-1.034-2.26-2.27-2.35a1.583 1.583 0 0 0-.23.027Zm-.987-1.289c.32-.106.813-.238 1.237-.238h.023l.024.001c1.952.122 3.703 1.71 3.703 3.849 0 2.114-1.636 3.75-3.75 3.75-.77 0-1.393-.258-1.835-.48l-.604-.301.237-.632c.275-.734.452-1.544.452-2.337V8.61l.513-.172Z", "key": "6add56fabf394da957484bcf5a9fb7bde990fe08" }]]);
const Currency = createMeisterIcons("currency", [["path", { "fill": "currentColor", "d": "M6.848 7.002c-1.29.915-1.998 2.11-1.998 3.348 0 1.239.707 2.433 1.998 3.348C8.136 14.61 9.956 15.2 12 15.2s3.864-.589 5.152-1.502c1.29-.915 1.998-2.11 1.998-3.348 0-1.239-.707-2.433-1.998-3.348C15.864 6.09 14.044 5.5 12 5.5s-3.864.589-5.152 1.502ZM5.98 5.778C7.55 4.665 9.681 4 12 4c2.319 0 4.45.665 6.02 1.778 1.569 1.112 2.63 2.718 2.63 4.572s-1.061 3.46-2.63 4.572C16.45 16.035 14.319 16.7 12 16.7c-2.319 0-4.45-.665-6.02-1.778-1.569-1.112-2.63-2.718-2.63-4.572s1.061-3.46 2.63-4.572Z", "key": "14fe97892e8650c83389a6eb926e298c36a29f6a" }], ["path", { "fill": "currentColor", "d": "M3.35 10.35v3.3c0 1.854 1.049 3.46 2.616 4.574C7.533 19.337 9.664 20 12 20s4.467-.663 6.034-1.776c1.567-1.113 2.616-2.72 2.616-4.574v-3.3h-1.5c0 1.3-.705 2.491-1.98 3.386-1.28.898-3.099 1.464-5.17 1.464-2.064 0-3.883-.588-5.166-1.499-1.283-.912-1.984-2.106-1.984-3.351h-1.5Zm15.78 3.667a7.119 7.119 0 0 1-1.1.947C16.46 16.066 14.33 16.7 12 16.7c-2.336 0-4.467-.662-6.034-1.776a7.277 7.277 0 0 1-1.1-.956c.108 1.13.795 2.2 1.968 3.033C8.117 17.912 9.936 18.5 12 18.5c2.065 0 3.883-.588 5.166-1.499 1.156-.822 1.84-1.872 1.964-2.984Z", "key": "9c68839703d2a9e081848c8c0bab4e7309796f8f" }]]);
const CurrencyAlt = createMeisterIcons("currency-alt", [["path", { "fill": "currentColor", "d": "M6.848 7.002c-1.29.915-1.998 2.11-1.998 3.348 0 1.239.707 2.433 1.998 3.348C8.136 14.61 9.956 15.2 12 15.2s3.864-.589 5.152-1.502c1.29-.915 1.998-2.11 1.998-3.348 0-1.239-.707-2.433-1.998-3.348C15.864 6.09 14.044 5.5 12 5.5s-3.864.589-5.152 1.502ZM5.98 5.778C7.55 4.665 9.681 4 12 4c2.319 0 4.45.665 6.02 1.778 1.569 1.112 2.63 2.718 2.63 4.572s-1.061 3.46-2.63 4.572C16.45 16.035 14.319 16.7 12 16.7c-2.319 0-4.45-.665-6.02-1.778-1.569-1.112-2.63-2.718-2.63-4.572s1.061-3.46 2.63-4.572Z", "key": "86281616d3890a0e14f0364bbea62a1e773028eb" }], ["path", { "fill": "currentColor", "d": "M3.35 10.35v3.3c0 1.854 1.049 3.46 2.616 4.574C7.533 19.337 9.664 20 12 20s4.467-.663 6.034-1.776c1.567-1.113 2.616-2.72 2.616-4.574v-3.3h-1.5c0 1.3-.705 2.491-1.98 3.386-1.28.898-3.099 1.464-5.17 1.464-2.064 0-3.883-.588-5.166-1.499-1.283-.912-1.984-2.106-1.984-3.351h-1.5Zm15.78 3.667a7.119 7.119 0 0 1-1.1.947C16.46 16.066 14.33 16.7 12 16.7c-2.336 0-4.467-.662-6.034-1.776a7.277 7.277 0 0 1-1.1-.956c.108 1.13.795 2.2 1.968 3.033C8.117 17.912 9.936 18.5 12 18.5c2.065 0 3.883-.588 5.166-1.499 1.156-.822 1.84-1.872 1.964-2.984Z", "key": "39d98fa40fcbc6db66ae8ef0964a5e69b782bd89" }], ["path", { "fill": "currentColor", "d": "M9.05 9.091c-.738.424-1 .897-1 1.259 0 .362.262.835 1 1.259.718.412 1.76.691 2.95.691 1.19 0 2.232-.279 2.95-.691.738-.424 1-.897 1-1.259 0-.362-.262-.835-1-1.259C14.232 8.68 13.19 8.4 12 8.4c-1.19 0-2.232.279-2.95.691Zm-.747-1.3C9.286 7.226 10.595 6.9 12 6.9c1.405 0 2.714.326 3.697.89.963.554 1.753 1.431 1.753 2.56s-.79 2.006-1.753 2.56c-.983.565-2.292.89-3.697.89-1.405 0-2.714-.325-3.697-.89-.963-.554-1.753-1.431-1.753-2.56s.79-2.006 1.753-2.56Z", "key": "e1f64a7cc69b7bd225adc3d4ed76cedf04744a8e" }]]);
const CurrencyAltB = createMeisterIcons("currency-alt-b", [["path", { "fill": "currentColor", "d": "M6.848 7.002c-1.29.915-1.998 2.11-1.998 3.348 0 1.239.707 2.433 1.998 3.348C8.136 14.61 9.956 15.2 12 15.2s3.864-.589 5.152-1.502c1.29-.915 1.998-2.11 1.998-3.348 0-1.239-.707-2.433-1.998-3.348C15.864 6.09 14.044 5.5 12 5.5s-3.864.589-5.152 1.502ZM5.98 5.778C7.55 4.665 9.681 4 12 4c2.319 0 4.45.665 6.02 1.778 1.569 1.112 2.63 2.718 2.63 4.572s-1.061 3.46-2.63 4.572C16.45 16.035 14.319 16.7 12 16.7c-2.319 0-4.45-.665-6.02-1.778-1.569-1.112-2.63-2.718-2.63-4.572s1.061-3.46 2.63-4.572Z", "key": "019a65abb43842e7c4f494d5e6f8cfbe30597adc" }], ["path", { "fill": "currentColor", "d": "M19.9 10.35v3.3c0 3.1-3.5 5.6-7.9 5.6s-7.9-2.5-7.9-5.6v-3.3c0 3.1 3.5 5.6 7.9 5.6s7.9-2.4 7.9-5.6Z", "key": "6dc262e50a8162d0f77cb4ff9ffc446eb5c82f85" }], ["path", { "fill": "currentColor", "d": "M3.35 10.35v3.3c0 1.854 1.049 3.46 2.616 4.574C7.533 19.337 9.664 20 12 20s4.467-.663 6.034-1.776c1.567-1.113 2.616-2.72 2.616-4.574v-3.3h-1.5c0 1.3-.705 2.491-1.98 3.386-1.28.898-3.099 1.464-5.17 1.464-2.064 0-3.883-.588-5.166-1.499-1.283-.912-1.984-2.106-1.984-3.351h-1.5Zm15.78 3.667a7.119 7.119 0 0 1-1.1.947C16.46 16.066 14.33 16.7 12 16.7c-2.336 0-4.467-.662-6.034-1.776a7.277 7.277 0 0 1-1.1-.956c.108 1.13.795 2.2 1.968 3.033C8.117 17.912 9.936 18.5 12 18.5c2.065 0 3.883-.588 5.166-1.499 1.156-.822 1.84-1.872 1.964-2.984Z", "key": "984d88200a6fb38beeeda4991ba52a5ddf338c7f" }], ["path", { "fill": "currentColor", "d": "M12 13.05c2.596 0 4.7-1.209 4.7-2.7s-2.104-2.7-4.7-2.7-4.7 1.209-4.7 2.7 2.104 2.7 4.7 2.7Z", "key": "6a70a51072026b06af48a97194a763cc020a596b" }], ["path", { "fill": "currentColor", "d": "M9.05 9.091c-.738.424-1 .897-1 1.259 0 .362.262.835 1 1.259.718.412 1.76.691 2.95.691 1.19 0 2.232-.279 2.95-.691.738-.424 1-.897 1-1.259 0-.362-.262-.835-1-1.259C14.232 8.68 13.19 8.4 12 8.4c-1.19 0-2.232.279-2.95.691Zm-.747-1.3C9.286 7.226 10.595 6.9 12 6.9c1.405 0 2.714.326 3.697.89.963.554 1.753 1.431 1.753 2.56s-.79 2.006-1.753 2.56c-.983.565-2.292.89-3.697.89-1.405 0-2.714-.325-3.697-.89-.963-.554-1.753-1.431-1.753-2.56s.79-2.006 1.753-2.56Z", "key": "3b8f2f284f21fbac0d05c1a9f4801f8d9ba6484d" }]]);
const CurrencyAltVarB = createMeisterIcons("currency-alt-var-b", [["path", { "fill": "currentColor", "d": "M6.848 7.002c-1.29.915-1.998 2.11-1.998 3.348 0 1.239.707 2.433 1.998 3.348C8.136 14.61 9.956 15.2 12 15.2s3.864-.589 5.152-1.502c1.29-.915 1.998-2.11 1.998-3.348 0-1.239-.707-2.433-1.998-3.348C15.864 6.09 14.044 5.5 12 5.5s-3.864.589-5.152 1.502ZM5.98 5.778C7.55 4.665 9.681 4 12 4c2.319 0 4.45.665 6.02 1.778 1.569 1.112 2.63 2.718 2.63 4.572s-1.061 3.46-2.63 4.572C16.45 16.035 14.319 16.7 12 16.7c-2.319 0-4.45-.665-6.02-1.778-1.569-1.112-2.63-2.718-2.63-4.572s1.061-3.46 2.63-4.572Z", "key": "5099f01f0c63a42c0f9e4f3a8c508a2ac5504af9" }], ["path", { "fill": "currentColor", "d": "M19.9 10.35v3.3c0 3.1-3.5 5.6-7.9 5.6s-7.9-2.5-7.9-5.6v-3.3c0 3.1 3.5 5.6 7.9 5.6s7.9-2.4 7.9-5.6Z", "key": "92ee5b8e40dda10bb47902010571e99953df6092" }], ["path", { "fill": "currentColor", "d": "M3.35 10.35v3.3c0 1.854 1.049 3.46 2.616 4.574C7.533 19.337 9.664 20 12 20c2.335 0 4.467-.663 6.034-1.776 1.567-1.113 2.616-2.72 2.616-4.574v-3.3h-1.5c0 1.3-.705 2.491-1.98 3.386-1.28.898-3.099 1.464-5.17 1.464-2.064 0-3.883-.588-5.166-1.499-1.283-.912-1.984-2.106-1.984-3.351h-1.5Zm15.78 3.667a7.119 7.119 0 0 1-1.1.947C16.46 16.066 14.33 16.7 12 16.7c-2.336 0-4.467-.662-6.034-1.776a7.277 7.277 0 0 1-1.1-.956c.108 1.13.795 2.2 1.968 3.033C8.117 17.912 9.936 18.5 12 18.5c2.064 0 3.883-.588 5.166-1.499 1.156-.822 1.84-1.872 1.964-2.984Z", "key": "b1d0e45f96c2208b9d37870479b2c1d6baad504f" }], ["path", { "fill": "currentColor", "d": "M9.05 9.091c-.738.424-1 .897-1 1.259 0 .362.262.835 1 1.259.718.412 1.76.691 2.95.691 1.19 0 2.232-.279 2.95-.691.738-.424 1-.897 1-1.259 0-.362-.262-.835-1-1.259C14.232 8.68 13.19 8.4 12 8.4c-1.19 0-2.232.279-2.95.691Zm-.747-1.3C9.286 7.226 10.595 6.9 12 6.9c1.405 0 2.714.326 3.697.89.963.554 1.753 1.431 1.753 2.56s-.79 2.006-1.753 2.56c-.983.565-2.292.89-3.697.89-1.405 0-2.714-.325-3.697-.89-.963-.554-1.753-1.431-1.753-2.56s.79-2.006 1.753-2.56Z", "key": "d56ce2b260a0223c21ffd7f1e8b6e3bea7987bf6" }]]);
const CurrencyVarB = createMeisterIcons("currency-var-b", [["path", { "fill": "currentColor", "d": "M6.848 7.002c-1.29.915-1.998 2.11-1.998 3.348 0 1.239.707 2.433 1.998 3.348C8.136 14.61 9.956 15.2 12 15.2s3.864-.589 5.152-1.502c1.29-.915 1.998-2.11 1.998-3.348 0-1.239-.707-2.433-1.998-3.348C15.864 6.09 14.044 5.5 12 5.5s-3.864.589-5.152 1.502ZM5.98 5.778C7.55 4.665 9.681 4 12 4c2.319 0 4.45.665 6.02 1.778 1.569 1.112 2.63 2.718 2.63 4.572s-1.061 3.46-2.63 4.572C16.45 16.035 14.319 16.7 12 16.7c-2.319 0-4.45-.665-6.02-1.778-1.569-1.112-2.63-2.718-2.63-4.572s1.061-3.46 2.63-4.572Z", "key": "386e1ebb9100cff4bed355672130bf30df5c3eee" }], ["path", { "fill": "currentColor", "d": "M19.9 10.35v3.3c0 3.1-3.5 5.6-7.9 5.6s-7.9-2.5-7.9-5.6v-3.3c0 3.1 3.5 5.6 7.9 5.6s7.9-2.4 7.9-5.6Z", "key": "ec0d8ce16222c13aa269a76dc93c493ef9decaeb" }], ["path", { "fill": "currentColor", "d": "M3.35 10.35v3.3c0 1.854 1.049 3.46 2.616 4.574C7.533 19.337 9.664 20 12 20s4.467-.663 6.034-1.776c1.567-1.113 2.616-2.72 2.616-4.574v-3.3h-1.5c0 1.3-.705 2.491-1.98 3.386-1.28.898-3.099 1.464-5.17 1.464-2.064 0-3.883-.588-5.166-1.499-1.283-.912-1.984-2.106-1.984-3.351h-1.5Zm15.78 3.667a7.119 7.119 0 0 1-1.1.947C16.46 16.066 14.33 16.7 12 16.7c-2.336 0-4.467-.662-6.034-1.776a7.277 7.277 0 0 1-1.1-.956c.108 1.13.795 2.2 1.968 3.033C8.117 17.912 9.936 18.5 12 18.5c2.065 0 3.883-.588 5.166-1.499 1.156-.822 1.84-1.872 1.964-2.984Z", "key": "a3e2830045d2c6950f362ce3dcda35b2fcb182a6" }]]);
const Cursor = createMeisterIcons("cursor", [["path", { "fill": "currentColor", "d": "M6.771 5.373 16.21 7.85l.07.035c.23.115.513.34.62.714.122.426-.049.814-.308 1.073l-6.919 6.919c-.26.26-.647.43-1.073.308-.373-.107-.599-.39-.714-.62l-.035-.07L5.373 6.77c-.11-.353-.09-.811.248-1.15.339-.338.797-.357 1.15-.248Zm.207 1.604 2.118 8.07 5.95-5.952-8.068-2.118Zm8.552 1.635Z", "key": "1918541b73666aaa7479d0bdc010726fb47afbbf" }], ["path", { "fill": "currentColor", "d": "M12.13 12.13a.75.75 0 0 1 1.06 0l5.277 5.276a.75.75 0 0 1-1.06 1.061L12.13 13.19a.75.75 0 0 1 0-1.06Z", "key": "211befa95cda1a8804e10a315bfb9542e98fcf1a" }]]);
const CursorB = createMeisterIcons("cursor-b", [["path", { "fill": "currentColor", "d": "m7 7.3 2.1 8c.1.3.3.3.5.2l5.9-5.9c.1-.2.1-.4-.2-.5L7.3 7c-.2-.1-.4.1-.3.3Z", "key": "5e9956befa90dadbbc94be8472a5ad35656a3451" }], ["path", { "fill": "currentColor", "d": "m7.545 6.289 7.969 2.092.023.007c.29.097.617.31.734.718.102.357-.02.668-.1.83l-.055.108-6.072 6.072-.109.055c-.161.08-.472.202-.829.1-.408-.117-.621-.445-.718-.734l-.007-.023-2.092-7.97c-.307-.785.47-1.562 1.256-1.255Zm.4 1.656L9.639 14.4 14.4 9.64 7.945 7.944Z", "key": "59302a49c753340a6487653efb9ef0020824847e" }], ["path", { "fill": "currentColor", "d": "M11.97 11.97a.75.75 0 0 1 1.06 0l4.6 4.6a.75.75 0 1 1-1.06 1.06l-4.6-4.6a.75.75 0 0 1 0-1.06Z", "key": "e90387a789cea99063690f2867bb8020dfbe859c" }]]);
const CursorCircle = createMeisterIcons("cursor-circle", [["path", { "fill": "currentColor", "d": "M7.579 7.658c.28-.282.674-.408 1.053-.408h.097l6.426 1.692.07.035c.263.133.569.383.682.784.13.453-.047.872-.338 1.164l-4.618 4.643c-.29.292-.71.473-1.167.341-.401-.115-.65-.423-.781-.686l-.035-.07-1.643-6.308a1.094 1.094 0 0 1 .254-1.187ZM8.874 8.84l1.38 5.302 3.893-3.913L8.874 8.84Z", "key": "26ae94b05ed07b68d96b97efe0ecd6f53a947132" }], ["path", { "fill": "currentColor", "d": "M12.193 12.193a.66.66 0 0 1 .933 0l3.68 3.68a.66.66 0 1 1-.932.934l-3.68-3.68a.66.66 0 0 1 0-.934Z", "key": "a12d9df3d47a9dc2ee51c0d31f972302860bd245" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "a6e40e3f9864f32b3cfc0317186ac201a52a38ed" }]]);
const CursorCircle1 = createMeisterIcons("cursor-circle1", [["path", { "fill": "currentColor", "d": "M3.688 11.918a8.213 8.213 0 0 1 8.25-8.25 8.213 8.213 0 0 1 8.25 8.25.75.75 0 0 0 1.5 0 9.713 9.713 0 0 0-9.75-9.75 9.713 9.713 0 0 0-9.75 9.75 9.713 9.713 0 0 0 9.75 9.75.75.75 0 0 0 0-1.5 8.213 8.213 0 0 1-8.25-8.25Zm11.718 7.014-1.739-5.284 5.284 1.739-2.204.386a.976.976 0 0 0-.59.29c-.13.13-.223.285-.29.42l-.05.098-.41 2.35Zm-2.84-7.043a.972.972 0 0 1 .639.028l7.87 2.59c.537.179.738.683.738 1.049 0 .194-.052.433-.214.642a.952.952 0 0 1-.675.367l-3.694.646-.663 3.792-.018.052c-.131.394-.481.726-.937.772a.992.992 0 0 1-.72-.21 1.115 1.115 0 0 1-.374-.585l-2.54-7.718a.846.846 0 0 1-.154-.557.951.951 0 0 1 .283-.594c.12-.12.277-.22.46-.274Z", "key": "fce461b160cc5816aa537fa400fc49b5249b233e" }]]);
const CursorCircleB = createMeisterIcons("cursor-circle-b", [["path", { "fill": "currentColor", "d": "m9.1 9.4 1.1 4.2c.1.2.3.3.5.1l3.1-3.1c.1-.1.1-.4-.2-.4L9.4 9.1c-.2-.1-.4.1-.3.3Z", "key": "8ede624d4bf6de871d5ceeacb5272203f27a475c" }], ["path", { "fill": "currentColor", "d": "m9.644 8.389 4.076 1.067c.167.018.34.074.494.187a.96.96 0 0 1 .357.513c.088.31.03.704-.24.974l-3.1 3.1c-.243.242-.613.409-1.025.291a1.113 1.113 0 0 1-.677-.586l-.035-.07-1.105-4.22c-.307-.786.47-1.563 1.255-1.256Zm.4 1.655.675 2.576 1.902-1.901-2.577-.675Z", "key": "808b6154e794dd8da2402c9da4d8cfed26fb9f51" }], ["path", { "fill": "currentColor", "d": "M11.67 11.67a.75.75 0 0 1 1.06 0l2.7 2.7a.75.75 0 0 1-1.06 1.06l-2.7-2.7a.75.75 0 0 1 0-1.06Z", "key": "c76a0b60e9c5d61a9aa0a3a4f43eb157d9eeade1" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "ccb2e4a7fd3e20ae58625c2f3c3be255618e53f2" }]]);
const CursorCircleB1 = createMeisterIcons("cursor-circle-b1", [["path", { "fill": "currentColor", "d": "m12.938 12.618 7.9 2.6c.3.1.3.6 0 .6l-4 .7c-.1 0-.2.1-.3.3l-.7 4c-.1.3-.5.4-.6 0l-2.6-7.9c-.2-.1.1-.4.3-.3Z", "key": "41c63dfa4e98f61b0e9bf9c919ebea76b354ccd0" }], ["path", { "fill": "currentColor", "d": "m13.667 13.648 1.74 5.284.41-2.351.05-.098c.067-.136.16-.29.29-.42a.976.976 0 0 1 .59-.29l2.204-.386-5.284-1.74Zm-.462-1.732a.971.971 0 0 0-.639-.027c-.182.054-.34.155-.459.274a.952.952 0 0 0-.283.594.846.846 0 0 0 .154.557l2.54 7.718c.058.21.173.424.375.584a.992.992 0 0 0 .72.21c.455-.045.805-.377.936-.77l.018-.054.663-3.791 3.694-.647a.952.952 0 0 0 .675-.366c.162-.209.213-.448.213-.642 0-.366-.2-.87-.737-1.05l-7.87-2.59Z", "key": "c5cb473b8c038892530a4ee9b0fa5d23cc5c841f" }], ["path", { "fill": "currentColor", "d": "M11.938 3.668a8.213 8.213 0 0 0-8.25 8.25 8.213 8.213 0 0 0 8.25 8.25.75.75 0 0 1 0 1.5 9.713 9.713 0 0 1-9.75-9.75 9.713 9.713 0 0 1 9.75-9.75 9.713 9.713 0 0 1 9.75 9.75.75.75 0 0 1-1.5 0 8.213 8.213 0 0 0-8.25-8.25Z", "key": "f2b9c41665fea6fe6206f75c1957724194d4df05" }]]);
const CursorCircleDashed = createMeisterIcons("cursor-circle-dashed", [["path", { "fill": "currentColor", "d": "M8.56 7.455c-.36 0-.739.119-1.012.392-.28.28-.423.718-.25 1.155l1.521 5.806.035.07c.126.251.367.55.758.66.444.128.852-.048 1.132-.328l1.546-1.546 3.19 3.071a.75.75 0 0 0 1.04-1.08l-3.169-3.052 1.664-1.663c.28-.28.455-.688.328-1.133-.111-.39-.41-.632-.66-.757l-.07-.035-5.956-1.56h-.096Zm3.2 4.618 1.787-1.787L8.865 9.06l1.226 4.682 1.65-1.65a.691.691 0 0 1 .019-.019Zm-1.662-9.637a9.794 9.794 0 0 1 3.804 0 .75.75 0 0 1-.291 1.471 8.294 8.294 0 0 0-3.222 0 .75.75 0 1 1-.291-1.471Zm6.28 1.663a.75.75 0 0 1 1.04-.206 9.8 9.8 0 0 1 2.69 2.69.75.75 0 0 1-1.247.834 8.3 8.3 0 0 0-2.278-2.278.75.75 0 0 1-.206-1.04Zm-8.755 0a.75.75 0 0 1-.206 1.04 8.3 8.3 0 0 0-2.278 2.278.75.75 0 0 1-1.246-.835 9.8 9.8 0 0 1 2.69-2.69.75.75 0 0 1 1.04.207ZM3.317 9.508a.75.75 0 0 1 .59.881 8.294 8.294 0 0 0 0 3.222.75.75 0 0 1-1.471.291 9.794 9.794 0 0 1 0-3.804.75.75 0 0 1 .88-.59Zm17.366 0a.75.75 0 0 1 .881.59 9.788 9.788 0 0 1 0 3.804.75.75 0 1 1-1.471-.291 8.298 8.298 0 0 0 0-3.222.75.75 0 0 1 .59-.881Zm-.782 6.87a.75.75 0 0 1 .206 1.04 9.8 9.8 0 0 1-2.69 2.69.75.75 0 0 1-.834-1.247 8.301 8.301 0 0 0 2.278-2.278.75.75 0 0 1 1.04-.206Zm-15.802 0a.75.75 0 0 1 1.04.205 8.3 8.3 0 0 0 2.278 2.278.75.75 0 1 1-.835 1.246 9.8 9.8 0 0 1-2.69-2.69.75.75 0 0 1 .207-1.04Zm5.409 4.305a.75.75 0 0 1 .881-.59 8.298 8.298 0 0 0 3.222 0 .75.75 0 1 1 .291 1.471 9.788 9.788 0 0 1-3.804 0 .75.75 0 0 1-.59-.88Z", "key": "b00201fbacf494ad7dc2d40c1d73733cf2961d72" }]]);
const CursorCircleDashedB = createMeisterIcons("cursor-circle-dashed-b", [["path", { "fill": "currentColor", "d": "m9.1 9.7 1.1 4.2c.1.2.3.3.5.1l3.1-3.1c.2-.2.1-.4-.1-.5L9.5 9.3c-.3 0-.5.2-.4.4Z", "key": "b472045a06e1c414ad0e3f79a3029894344b3299" }], ["path", { "fill": "currentColor", "d": "M8.62 8.895a1.24 1.24 0 0 1 .88-.345h.097l4.369 1.144.07.035c.213.107.483.32.585.678.118.41-.048.781-.29 1.023l-3.1 3.1c-.243.243-.613.409-1.024.291a1.113 1.113 0 0 1-.678-.585l-.035-.07-1.106-4.223a.98.98 0 0 1 .232-1.048Zm1.389 1.314.71 2.712 2.002-2.002-2.713-.71Z", "key": "7ab4adfe894eeb682541b5391cb7bbddc5622a3f" }], ["path", { "fill": "currentColor", "d": "M11.66 11.98a.75.75 0 0 1 1.06-.02l2.7 2.6a.75.75 0 0 1-1.04 1.08l-2.7-2.6a.75.75 0 0 1-.02-1.06Zm-1.562-9.544a9.794 9.794 0 0 1 3.804 0 .75.75 0 0 1-.291 1.471 8.294 8.294 0 0 0-3.222 0 .75.75 0 1 1-.291-1.471Zm6.28 1.663a.75.75 0 0 1 1.04-.206 9.8 9.8 0 0 1 2.69 2.69.75.75 0 0 1-1.247.834 8.3 8.3 0 0 0-2.278-2.278.75.75 0 0 1-.206-1.04Zm-8.755 0a.75.75 0 0 1-.206 1.04 8.3 8.3 0 0 0-2.278 2.278.75.75 0 0 1-1.246-.835 9.8 9.8 0 0 1 2.69-2.69.75.75 0 0 1 1.04.207ZM3.317 9.508a.75.75 0 0 1 .59.881 8.294 8.294 0 0 0 0 3.222.75.75 0 0 1-1.471.291 9.794 9.794 0 0 1 0-3.804.75.75 0 0 1 .88-.59Zm17.366 0a.75.75 0 0 1 .881.59 9.788 9.788 0 0 1 0 3.804.75.75 0 1 1-1.471-.291 8.298 8.298 0 0 0 0-3.222.75.75 0 0 1 .59-.881Zm-.782 6.87a.75.75 0 0 1 .206 1.04 9.8 9.8 0 0 1-2.69 2.69.75.75 0 0 1-.834-1.247 8.301 8.301 0 0 0 2.278-2.278.75.75 0 0 1 1.04-.206Zm-15.802 0a.75.75 0 0 1 1.04.205 8.3 8.3 0 0 0 2.278 2.278.75.75 0 1 1-.835 1.246 9.8 9.8 0 0 1-2.69-2.69.75.75 0 0 1 .207-1.04Zm5.409 4.305a.75.75 0 0 1 .881-.59 8.298 8.298 0 0 0 3.222 0 .75.75 0 1 1 .291 1.471 9.788 9.788 0 0 1-3.804 0 .75.75 0 0 1-.59-.88Z", "key": "f3151a98e2f62606879c58045035947826785c0c" }]]);
const CursorSqaureAlt = createMeisterIcons("cursor-sqaure-alt", [["path", { "fill": "currentColor", "d": "M7.548 7.528c.273-.273.652-.392 1.013-.392h.096l5.955 1.56.07.035c.252.125.55.366.661.757.127.445-.048.853-.328 1.133l-4.27 4.27c-.28.28-.689.456-1.133.329-.39-.112-.632-.41-.758-.662l-.035-.07L7.3 8.684a1.065 1.065 0 0 1 .25-1.155ZM8.865 8.74l1.226 4.682 3.456-3.456L8.865 8.74Z", "key": "dd9374e5acc42723199a1973cea3bca1f5221b90" }], ["path", { "fill": "currentColor", "d": "M11.75 11.764a.75.75 0 0 1 1.06 0l3.72 3.72a.75.75 0 1 1-1.06 1.06l-3.72-3.72a.75.75 0 0 1 0-1.06Z", "key": "3af02d48bf6e05afac0701f63a417733321df84b" }], ["path", { "fill": "currentColor", "d": "M2.25 2.25h19.5v19.5H2.25V2.25Zm1.5 1.5v16.5h16.5V3.75H3.75Z", "key": "265324d7c1ef899867b63dae4df91d8b6d9b6cbe" }]]);
const CursorSqaureAltB = createMeisterIcons("cursor-sqaure-alt-b", [["path", { "fill": "currentColor", "d": "m9.1 9.4 1.1 4.2c.1.2.3.3.5.1l3.1-3.1c.2-.2.1-.4-.1-.5L9.5 9c-.3 0-.5.2-.4.4Z", "key": "635e049b8d4bf85fde5dde48da35eb5753786599" }], ["path", { "fill": "currentColor", "d": "M8.62 8.595a1.24 1.24 0 0 1 .88-.345h.097l4.369 1.144.07.035c.213.107.483.32.585.677.118.412-.048.782-.29 1.024l-3.1 3.1c-.243.243-.613.409-1.024.291a1.113 1.113 0 0 1-.678-.586l-.035-.07-1.106-4.222a.98.98 0 0 1 .232-1.048Zm1.389 1.313.71 2.713 2.002-2.002-2.713-.71Z", "key": "15b6a2c58e0260803a68e6782bcc42ac14ccaf4f" }], ["path", { "fill": "currentColor", "d": "M11.67 11.67a.75.75 0 0 1 1.06 0l2.7 2.7a.75.75 0 0 1-1.06 1.06l-2.7-2.7a.75.75 0 0 1 0-1.06Z", "key": "5bde0a805d40786e64a1af7cc426a7fa87361a7c" }], ["path", { "fill": "currentColor", "d": "M2.25 2.25h19.5v19.5H2.25V2.25Zm1.5 1.5v16.5h16.5V3.75H3.75Z", "key": "5c9477267bf0e82661a5594ccceb7b37a39bce64" }]]);
const CursorSqaureAltDashed = createMeisterIcons("cursor-sqaure-alt-dashed", [["path", { "fill": "currentColor", "d": "M9.6 8.25c-.304 0-.636.1-.88.345a.98.98 0 0 0-.232 1.048l1.106 4.223.035.07c.107.213.32.483.678.585.411.118.781-.048 1.023-.29l.97-.97 2.17 2.17a.75.75 0 0 0 1.06-1.061l-2.17-2.17 1.07-1.07c.243-.242.409-.612.291-1.024a1.112 1.112 0 0 0-.585-.677l-.07-.035-4.37-1.144H9.6Zm2.178 3.411 1.043-1.042-2.712-.71.71 2.712.942-.943.009-.008.008-.009ZM7 3.75c-.44 0-.858.088-1.24.248a.75.75 0 0 1-.578-1.384A4.713 4.713 0 0 1 7 2.25h1.25a.75.75 0 0 1 0 1.5H7ZM10 3a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 10 3Zm5 0a.75.75 0 0 1 .75-.75H17c.642 0 1.257.13 1.818.364a.75.75 0 1 1-.577 1.384A3.214 3.214 0 0 0 17 3.75h-1.25A.75.75 0 0 1 15 3Zm5.406 1.778a.75.75 0 0 1 .98.404c.235.56.364 1.176.364 1.818v1.25a.75.75 0 0 1-1.5 0V7c0-.44-.088-.858-.248-1.24a.75.75 0 0 1 .404-.982Zm-16.811 0a.75.75 0 0 1 .403.981c-.16.383-.248.801-.248 1.241v1.25a.75.75 0 0 1-1.5 0V7c0-.642.13-1.257.364-1.818a.75.75 0 0 1 .98-.404ZM3 10a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 3 10Zm18 0a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 21 10ZM3 15a.75.75 0 0 1 .75.75V17c0 .44.088.858.248 1.24a.75.75 0 1 1-1.384.578A4.713 4.713 0 0 1 2.25 17v-1.25A.75.75 0 0 1 3 15Zm18 0a.75.75 0 0 1 .75.75V17c0 .64-.122 1.255-.35 1.819a.75.75 0 0 1-1.39-.562A3.35 3.35 0 0 0 20.25 17v-1.25A.75.75 0 0 1 21 15ZM4.778 20.406a.75.75 0 0 1 .981-.404c.383.16.801.248 1.241.248h1.25a.75.75 0 0 1 0 1.5H7c-.642 0-1.257-.13-1.818-.364a.75.75 0 0 1-.404-.98Zm14.456.022a.75.75 0 0 1-.416.976A4.855 4.855 0 0 1 17 21.75h-1.25a.75.75 0 0 1 0-1.5H17c.458 0 .88-.086 1.259-.238a.75.75 0 0 1 .975.416ZM10 21a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 10 21Z", "key": "41527b6c97e6d4cbed6d20148835158fd17d70a4" }]]);
const CursorSqaureAltDashedB = createMeisterIcons("cursor-sqaure-alt-dashed-b", [["path", { "fill": "currentColor", "d": "m9.2 9.4 1.1 4.2c.1.2.3.3.5.1l3.1-3.1c.1-.1.1-.4-.2-.4L9.5 9.1c-.2-.1-.4.1-.3.3Z", "key": "3bfef7b4371256205b9cb115931d574bc64af821" }], ["path", { "fill": "currentColor", "d": "m9.744 8.389 4.076 1.067c.167.018.34.074.494.187a.96.96 0 0 1 .357.513c.088.31.03.704-.24.974l-3.1 3.1c-.243.242-.613.409-1.025.291a1.113 1.113 0 0 1-.677-.586l-.035-.07-1.105-4.22c-.307-.786.47-1.563 1.255-1.256Zm.4 1.655.675 2.576 1.901-1.901-2.576-.675Z", "key": "09e7d36df2a164e1f07dc443905441c9912e5314" }], ["path", { "fill": "currentColor", "d": "M11.77 11.67a.75.75 0 0 1 1.06 0l2.7 2.7a.75.75 0 0 1-1.06 1.06l-2.7-2.7a.75.75 0 0 1 0-1.06ZM7 3.75c-.44 0-.858.088-1.24.248a.75.75 0 0 1-.578-1.384A4.713 4.713 0 0 1 7 2.25h1.25a.75.75 0 0 1 0 1.5H7ZM10 3a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 10 3Zm5 0a.75.75 0 0 1 .75-.75H17c.642 0 1.257.13 1.818.364a.75.75 0 1 1-.577 1.384A3.214 3.214 0 0 0 17 3.75h-1.25A.75.75 0 0 1 15 3Zm5.406 1.778a.75.75 0 0 1 .98.404c.235.56.364 1.176.364 1.818v1.25a.75.75 0 0 1-1.5 0V7c0-.44-.088-.858-.248-1.24a.75.75 0 0 1 .404-.982Zm-16.811 0a.75.75 0 0 1 .403.981c-.16.383-.248.801-.248 1.241v1.25a.75.75 0 0 1-1.5 0V7c0-.642.13-1.257.364-1.818a.75.75 0 0 1 .98-.404ZM3 10a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 3 10Zm18 0a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 21 10ZM3 15a.75.75 0 0 1 .75.75V17c0 .44.088.858.248 1.24a.75.75 0 1 1-1.384.578A4.713 4.713 0 0 1 2.25 17v-1.25A.75.75 0 0 1 3 15Zm18 0a.75.75 0 0 1 .75.75V17c0 .64-.122 1.255-.35 1.819a.75.75 0 0 1-1.39-.562A3.35 3.35 0 0 0 20.25 17v-1.25A.75.75 0 0 1 21 15ZM4.778 20.406a.75.75 0 0 1 .981-.404c.383.16.801.248 1.241.248h1.25a.75.75 0 0 1 0 1.5H7c-.642 0-1.257-.13-1.818-.364a.75.75 0 0 1-.404-.98Zm14.456.022a.75.75 0 0 1-.416.976A4.855 4.855 0 0 1 17 21.75h-1.25a.75.75 0 0 1 0-1.5H17c.458 0 .88-.086 1.259-.238a.75.75 0 0 1 .975.416ZM10 21a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 10 21Z", "key": "8bde01ae3d2b19e9eb72693c57eb4f0209af2cb1" }]]);
const CursorSquare = createMeisterIcons("cursor-square", [["path", { "fill": "currentColor", "d": "M8.56 7.136c-.36 0-.739.119-1.012.392-.28.28-.423.718-.25 1.155L8.82 14.49l.035.07c.126.251.367.55.758.66.444.128.852-.048 1.132-.328l1.536-1.536 3.19 3.19a.75.75 0 0 0 1.06-1.061l-3.189-3.19 1.674-1.673c.28-.28.455-.688.328-1.133-.111-.39-.41-.632-.66-.757l-.07-.035-5.956-1.56h-.096Zm3.2 4.619 1.787-1.788-4.682-1.226 1.226 4.682 1.65-1.65.009-.009.01-.01Z", "key": "0e583333c9f1558d5a6438c0387cfd5a325e34d3" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "9f7927f0fc6b2a17dfae44ace017e28fbb17f2ae" }]]);
const CursorSquareB = createMeisterIcons("cursor-square-b", [["path", { "fill": "currentColor", "d": "m9.1 9.4 1.1 4.2c.1.2.3.3.5.1l3.1-3.1c.2-.2.1-.4-.1-.5L9.5 9c-.3 0-.5.2-.4.4Z", "key": "716309f8f186fb7368a101afb58c6b31194a29bd" }], ["path", { "fill": "currentColor", "d": "M8.62 8.595a1.24 1.24 0 0 1 .88-.345h.097l4.369 1.144.07.035c.213.107.483.32.585.677.118.412-.048.782-.29 1.024l-3.1 3.1c-.243.243-.613.409-1.024.291a1.113 1.113 0 0 1-.678-.586l-.035-.07-1.106-4.222a.98.98 0 0 1 .232-1.048Zm1.389 1.313.71 2.713 2.002-2.002-2.713-.71Z", "key": "8545813a7765707c4354efafaeb1ffe9c91ebede" }], ["path", { "fill": "currentColor", "d": "M11.67 11.67a.75.75 0 0 1 1.06 0l2.7 2.7a.75.75 0 0 1-1.06 1.06l-2.7-2.7a.75.75 0 0 1 0-1.06Z", "key": "51b07a09508b557647780a855791b552c3f8343f" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "c3a39b0bb0a819953f0fe7f9acae2c76a2923904" }]]);
const CursorSquareDashed = createMeisterIcons("cursor-square-dashed", [["path", { "fill": "currentColor", "d": "M9.5 8.55c-.304 0-.636.1-.88.345a.98.98 0 0 0-.232 1.048l1.106 4.223.035.07c.107.213.32.483.678.585.41.118.781-.048 1.023-.29l.98-.98 2.17 2.09a.75.75 0 0 0 1.04-1.081l-2.15-2.07 1.06-1.06c.243-.242.409-.612.291-1.024a1.113 1.113 0 0 0-.586-.677l-.07-.035L9.598 8.55H9.5Zm2.178 3.411 1.043-1.042-2.713-.71.71 2.712.944-.943a.657.657 0 0 1 .016-.017ZM9 3.75c-.35 0-.692.035-1.023.1a.75.75 0 0 1-.294-1.47A6.72 6.72 0 0 1 9 2.25h1.5a.75.75 0 0 1 0 1.5H9ZM12.75 3a.75.75 0 0 1 .75-.75H15c.45 0 .89.045 1.317.13a.75.75 0 1 1-.294 1.47A5.22 5.22 0 0 0 15 3.75h-1.5a.75.75 0 0 1-.75-.75Zm-6.457.597a.75.75 0 0 1-.205 1.041 5.326 5.326 0 0 0-1.45 1.45.75.75 0 1 1-1.245-.836 6.825 6.825 0 0 1 1.86-1.86.75.75 0 0 1 1.04.205Zm11.414 0a.75.75 0 0 1 1.04-.204 6.826 6.826 0 0 1 1.86 1.86.75.75 0 1 1-1.245.835 5.325 5.325 0 0 0-1.45-1.45.75.75 0 0 1-.205-1.04ZM3.262 7.094a.75.75 0 0 1 .589.883A5.22 5.22 0 0 0 3.75 9v1.5a.75.75 0 0 1-1.5 0V9c0-.45.045-.89.13-1.317a.75.75 0 0 1 .882-.589Zm17.476 0a.75.75 0 0 1 .882.589c.085.427.13.867.13 1.317v1.5a.75.75 0 0 1-1.5 0V9c0-.35-.035-.692-.1-1.023a.75.75 0 0 1 .588-.883ZM3 12.75a.75.75 0 0 1 .75.75V15c0 .35.035.693.1 1.023a.75.75 0 1 1-1.47.294A6.72 6.72 0 0 1 2.25 15v-1.5a.75.75 0 0 1 .75-.75Zm18 0a.75.75 0 0 1 .75.75V15c0 .45-.045.89-.13 1.317a.75.75 0 0 1-1.47-.294c.065-.33.1-.673.1-1.023v-1.5a.75.75 0 0 1 .75-.75ZM3.597 17.707a.75.75 0 0 1 1.041.204 5.325 5.325 0 0 0 1.45 1.45.75.75 0 0 1-.836 1.246 6.826 6.826 0 0 1-1.86-1.86.75.75 0 0 1 .205-1.04Zm16.806 0a.75.75 0 0 1 .204 1.04 6.826 6.826 0 0 1-1.86 1.86.75.75 0 0 1-.835-1.245 5.324 5.324 0 0 0 1.45-1.45.75.75 0 0 1 1.04-.205Zm-13.309 3.03a.75.75 0 0 1 .883-.588c.33.066.673.101 1.023.101h1.5a.75.75 0 0 1 0 1.5H9c-.45 0-.89-.045-1.317-.13a.75.75 0 0 1-.589-.882Zm9.811 0a.75.75 0 0 1-.588.883 6.72 6.72 0 0 1-1.317.13h-1.5a.75.75 0 0 1 0-1.5H15c.35 0 .693-.035 1.023-.1a.75.75 0 0 1 .883.588Z", "key": "4181be1e300069453f0e8d4d7f33019cdb995ca4" }]]);
const CursorSquareDashedB = createMeisterIcons("cursor-square-dashed-b", [["path", { "fill": "currentColor", "d": "m9.1 9.7 1.1 4.2c.1.2.3.3.5.1l3.1-3.1c.2-.2.1-.4-.1-.5L9.5 9.3c-.3 0-.5.2-.4.4Z", "key": "e85d2d9759e860a15ea6a07389950e179bf50935" }], ["path", { "fill": "currentColor", "d": "M8.62 8.895a1.24 1.24 0 0 1 .88-.345h.097l4.369 1.144.07.035c.213.107.483.32.585.678.118.41-.048.781-.29 1.023l-3.1 3.1c-.243.243-.613.409-1.024.291a1.113 1.113 0 0 1-.678-.585l-.035-.07-1.106-4.223a.98.98 0 0 1 .232-1.048Zm1.389 1.314.71 2.712 2.002-2.002-2.713-.71Z", "key": "5165a912a3640a2f2c6983ca6f05fe37ee99adc6" }], ["path", { "fill": "currentColor", "d": "M11.66 11.98a.75.75 0 0 1 1.06-.02l2.7 2.6a.75.75 0 0 1-1.04 1.08l-2.7-2.6a.75.75 0 0 1-.02-1.06ZM9 3.75c-.35 0-.692.035-1.023.1a.75.75 0 0 1-.294-1.47A6.72 6.72 0 0 1 9 2.25h1.5a.75.75 0 0 1 0 1.5H9ZM12.75 3a.75.75 0 0 1 .75-.75H15c.45 0 .89.045 1.317.13a.75.75 0 1 1-.294 1.47A5.22 5.22 0 0 0 15 3.75h-1.5a.75.75 0 0 1-.75-.75Zm-6.457.597a.75.75 0 0 1-.205 1.041 5.326 5.326 0 0 0-1.45 1.45.75.75 0 1 1-1.245-.836 6.825 6.825 0 0 1 1.86-1.86.75.75 0 0 1 1.04.205Zm11.414 0a.75.75 0 0 1 1.04-.204 6.826 6.826 0 0 1 1.86 1.86.75.75 0 1 1-1.245.835 5.325 5.325 0 0 0-1.45-1.45.75.75 0 0 1-.205-1.04ZM3.262 7.094a.75.75 0 0 1 .589.883A5.22 5.22 0 0 0 3.75 9v1.5a.75.75 0 0 1-1.5 0V9c0-.45.045-.89.13-1.317a.75.75 0 0 1 .882-.589Zm17.476 0a.75.75 0 0 1 .882.589c.085.427.13.867.13 1.317v1.5a.75.75 0 0 1-1.5 0V9c0-.35-.035-.692-.1-1.023a.75.75 0 0 1 .588-.883ZM3 12.75a.75.75 0 0 1 .75.75V15c0 .35.035.693.1 1.023a.75.75 0 1 1-1.47.294A6.72 6.72 0 0 1 2.25 15v-1.5a.75.75 0 0 1 .75-.75Zm18 0a.75.75 0 0 1 .75.75V15c0 .45-.045.89-.13 1.317a.75.75 0 0 1-1.47-.294c.065-.33.1-.673.1-1.023v-1.5a.75.75 0 0 1 .75-.75ZM3.597 17.707a.75.75 0 0 1 1.041.204 5.325 5.325 0 0 0 1.45 1.45.75.75 0 0 1-.836 1.246 6.826 6.826 0 0 1-1.86-1.86.75.75 0 0 1 .205-1.04Zm16.806 0a.75.75 0 0 1 .204 1.04 6.826 6.826 0 0 1-1.86 1.86.75.75 0 0 1-.835-1.245 5.324 5.324 0 0 0 1.45-1.45.75.75 0 0 1 1.04-.205Zm-13.309 3.03a.75.75 0 0 1 .883-.588c.33.066.673.101 1.023.101h1.5a.75.75 0 0 1 0 1.5H9c-.45 0-.89-.045-1.317-.13a.75.75 0 0 1-.589-.882Zm9.811 0a.75.75 0 0 1-.588.883 6.72 6.72 0 0 1-1.317.13h-1.5a.75.75 0 0 1 0-1.5H15c.35 0 .693-.035 1.023-.1a.75.75 0 0 1 .883.588Z", "key": "14b6141b6ccab8eb94e29643eac4db3ffde34d43" }]]);
const CurvedRectangle = createMeisterIcons("curved-rectangle", [["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17V7Z", "key": "5fd69a747eca2e4cc4c642a05e10d27d729829ae" }]]);
const CurvedRectangleA = createMeisterIcons("curved-rectangle-a", [["path", { "fill": "currentColor", "d": "M7 5.75A3.262 3.262 0 0 0 3.75 9v6c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 15V9A3.262 3.262 0 0 0 17 5.75H7ZM2.25 9A4.762 4.762 0 0 1 7 4.25h10A4.762 4.762 0 0 1 21.75 9v6A4.762 4.762 0 0 1 17 19.75H7c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "8a2caf165c28203748e01ee79c64413ed3dcbf3e" }]]);
const CurvedRectangleAb = createMeisterIcons("curved-rectangle-ab", [["path", { "fill": "currentColor", "d": "M3 15V9c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v6c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "3f911d699a4fc77adff510368bda2c0c50aa224c" }], ["path", { "fill": "currentColor", "d": "M7 5.75A3.262 3.262 0 0 0 3.75 9v6c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 15V9A3.262 3.262 0 0 0 17 5.75H7ZM2.25 9A4.762 4.762 0 0 1 7 4.25h10A4.762 4.762 0 0 1 21.75 9v6A4.762 4.762 0 0 1 17 19.75H7c-2.726 0-4.75-2.148-4.75-4.75V9Z", "key": "1aa4fb8770a563bbbf1c147102edc02b9dd8e3f3" }]]);
const CurvedRectangleB = createMeisterIcons("curved-rectangle-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h6c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4Z", "key": "ec3f13e2060b3d89a4bbc863c71b954d3f7adc44" }], ["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17V7Z", "key": "b83475853b9c56856d6993974aec6b9ddfcef2d7" }]]);
const CurvedSquare = createMeisterIcons("curved-square", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "590d93dd69cc124df13205a45bd5c216ded9ffa0" }]]);
const CurvedSquareB = createMeisterIcons("curved-square-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "f5bcc0e87ea29487c391f32f86ebebffd077db10" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "80a1c48cc200a310b6609fd84a2b52334aab22b0" }]]);
const Cylinder = createMeisterIcons("cylinder", [["path", { "fill": "currentColor", "d": "M4.25 6.5c0-.104.058-.308.398-.592.337-.28.868-.567 1.591-.822C7.678 4.578 9.715 4.25 12 4.25s4.322.328 5.76.836c.724.255 1.255.541 1.592.822.34.284.398.488.398.592 0 .104-.058.308-.398.592-.337.28-.868.567-1.591.822-1.439.508-3.476.836-5.761.836s-4.322-.328-5.76-.836c-.724-.255-1.255-.541-1.592-.822-.34-.284-.398-.488-.398-.592Zm15.5 2.142a7.997 7.997 0 0 1-1.49.687c-1.638.578-3.85.921-6.26.921-2.41 0-4.622-.343-6.26-.921a7.999 7.999 0 0 1-1.49-.687V17.5c0 .12.064.33.4.612.334.28.863.565 1.585.818 1.437.502 3.474.82 5.765.82 2.29 0 4.328-.318 5.765-.82.722-.253 1.251-.538 1.585-.818.336-.282.4-.491.4-.612V8.642Zm1.5 8.858v-11c0-.724-.418-1.31-.937-1.744-.524-.437-1.237-.797-2.053-1.085-1.638-.578-3.85-.921-6.26-.921-2.41 0-4.622.343-6.26.921-.815.288-1.529.648-2.053 1.085-.52.434-.937 1.02-.937 1.744v11c0 .73.411 1.32.935 1.76.525.441 1.24.8 2.055 1.085 1.638.573 3.85.905 6.26.905 2.41 0 4.622-.332 6.26-.904.816-.286 1.53-.645 2.055-1.086.524-.44.935-1.03.935-1.76Z", "key": "2eec931fce735a9d426ae24ff9c84ae8ae1308af" }]]);
const CylinderA = createMeisterIcons("cylinder-a", [["path", { "fill": "currentColor", "d": "M4.25 6.5c0-.104.058-.308.398-.592.337-.28.868-.567 1.591-.822C7.678 4.578 9.715 4.25 12 4.25s4.322.328 5.76.836c.724.255 1.255.541 1.592.822.34.284.398.488.398.592 0 .104-.058.308-.398.592-.337.28-.868.567-1.591.822-1.439.508-3.476.836-5.761.836s-4.322-.328-5.76-.836c-.724-.255-1.255-.541-1.592-.822-.34-.284-.398-.488-.398-.592Zm15.5 2.142a7.997 7.997 0 0 1-1.49.687c-1.638.578-3.85.921-6.26.921-2.41 0-4.622-.343-6.26-.921a7.999 7.999 0 0 1-1.49-.687v6.716a7.998 7.998 0 0 1 1.49-.687c1.638-.577 3.85-.921 6.26-.921 2.41 0 4.622.344 6.26.921a7.995 7.995 0 0 1 1.49.687V8.642Zm1.5 8.858v-11c0-.724-.418-1.31-.937-1.744-.524-.437-1.237-.797-2.053-1.085-1.638-.578-3.85-.921-6.26-.921-2.41 0-4.622.343-6.26.921-.815.288-1.529.648-2.053 1.085-.52.434-.937 1.02-.937 1.744v11c0 .724.418 1.31.937 1.744.524.437 1.238.797 2.053 1.085 1.638.578 3.85.921 6.26.921 2.41 0 4.622-.343 6.26-.921.816-.288 1.529-.648 2.052-1.085.52-.434.938-1.02.938-1.744Zm-1.5 0c0-.104-.058-.308-.398-.592-.337-.28-.868-.567-1.591-.822-1.439-.508-3.476-.836-5.761-.836s-4.322.328-5.76.836c-.724.255-1.255.541-1.592.822-.34.284-.398.488-.398.592 0 .104.058.308.398.592.337.28.868.567 1.591.822 1.439.508 3.476.836 5.761.836s4.322-.328 5.76-.836c.724-.255 1.255-.541 1.592-.822.34-.284.398-.488.398-.592Z", "key": "cf608a14b06c7ab42d052ab5feb2853bb01f6eea" }]]);
const CylinderAb = createMeisterIcons("cylinder-ab", [["path", { "fill": "currentColor", "d": "M12 9.5c4.694 0 8.5-1.343 8.5-3s-3.806-3-8.5-3-8.5 1.343-8.5 3 3.806 3 8.5 3Z", "key": "6501e5cc5b48958482c2a1d1f74c31ec33f95816" }], ["path", { "fill": "currentColor", "d": "M4.648 5.908c-.34.284-.398.488-.398.592 0 .104.058.308.398.592.337.28.868.567 1.591.822 1.439.508 3.476.836 5.761.836s4.322-.328 5.76-.836c.724-.255 1.255-.541 1.592-.822.34-.284.398-.488.398-.592 0-.104-.058-.308-.398-.592-.337-.28-.868-.567-1.591-.822-1.439-.508-3.476-.836-5.761-.836s-4.322.328-5.76.836c-.724.255-1.255.541-1.592.822ZM5.74 3.671C7.378 3.093 9.59 2.75 12 2.75c2.41 0 4.622.343 6.26.921.816.288 1.529.648 2.052 1.085.52.434.938 1.02.938 1.744s-.418 1.31-.937 1.744c-.524.437-1.237.797-2.053 1.085-1.638.578-3.85.921-6.26.921-2.41 0-4.622-.343-6.26-.921-.815-.288-1.529-.648-2.053-1.085-.52-.434-.937-1.02-.937-1.744s.418-1.31.937-1.744c.524-.437 1.238-.797 2.053-1.085ZM4.648 16.908c-.34.284-.398.488-.398.592 0 .104.058.308.398.592.337.28.868.567 1.591.822 1.439.508 3.476.836 5.761.836s4.322-.328 5.76-.836c.724-.255 1.255-.541 1.592-.822.34-.284.398-.488.398-.592 0-.104-.058-.308-.398-.592-.337-.28-.868-.567-1.591-.822-1.439-.508-3.476-.836-5.761-.836s-4.322.328-5.76.836c-.724.255-1.255.541-1.592.822Zm1.092-2.237c1.638-.577 3.85-.921 6.26-.921 2.41 0 4.622.344 6.26.921.816.288 1.529.648 2.052 1.085.52.434.938 1.02.938 1.744s-.418 1.31-.937 1.744c-.524.437-1.237.797-2.053 1.085-1.638.578-3.85.921-6.26.921-2.41 0-4.622-.343-6.26-.921-.815-.288-1.529-.648-2.053-1.085-.52-.434-.937-1.02-.937-1.744s.418-1.31.937-1.744c.524-.437 1.238-.797 2.053-1.085Z", "key": "801f16e4e8db9482f8774d0a3f420e3a51d94be4" }], ["path", { "fill": "currentColor", "d": "M3.5 5.75a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-1.5 0v-11a.75.75 0 0 1 .75-.75Zm17 0a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-1.5 0v-11a.75.75 0 0 1 .75-.75Z", "key": "c11e9b83d997836bb5b6425c5071559d28f3bbab" }]]);
const CylinderB = createMeisterIcons("cylinder-b", [["path", { "fill": "currentColor", "d": "M12 9.5c4.694 0 8.5-1.343 8.5-3s-3.806-3-8.5-3-8.5 1.343-8.5 3 3.806 3 8.5 3Z", "key": "878cfbd9b550c3e971d872d7e49b489523d05502" }], ["path", { "fill": "currentColor", "d": "M4.648 5.908c-.34.284-.398.488-.398.592 0 .104.058.308.398.592.337.28.868.567 1.591.822 1.439.508 3.476.836 5.761.836s4.322-.328 5.76-.836c.724-.255 1.255-.541 1.592-.822.34-.284.398-.488.398-.592 0-.104-.058-.308-.398-.592-.337-.28-.868-.567-1.591-.822-1.439-.508-3.476-.836-5.761-.836s-4.322.328-5.76.836c-.724.255-1.255.541-1.592.822ZM5.74 3.671C7.378 3.093 9.59 2.75 12 2.75c2.41 0 4.622.343 6.26.921.816.288 1.529.648 2.052 1.085.52.434.938 1.02.938 1.744s-.418 1.31-.937 1.744c-.524.437-1.237.797-2.053 1.085-1.638.578-3.85.921-6.26.921-2.41 0-4.622-.343-6.26-.921-.815-.288-1.529-.648-2.053-1.085-.52-.434-.937-1.02-.937-1.744s.418-1.31.937-1.744c.524-.437 1.238-.797 2.053-1.085ZM3.5 16.75a.75.75 0 0 1 .75.75c0 .12.064.33.4.612.334.28.863.565 1.585.818 1.437.502 3.474.82 5.765.82 2.29 0 4.328-.318 5.765-.82.722-.253 1.251-.538 1.585-.818.336-.282.4-.491.4-.612a.75.75 0 0 1 1.5 0c0 .73-.411 1.32-.935 1.76-.525.441-1.24.8-2.055 1.085-1.638.573-3.85.905-6.26.905-2.41 0-4.622-.332-6.26-.904-.816-.286-1.53-.645-2.055-1.086-.524-.44-.935-1.03-.935-1.76a.75.75 0 0 1 .75-.75Z", "key": "f8bce93aa394c0a0e08dbc891b8accd6a61d7155" }], ["path", { "fill": "currentColor", "d": "M3.5 5.75a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-1.5 0v-11a.75.75 0 0 1 .75-.75Zm17 0a.75.75 0 0 1 .75.75v11a.75.75 0 0 1-1.5 0v-11a.75.75 0 0 1 .75-.75Z", "key": "ea7cf08e1b20c27c13366ee4a7164dca3383cd63" }]]);
const Dashboard = createMeisterIcons("dashboard", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 0 0-7.051 12.535 9.716 9.716 0 0 1 6.735-3.03l2.786-2.785a.75.75 0 1 1 1.06 1.06l-1.863 1.864a9.724 9.724 0 0 1 5.384 2.892A8.25 8.25 0 0 0 12 3.75Zm0 16.5a8.23 8.23 0 0 1-6.14-2.739A8.213 8.213 0 0 1 12 14.75a8.213 8.213 0 0 1 6.14 2.761A8.23 8.23 0 0 1 12 20.25ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "ab19c6e2ed5bc36a808043f42545d0b456f02f2f" }]]);
const DashboardGrid = createMeisterIcons("dashboard-grid", [["path", { "fill": "currentColor", "d": "M6.15 3.8a.83.83 0 0 0-.85.85v2.9c0 .517.395.85.75.85h2.9c.463 0 .873-.35.95-.896V4.65a.83.83 0 0 0-.85-.85h-2.9Zm-2.35.85A2.33 2.33 0 0 1 6.15 2.3h2.9a2.33 2.33 0 0 1 2.35 2.35v2.94l-.005.042C11.258 8.866 10.277 9.9 8.95 9.9h-2.9C4.805 9.9 3.8 8.832 3.8 7.55v-2.9Zm2.25 8.05a.83.83 0 0 0-.85.85v5.9c0 .486.364.85.85.85h2.9a.83.83 0 0 0 .85-.85v-5.9a.83.83 0 0 0-.85-.85h-2.9Zm-2.35.85a2.33 2.33 0 0 1 2.35-2.35h2.9a2.33 2.33 0 0 1 2.35 2.35v5.9a2.33 2.33 0 0 1-2.35 2.35h-2.9a2.33 2.33 0 0 1-2.35-2.35v-5.9Zm10.5 3.046v2.854c0 .486.364.85.85.85h2.9a.83.83 0 0 0 .85-.85v-2.9a.83.83 0 0 0-.85-.85h-2.9c-.339 0-.77.323-.85.896Zm-1.495-.129c.133-1.204 1.09-2.267 2.345-2.267h2.9a2.33 2.33 0 0 1 2.35 2.35v2.9a2.33 2.33 0 0 1-2.35 2.35h-2.9a2.33 2.33 0 0 1-2.35-2.35v-2.942l.005-.04ZM14.2 4.504v5.946c0 .486.364.85.85.85h2.9a.83.83 0 0 0 .85-.85v-5.9a.83.83 0 0 0-.85-.85h-2.9c-.36 0-.772.344-.85.804Zm-1.494-.147C12.846 3.236 13.82 2.2 15.05 2.2h2.9a2.33 2.33 0 0 1 2.35 2.35v5.9a2.33 2.33 0 0 1-2.35 2.35h-2.9a2.33 2.33 0 0 1-2.35-2.35V4.403l.006-.046Z", "key": "08bb9aea8996fd36d5a762ffbb36ed3594d596f1" }]]);
const DashboardGridB = createMeisterIcons("dashboard-grid-b", [["path", { "fill": "currentColor", "d": "M8.95 9.15h-2.9c-.8 0-1.5-.7-1.5-1.6v-2.9c0-.9.7-1.6 1.6-1.6h2.9c.9 0 1.6.7 1.6 1.6v2.9c-.1.9-.8 1.6-1.7 1.6Z", "key": "497fa72fceb78414158dc0630b859e6836a0fcc3" }], ["path", { "fill": "currentColor", "d": "M6.15 3.8a.83.83 0 0 0-.85.85v2.9c0 .517.395.85.75.85h2.9c.463 0 .873-.35.95-.896V4.65a.83.83 0 0 0-.85-.85h-2.9Zm-2.35.85A2.33 2.33 0 0 1 6.15 2.3h2.9a2.33 2.33 0 0 1 2.35 2.35v2.94l-.005.042C11.258 8.866 10.277 9.9 8.95 9.9h-2.9C4.805 9.9 3.8 8.832 3.8 7.55v-2.9Zm5.15 16.4h-2.9c-.9 0-1.6-.7-1.6-1.6v-5.9c0-.9.7-1.6 1.6-1.6h2.9c.9 0 1.6.7 1.6 1.6v5.9c0 .9-.7 1.6-1.6 1.6Z", "key": "b1c2eae23c0144784749f6b72f5dfb6bef5b2a36" }], ["path", { "fill": "currentColor", "d": "M6.05 12.7a.83.83 0 0 0-.85.85v5.9c0 .486.364.85.85.85h2.9a.83.83 0 0 0 .85-.85v-5.9a.83.83 0 0 0-.85-.85h-2.9Zm-2.35.85a2.33 2.33 0 0 1 2.35-2.35h2.9a2.33 2.33 0 0 1 2.35 2.35v5.9a2.33 2.33 0 0 1-2.35 2.35h-2.9a2.33 2.33 0 0 1-2.35-2.35v-5.9Zm11.35 1.4h2.9c.9 0 1.6.7 1.6 1.6v2.9c0 .9-.7 1.6-1.6 1.6h-2.9c-.9 0-1.6-.7-1.6-1.6v-2.9c.1-.9.8-1.6 1.6-1.6Z", "key": "2c7f352764e02f30731b0dfa0367a2209360fb5c" }], ["path", { "fill": "currentColor", "d": "M14.2 16.596v2.854c0 .486.364.85.85.85h2.9a.83.83 0 0 0 .85-.85v-2.9a.83.83 0 0 0-.85-.85h-2.9c-.339 0-.77.323-.85.896Zm-1.495-.129c.133-1.204 1.09-2.267 2.345-2.267h2.9a2.33 2.33 0 0 1 2.35 2.35v2.9a2.33 2.33 0 0 1-2.35 2.35h-2.9a2.33 2.33 0 0 1-2.35-2.35v-2.942l.005-.04ZM15.05 2.95h2.9c.9 0 1.6.7 1.6 1.6v5.9c0 .9-.7 1.6-1.6 1.6h-2.9c-.9 0-1.6-.7-1.6-1.6v-6c.1-.8.8-1.5 1.6-1.5Z", "key": "6bd1f769c42a24d55fee632064286e78042338a9" }], ["path", { "fill": "currentColor", "d": "M14.2 4.504v5.946c0 .486.364.85.85.85h2.9a.83.83 0 0 0 .85-.85v-5.9a.83.83 0 0 0-.85-.85h-2.9c-.36 0-.772.344-.85.804Zm-1.494-.147C12.846 3.236 13.82 2.2 15.05 2.2h2.9a2.33 2.33 0 0 1 2.35 2.35v5.9a2.33 2.33 0 0 1-2.35 2.35h-2.9a2.33 2.33 0 0 1-2.35-2.35V4.403l.006-.046Z", "key": "54d0092be4d73e3807436d38c9c1b07541bc78e4" }]]);
const DashboardSemi = createMeisterIcons("dashboard-semi", [["path", { "fill": "currentColor", "d": "M12.042 6.65C7.46 6.654 3.7 10.417 3.7 15c0 .867.065 1.623.282 2.35h16c.198-.77.318-1.533.318-2.35 0-4.575-3.755-8.254-8.258-8.35ZM2.2 15c0-5.414 4.436-9.85 9.85-9.85h.015C17.36 5.258 21.8 9.578 21.8 15c0 1.195-.218 2.27-.532 3.316l-.16.534H2.942l-.188-.471C2.304 17.253 2.2 16.144 2.2 15Z", "key": "12d99e06cad8cd91487fee6f13a9bcf7083014a2" }], ["path", { "fill": "currentColor", "d": "M9.328 9.68a.75.75 0 0 1 1.042.198l3.2 4.7a.75.75 0 1 1-1.24.844l-3.2-4.7a.75.75 0 0 1 .198-1.042Z", "key": "684bd462511432e40931caee8d9d270a079bfa4e" }]]);
const DashboardSemiB = createMeisterIcons("dashboard-semi-b", [["path", { "fill": "currentColor", "d": "M21.05 15c0 1.1-.2 2.1-.5 3.1H3.45c-.4-1-.5-2-.5-3.1 0-5 4.1-9.1 9.1-9.1 4.9.1 9 4.1 9 9.1Z", "key": "b3ec8dfbee09a7cc212e00dacf432b46e7761861" }], ["path", { "fill": "currentColor", "d": "M12.042 6.65C7.46 6.654 3.7 10.417 3.7 15c0 .867.065 1.623.282 2.35h16c.198-.77.318-1.533.318-2.35 0-4.575-3.755-8.254-8.258-8.35ZM2.2 15c0-5.414 4.436-9.85 9.85-9.85h.015C17.36 5.258 21.8 9.578 21.8 15c0 1.195-.218 2.27-.532 3.316l-.16.534H2.942l-.188-.471C2.304 17.253 2.2 16.144 2.2 15Z", "key": "af0e480ca0a3bb94e05deb2c49cbd4273377e76f" }], ["path", { "fill": "#fff", "d": "M9.328 9.68a.75.75 0 0 1 1.042.198l3.2 4.7a.75.75 0 1 1-1.24.844l-3.2-4.7a.75.75 0 0 1 .198-1.042Z", "key": "120358b6c625ac56e2560153fbb6d51be0a9e063" }]]);
const DashboardSquare = createMeisterIcons("dashboard-square", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 .209.012.415.035.618C5.015 14.148 6.891 13.25 9 13.25h2.69l2.78-2.78a.75.75 0 1 1 1.06 1.06l-1.72 1.72H15a6.8 6.8 0 0 1 5.207 2.423A5.25 5.25 0 0 0 20.25 15V9c0-2.886-2.364-5.25-5.25-5.25H9Zm3 11H9c-2.074 0-3.804 1.083-4.652 2.712C5.212 19.119 6.937 20.25 9 20.25h6a5.267 5.267 0 0 0 4.633-2.79c-.938-1.645-2.674-2.71-4.633-2.71h-3ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.822 0-6.75-3.044-6.75-6.75V9Z", "key": "9650240f804dd8b00c8a2303086cdcccd8f99989" }]]);
const DashboardSquareB = createMeisterIcons("dashboard-square-b", [["path", { "fill": "currentColor", "d": "M20.4 17.5c-.9 2.1-3 3.5-5.4 3.5H9c-2.4 0-4.5-1.4-5.4-3.5.9-2.1 3-3.5 5.4-3.5h6c2.4 0 4.5 1.4 5.4 3.5Z", "key": "191421de4d00870bece72e8d1768222b5036d930" }], ["path", { "fill": "currentColor", "d": "M4.428 17.5C5.27 19.156 7.01 20.25 9 20.25h6c1.989 0 3.729-1.094 4.572-2.75-.843-1.656-2.583-2.75-4.572-2.75H9c-1.989 0-3.729 1.094-4.572 2.75Zm-1.517-.295C3.93 14.825 6.305 13.25 9 13.25h6c2.695 0 5.07 1.574 6.09 3.955l.126.295-.127.295c-1.02 2.38-3.394 3.955-6.089 3.955H9c-2.695 0-5.07-1.574-6.09-3.955l-.126-.295.127-.295Z", "key": "0accc543db0e5b6bb223bd65a239304a943a0939" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 .247.017.486.052.718A6.638 6.638 0 0 1 9 13.25h6c2.084 0 3.975.94 5.198 2.468A4.83 4.83 0 0 0 20.25 15V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6a6.17 6.17 0 0 1-.68 2.835l-.722 1.447-.637-1.487c-.78-1.82-2.606-3.045-4.711-3.045H9c-2.105 0-3.93 1.226-4.71 3.045l-.638 1.487-.723-1.447A6.17 6.17 0 0 1 2.25 15V9Z", "key": "4716eb11e11b280cc412debe45928c64832bfa5f" }], ["path", { "fill": "currentColor", "d": "M15.53 10.47a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l3-3a.75.75 0 0 1 1.06 0Z", "key": "c639e298dff09e433367e6aeb0259efc0c2a688e" }]]);
const DashedCircle = createMeisterIcons("dashed-circle", [["path", { "fill": "currentColor", "d": "M10.098 2.436a9.794 9.794 0 0 1 3.804 0 .75.75 0 0 1-.291 1.471 8.294 8.294 0 0 0-3.222 0 .75.75 0 1 1-.291-1.471Zm6.28 1.663a.75.75 0 0 1 1.04-.206 9.8 9.8 0 0 1 2.69 2.69.75.75 0 0 1-1.247.834 8.3 8.3 0 0 0-2.278-2.278.75.75 0 0 1-.206-1.04Zm-8.755 0a.75.75 0 0 1-.206 1.04 8.3 8.3 0 0 0-2.278 2.278.75.75 0 0 1-1.246-.835 9.8 9.8 0 0 1 2.69-2.69.75.75 0 0 1 1.04.207ZM3.317 9.508a.75.75 0 0 1 .59.881 8.294 8.294 0 0 0 0 3.222.75.75 0 0 1-1.471.291 9.794 9.794 0 0 1 0-3.804.75.75 0 0 1 .88-.59Zm17.366 0a.75.75 0 0 1 .881.59 9.788 9.788 0 0 1 0 3.804.75.75 0 1 1-1.471-.291 8.298 8.298 0 0 0 0-3.222.75.75 0 0 1 .59-.881Zm-.782 6.87a.75.75 0 0 1 .206 1.04 9.8 9.8 0 0 1-2.69 2.69.75.75 0 0 1-.834-1.247 8.301 8.301 0 0 0 2.278-2.278.75.75 0 0 1 1.04-.206Zm-15.802 0a.75.75 0 0 1 1.04.205 8.3 8.3 0 0 0 2.278 2.278.75.75 0 1 1-.835 1.246 9.8 9.8 0 0 1-2.69-2.69.75.75 0 0 1 .207-1.04Zm5.409 4.305a.75.75 0 0 1 .881-.59 8.298 8.298 0 0 0 3.222 0 .75.75 0 1 1 .291 1.471 9.788 9.788 0 0 1-3.804 0 .75.75 0 0 1-.59-.88Z", "key": "90cdccf96c03a5cab31a42499a0752682012d49a" }]]);
const DashedSquare = createMeisterIcons("dashed-square", [["path", { "fill": "currentColor", "d": "M7 3.75c-.44 0-.858.088-1.24.248a.75.75 0 0 1-.578-1.384A4.713 4.713 0 0 1 7 2.25h1.25a.75.75 0 0 1 0 1.5H7ZM10 3a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 10 3Zm5 0a.75.75 0 0 1 .75-.75H17c.642 0 1.257.13 1.818.364a.75.75 0 1 1-.577 1.384A3.214 3.214 0 0 0 17 3.75h-1.25A.75.75 0 0 1 15 3Zm5.406 1.778a.75.75 0 0 1 .98.404c.235.56.364 1.176.364 1.818v1.25a.75.75 0 0 1-1.5 0V7c0-.44-.088-.858-.248-1.24a.75.75 0 0 1 .404-.982Zm-16.811 0a.75.75 0 0 1 .403.981c-.16.383-.248.801-.248 1.241v1.25a.75.75 0 0 1-1.5 0V7c0-.642.13-1.257.364-1.818a.75.75 0 0 1 .98-.404ZM3 10a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 3 10Zm18 0a.75.75 0 0 1 .75.75v2.5a.75.75 0 0 1-1.5 0v-2.5A.75.75 0 0 1 21 10ZM3 15a.75.75 0 0 1 .75.75V17c0 .44.088.858.248 1.24a.75.75 0 1 1-1.384.578A4.713 4.713 0 0 1 2.25 17v-1.25A.75.75 0 0 1 3 15Zm18 0a.75.75 0 0 1 .75.75V17c0 .642-.13 1.257-.364 1.818a.75.75 0 1 1-1.384-.577c.16-.383.248-.801.248-1.241v-1.25A.75.75 0 0 1 21 15ZM4.778 20.406a.75.75 0 0 1 .981-.404c.383.16.801.248 1.241.248h1.25a.75.75 0 0 1 0 1.5H7c-.642 0-1.257-.13-1.818-.364a.75.75 0 0 1-.404-.98Zm14.444 0a.75.75 0 0 1-.404.98A4.713 4.713 0 0 1 17 21.75h-1.25a.75.75 0 0 1 0-1.5H17c.44 0 .858-.088 1.24-.248a.75.75 0 0 1 .982.404ZM10 21a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 10 21Z", "key": "23d120797be19b5e736ea09d5614d32ca733b50f" }]]);
const DashedSquareA = createMeisterIcons("dashed-square-a", [["path", { "fill": "currentColor", "d": "M9 3.75c-.35 0-.692.035-1.023.1a.75.75 0 0 1-.294-1.47A6.72 6.72 0 0 1 9 2.25h1.5a.75.75 0 0 1 0 1.5H9ZM12.75 3a.75.75 0 0 1 .75-.75H15c.45 0 .89.045 1.317.13a.75.75 0 1 1-.294 1.47A5.22 5.22 0 0 0 15 3.75h-1.5a.75.75 0 0 1-.75-.75Zm-6.457.597a.75.75 0 0 1-.205 1.041 5.326 5.326 0 0 0-1.45 1.45.75.75 0 1 1-1.245-.836 6.825 6.825 0 0 1 1.86-1.86.75.75 0 0 1 1.04.205Zm11.414 0a.75.75 0 0 1 1.04-.204 6.826 6.826 0 0 1 1.86 1.86.75.75 0 1 1-1.245.835 5.325 5.325 0 0 0-1.45-1.45.75.75 0 0 1-.205-1.04ZM3.262 7.094a.75.75 0 0 1 .589.883A5.22 5.22 0 0 0 3.75 9v1.5a.75.75 0 0 1-1.5 0V9c0-.45.045-.89.13-1.317a.75.75 0 0 1 .882-.589Zm17.476 0a.75.75 0 0 1 .882.589c.085.427.13.867.13 1.317v1.5a.75.75 0 0 1-1.5 0V9c0-.35-.035-.692-.1-1.023a.75.75 0 0 1 .588-.883ZM3 12.75a.75.75 0 0 1 .75.75V15c0 .35.035.693.1 1.023a.75.75 0 1 1-1.47.294A6.72 6.72 0 0 1 2.25 15v-1.5a.75.75 0 0 1 .75-.75Zm18 0a.75.75 0 0 1 .75.75V15c0 .45-.045.89-.13 1.317a.75.75 0 0 1-1.47-.294c.065-.33.1-.673.1-1.023v-1.5a.75.75 0 0 1 .75-.75ZM3.597 17.707a.75.75 0 0 1 1.041.204 5.325 5.325 0 0 0 1.45 1.45.75.75 0 0 1-.836 1.246 6.826 6.826 0 0 1-1.86-1.86.75.75 0 0 1 .205-1.04Zm16.806 0a.75.75 0 0 1 .204 1.04 6.826 6.826 0 0 1-1.86 1.86.75.75 0 0 1-.835-1.245 5.324 5.324 0 0 0 1.45-1.45.75.75 0 0 1 1.04-.205Zm-13.309 3.03a.75.75 0 0 1 .883-.588c.33.066.673.101 1.023.101h1.5a.75.75 0 0 1 0 1.5H9c-.45 0-.89-.045-1.317-.13a.75.75 0 0 1-.589-.882Zm9.811 0a.75.75 0 0 1-.588.883 6.72 6.72 0 0 1-1.317.13h-1.5a.75.75 0 0 1 0-1.5H15c.35 0 .693-.035 1.023-.1a.75.75 0 0 1 .883.588Z", "key": "8ff3e9dde913761135d214a60fca95255a69ab02" }]]);
const Database = createMeisterIcons("database", [["path", { "fill": "currentColor", "d": "M6.728 5.842C5.361 6.526 4.8 7.332 4.8 8c0 .667.56 1.474 1.928 2.158 1.324.661 3.204 1.092 5.322 1.092s3.998-.43 5.321-1.092c.306-.153.57-.312.799-.474a.748.748 0 0 1 .493-.41c.442-.437.637-.88.637-1.274 0-.667-.56-1.474-1.929-2.158-1.323-.661-3.203-1.092-5.321-1.092s-3.998.43-5.322 1.092ZM18.042 11.5a7.68 7.68 0 0 0 .783-.448c.264.345.375.672.375.949 0 .404-.236.914-.838 1.43-1.214 1.041-3.612 1.82-6.412 1.82-2.603 0-4.859-.673-6.139-1.604a.754.754 0 0 0-.433-.36c-.485-.467-.678-.92-.678-1.286 0-.3.13-.66.445-1.037.286.197.593.376.913.536 1.572.786 3.692 1.251 5.992 1.251s4.42-.465 5.992-1.25ZM4.047 14.06C3.532 13.467 3.2 12.765 3.2 12c0-.758.327-1.454.834-2.045C3.578 9.388 3.3 8.733 3.3 8c0-1.542 1.23-2.736 2.758-3.5C7.63 3.716 9.75 3.25 12.05 3.25s4.42.465 5.992 1.25C19.57 5.265 20.8 6.459 20.8 8c0 .786-.32 1.48-.835 2.075.45.564.735 1.218.735 1.925 0 .713-.29 1.372-.747 1.94.515.594.847 1.296.847 2.06 0 1.539-1.238 2.732-2.765 3.496-1.573.787-3.693 1.254-5.985 1.254-2.292 0-4.412-.467-5.985-1.254C4.538 18.732 3.3 17.539 3.3 16c0-.713.29-1.372.747-1.94Zm1.139.978c-.272.35-.386.682-.386.963 0 .661.562 1.468 1.935 2.154 1.326.663 3.207 1.096 5.315 1.096 2.108 0 3.988-.433 5.314-1.096C18.739 17.468 19.3 16.661 19.3 16c0-.305-.134-.669-.457-1.05-1.636 1.13-4.184 1.8-6.893 1.8-2.639 0-5.125-.635-6.764-1.713Z", "key": "72b5198efab0431579dec2c60fb8063d779ebb4a" }]]);
const DatabaseB = createMeisterIcons("database-b", [["path", { "fill": "currentColor", "d": "M12 12c4.418 0 8-1.79 8-4s-3.582-4-8-4-8 1.79-8 4 3.582 4 8 4Z", "key": "8a842c67eef197cb5d74d9b085436cb015a3e3f6" }], ["path", { "fill": "currentColor", "d": "M6.679 5.842C5.31 6.526 4.75 7.332 4.75 8c0 .667.56 1.474 1.929 2.158 1.323.661 3.203 1.092 5.321 1.092s3.998-.43 5.321-1.092C18.69 9.474 19.25 8.668 19.25 8c0-.667-.56-1.474-1.929-2.158C15.998 5.181 14.118 4.75 12 4.75s-3.998.43-5.321 1.092Zm-.671-1.341C7.58 3.715 9.7 3.25 12 3.25s4.42.465 5.992 1.25c1.528.764 2.758 1.958 2.758 3.5s-1.23 2.736-2.758 3.5c-1.572.785-3.692 1.25-5.992 1.25s-4.42-.465-5.992-1.25C4.48 10.735 3.25 9.541 3.25 8s1.23-2.736 2.758-3.5Z", "key": "3621b186e944677c3ac41cb208bc0f7907dc3c7f" }], ["path", { "fill": "currentColor", "d": "M5.61 9.564a.75.75 0 0 1-.174 1.046c-.48.343-.686.802-.686 1.39 0 .49.22.9.838 1.43C6.802 14.473 9.2 15.25 12 15.25s5.198-.778 6.412-1.82c.602-.516.838-1.026.838-1.43 0-.404-.236-.914-.838-1.43a.75.75 0 1 1 .976-1.14c.798.684 1.362 1.574 1.362 2.57 0 .996-.564 1.886-1.362 2.57C17.802 15.929 15 16.75 12 16.75s-5.802-.821-7.388-2.18C3.83 13.9 3.25 13.11 3.25 12c0-1.011.393-1.953 1.314-2.61a.75.75 0 0 1 1.046.174Z", "key": "d65abfb1f52d2896af6652d615bf8664a7bb0664" }], ["path", { "fill": "currentColor", "d": "M5.67 13.512a.75.75 0 0 1-.082 1.057c-.602.517-.838 1.027-.838 1.431 0 .661.562 1.468 1.935 2.154 1.327.663 3.207 1.096 5.315 1.096 2.108 0 3.988-.433 5.315-1.096 1.373-.686 1.935-1.493 1.935-2.154 0-.404-.236-.914-.838-1.43a.75.75 0 0 1 .976-1.14c.798.684 1.362 1.574 1.362 2.57 0 1.539-1.238 2.732-2.765 3.496-1.573.787-3.693 1.254-5.985 1.254-2.292 0-4.412-.467-5.985-1.254C4.488 18.732 3.25 17.539 3.25 16c0-.996.564-1.886 1.362-2.57a.75.75 0 0 1 1.057.082Z", "key": "e7b60eae6b767ba95ec3d3e794e03828db8cc9d9" }]]);
const Delete = createMeisterIcons("delete", [["path", { "fill": "currentColor", "d": "M9.25 4.197c0-.485.464-.95.95-.95h3.7c.486 0 .95.465.95.95v.55h-5.6v-.55Zm-1.5.55v-.55c0-1.314 1.136-2.45 2.45-2.45h3.7c1.314 0 2.45 1.136 2.45 2.45v.55H20a.75.75 0 0 1 0 1.5h-1.25v12.25c0 2.13-1.752 3.75-3.75 3.75H9.12c-2.258.114-3.87-1.667-3.87-3.75V6.247H4a.75.75 0 0 1 0-1.5h3.75Zm-1 1.5h10.5v12.25c0 1.27-1.048 2.25-2.25 2.25H9.08l-.022.002c-1.33.074-2.308-.941-2.308-2.252V6.247Zm3.25 2.6a.75.75 0 0 1 .75.75v8a.75.75 0 1 1-1.5 0v-8a.75.75 0 0 1 .75-.75Zm4.75.75a.75.75 0 0 0-1.5 0v8a.75.75 0 1 0 1.5 0v-8Z", "key": "72ff5920747189f5cd8d7bbc6b44ef64cca39947" }]]);
const DeleteA = createMeisterIcons("delete-a", [["path", { "fill": "currentColor", "d": "M7.6 6.3a.776.776 0 0 0-.755.867l.002.01.998 12.078c.16.889.794 1.445 1.555 1.445h5c.838 0 1.49-.63 1.553-1.318v-.005l1.202-12.21A.776.776 0 0 0 16.4 6.3H7.6ZM5.353 7.321C5.213 5.994 6.244 4.8 7.6 4.8h8.8c1.358 0 2.39 1.198 2.246 2.528l-1.2 12.193c-.138 1.51-1.485 2.68-3.046 2.68h-5c-1.63 0-2.79-1.233-3.04-2.728l-.005-.03L5.353 7.32ZM7.25 2.55A.75.75 0 0 1 8 1.8h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75Z", "key": "dd153e6eac2cf735e86ab594288a58a511b33930" }]]);
const DeleteAb = createMeisterIcons("delete-ab", [["path", { "fill": "currentColor", "d": "M14.45 21.4h-5c-1.2 0-2.1-.9-2.3-2.1l-1-12.1c-.1-.9.6-1.6 1.5-1.6h8.7c.9 0 1.6.8 1.5 1.7l-1.2 12.2c0 1-1 1.9-2.2 1.9Z", "key": "7808104496141c5e8948941d137554a6fe62d443" }], ["path", { "fill": "currentColor", "d": "M7.65 6.35c-.503 0-.8.36-.754.767v.01l.999 12.078c.16.889.794 1.445 1.555 1.445h5c.883 0 1.45-.655 1.45-1.15v-.037l1.205-12.246a.776.776 0 0 0-.755-.867h-8.7Zm-2.246.921C5.256 5.884 6.357 4.85 7.65 4.85h8.7c1.358 0 2.39 1.198 2.246 2.528L17.4 19.54c-.025 1.486-1.446 2.61-2.95 2.61h-5c-1.63 0-2.79-1.232-3.04-2.727l-.005-.03L5.404 7.27ZM7.3 2.6a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5h-8a.75.75 0 0 1-.75-.75Z", "key": "b6afb4f416cc8584bfa169d19b16d8a70120f0eb" }]]);
const DeleteB = createMeisterIcons("delete-b", [["path", { "fill": "currentColor", "d": "M18 5.55v13c0 1.7-1.4 3-3 3H9c-1.7 0-3-1.4-3-3v-13h12Z", "key": "6204536575d818ba6746e4c970791d452c38fcb8" }], ["path", { "fill": "currentColor", "d": "M5.25 4.8h13.5v13.75c0 2.13-1.752 3.75-3.75 3.75H9c-2.13 0-3.75-1.752-3.75-3.75V4.8Zm1.5 1.5v12.25c0 1.202.98 2.25 2.25 2.25h6c1.202 0 2.25-.98 2.25-2.25V6.3H6.75Z", "key": "1039ea7df9dd25492dec8bd32179c920b3602309" }], ["path", { "fill": "currentColor", "d": "M17.25 5.55A.75.75 0 0 1 18 4.8h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm-14 0A.75.75 0 0 1 4 4.8h2a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1-.75-.75ZM10.2 3.2c-.486 0-.95.464-.95.95v.55h5.5v-.55c0-.43-.41-.868-.903-.95H10.2Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h3.747l.046.006c1.09.136 2.257 1.086 2.257 2.444V6.2h-8.5V4.15Z", "key": "ede0cb34b56147a02536f42b056edf497b2e6cfb" }], ["path", { "fill": "#fff", "d": "M10 8.8a.75.75 0 0 1 .75.75v8a.75.75 0 1 1-1.5 0v-8A.75.75 0 0 1 10 8.8Zm4 0a.75.75 0 0 1 .75.75v8a.75.75 0 1 1-1.5 0v-8A.75.75 0 0 1 14 8.8Z", "key": "bb9c1bccda58103b4a02b4c02d2bf6fb47b568ab" }]]);
const DesignAlignCenter = createMeisterIcons("design-align-center", [["path", { "fill": "currentColor", "d": "M9 4.75c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h6c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25H9Zm3.75 6H15A2.756 2.756 0 0 0 17.75 8V6A2.756 2.756 0 0 0 15 3.25H9A2.756 2.756 0 0 0 6.25 6v2A2.756 2.756 0 0 0 9 10.75h2.25v2.5H6A2.756 2.756 0 0 0 3.25 16v2A2.756 2.756 0 0 0 6 20.75h12A2.756 2.756 0 0 0 20.75 18v-2A2.756 2.756 0 0 0 18 13.25h-5.25v-2.5Zm-.75 4H6c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h12c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-6Z", "key": "a3d839d2b485f45a5f420b7ee7da42a53df4da76" }]]);
const DesignAlignCenterB = createMeisterIcons("design-align-center-b", [["path", { "fill": "currentColor", "d": "M15 10H9c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2Z", "key": "85911bd7a94d303ea5931164029714915eb38a2c" }], ["path", { "fill": "currentColor", "d": "M9 4.75c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h6c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25H9ZM6.25 6A2.756 2.756 0 0 1 9 3.25h6A2.756 2.756 0 0 1 17.75 6v2A2.756 2.756 0 0 1 15 10.75H9A2.756 2.756 0 0 1 6.25 8V6ZM18 20H6c-1.1 0-2-.9-2-2v-2c0-1.1.9-2 2-2h12c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2Z", "key": "c07ecb0ac67b7972866182cc52d7b8ecae00b3ba" }], ["path", { "fill": "currentColor", "d": "M6 14.75c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h12c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25H6ZM3.25 16A2.756 2.756 0 0 1 6 13.25h12A2.756 2.756 0 0 1 20.75 16v2A2.756 2.756 0 0 1 18 20.75H6A2.756 2.756 0 0 1 3.25 18v-2Z", "key": "621c110eccb03b8874b38ef40c4cca48b7773109" }], ["path", { "fill": "currentColor", "d": "M12 9.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "b82d5a9fed1414b00041e21a44280d32624cf1a6" }]]);
const DesignAlignLeft = createMeisterIcons("design-align-left", [["path", { "fill": "currentColor", "d": "M4.75 4a.75.75 0 0 0-1.5 0v16a.75.75 0 0 0 1.5 0V4ZM9 4.75c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h5c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25H9ZM6.25 6A2.756 2.756 0 0 1 9 3.25h5A2.756 2.756 0 0 1 16.75 6v2A2.756 2.756 0 0 1 14 10.75H9A2.756 2.756 0 0 1 6.25 8V6ZM9 14.75c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h9c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25H9ZM6.25 16A2.756 2.756 0 0 1 9 13.25h9A2.756 2.756 0 0 1 20.75 16v2A2.756 2.756 0 0 1 18 20.75H9A2.756 2.756 0 0 1 6.25 18v-2Z", "key": "f830d7cd50b7bd13dc2c165d082835dbf6e4a611" }]]);
const DesignAlignLeftB = createMeisterIcons("design-align-left-b", [["path", { "fill": "currentColor", "d": "M14 10H9c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h5c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2Z", "key": "a55a26e333b347f103b532d4256e268113db403c" }], ["path", { "fill": "currentColor", "d": "M9 4.75c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h5c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25H9ZM6.25 6A2.756 2.756 0 0 1 9 3.25h5A2.756 2.756 0 0 1 16.75 6v2A2.756 2.756 0 0 1 14 10.75H9A2.756 2.756 0 0 1 6.25 8V6ZM18 20H9c-1.1 0-2-.9-2-2v-2c0-1.1.9-2 2-2h9c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2Z", "key": "58fc80a4b3b99b9a55824846abbcd0d19fb39a96" }], ["path", { "fill": "currentColor", "d": "M9 14.75c-.686 0-1.25.564-1.25 1.25v2c0 .686.564 1.25 1.25 1.25h9c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25H9ZM6.25 16A2.756 2.756 0 0 1 9 13.25h9A2.756 2.756 0 0 1 20.75 16v2A2.756 2.756 0 0 1 18 20.75H9A2.756 2.756 0 0 1 6.25 18v-2ZM4 3.25a.75.75 0 0 1 .75.75v16a.75.75 0 0 1-1.5 0V4A.75.75 0 0 1 4 3.25Z", "key": "8d11ea1a9b1d1c4787cc79c55cf0a07e49717093" }]]);
const DesignAlignRight = createMeisterIcons("design-align-right", [["path", { "fill": "currentColor", "d": "M5.08 5.08c-.19.19-.33.49-.33.92v2c0 .686.564 1.25 1.25 1.25h9c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25H6c-.43 0-.73.14-.92.33ZM4.02 4.02c.51-.51 1.21-.77 1.98-.77h9A2.756 2.756 0 0 1 17.75 6v2A2.756 2.756 0 0 1 15 10.75H6A2.756 2.756 0 0 1 3.25 8V6c0-.77.26-1.47.77-1.98Zm5.06 11.06c-.19.19-.33.49-.33.92v2c0 .686.564 1.25 1.25 1.25h5c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-5c-.43 0-.73.14-.92.33Zm-1.06-1.06c.51-.51 1.21-.77 1.98-.77h5A2.756 2.756 0 0 1 17.75 16v2A2.756 2.756 0 0 1 15 20.75h-5A2.756 2.756 0 0 1 7.25 18v-2c0-.77.26-1.47.77-1.98ZM20.75 4a.75.75 0 0 0-1.5 0v16a.75.75 0 0 0 1.5 0V4Z", "key": "cef6701e7be5650bc4f89f74e8250cd22ac0415c" }]]);
const DesignAlignRightB = createMeisterIcons("design-align-right-b", [["path", { "fill": "currentColor", "d": "M10 14h5c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2h-5c-1.1 0-2-.9-2-2v-2c0-1.2.8-2 2-2Z", "key": "cf13b8094e513651b358babfbf0f20f07e9d494e" }], ["path", { "fill": "currentColor", "d": "M9.08 15.08c-.19.19-.33.49-.33.92v2c0 .686.564 1.25 1.25 1.25h5c.686 0 1.25-.564 1.25-1.25v-2c0-.686-.564-1.25-1.25-1.25h-5c-.43 0-.73.14-.92.33Zm-1.06-1.06c.51-.51 1.21-.77 1.98-.77h5A2.756 2.756 0 0 1 17.75 16v2A2.756 2.756 0 0 1 15 20.75h-5A2.756 2.756 0 0 1 7.25 18v-2c0-.77.26-1.47.77-1.98ZM6 4h9c1.1 0 2 .9 2 2v2c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2V6c0-1.2.8-2 2-2Z", "key": "0aa959534a9a4ab2d05b114c4fd01fa734c17f4e" }], ["path", { "fill": "currentColor", "d": "M5.08 5.08c-.19.19-.33.49-.33.92v2c0 .686.564 1.25 1.25 1.25h9c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25H6c-.43 0-.73.14-.92.33ZM4.02 4.02c.51-.51 1.21-.77 1.98-.77h9A2.756 2.756 0 0 1 17.75 6v2A2.756 2.756 0 0 1 15 10.75H6A2.756 2.756 0 0 1 3.25 8V6c0-.77.26-1.47.77-1.98ZM20 3.25a.75.75 0 0 1 .75.75v16a.75.75 0 0 1-1.5 0V4a.75.75 0 0 1 .75-.75Z", "key": "60dfca1d2be65227f94f96f21de5dfaf7111e15d" }]]);
const Diamond = createMeisterIcons("diamond", [["path", { "fill": "currentColor", "d": "M5.165 3.872c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.447.744.455 1.685-.153 2.45l-7.589 9.785c-.42.577-1.09.826-1.7.826-.61 0-1.282-.25-1.701-.826l-7.59-9.786c-.267-.335-.466-.743-.507-1.196A1.838 1.838 0 0 1 2.6 8.113l2.564-4.24Zm1.855.416c-.242 0-.467.162-.529.285l-.013.027-2.641 4.368-.03.038a.346.346 0 0 0-.09.264c.01.095.058.235.19.4l.006.008 7.61 9.812.008.012c.08.113.254.21.49.21.235 0 .408-.097.49-.21l.008-.012 7.616-9.821c.187-.235.195-.49.043-.745L17.6 4.66c-.22-.282-.417-.372-.58-.372h-10Z", "key": "5aaa1bc3ca1ad65b69d2a05398ab3224d2c19c48" }]]);
const DiamondAdd = createMeisterIcons("diamond-add", [["path", { "fill": "currentColor", "d": "M5.165 4.134c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.448.746.455 1.69-.157 2.455a.75.75 0 0 1-1.171-.937c.188-.235.195-.491.043-.745L17.6 4.923c-.22-.283-.417-.373-.58-.373h-10c-.242 0-.467.162-.529.285l-.013.027L3.837 9.23l-.03.039a.346.346 0 0 0-.09.263c.01.096.058.236.19.4l.006.008 7.6 9.8a.75.75 0 1 1-1.185.92L2.73 10.864c-.267-.335-.466-.744-.507-1.196A1.838 1.838 0 0 1 2.6 8.375l2.564-4.24Z", "key": "21315f8627cc7f35d0a878f704a330ceabd572a8" }], ["path", { "fill": "currentColor", "d": "M15.92 12.25a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V13a.75.75 0 0 1 .75-.75Z", "key": "6c80b8fb1b35c98a75dac31a695c8aa2ae2473ed" }], ["path", { "fill": "currentColor", "d": "M12.77 15.4a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "ab0b9fb85b9974542266d008c9a9dc8e83be0086" }]]);
const DiamondAlt = createMeisterIcons("diamond-alt", [["path", { "fill": "currentColor", "d": "M5.165 3.872c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.447.744.455 1.685-.153 2.45l-7.589 9.785c-.42.577-1.09.826-1.7.826-.61 0-1.282-.25-1.701-.826l-7.59-9.786c-.267-.335-.466-.743-.507-1.196A1.838 1.838 0 0 1 2.6 8.113l2.564-4.24Zm1.855.416c-.242 0-.467.162-.529.285l-.013.027-2.641 4.368-.03.038a.346.346 0 0 0-.09.264c.01.095.058.235.19.4l.006.008 7.61 9.812.008.012c.08.113.254.21.49.21.235 0 .408-.097.49-.21l.008-.012 7.616-9.821c.187-.235.195-.49.043-.745L17.6 4.66c-.22-.282-.417-.372-.58-.372h-10Z", "key": "37320998866b0041c90a37de04366ee1d3342e93" }], ["path", { "fill": "currentColor", "d": "M3.02 10.188v-1.5h18v1.5h-18Z", "key": "d28000083678e0f3a39582ab474fdd49c6b60440" }], ["path", { "fill": "currentColor", "d": "m9.03 9.485 2.666-5.521-1.35-.652L7.41 9.39l3.9 11.293 1.418-.49L9.03 9.485Z", "key": "9cd9070e0a181a1d354d05d5b715928f908b035d" }], ["path", { "fill": "currentColor", "d": "M13.496 3.312 16.43 9.39l-3.9 11.293-1.418-.49L14.81 9.485l-2.666-5.521 1.35-.652Z", "key": "3a93d901ff4274ed132dc8a375a839a04ae12fe5" }]]);
const DiamondB = createMeisterIcons("diamond-b", [["path", { "fill": "currentColor", "d": "m13.12 19.938 7.6-9.8c.4-.5.4-1.1.1-1.6l-2.6-4.3c-.3-.4-.7-.7-1.2-.7h-10c-.5 0-1 .3-1.2.7l-2.6 4.3c-.4.5-.3 1.1.1 1.6l7.6 9.8c.5.7 1.7.7 2.2 0Z", "key": "0fd5349b9b3b6a2fda59e10083b70a3f22c5fed2" }], ["path", { "fill": "currentColor", "d": "M5.165 3.872c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.447.744.455 1.685-.153 2.45l-7.589 9.785c-.42.577-1.09.826-1.7.826-.61 0-1.282-.25-1.701-.826l-7.59-9.786c-.267-.335-.466-.743-.507-1.196A1.838 1.838 0 0 1 2.6 8.113l2.564-4.24Zm1.855.416c-.242 0-.467.162-.529.285l-.013.027-2.641 4.368-.03.038a.346.346 0 0 0-.09.264c.01.095.058.235.19.4l.006.008 7.61 9.812.008.012c.08.113.254.21.49.21.235 0 .408-.097.49-.21l.008-.012 7.616-9.821c.187-.235.195-.49.043-.745L17.6 4.66c-.22-.282-.417-.372-.58-.372h-10Z", "key": "fcdd678145d8da22572cc52bd7acbeb358d7e884" }]]);
const DiamondBlock = createMeisterIcons("diamond-block", [["path", { "fill": "currentColor", "d": "M5.165 4.134c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.448.746.455 1.69-.157 2.455a.75.75 0 0 1-1.171-.937c.188-.235.195-.491.043-.745L17.6 4.923c-.22-.283-.417-.373-.58-.373h-10c-.242 0-.467.162-.529.285l-.013.027L3.837 9.23l-.03.039a.346.346 0 0 0-.09.263c.01.096.058.236.19.4l.006.008 7.6 9.8a.75.75 0 1 1-1.185.92L2.73 10.864c-.267-.335-.466-.744-.507-1.196A1.838 1.838 0 0 1 2.6 8.375l2.564-4.24Z", "key": "aef325dc089b4ac82ffdb7b49d9fdf8afb61e112" }], ["path", { "fill": "currentColor", "d": "M16.19 13.53c-.707-.707-1.732-.707-2.44 0-.702.703-.706 1.719-.013 2.426.71.625 1.757.625 2.467 0 .693-.707.689-1.723-.014-2.426Zm-3.5-1.06c1.293-1.293 3.268-1.293 4.56 0 1.294 1.293 1.294 3.267 0 4.56l-.013.014-.015.014a3.356 3.356 0 0 1-4.503 0l-.015-.014-.014-.014c-1.293-1.293-1.293-3.267 0-4.56Z", "key": "f0e73979a3f9050245a507ca21b4bf7c27c771f9" }], ["path", { "fill": "currentColor", "d": "m12.69 15.97 3.5-3.5 1.06 1.06-3.5 3.5-1.06-1.06Z", "key": "6301ddd43dd2f636ad9a06cd8ed2b16e50cc06c0" }]]);
const DiamondCheck = createMeisterIcons("diamond-check", [["path", { "fill": "currentColor", "d": "M5.165 4.134c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.448.746.455 1.69-.157 2.455a.75.75 0 0 1-1.171-.937c.188-.235.195-.491.043-.745L17.6 4.923c-.22-.283-.417-.373-.58-.373h-10c-.242 0-.467.162-.529.285l-.013.027L3.837 9.23l-.03.039a.346.346 0 0 0-.09.263c.01.096.058.236.19.4l.006.008 7.6 9.8a.75.75 0 1 1-1.185.92L2.73 10.864c-.267-.335-.466-.744-.507-1.196A1.838 1.838 0 0 1 2.6 8.375l2.564-4.24Z", "key": "3d116583f3235fdcb4de718a49df7fa432e35130" }], ["path", { "fill": "currentColor", "d": "M18.459 13.278a.75.75 0 0 1-.017 1.06l-3.205 3.109a.832.832 0 0 1-.256.248.901.901 0 0 1-.473.13c-.23 0-.506-.083-.718-.295l-.038-.037-1.232-1.643a.75.75 0 1 1 1.2-.9l.816 1.087 2.862-2.775a.75.75 0 0 1 1.06.016Z", "key": "fd6bd80a0644fb2e76a09c48e8be9ea2b6783be0" }]]);
const DiamondCode = createMeisterIcons("diamond-code", [["path", { "fill": "currentColor", "d": "M17.49 13.47a.75.75 0 0 1 1.06 0l1.2 1.2c.273.272.37.631.37.93 0 .299-.097.658-.37.93l-1.2 1.2a.75.75 0 1 1-1.06-1.06l1.07-1.07-1.07-1.07a.75.75 0 0 1 0-1.06Zm-2.14.1a.75.75 0 0 1 0 1.06l-1.069 1.07 1.07 1.07a.75.75 0 1 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l.53.53-.53-.53 1.2-1.2a.75.75 0 0 1 1.06 0Z", "key": "03efd8f50ed1adbd863233787f7c99772ab45742" }], ["path", { "fill": "currentColor", "d": "M5.165 4.134c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.448.746.455 1.69-.157 2.455a.75.75 0 0 1-1.171-.937c.188-.235.195-.491.043-.745L17.6 4.923c-.22-.283-.417-.373-.58-.373h-10c-.242 0-.467.162-.529.285l-.013.027L3.837 9.23l-.03.039a.346.346 0 0 0-.09.263c.01.096.058.236.19.4l.006.008 7.6 9.8a.75.75 0 1 1-1.185.92L2.73 10.864c-.267-.335-.466-.744-.507-1.196A1.838 1.838 0 0 1 2.6 8.375l2.564-4.24Z", "key": "0deef0ad30842469ab105bd6cad575f96668b544" }]]);
const DiamondCross = createMeisterIcons("diamond-cross", [["path", { "fill": "currentColor", "d": "M5.165 4.134c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.448.746.455 1.69-.157 2.455a.75.75 0 0 1-1.171-.937c.188-.235.195-.491.043-.745L17.6 4.923c-.22-.283-.417-.373-.58-.373h-10c-.242 0-.467.162-.529.285l-.013.027L3.837 9.23l-.03.039a.346.346 0 0 0-.09.263c.01.096.058.236.19.4l.006.008 7.6 9.8a.75.75 0 1 1-1.185.92L2.73 10.864c-.267-.335-.466-.744-.507-1.196A1.838 1.838 0 0 1 2.6 8.375l2.564-4.24Z", "key": "596f4c0bc8da1e179c0cf03b475ab92ac8f888a2" }], ["path", { "fill": "currentColor", "d": "M18.143 13.162a.75.75 0 0 1 .015 1.06l-3.4 3.5a.75.75 0 1 1-1.075-1.045l3.4-3.5a.75.75 0 0 1 1.06-.015Z", "key": "ed67345f12b4e172bba9ff554d557eefea28d5bd" }], ["path", { "fill": "currentColor", "d": "M13.698 13.162a.75.75 0 0 1 1.06.015l3.4 3.5a.75.75 0 1 1-1.076 1.046l-3.4-3.5a.75.75 0 0 1 .016-1.061Z", "key": "fadea3a6bb3148193b20ca6c7e6f72e40e030e2a" }]]);
const DiamondHear = createMeisterIcons("diamond-hear", [["path", { "fill": "currentColor", "d": "M14.12 13.85a.907.907 0 0 0-.67.28c-.306.307-.306.933 0 1.24l.194.193 1.825 1.728 1.882-1.882c.243-.334.32-.56.32-.709 0-.284-.071-.46-.18-.57-.308-.307-.933-.307-1.24 0l-.73.73-.692-.69c-.334-.244-.56-.32-.709-.32Zm1.381-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.306.295-1.73.72-.894.893-.894 2.467 0 3.36l.206.208 1.859 1.76c.242.308.598.477.977.477.395 0 .753-.18 1.018-.445l2.037-2.037.032-.043c.333-.443.65-1.005.65-1.65 0-.515-.129-1.14-.62-1.63-.796-.797-2.135-.883-3.049-.258Zm-.131 4.575.001-.001h-.001Z", "key": "592c408a6350f30c2ee703e9eaf2d5d1fa17edba" }], ["path", { "fill": "currentColor", "d": "M5.165 4.134c.346-.66 1.109-1.084 1.855-1.084h10c.832 0 1.428.504 1.8 1l.023.03 2.62 4.334c.448.746.455 1.69-.157 2.455a.75.75 0 0 1-1.171-.937c.188-.235.195-.491.043-.745L17.6 4.923c-.22-.283-.417-.373-.58-.373h-10c-.242 0-.467.162-.529.285l-.013.027L3.837 9.23l-.03.039a.346.346 0 0 0-.09.263c.01.096.058.236.19.4l.006.008 7.6 9.8a.75.75 0 1 1-1.185.92L2.73 10.864c-.267-.335-.466-.744-.507-1.196A1.838 1.838 0 0 1 2.6 8.375l2.564-4.24Z", "key": "a791e9e7ad95d16b6cab3ca29327ef85b2d40061" }]]);
const DiamondRing = createMeisterIcons("diamond-ring", [["path", { "fill": "currentColor", "d": "M8.344 3.186C8.733 2.442 9.477 2.3 9.9 2.3h4.3c.69 0 1.209.361 1.524.834l.01.015.902 1.503c.384.594.327 1.43-.136 2.048l-.006.007-3.011 3.816-.007.007c-.377.453-.905.72-1.464.72a1.71 1.71 0 0 1-1.417-.756l-2.99-3.787L7.6 6.7a1.854 1.854 0 0 1-.386-1.003c-.023-.361.07-.693.215-.982l.013-.026.902-1.503Zm1.35.665a.113.113 0 0 0-.023.034l-.013.026-.898 1.497a.408.408 0 0 0-.049.195c.002.034.014.095.084.19l3.012 3.816.017.025c.063.094.13.116.188.116.066 0 .185-.032.306-.174l2.986-3.782a.43.43 0 0 0 .085-.225.223.223 0 0 0-.013-.103l-.01-.015-.898-1.497a.395.395 0 0 0-.12-.119.278.278 0 0 0-.148-.035H9.9a.433.433 0 0 0-.173.031.12.12 0 0 0-.032.02Z", "key": "cf49d59fdee0aeac2ad8c70960b9a81fbffdd87a" }], ["path", { "fill": "currentColor", "d": "M8.754 5.584a.75.75 0 0 1-.288 1.02A7.202 7.202 0 0 0 4.75 12.95c0 3.986 3.264 7.25 7.25 7.25s7.25-3.264 7.25-7.25a7.317 7.317 0 0 0-3.628-6.352.75.75 0 0 1 .756-1.296 8.817 8.817 0 0 1 4.372 7.648c0 4.814-3.936 8.75-8.75 8.75s-8.75-3.936-8.75-8.75a8.702 8.702 0 0 1 4.484-7.654.75.75 0 0 1 1.02.288Z", "key": "4c6b86be79dabfeac573dad2d9bd680b93db4cd6" }]]);
const DiamondRingB = createMeisterIcons("diamond-ring-b", [["path", { "fill": "currentColor", "d": "m12.9 10.05 3-3.8c.3-.4.3-.9.1-1.2l-.9-1.5c-.2-.3-.5-.5-.9-.5H9.9c-.3 0-.7.1-.9.5l-.9 1.5c-.2.4-.2.8.1 1.2l3 3.8c.4.6 1.2.6 1.7 0Z", "key": "af3ae2f801d00b2b46fba5fcd985d86f6a481354" }], ["path", { "fill": "currentColor", "d": "M8.344 3.186C8.733 2.442 9.477 2.3 9.9 2.3h4.3c.69 0 1.209.361 1.524.834l.01.015.902 1.503c.384.594.327 1.43-.136 2.048l-.006.007-3.011 3.816-.007.007c-.377.453-.905.72-1.464.72a1.71 1.71 0 0 1-1.417-.756l-2.99-3.787L7.6 6.7a1.854 1.854 0 0 1-.386-1.003c-.023-.361.07-.693.215-.982l.013-.026.902-1.503Zm1.35.665a.113.113 0 0 0-.023.034l-.013.026-.898 1.497a.408.408 0 0 0-.049.195c.002.034.014.095.084.19l3.012 3.816.017.025c.063.094.13.116.188.116.066 0 .185-.032.306-.174l2.986-3.782a.43.43 0 0 0 .085-.225.223.223 0 0 0-.013-.103l-.01-.015-.898-1.497a.395.395 0 0 0-.12-.119.278.278 0 0 0-.148-.035H9.9a.433.433 0 0 0-.173.031.12.12 0 0 0-.032.02Z", "key": "f2cf9b0a19c04063be7059e314cb0b9b7a78c8d2" }], ["path", { "fill": "currentColor", "d": "M8.754 5.584a.75.75 0 0 1-.288 1.02A7.202 7.202 0 0 0 4.75 12.95c0 3.986 3.264 7.25 7.25 7.25s7.25-3.264 7.25-7.25a7.317 7.317 0 0 0-3.628-6.352.75.75 0 0 1 .756-1.296 8.817 8.817 0 0 1 4.372 7.648c0 4.814-3.936 8.75-8.75 8.75s-8.75-3.936-8.75-8.75a8.702 8.702 0 0 1 4.484-7.654.75.75 0 0 1 1.02.288Z", "key": "e90478163c5c48258a619bf48463242227b5a3a8" }]]);
const Dice = createMeisterIcons("dice", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "b6d48ecc868ee20cfcb4710efc6799986a7b3283" }], ["path", { "fill": "currentColor", "d": "M12 13c-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.3.1-.6.2-.8.1-.1.2-.2.3-.2.2-.1.4-.1.6-.1.1 0 .1 0 .2.1.1 0 .1.1.2.1l.1.1.1.1c0 .1.1.1.1.2s0 .1.1.2v.2c0 .1 0 .3-.1.4-.1.1-.1.2-.2.3-.1 0-.1.1-.1.1-.1 0-.1.1-.2.1s-.1 0-.2.1l-.1.1Z", "key": "b90e7225226eaa2dc5cfb066a09c1625a4570cc7" }]]);
const Dice1 = createMeisterIcons("dice1", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "d8d29eb58bdb95250236bcc45f595396f050ac27" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "c6c80ae685339159a4548f57bddd5025e59d44e3" }], ["path", { "fill": "#fff", "d": "M12 13c-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.3.1-.6.2-.8.1-.1.2-.2.3-.2.2-.1.4-.1.6-.1.1 0 .1 0 .2.1.1 0 .1.1.2.1l.1.1.1.1c0 .1.1.1.1.2s0 .1.1.2v.2c0 .1 0 .3-.1.4-.1.1-.1.2-.2.3-.1 0-.1.1-.1.1-.1 0-.1.1-.2.1s-.1 0-.2.1l-.1.1Z", "key": "22c423f420d4602d0ca311fea4bb2182f69ecb38" }]]);
const Dice2 = createMeisterIcons("dice2", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "615fdc5dce416d0a6a9d885f13992221935de62c" }], ["path", { "fill": "currentColor", "d": "M9.6 12.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm4.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "0e3b3c34c0608a0bedd1417dc8cae2428fbbc82f" }]]);
const Dice2B = createMeisterIcons("dice2-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "4f0b48df837e1c062c983911d87001e25c43b6e1" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "86c5afd74c4def45ec41ec9b9bf73a60045ca69f" }], ["path", { "fill": "#fff", "d": "M9.6 12.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm4.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "e743096f00f194aeed089e5cbeeb882f48b08163" }]]);
const Dice3 = createMeisterIcons("dice3", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "5c79b0c46eff181c0651838b70bd706122dfe6c8" }], ["path", { "fill": "currentColor", "d": "M9.3 16c-.2.2-.5.3-.7.3-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.5.5-1 1-1 .1 0 .3 0 .4.1.1.1.2.1.3.2.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm3.3-3.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.8 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.6-.3.8ZM16 9.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7Z", "key": "f801c002cca2200fe584e4651de5107407cc58ec" }]]);
const Dice3B = createMeisterIcons("dice3-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "f98037f60bc8c5302bcac393985d1c68132d3063" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "e3e830709303302e54be8bdae432d078a03aff09" }], ["path", { "fill": "#fff", "d": "M9.3 16c-.2.2-.5.3-.7.3-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.5.5-1 1-1 .1 0 .3 0 .4.1.1.1.2.1.3.2.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm3.3-3.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.8 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.6-.3.8ZM16 9.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7Z", "key": "5214e0e06c5e7ffe3c93454bdcd708222e3ee6e6" }]]);
const Dice4 = createMeisterIcons("dice4", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "ed1a2bc6b567ee29f06c9e623930e8ed6524a48c" }], ["path", { "fill": "currentColor", "d": "M8.6 9.5c-.3 0-.5-.1-.7-.3l-.3-.3c0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.2.1.2.3.2.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm6.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm-6.7 6.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm6.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "92d258b7b1b7e9c056de2eaafda3a764f4b7a360" }]]);
const Dice4B = createMeisterIcons("dice4-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "91d25872ad9ce8ac136a260a5550cdd2fd8d0c65" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "2905e91dec5c7c11e4b45f7b4677f64d6151f5ff" }], ["path", { "fill": "#fff", "d": "M8.6 9.5c-.3 0-.5-.1-.7-.3l-.3-.3c0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.2.1.2.3.2.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm6.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm-6.7 6.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm6.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "f4d9d3d6ecd43db9e3d8364869136cf46f964556" }]]);
const Dice5 = createMeisterIcons("dice5", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "50768417966ec3f5bccff04a90391b71d6abc660" }], ["path", { "fill": "currentColor", "d": "M8.6 9.5c-.3 0-.5-.1-.7-.3l-.3-.3c0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.2.1.2.3.2.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm6.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm-6.7 6.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm3.4-3.5c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.1-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.2-.4.3-.6.3Zm3.3 3.5c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "cb1e1a81937445ea399e42d10fd49f9f310724a5" }]]);
const Dice5B = createMeisterIcons("dice5-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "e9f797d1861521e8b2734e06367f4b10a19ae61d" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "33b32749f92f425e72e6f27bbeb2ea661c8f9099" }], ["path", { "fill": "#fff", "d": "M8.6 9.5c-.3 0-.5-.1-.7-.3l-.3-.3c0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.2.1.2.3.2.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm6.7 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm-6.7 6.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm3.4-3.5c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.1-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.2-.4.3-.6.3Zm3.3 3.5c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "16db1c1d6ea1e75c5c2d9b987ae263d7c1304030" }]]);
const Dice6 = createMeisterIcons("dice6", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "4afe4b5049f34e5ce134e07ab41604d09316af91" }], ["path", { "fill": "currentColor", "d": "M9.9 16.7c0 .3-.1.5-.3.7-.1.1-.2.2-.3.2-.1 0-.3.1-.4.1-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.4-.4-.4-1 0-1.4.1-.1.2-.2.3-.2.1-.1.3-.1.4-.1.3 0 .5.1.7.3.2.2.3.4.3.7Zm0-4.7c0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.4-.3.7-.3.3 0 .6.1.7.2.2.2.3.5.3.8Zm0-4.8c0 .3-.1.5-.3.7-.1.2-.4.3-.7.3-.2 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.5-.3.7-.3.3 0 .6.1.7.3.2.2.3.4.3.7Zm6 9.5c0 .3-.1.5-.3.7-.1.1-.2.2-.3.2-.1 0-.3.1-.4.1-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.4-.4-.4-1 0-1.4.1-.1.2-.2.3-.2.1-.1.3-.1.4-.1.3 0 .5.1.7.3.2.2.3.4.3.7Zm0-4.7c0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.1.3.4.3.7Zm0-4.8c0 .3-.1.5-.3.7-.1.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.5-.3.7-.3.3 0 .5.1.7.3.2.2.3.4.3.7Z", "key": "4f1a802a657d63aded53be6f6f3d925d5fa8d51c" }]]);
const Dice6B = createMeisterIcons("dice6-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "dc1d13b391cfcee858492535ade8932c4bcf1c85" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "8c30397d41120412e43491a5f0c7eee0a8c7bd0b" }], ["path", { "fill": "#fff", "d": "M9.9 16.7c0 .3-.1.5-.3.7-.1.1-.2.2-.3.2-.1 0-.3.1-.4.1-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.4-.4-.4-1 0-1.4.1-.1.2-.2.3-.2.1-.1.3-.1.4-.1.3 0 .5.1.7.3.2.2.3.4.3.7Zm0-4.7c0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.4-.3.7-.3.3 0 .6.1.7.2.2.2.3.5.3.8Zm0-4.8c0 .3-.1.5-.3.7-.1.2-.4.3-.7.3-.2 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.5-.3.7-.3.3 0 .6.1.7.3.2.2.3.4.3.7Zm6 9.5c0 .3-.1.5-.3.7-.1.1-.2.2-.3.2-.1 0-.3.1-.4.1-.1 0-.3 0-.4-.1-.1-.1-.2-.1-.3-.2-.4-.4-.4-1 0-1.4.1-.1.2-.2.3-.2.1-.1.3-.1.4-.1.3 0 .5.1.7.3.2.2.3.4.3.7Zm0-4.7c0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.4-.3.7-.3.3 0 .5.1.7.3.2.1.3.4.3.7Zm0-4.8c0 .3-.1.5-.3.7-.1.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4.2-.2.5-.3.7-.3.3 0 .5.1.7.3.2.2.3.4.3.7Z", "key": "9b87dda3c2c245cf2869f8531b304cbb53299394" }]]);
const DiceAdd = createMeisterIcons("dice-add", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h3a.75.75 0 0 1 0 1.5H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v4.7a.75.75 0 0 1-1.5 0V9c0-2.886-2.364-5.25-5.25-5.25H9Z", "key": "0746bb890d3bef16cc62c68b4cf803e1e6854e67" }], ["path", { "fill": "currentColor", "d": "M9.4 16c-.2.2-.5.3-.7.3-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.5.5-1 1-1 .1 0 .3 0 .4.1.1.1.2.1.3.2.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm3.3-3.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .2-.1.5-.3.7Zm3.4-3.4c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm.3 5.35a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "e8a1894346b8b4bec200ed760d441bce4d705bef" }], ["path", { "fill": "currentColor", "d": "M13.15 17.8a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "066d935fd75e1bb630d65ef364332113e6c78c8a" }]]);
const DiceBlock = createMeisterIcons("dice-block", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h3a.75.75 0 0 1 0 1.5H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v4.7a.75.75 0 0 1-1.5 0V9c0-2.886-2.364-5.25-5.25-5.25H9Z", "key": "c15c5679c4893cdbc9253f7362eef0b853b0e35a" }], ["path", { "fill": "currentColor", "d": "M9.4 16c-.2.2-.5.3-.7.3-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.5.5-1 1-1 .1 0 .3 0 .4.1.1.1.2.1.3.2.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm3.3-3.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .2-.1.5-.3.7Zm3.4-3.4c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm2.445 7.405c-.689-.758-1.993-.796-2.815.025l-.012.013-.014.012c-.754.685-.795 1.98.014 2.802.83.74 2.161.703 2.852.013l.012-.013.014-.012c.757-.689.796-1.993-.026-2.815l-.013-.012-.012-.014Zm1.098-1.023c-1.31-1.424-3.585-1.386-4.96-.025-1.43 1.313-1.387 3.6-.013 4.973l.012.013.013.012c1.368 1.243 3.615 1.281 4.923-.012 1.424-1.309 1.387-3.585.025-4.96Z", "key": "f5ce451b42a1f72aace9bd66f706ef3ebfdcc5c8" }], ["path", { "fill": "currentColor", "d": "m14.67 19.57 4-4 1.06 1.06-4 4-1.06-1.06Z", "key": "f69a42c1a160eddc6cb037ab399a38c268d078d8" }]]);
const DiceCross = createMeisterIcons("dice-cross", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h3a.75.75 0 0 1 0 1.5H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v4.7a.75.75 0 0 1-1.5 0V9c0-2.886-2.364-5.25-5.25-5.25H9Z", "key": "6533f689e4f53353e67a89ee4f4aabca09071bc8" }], ["path", { "fill": "currentColor", "d": "M9.4 16c-.2.2-.5.3-.7.3-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.5.5-1 1-1 .1 0 .3 0 .4.1.1.1.2.1.3.2.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm3.3-3.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .2-.1.5-.3.7Zm3.4-3.4c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm2.53 6.27a.75.75 0 0 1 0 1.06l-3.4 3.4a.75.75 0 0 1-1.06-1.06l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "db79f58034302d2cd610c7442f4f06005dd2ed5e" }], ["path", { "fill": "currentColor", "d": "M14.17 15.57a.75.75 0 0 1 1.06 0l3.4 3.4a.75.75 0 1 1-1.06 1.06l-3.4-3.4a.75.75 0 0 1 0-1.06Z", "key": "b6c1f5ff5a969ab0403e53a3faae59104b07c1a8" }]]);
const DiceHeart = createMeisterIcons("dice-heart", [["path", { "fill": "currentColor", "d": "M16.2 16.65a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l.2.2 1.72 1.72 1.88-1.881c.244-.334.32-.56.32-.71 0-.25-.056-.467-.135-.618-.322-.257-.895-.24-1.185.05l-.73.73-.69-.691c-.335-.244-.56-.32-.71-.32Zm1.381-1.038c-.394-.255-.86-.462-1.381-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.2.2 1.758 1.759c.242.314.601.486.985.486.395 0 .753-.18 1.017-.445l2.038-2.038.032-.042c.332-.443.65-1.005.65-1.65 0-.511-.125-1.065-.426-1.516l-.041-.062-.053-.052c-.796-.797-2.135-.883-3.049-.258Zm-.232 4.575.002-.001h-.002Z", "key": "fc326eba56c93b18b28627d959e7c97d34f12a77" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h3a.75.75 0 0 1 0 1.5H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v4.7a.75.75 0 0 1-1.5 0V9c0-2.886-2.364-5.25-5.25-5.25H9Z", "key": "1d46791a395842e64962526b158f1d0bc0e1d53e" }], ["path", { "fill": "currentColor", "d": "M9.4 16c-.2.2-.5.3-.7.3-.1 0-.3 0-.4-.1-.1 0-.2-.1-.3-.2-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.5.5-1 1-1 .1 0 .3 0 .4.1.1.1.2.1.3.2.2.2.3.4.3.7 0 .3-.1.5-.3.7Zm3.3-3.3c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .2-.1.5-.3.7Zm3.4-3.4c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.5.5-1 1-1 .3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7Z", "key": "fd727720527d5865a1f3b1cdfc3844ab13ffa3ef" }]]);
const Dices = createMeisterIcons("dices", [["path", { "fill": "currentColor", "d": "M6.9 6.85c-2.276 0-4.05 1.854-4.05 4.05v5.9c0 2.276 1.854 4.05 4.05 4.05h5.9c2.186 0 4.05-1.864 4.05-4.05v-5.9c0-2.276-1.854-4.05-4.05-4.05H6.9ZM1.35 10.9c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v5.9c0 3.014-2.536 5.55-5.55 5.55H6.9c-3.004 0-5.55-2.426-5.55-5.55v-5.9Z", "key": "598c70891a3efdaaf3a0ec5febbe04a5b5d9f526" }], ["path", { "fill": "currentColor", "d": "M11.2 3.15c-1.96 0-3.63 1.362-3.962 3.184l-1.476-.268C6.231 3.487 8.56 1.65 11.2 1.65h5.9c3.004 0 5.55 2.426 5.55 5.55v5.9a5.443 5.443 0 0 1-4.988 5.447l-.124-1.495A3.943 3.943 0 0 0 21.15 13.1V7.2c0-2.276-1.854-4.05-4.05-4.05h-5.9Z", "key": "cd539f86a91593a2981b302a72657ef1410a9d68" }], ["path", { "fill": "currentColor", "d": "M7 11.8c-.2 0-.5-.1-.6-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 0 .1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm5.7 0c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.1.2-.3.3-.6.3ZM7 17.7c-.2 0-.5-.1-.6-.3-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 .1.1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm2.9-3c-.2 0-.5-.1-.6-.3-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 .1.1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm2.8 3c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.1.2-.3.3-.6.3Z", "key": "67322cee33232464d021850ef1a9b5b4db9c4fd6" }]]);
const DicesB = createMeisterIcons("dices-b", [["path", { "fill": "currentColor", "d": "M6.403 5.4h6.476c2.966.115 5.521 2.511 5.521 5.55v5.938c0 .264.001.737-.12 1.144-.49 2.553-2.806 4.368-5.43 4.368h-5.9c-3.004 0-5.55-2.425-5.55-5.55v-5.9c0-2.9 2.203-5.2 4.957-5.544l.046-.006ZM6.5 6.9c-2.026.275-3.6 1.965-3.6 4.05v5.9c0 2.276 1.854 4.05 4.05 4.05h5.9c1.96 0 3.631-1.362 3.962-3.184l.01-.053.017-.05c.053-.161.061-.428.061-.763v-5.9c0-2.156-1.837-3.957-4.065-4.05H6.5Z", "key": "0bc7dc483ac1f71af01e11aa40f7e6a158e96651" }], ["path", { "fill": "currentColor", "d": "M21.85 7.15v5.9c0 2.5-1.9 4.5-4.3 4.8.1-.3.1-.6.1-1v-5.9c0-2.6-2.1-4.8-4.8-4.8h-6.4c.4-2.2 2.4-3.8 4.7-3.8h5.9c2.6.1 4.8 2.2 4.8 4.8Z", "key": "40b400aa466b2f57296ca77b3b3e382b5f107414" }], ["path", { "fill": "currentColor", "d": "M7.468 5.4h5.382c3.125 0 5.55 2.546 5.55 5.55v5.926c1.573-.58 2.7-2.062 2.7-3.826v-5.9c0-2.156-1.837-3.957-4.065-4.05H11.15c-1.627 0-3.055.939-3.682 2.3Zm-1.756.616C6.182 3.438 8.51 1.6 11.15 1.6h5.929c2.966.115 5.521 2.511 5.521 5.55v5.9c0 2.9-2.203 5.2-4.957 5.544l-1.18.148.376-1.13c.054-.163.061-.335.061-.762v-5.9c0-2.196-1.774-4.05-4.05-4.05H5.552l.16-.884Z", "key": "a90782682464542c2c9160dc7b3e03b9ece30b97" }], ["path", { "fill": "currentColor", "d": "M7.05 11.85c-.2 0-.5-.1-.6-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 0 .1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm5.7 0c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.1.2-.3.3-.6.3Zm-5.7 5.9c-.2 0-.5-.1-.6-.3-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 .1.1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm2.9-3c-.2 0-.5-.1-.6-.3-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 .1.1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm2.8 3c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.1.2-.3.3-.6.3Z", "key": "ca1e28612cbcc1949bb755ef4d7124159f6df2eb" }]]);
const DicesVarB = createMeisterIcons("dices-var-b", [["path", { "fill": "currentColor", "d": "M12.8 21.6H6.9c-2.6 0-4.8-2.1-4.8-4.8v-5.9c0-2.6 2.1-4.8 4.8-4.8h5.9c2.6 0 4.8 2.1 4.8 4.8v5.9c0 2.6-2.2 4.8-4.8 4.8Z", "key": "640d349f29cf6866cbc3c4b50c261ba4fabfcd9d" }], ["path", { "fill": "currentColor", "d": "M6.9 6.85c-2.276 0-4.05 1.854-4.05 4.05v5.9c0 2.276 1.854 4.05 4.05 4.05h5.9c2.186 0 4.05-1.864 4.05-4.05v-5.9c0-2.276-1.854-4.05-4.05-4.05H6.9ZM1.35 10.9c0-3.004 2.426-5.55 5.55-5.55h5.9c3.004 0 5.55 2.426 5.55 5.55v5.9c0 3.014-2.536 5.55-5.55 5.55H6.9c-3.004 0-5.55-2.426-5.55-5.55v-5.9Z", "key": "852d1af95fa4b5d6bdc3fbf5c3d6e18de4a293bc" }], ["path", { "fill": "currentColor", "d": "M11.2 3.15c-1.96 0-3.63 1.362-3.962 3.184l-1.476-.268C6.231 3.487 8.56 1.65 11.2 1.65h5.9c3.004 0 5.55 2.426 5.55 5.55v5.9a5.443 5.443 0 0 1-4.988 5.447l-.124-1.495A3.943 3.943 0 0 0 21.15 13.1V7.2c0-2.276-1.854-4.05-4.05-4.05h-5.9Z", "key": "a4a755a5b698c05f7be585517d646224a9328324" }], ["path", { "fill": "#fff", "d": "M7 11.8c-.2 0-.5-.1-.6-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 0 .1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm5.7 0c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.1.2-.3.3-.6.3ZM7 17.7c-.2 0-.5-.1-.6-.3-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 .1.1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm2.9-3c-.2 0-.5-.1-.6-.3-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.3-.3.9-.3 1.2 0 .1.1.1.2.2.3 0 .1.1.2.1.3 0 .2-.1.4-.2.6-.3.2-.5.3-.7.3Zm2.8 3c-.2 0-.4-.1-.6-.3-.2-.2-.2-.4-.2-.6 0-.2.1-.5.2-.6.3-.3.9-.3 1.2 0 .2.2.2.4.2.6 0 .2-.1.4-.2.6-.1.2-.3.3-.6.3Z", "key": "61923a38436cf86345d8974a35c4b36e82ca4488" }]]);
const Discount = createMeisterIcons("discount", [["path", { "fill": "currentColor", "d": "M13.785 4.57c-1.048.912-2.568.968-3.577 0a1.425 1.425 0 0 0-1.378-.15c-.453.184-.755.56-.785 1.027v.014l-.002.014a2.88 2.88 0 0 1-2.572 2.571l-.014.002h-.013c-.468.03-.843.332-1.028.785-.184.451-.145.983.165 1.397.84.998.796 2.48.016 3.52l-.013.018-.015.016c-.727.86-.171 2.106.872 2.167l.015.001.015.002a2.88 2.88 0 0 1 2.571 2.564c.138 1.139 1.355 1.597 2.169.91.998-.853 2.49-.813 3.536-.028l.017.013.017.014c.86.727 2.106.172 2.167-.871v-.015l.002-.016a2.88 2.88 0 0 1 2.565-2.57c1.138-.138 1.597-1.355.91-2.169-.853-.998-.813-2.49-.028-3.536l.013-.018.014-.016c.727-.86.172-2.106-.871-2.167l-.016-.001-.015-.002a2.88 2.88 0 0 1-2.57-2.564c-.138-1.137-1.353-1.596-2.167-.913Zm-.973-1.143c1.785-1.51 4.364-.371 4.63 1.885l.001.013a1.38 1.38 0 0 0 1.216 1.227c2.335.151 3.372 2.875 1.927 4.613-.403.55-.361 1.248-.02 1.647l.003.004c1.51 1.785.372 4.363-1.885 4.629l-.013.001a1.38 1.38 0 0 0-1.227 1.216c-.15 2.335-2.875 3.372-4.612 1.927-.55-.403-1.249-.361-1.647-.02l-.004.004c-1.785 1.51-4.364.371-4.63-1.885v-.013a1.38 1.38 0 0 0-1.216-1.227c-2.336-.151-3.372-2.875-1.927-4.613.403-.55.36-1.248.02-1.647l-.014-.015-.012-.016a2.92 2.92 0 0 1-.375-2.89c.364-.893 1.183-1.637 2.306-1.714A1.38 1.38 0 0 0 6.55 5.337c.077-1.124.822-1.943 1.715-2.307.894-.364 2.006-.305 2.89.376l.039.03.034.034c.39.389 1.038.436 1.576-.034l.01-.009Z", "key": "5f93b20bdd728d654c61786ea0f72034a0978d1d" }], ["path", { "fill": "currentColor", "d": "M9.797 14.2c-.3-.3-.3-.8 0-1.2l3.2-3.2c.3-.3.8-.3 1.2 0 .3.3.3.8 0 1.2l-3.2 3.2c-.4.3-.9.3-1.2 0Zm3.8.8c-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.5-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.6-.1-.7-.3Zm-4.6-4.6c-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3-.3 0-.5-.1-.7-.3Z", "key": "16ce997aa0efafa76f74c84a0ad9b9bb6ccf63ca" }]]);
const DiscountB = createMeisterIcons("discount-b", [["path", { "fill": "currentColor", "d": "M13.297 4c1.3-1.1 3.2-.3 3.4 1.4.1 1 .9 1.8 1.9 1.9 1.7.1 2.5 2.1 1.4 3.4-.6.8-.6 1.9 0 2.6 1.1 1.3.3 3.2-1.4 3.4-1 .1-1.8.9-1.9 1.9-.1 1.7-2.1 2.5-3.4 1.4-.8-.6-1.9-.6-2.6 0-1.3 1.1-3.2.3-3.4-1.4-.1-1-.9-1.8-1.9-1.9-1.7-.1-2.5-2.1-1.4-3.4.6-.8.6-1.9 0-2.6-1-1.3-.2-3.3 1.4-3.4 1-.1 1.8-.9 1.9-1.9.1-1.6 2.1-2.4 3.4-1.4.7.7 1.8.7 2.6 0Z", "key": "150fa8c328c6edb3ade43b3931ca482e16c7de98" }], ["path", { "fill": "currentColor", "d": "M13.785 4.57c-1.048.912-2.568.968-3.577 0a1.425 1.425 0 0 0-1.378-.15c-.453.184-.755.56-.785 1.027v.014l-.002.014a2.88 2.88 0 0 1-2.572 2.571l-.014.002h-.013c-.468.03-.843.332-1.028.785-.184.451-.145.983.165 1.397.84.998.796 2.48.016 3.52l-.013.018-.015.016c-.727.86-.171 2.106.872 2.167l.015.001.015.002a2.88 2.88 0 0 1 2.571 2.564c.138 1.139 1.355 1.597 2.169.91.998-.853 2.49-.813 3.536-.028l.017.013.017.014c.86.727 2.106.172 2.167-.871v-.015l.002-.016a2.88 2.88 0 0 1 2.565-2.57c1.138-.138 1.597-1.355.91-2.169-.853-.998-.813-2.49-.028-3.536l.013-.018.014-.016c.727-.86.172-2.106-.871-2.167l-.016-.001-.015-.002a2.88 2.88 0 0 1-2.57-2.564c-.138-1.137-1.353-1.596-2.167-.913Zm-.973-1.143c1.785-1.51 4.364-.371 4.63 1.885l.001.013a1.38 1.38 0 0 0 1.216 1.227c2.335.151 3.372 2.875 1.927 4.613-.403.55-.361 1.248-.02 1.647l.003.004c1.51 1.785.372 4.363-1.885 4.629l-.013.001a1.38 1.38 0 0 0-1.227 1.216c-.15 2.335-2.875 3.372-4.612 1.927-.55-.403-1.249-.361-1.647-.02l-.004.004c-1.785 1.51-4.364.371-4.63-1.885v-.013a1.38 1.38 0 0 0-1.216-1.227c-2.336-.151-3.372-2.875-1.927-4.613.403-.55.36-1.248.02-1.647l-.014-.015-.012-.016a2.92 2.92 0 0 1-.375-2.89c.364-.893 1.183-1.637 2.306-1.714A1.38 1.38 0 0 0 6.55 5.337c.077-1.124.822-1.943 1.715-2.307.894-.364 2.006-.305 2.89.376l.039.03.034.034c.39.389 1.038.436 1.576-.034l.01-.009Z", "key": "240745d5890b3ebc55ca372c8482e3f47d473b8c" }], ["path", { "fill": "#fff", "d": "M9.797 14.2c-.3-.3-.3-.8 0-1.2l3.2-3.2c.3-.3.8-.3 1.2 0 .3.3.3.8 0 1.2l-3.2 3.2c-.4.3-.9.3-1.2 0Zm3.8.8c-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.5-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.6-.1-.7-.3Zm-4.6-4.6c-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3-.3 0-.5-.1-.7-.3Z", "key": "f99d64a9f1c2319f33ddf0f1320c1bd1f60ffcea" }]]);
const Dislike = createMeisterIcons("dislike", [["path", { "fill": "currentColor", "d": "M4.25 4.987c-.386 0-.65.264-.65.65v7.3c0 .386.264.65.65.65H8.3v-8.6H4.25Zm-2.15.65c0-1.214.936-2.15 2.15-2.15H9.8v11.6H4.25a2.117 2.117 0 0 1-2.15-2.15v-7.3Z", "key": "f973d67571a94e5bc52914b8b5714cd8f05d5be2" }], ["path", { "fill": "currentColor", "d": "M8.3 3.487h9.25c1.285 0 2.304.99 2.348 2.262l2.002 9.207v.08a2.33 2.33 0 0 1-2.35 2.35h-6.1a.428.428 0 0 0-.281.09.195.195 0 0 0-.069.16v.038l-.004.037c-.059.59-.215 1.111-.561 1.567-.338.444-.804.757-1.35 1.03C9.9 20.95 8.3 20.009 8.3 18.537V3.487Zm1.5 1.5v13.55c0 .155.084.302.24.396a.489.489 0 0 0 .475.033c.454-.227.688-.415.825-.596.126-.164.218-.386.26-.777.025-1.078.945-1.706 1.85-1.706h6.1c.462 0 .815-.33.848-.781L18.4 5.917v-.08a.83.83 0 0 0-.85-.85H9.8Z", "key": "e453dd436535a10ffd81807e1ce0599bd5b8dae6" }]]);
const DislikeB = createMeisterIcons("dislike-b", [["path", { "fill": "currentColor", "d": "M9.05 4.237v10.1h-4.8c-.8 0-1.4-.6-1.4-1.4v-7.3c0-.8.6-1.4 1.4-1.4h4.8Z", "key": "70741011dd10cd4de01c31b21a322e24fff044c3" }], ["path", { "fill": "currentColor", "d": "M4.25 4.987c-.386 0-.65.264-.65.65v7.3c0 .386.264.65.65.65H8.3v-8.6H4.25Zm-2.15.65c0-1.214.936-2.15 2.15-2.15H9.8v11.6H4.25a2.117 2.117 0 0 1-2.15-2.15v-7.3Z", "key": "aa1565b5a73ea9b09d1c8e437dbcb7ed5e10422c" }], ["path", { "fill": "currentColor", "d": "M8.3 3.487h9.25c1.285 0 2.304.99 2.348 2.262l2.002 9.207v.08a2.33 2.33 0 0 1-2.35 2.35h-6.1a.428.428 0 0 0-.281.09.195.195 0 0 0-.069.16v.038l-.004.037c-.059.59-.215 1.111-.561 1.567-.338.444-.804.757-1.35 1.03C9.9 20.95 8.3 20.009 8.3 18.537V3.487Zm1.5 1.5v13.55c0 .155.084.302.24.396a.489.489 0 0 0 .475.033c.454-.227.688-.415.825-.596.126-.164.218-.386.26-.777.025-1.078.945-1.706 1.85-1.706h6.1c.462 0 .815-.33.848-.781L18.4 5.917v-.08a.83.83 0 0 0-.85-.85H9.8Z", "key": "dbb71bf3e3c49cfd1b2b03a59a80ac9032741045" }]]);
const DislikeVarB = createMeisterIcons("dislike-var-b", [["path", { "fill": "currentColor", "d": "M4.25 4.987c-.386 0-.65.264-.65.65v7.3c0 .386.264.65.65.65H8.3v-8.6H4.25Zm-2.15.65c0-1.214.936-2.15 2.15-2.15H9.8v11.6H4.25a2.117 2.117 0 0 1-2.15-2.15v-7.3Z", "key": "27336c3666decb51a024710cc9c0cf32efb51d59" }], ["path", { "fill": "currentColor", "d": "M21.15 15.037c0 .9-.7 1.6-1.6 1.6h-6.1c-.6 0-1.1.4-1.1 1-.1 1-.5 1.5-1.5 2-.8.4-1.8-.2-1.8-1.1v-14.3h8.5c.9 0 1.6.7 1.6 1.6l2 9.2Z", "key": "6b3a84397ac754ff72824a263b63f7b821cfe473" }], ["path", { "fill": "currentColor", "d": "M8.3 3.487h9.25c1.285 0 2.304.99 2.348 2.262l2.002 9.207v.08a2.33 2.33 0 0 1-2.35 2.35h-6.1a.428.428 0 0 0-.281.09.195.195 0 0 0-.069.16v.038l-.004.037c-.059.59-.215 1.111-.561 1.567-.338.444-.804.757-1.35 1.03C9.9 20.95 8.3 20.009 8.3 18.537V3.487Zm1.5 1.5v13.55c0 .155.084.302.24.396a.489.489 0 0 0 .475.033c.454-.227.688-.415.825-.596.126-.164.218-.386.26-.777.025-1.078.945-1.706 1.85-1.706h6.1c.462 0 .815-.33.848-.781L18.4 5.917v-.08a.83.83 0 0 0-.85-.85H9.8Z", "key": "da33dc5430a909e39aba73ef90c60dbc3322e9bd" }]]);
const DivideBlock = createMeisterIcons("divide-block", [["path", { "fill": "currentColor", "d": "M16.62 4.98a.518.518 0 0 0-.74 0l-10.9 10.9a.518.518 0 0 0 0 .74l2.4 2.4a.517.517 0 0 0 .74 0l10.9-10.9a.518.518 0 0 0 0-.74l-2.4-2.4Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0l2.4 2.4a2.017 2.017 0 0 1 0 2.86l-10.9 10.9a2.017 2.017 0 0 1-2.86 0l-2.4-2.4a2.018 2.018 0 0 1 0-2.86l10.9-10.9Z", "key": "b540909215ac5cebf14b8170618dc66427b24206" }]]);
const DivideBlockB = createMeisterIcons("divide-block-b", [["path", { "fill": "currentColor", "d": "m6.85 19.55-2.4-2.4c-.5-.5-.5-1.3 0-1.8l10.9-10.9c.5-.5 1.3-.5 1.8 0l2.4 2.4c.5.5.5 1.3 0 1.8l-10.9 10.9c-.5.5-1.3.5-1.8 0Z", "key": "ae6e3e6c80860b1022c5da68db120cae388e6cbc" }], ["path", { "fill": "currentColor", "d": "M16.62 4.98a.518.518 0 0 0-.74 0l-10.9 10.9a.518.518 0 0 0 0 .74l2.4 2.4a.517.517 0 0 0 .74 0l10.9-10.9a.518.518 0 0 0 0-.74l-2.4-2.4Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0l2.4 2.4a2.017 2.017 0 0 1 0 2.86l-10.9 10.9a2.017 2.017 0 0 1-2.86 0l-2.4-2.4a2.018 2.018 0 0 1 0-2.86l10.9-10.9Z", "key": "8163c51977aeff6acb2ee3e01482127b025135b2" }]]);
const Door = createMeisterIcons("door", [["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17V7Z", "key": "cb1edebe8152df5e3113d4aac33e5ea8384ec211" }], ["path", { "fill": "currentColor", "d": "M15 13c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.2-.1-.3-.1-.4 0-.3.1-.6.2-.8.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .1 0 .3-.1.4-.1.1-.1.2-.2.3-.1.2-.4.4-.6.4Z", "key": "5e74f0dfd38357f6f3d776eb5e8ac9efde97f24e" }]]);
const DoorB = createMeisterIcons("door-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h6c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4Z", "key": "2e1bc748a06c2a69746615fa8c19225fc4921b99" }], ["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17V7Z", "key": "02f7ca05915057d4fc47dcb8bd5f8df09b1a0b7b" }], ["path", { "fill": "#fff", "d": "M15 13c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.2-.1-.3-.1-.4 0-.3.1-.6.2-.8.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .1 0 .3-.1.4-.1.1-.1.2-.2.3-.1.2-.4.4-.6.4Z", "key": "1f8a068f58e0f7e6d27fed3b7f574816fa0eed64" }]]);
const DotdotType = createMeisterIcons("dotdot-type", [["path", { "fill": "currentColor", "d": "M10.73 4.621a.75.75 0 0 1 .999.36l6.3 13.4a.75.75 0 0 1-1.358.638l-6.3-13.4a.75.75 0 0 1 .36-.998ZM12.95 19.3c.3 0 .5-.1.7-.3.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.4-.4-1-.4-1.4 0-.2.2-.3.4-.3.7 0 .3.1.5.3.7.1.2.4.3.7.3Zm-3 0c.3 0 .5-.1.7-.3.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.4-.4-1-.4-1.4 0-.2.2-.3.4-.3.7 0 .3.1.5.3.7.2.2.4.3.7.3Zm-3 0c.3 0 .5-.1.7-.3.2-.2.3-.4.3-.7 0-.3-.1-.5-.3-.7-.4-.4-1-.4-1.4 0-.2.2-.3.4-.3.7 0 .3.1.5.3.7.2.2.4.3.7.3Z", "key": "5d199d95545167377fc45cb0999cfe32e027f1e8" }]]);
const Download = createMeisterIcons("download", [["path", { "fill": "currentColor", "d": "M11.95 4.849a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-1.5 0v-7a.75.75 0 0 1 .75-.75Z", "key": "bbfb5a7f0c1258fb5605993832f03f9aff475b39" }], ["path", { "fill": "currentColor", "d": "M15.89 9.777a.75.75 0 0 1-.019 1.06l-2.996 2.898a1.317 1.317 0 0 1-.925.364c-.299 0-.658-.098-.93-.37l-2.9-2.9a.75.75 0 1 1 1.06-1.06l2.772 2.771 2.877-2.78a.75.75 0 0 1 1.06.017Zm4.71 2.375a.75.75 0 0 1 .75.75v2.5c0 2.13-1.752 3.75-3.75 3.75H6.4a.75.75 0 0 1 0-1.5h11.2c1.202 0 2.25-.98 2.25-2.25v-2.5a.75.75 0 0 1 .75-.75Z", "key": "88ded10cf6bc40a1a35ed4db8af13af40f60f2fa" }], ["path", { "fill": "currentColor", "d": "M3.4 12.152a.75.75 0 0 1 .75.75v2.5c0 1.27 1.048 2.25 2.25 2.25h11.2a.75.75 0 0 1 0 1.5H6.4c-1.998 0-3.75-1.62-3.75-3.75v-2.5a.75.75 0 0 1 .75-.75Z", "key": "8c7f71691c2dff0ce55538fa945a5ccf88dd4159" }]]);
const Drawer = createMeisterIcons("drawer", [["path", { "fill": "currentColor", "d": "M6.85 3.75C5.064 3.75 3.7 5.114 3.7 6.9v10.2c0 1.786 1.364 3.15 3.15 3.15h10.3c1.786 0 3.15-1.364 3.15-3.15V6.9c0-1.64-1.42-3.058-3.268-3.15H6.85ZM2.2 6.9c0-2.614 2.036-4.65 4.65-4.65h10.234c2.544.116 4.716 2.095 4.716 4.65v10.2c0 2.614-2.036 4.65-4.65 4.65H6.85c-2.614 0-4.65-2.036-4.65-4.65V6.9Z", "key": "d91699cc6f4b12ebe6856fe74b269d024d61c69e" }], ["path", { "fill": "currentColor", "d": "M21.05 12.85h-18v-1.5h18v1.5ZM8.4 2.35h7.3V4.9c0 .814-.636 1.45-1.45 1.45h-4.4c-.814 0-1.45-.636-1.45-1.45V2.35Zm1.5 1.5v1h4.3v-1H9.9Z", "key": "e982dd06ec999a08cf5734d6c2467f1bcecf329d" }], ["path", { "fill": "currentColor", "d": "M9.9 13.85V12.1H8.4v1.8c0 .814.636 1.45 1.45 1.45h4.4c.814 0 1.45-.636 1.45-1.45v-1.8h-1.5v1.75H9.9Z", "key": "935e0032808084ccab4c9eafb6475d94da2fefc2" }]]);
const DrawerB = createMeisterIcons("drawer-b", [["path", { "fill": "currentColor", "d": "M2.25 11.3h7.6v2.5h4.3v-2.5h7.6v5.85c0 2.627-2.148 4.65-4.65 4.65H6.9c-2.627 0-4.65-2.148-4.65-4.65V11.3Zm1.5 1.5v4.35c0 1.698 1.377 3.15 3.15 3.15h10.2c1.698 0 3.15-1.377 3.15-3.15V12.8h-4.6v1.05c0 .814-.636 1.45-1.45 1.45H9.8c-.814 0-1.45-.636-1.45-1.45V12.8h-4.6Z", "key": "83ff5a0a5a8751c8c7e1e0bb1ded896e9cc4b207" }], ["path", { "fill": "currentColor", "d": "M6.9 3.7c-1.686 0-3.15 1.464-3.15 3.15v4.35h16.5V6.85c0-1.66-1.439-3.05-3.15-3.05h-1.45v.95c0 .814-.636 1.45-1.45 1.45H9.8c-.814 0-1.45-.636-1.45-1.45V3.7H6.9ZM2.25 6.85c0-2.514 2.136-4.65 4.65-4.65h2.95v2.5h4.3V2.3h2.95c2.489 0 4.65 2.01 4.65 4.55v5.85H2.25V6.85Z", "key": "5795062afbecaee0653868372ce53d3419dd072a" }], ["path", { "fill": "currentColor", "d": "M8.35 2.3h7.3v2.55c0 .814-.636 1.45-1.45 1.45H9.8c-.814 0-1.45-.636-1.45-1.45V2.3Zm1.5 1.5v1h4.3v-1h-4.3ZM9 12.05h5.8v1.8c0 .4-.3.7-.7.7H9.8c-.4 0-.7-.3-.7-.7v-1.8H9Z", "key": "6889252c9b7a304d52d356adc2dbe70b87f370dd" }], ["path", { "fill": "currentColor", "d": "M9 12.05v-.75h6.55v2.55c0 .814-.636 1.45-1.45 1.45H9.8c-.814 0-1.45-.636-1.45-1.45v-1.8H9Zm.85.75v1h4.2v-1h-4.2Zm5.05-9.75v1.8c0 .4-.3.7-.7.7H9.8c-.4 0-.7-.3-.7-.7v-1.8h5.8Z", "key": "36995fa228e1ec045d0b8237499e3de6e314cbb3" }], ["path", { "fill": "currentColor", "d": "M8.35 2.3h7.3v2.55c0 .814-.636 1.45-1.45 1.45H9.8c-.814 0-1.45-.636-1.45-1.45V2.3Zm1.5 1.5v1h4.3v-1h-4.3Z", "key": "b7770986ff8f2f5b39f70cb4c9906796ce98c285" }]]);
const Dumbell = createMeisterIcons("dumbell", [["path", { "fill": "currentColor", "d": "M17.82 4.23a.82.82 0 0 0-1.14 0l-.2.2a.82.82 0 0 0 0 1.14l2 2a.82.82 0 0 0 1.14 0l.2-.2a.82.82 0 0 0 0-1.14l-2-2Zm-2.2-1.06a2.32 2.32 0 0 1 3.26 0l2 2a2.32 2.32 0 0 1 0 3.26l-.2.2a2.271 2.271 0 0 1-.767.505 2.235 2.235 0 0 1-.233 2.895l-.2.2a2.32 2.32 0 0 1-3.257.004l-.58-.567-4.032 4.033.57.57c.873.873.892 2.209.056 3.102l-.204.306-.053.052a2.323 2.323 0 0 1-2.945.264c-.109.226-.26.441-.455.636l-.2.2a2.32 2.32 0 0 1-3.26 0l-2-2a2.32 2.32 0 0 1 0-3.26l.2-.2a2.27 2.27 0 0 1 .667-.463 2.323 2.323 0 0 1 .333-2.837l.2-.2a2.32 2.32 0 0 1 3.26 0l.57.57 3.996-3.997-.626-.613a2.32 2.32 0 0 1 0-3.26l.2-.2a2.322 2.322 0 0 1 2.993-.23c.112-.28.28-.544.507-.77l.2-.2Zm-2.201 6.322L9.41 13.5l1.139 1.14 4.02-4.022-1.151-1.126Zm-4.54 8.277a2.766 2.766 0 0 0-.26-.357l-.018-.022-2.02-2.02a2.264 2.264 0 0 0-.449-.348l-.752-.752a.82.82 0 0 1 0-1.14l.2-.2a.82.82 0 0 1 1.14 0l4.4 4.4c.307.307.307.733 0 1.04l-.053.052-.193.29a.821.821 0 0 1-1.094-.042l-.9-.901Zm-3.637-1.517a.821.821 0 0 0-.862.178l-.2.2a.82.82 0 0 0 0 1.14l2 2a.82.82 0 0 0 1.14 0l.2-.2a.763.763 0 0 0 .151-.888l-2.43-2.43ZM14.12 5.43a.82.82 0 0 0-1.14 0l-.2.2a.82.82 0 0 0-.002 1.137l4.502 4.403a.82.82 0 0 0 1.14 0l.2-.2a.738.738 0 0 0-.058-1.1l-.022-.02-4.42-4.42Z", "key": "10849be1134051b890d1f301ca9753d52d2fbb1c" }]]);
const DumbellAlt = createMeisterIcons("dumbell-alt", [["path", { "fill": "currentColor", "d": "M7.2 13.15a3.55 3.55 0 1 0 0 7.1 3.55 3.55 0 0 0 0-7.1ZM2.15 16.7a5.05 5.05 0 1 1 10.1 0 5.05 5.05 0 0 1-10.1 0ZM16.7 3.65a3.55 3.55 0 1 0 0 7.1 3.55 3.55 0 0 0 0-7.1ZM11.65 7.2a5.05 5.05 0 1 1 10.1 0 5.05 5.05 0 0 1-10.1 0Z", "key": "f73f322a59c55c7bab6f544f2926a3962b4cfc9b" }], ["path", { "fill": "currentColor", "d": "m10.57 14.57 4-4 1.06 1.06-4 4-1.06-1.06Zm-2.2-2.3 3.9-3.9 1.06 1.06-3.9 3.9-1.06-1.06Z", "key": "fdf0d0e9dba845187dfc6182450ac81d0b9f95bf" }]]);
const DumbellAltB = createMeisterIcons("dumbell-alt-b", [["path", { "fill": "currentColor", "d": "M7.2 21a4.3 4.3 0 1 0 0-8.6 4.3 4.3 0 0 0 0 8.6Z", "key": "ed4fa3ae1639e279dd3f9385efc7e460ab3e1ce3" }], ["path", { "fill": "currentColor", "d": "M7.2 13.15a3.55 3.55 0 1 0 0 7.1 3.55 3.55 0 0 0 0-7.1ZM2.15 16.7a5.05 5.05 0 1 1 10.1 0 5.05 5.05 0 0 1-10.1 0Zm14.55-5.2a4.3 4.3 0 1 0 0-8.6 4.3 4.3 0 0 0 0 8.6Z", "key": "a5e5b25bcfb562cd5a8513cb1eea2ec56c858756" }], ["path", { "fill": "currentColor", "d": "M16.7 3.65a3.55 3.55 0 1 0 0 7.1 3.55 3.55 0 0 0 0-7.1ZM11.65 7.2a5.05 5.05 0 1 1 10.1 0 5.05 5.05 0 0 1-10.1 0Z", "key": "db72740b36a47ab1c6f7bddf19d05493ed6008cd" }], ["path", { "fill": "currentColor", "d": "m10.57 14.57 4-4 1.06 1.06-4 4-1.06-1.06Zm-2.2-2.3 3.9-3.9 1.06 1.06-3.9 3.9-1.06-1.06Z", "key": "6eee09145f47e937977912b5992700ccd0f5ce55" }]]);
const DumbellB = createMeisterIcons("dumbell-b", [["path", { "fill": "currentColor", "d": "m11.65 18.85-.2.3c-.6.6-1.6.6-2.2 0l-4.4-4.4c-.6-.6-.6-1.6 0-2.2l.2-.2c.6-.6 1.6-.6 2.2 0l4.4 4.4c.6.6.6 1.5 0 2.1Z", "key": "f58afb6e11376112246f105d892b9f09d92685be" }], ["path", { "fill": "currentColor", "d": "m5.58 12.88-.2.2a.82.82 0 0 0 0 1.14l4.4 4.4a.821.821 0 0 0 1.094.041l.193-.289.053-.052c.307-.307.307-.733 0-1.04l-4.4-4.4a.82.82 0 0 0-1.14 0Zm-1.06-1.06a2.32 2.32 0 0 1 3.26 0l4.4 4.4c.874.873.893 2.209.057 3.102l-.204.306-.053.052a2.32 2.32 0 0 1-3.26 0l-4.4-4.4a2.32 2.32 0 0 1 0-3.26l.2-.2Zm14.63-.37-.2.2c-.6.6-1.6.6-2.2 0l-4.5-4.4c-.6-.6-.6-1.6 0-2.2l.2-.2c.6-.6 1.6-.6 2.2 0l4.4 4.4c.7.6.7 1.6.1 2.2Z", "key": "91add0a08bc0a254d7be9d3b7863bbcd51926eae" }], ["path", { "fill": "currentColor", "d": "M14.12 5.38a.82.82 0 0 0-1.14 0l-.2.2a.82.82 0 0 0-.002 1.137l4.502 4.403a.82.82 0 0 0 1.14 0l.2-.2a.738.738 0 0 0-.058-1.1l-.022-.02-4.42-4.42Zm-2.2-1.06a2.32 2.32 0 0 1 3.26 0l-.147 1.787m4.529 2.594L15.18 4.32l4.382 4.38Zm0 0a2.237 2.237 0 0 1 .118 3.28l-.2.2a2.32 2.32 0 0 1-3.257.003L11.72 7.78a2.32 2.32 0 0 1 0-3.26l.2-.2", "key": "bb106c27861ce60d4c5eb17ca99c5d0ac036f3a4" }], ["path", { "fill": "currentColor", "d": "m20.35 7.85-.2.2c-.6.6-1.6.6-2.2 0l-2-2c-.6-.6-.6-1.6 0-2.2l.2-.2c.6-.6 1.6-.6 2.2 0l2 2c.6.6.6 1.6 0 2.2Z", "key": "9a58173728687680e0b6620985afc9d9141f2b16" }], ["path", { "fill": "currentColor", "d": "M17.82 4.18a.82.82 0 0 0-1.14 0l-.2.2a.82.82 0 0 0 0 1.14l2 2a.82.82 0 0 0 1.14 0l.2-.2a.82.82 0 0 0 0-1.14l-2-2Zm-2.2-1.06a2.32 2.32 0 0 1 3.26 0l2 2a2.32 2.32 0 0 1 0 3.26l-.2.2a2.32 2.32 0 0 1-3.26 0l-2-2a2.32 2.32 0 0 1 0-3.26l.2-.2ZM8.05 20.05l-.2.2c-.6.6-1.6.6-2.2 0l-2-2c-.6-.6-.6-1.6 0-2.2l.2-.2c.6-.6 1.6-.6 2.2 0l2 2c.6.7.6 1.6 0 2.2Z", "key": "931552a7745d34b3252229b15ae7e46fa968c544" }], ["path", { "fill": "currentColor", "d": "m4.38 16.38-.2.2a.82.82 0 0 0 0 1.14l2 2a.82.82 0 0 0 1.14 0l.2-.2c.282-.283.339-.726-.023-1.162L5.52 16.38a.82.82 0 0 0-1.14 0Zm-1.06-1.06a2.32 2.32 0 0 1 3.26 0l2.02 2.02.02.022c.82.957.874 2.305-.04 3.218l-.2.2a2.32 2.32 0 0 1-3.26 0l-2-2a2.32 2.32 0 0 1 0-3.26l.2-.2Zm6.7-.2 5.1-5.1 1.06 1.06-5.1 5.1-1.06-1.06Zm-2.2-2.2 5.1-5.1 1.06 1.06-5.1 5.1-1.06-1.06Z", "key": "e1a23c3034f4e00a12f7bc285ae3128d4b3c891b" }]]);
const Earth = createMeisterIcons("earth", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "6191219c6607e9adaede127f7f7950a524f88fc0" }], ["path", { "fill": "currentColor", "d": "M4.427 7.85 4.4 7.1l-.026-.75h.02l.051-.002.188-.003c.16-.001.388-.001.66.005a17.55 17.55 0 0 1 2.013.158c.726.103 1.521.28 2.154.596.622.311 1.29.87 1.29 1.796 0 .593-.145 1.3-.281 1.95l-.024.115c-.136.646-.268 1.278-.323 1.878-.058.64-.017 1.149.146 1.527.145.339.41.632.97.819 1.693.564 2.93 1.763 3.726 2.771a11.242 11.242 0 0 1 1.134 1.756c.026.052.047.093.06.122l.017.035.005.01.002.004v.002l-.682.311-.683.31v-.002l-.01-.02-.046-.092a9.728 9.728 0 0 0-.975-1.506c-.704-.892-1.717-1.843-3.023-2.278-.941-.314-1.55-.896-1.874-1.65-.307-.716-.328-1.52-.26-2.255.062-.69.212-1.403.343-2.029L9 10.543c.145-.692.25-1.236.25-1.643 0-.075-.032-.24-.46-.454-.417-.209-1.022-.357-1.696-.453a15.897 15.897 0 0 0-1.837-.143 18.08 18.08 0 0 0-.776-.002l-.042.001h-.012Zm9.645-4.86.628.41.628.41-.001.002-.01.015a6.184 6.184 0 0 0-.203.358c-.13.25-.293.6-.427 1.002-.279.835-.382 1.745-.016 2.477.519 1.039.931 1.819 1.694 2.263.73.425 1.962.628 4.329-.048l.412 1.442c-2.533.724-4.251.627-5.496-.098-1.182-.689-1.77-1.866-2.245-2.816l-.036-.072c-.634-1.267-.387-2.657-.066-3.622a8.423 8.423 0 0 1 .782-1.68l.018-.03.006-.009.002-.003.001-.001Zm1.257.82h-.001Z", "key": "8767cd577964d85032a3c8f85065121292e8053d" }]]);
const EarthB = createMeisterIcons("earth-b", [["path", { "fill": "currentColor", "d": "M4.77 7.9a7.963 7.963 0 0 0-1.07 4.05 8.213 8.213 0 0 0 8.25 8.25c.837 0 1.657-.104 2.428-.343a9.796 9.796 0 0 0-.642-.917c-.704-.892-1.717-1.843-3.023-2.279-.941-.313-1.55-.895-1.874-1.65-.307-.715-.328-1.518-.26-2.254.062-.69.212-1.403.343-2.029l.028-.135c.145-.692.25-1.236.25-1.643 0-.054-.02-.207-.426-.416-.394-.203-.972-.353-1.627-.455A17.33 17.33 0 0 0 4.77 7.9Zm10.68 12.35.683-.31-.001-.003-.002-.003-.005-.01-.016-.036a9.055 9.055 0 0 0-.29-.544c-.202-.35-.503-.824-.905-1.334-.796-1.008-2.033-2.207-3.727-2.772-.559-.186-.824-.48-.97-.818-.162-.378-.203-.888-.145-1.527.054-.6.187-1.232.323-1.878l.024-.115c.136-.65.281-1.357.281-1.95 0-.896-.643-1.443-1.24-1.75-.608-.313-1.374-.493-2.082-.604-1.34-.209-2.707-.198-2.987-.196H3.94l-.22.344A9.468 9.468 0 0 0 2.2 11.95a9.713 9.713 0 0 0 9.75 9.75c1.281 0 2.592-.213 3.81-.767l.683-.31-.31-.684-.683.311Z", "key": "ca42ee8cc1062f5136c648a998f68c04ff7ee253" }], ["path", { "fill": "currentColor", "d": "M21.05 12.05c0 3.7-2.3 6.9-5.5 8.3 0 0-1.5-3.3-4.5-4.3s-1-5-1-7-5.3-1.9-5.6-1.8c1.6-2.5 4.4-4.2 7.6-4.2.9 0 1.8.1 2.7.4 0 0-1.7 2.6-.7 4.6 1 2 2 4 6.9 2.5 0 .5.1 1 .1 1.5Z", "key": "c87e5bf184acdea653b90b5842a98a45d7abf008" }], ["path", { "fill": "currentColor", "d": "M5.993 6.475c.457.022.971.066 1.485.146.712.111 1.482.3 2.095.63.61.329 1.227.899 1.227 1.799 0 .593-.145 1.3-.282 1.95l-.024.115c-.135.646-.268 1.278-.322 1.878-.058.64-.017 1.149.146 1.527.145.339.41.632.97.819 1.693.564 2.93 1.763 3.726 2.771.37.47.656.91.856 1.25 2.616-1.41 4.43-4.17 4.43-7.31a5.87 5.87 0 0 0-.032-.534c-2.048.5-3.505.373-4.602-.252-1.187-.676-1.777-1.857-2.25-2.805l-.037-.074c-.634-1.267-.387-2.657-.066-3.622.103-.307.218-.587.328-.827A8.58 8.58 0 0 0 12.05 3.8c-2.393 0-4.547 1.04-6.057 2.675Zm9.385-2.615-.001.002-.01.015-.043.072a6.922 6.922 0 0 0-.587 1.289c-.279.834-.382 1.744-.016 2.477.52 1.04.93 1.815 1.688 2.246.724.412 1.952.597 4.322-.128l.969-.297v1.014c0 .206.02.419.046.675l.002.015c.024.24.052.522.052.81 0 4.018-2.495 7.476-5.95 8.987l-.677.297-.305-.672v-.002l-.002-.002-.01-.02-.045-.092a9.739 9.739 0 0 0-.975-1.506c-.704-.892-1.717-1.843-3.023-2.278-.941-.314-1.55-.896-1.874-1.65-.307-.716-.328-1.52-.26-2.255.062-.69.212-1.403.343-2.029l.028-.135c.145-.692.25-1.236.25-1.643 0-.1-.046-.267-.439-.479-.39-.21-.964-.366-1.614-.467a13.361 13.361 0 0 0-2.434-.138 3.329 3.329 0 0 0-.173.012h-.002l-1.963.654 1.143-1.786C5.547 4.146 8.578 2.3 12.05 2.3c.956 0 1.94.106 2.937.438l.923.308-.531.813-.001.001Z", "key": "5f49906535b3ee6be716e2433bc981d29057279d" }], ["path", { "fill": "currentColor", "d": "m14.33 2.57.537.162c3.568 1.081 6.181 4.011 6.725 7.709l.094.637-.616.189c-2.531.775-4.253.71-5.504-.003-1.187-.676-1.777-1.857-2.25-2.805a61.86 61.86 0 0 1-.037-.074c-.634-1.267-.387-2.657-.066-3.622a8.423 8.423 0 0 1 .782-1.68l.018-.03.006-.009.002-.003s.001-.002.629.409l-.628-.41.308-.47ZM15 4.36c-.117.236-.25.538-.364.876-.278.835-.381 1.745-.015 2.477.52 1.04.93 1.816 1.688 2.247.655.373 1.724.56 3.677.054-.601-2.606-2.455-4.69-4.986-5.654Z", "key": "b24a8390e31e435bbf81dac8720ad790e66eb013" }]]);
const EarthVarB = createMeisterIcons("earth-var-b", [["path", { "fill": "currentColor", "d": "M15.45 20.25c-1.1.5-2.3.7-3.5.7-5 0-9-4-9-9 0-1.8.5-3.4 1.4-4.8.3 0 5.6-.1 5.6 1.8 0 2-2 6 1 7s4.5 4.3 4.5 4.3Z", "key": "602c36184d7795e8e8f2e6e31c3f9d81a701bd52" }], ["path", { "fill": "currentColor", "d": "M4.77 7.9a7.963 7.963 0 0 0-1.07 4.05 8.213 8.213 0 0 0 8.25 8.25 8.19 8.19 0 0 0 2.428-.343 9.759 9.759 0 0 0-.642-.917c-.704-.892-1.717-1.843-3.023-2.279-.941-.313-1.55-.895-1.874-1.65-.307-.715-.328-1.518-.26-2.254.062-.69.212-1.403.343-2.029l.028-.135c.145-.692.25-1.236.25-1.643 0-.054-.02-.207-.426-.416-.394-.203-.972-.353-1.627-.455A17.33 17.33 0 0 0 4.77 7.9Zm10.68 12.35.683-.31-.001-.003-.002-.003-.005-.01-.016-.036a9.055 9.055 0 0 0-.29-.544c-.202-.35-.503-.824-.905-1.334-.796-1.008-2.033-2.207-3.727-2.772-.559-.186-.824-.48-.97-.818-.162-.378-.203-.888-.145-1.527.054-.6.187-1.232.323-1.878l.024-.115c.136-.65.281-1.357.281-1.95 0-.896-.643-1.443-1.24-1.75-.608-.313-1.374-.493-2.082-.604-1.34-.209-2.707-.198-2.987-.196H3.94l-.22.344A9.468 9.468 0 0 0 2.2 11.95a9.713 9.713 0 0 0 9.75 9.75c1.281 0 2.592-.213 3.81-.767l.683-.31-.31-.684-.683.311Z", "key": "7d8dad13a40241694118fed5d26b4f049dac90ee" }], ["path", { "fill": "currentColor", "d": "M5.993 6.475c.457.022.971.066 1.485.146.712.111 1.482.3 2.095.63.61.329 1.227.899 1.227 1.799 0 .593-.145 1.3-.282 1.95l-.024.115c-.135.646-.268 1.278-.322 1.878-.058.64-.017 1.149.146 1.527.145.339.41.632.97.819 1.693.564 2.93 1.763 3.726 2.771.37.47.656.91.856 1.25 2.616-1.41 4.43-4.17 4.43-7.31a5.87 5.87 0 0 0-.032-.534c-2.048.5-3.505.373-4.602-.252-1.187-.676-1.777-1.857-2.25-2.805l-.037-.074c-.634-1.267-.387-2.657-.066-3.622.103-.307.218-.587.328-.827A8.58 8.58 0 0 0 12.05 3.8c-2.393 0-4.547 1.04-6.057 2.675Zm9.385-2.615-.001.002-.01.015a6.08 6.08 0 0 0-.203.358c-.13.25-.293.6-.428 1.002-.278.835-.381 1.745-.015 2.478.52 1.04.93 1.815 1.688 2.246.724.412 1.952.597 4.322-.128l.969-.297v1.014c0 .206.02.419.046.675l.002.015c.024.24.052.522.052.81 0 4.018-2.495 7.476-5.95 8.987l-.677.297-.305-.672v-.002l-.002-.002-.01-.02-.045-.092a9.739 9.739 0 0 0-.975-1.506c-.704-.892-1.717-1.843-3.023-2.278-.941-.314-1.55-.896-1.874-1.65-.307-.716-.328-1.52-.26-2.255.062-.69.212-1.403.343-2.029l.028-.135c.145-.692.25-1.236.25-1.643 0-.1-.046-.267-.439-.479-.39-.21-.964-.366-1.614-.467a13.361 13.361 0 0 0-2.434-.138 3.329 3.329 0 0 0-.173.012h-.002l-1.963.654 1.143-1.786C5.547 4.146 8.578 2.3 12.05 2.3c.956 0 1.94.106 2.937.438l.923.308-.531.813-.001.001Z", "key": "2f9436a668bf3135fb8be36651b6d1899efbf2a2" }], ["path", { "fill": "currentColor", "d": "M20.85 10.55c-4.9 1.5-5.9-.5-6.9-2.5s.7-4.6.7-4.6c3.3 1 5.7 3.7 6.2 7.1Z", "key": "ee1c18aebf69989fd5fdde36f690f448e5c7848d" }], ["path", { "fill": "currentColor", "d": "m14.33 2.57.537.162c3.568 1.081 6.181 4.011 6.725 7.709l.094.637-.616.189c-2.531.775-4.253.71-5.504-.003-1.187-.676-1.777-1.857-2.25-2.805l-.037-.074c-.634-1.267-.387-2.657-.066-3.622a8.433 8.433 0 0 1 .782-1.68l.018-.03.006-.009.002-.003s.001-.002.629.409l-.628-.41.308-.47ZM15 4.36c-.117.236-.25.538-.364.876-.278.835-.381 1.745-.015 2.477.52 1.04.93 1.816 1.688 2.247.655.373 1.724.56 3.677.054-.601-2.606-2.455-4.69-4.986-5.654Z", "key": "5a274b655478b4026609383a8335f2a75aafd977" }]]);
const Edit = createMeisterIcons("edit", [["path", { "fill": "currentColor", "d": "M17.574 6.393c-1.322-1.23-3.353-1.204-4.548-.008l-.67.67 4.54 4.539.66-.66c1.228-1.32 1.205-3.344.018-4.54Zm-5.609-1.069c1.802-1.802 4.765-1.778 6.643-.017l.01.009.008.008c1.802 1.802 1.778 4.765.017 6.643l-.009.01-1.739 1.738-6.66-6.66 1.73-1.73Z", "key": "a0b9ea3ee751056fd3c5f6c41303c9e4bb50aecc" }], ["path", { "fill": "currentColor", "d": "m11.396 6.094 6.56 6.56-5.73 5.73a2.073 2.073 0 0 1-.545.379c-.079.04-.155.073-.214.1-.064.029-.104.046-.136.062l-.096.048L5.65 19.99a1.32 1.32 0 0 1-1.221-.367 1.32 1.32 0 0 1-.367-1.22l.987-5.428c.033-.575.415-.951.587-1.12l.03-.03 5.73-5.73Zm0 2.121-4.67 4.67c-.052.052-.09.09-.122.126a.66.66 0 0 0-.059.07v.041l-.973 5.356 5.192-.944.078-.035.013-.006a4.16 4.16 0 0 0 .155-.072.636.636 0 0 0 .155-.097l4.67-4.67-4.44-4.439Z", "key": "094e8a7275276bcae5958520832646f26dc44231" }]]);
const EditB = createMeisterIcons("edit-b", [["path", { "fill": "currentColor", "d": "M17.574 6.393c-1.322-1.23-3.353-1.204-4.548-.008l-.67.67 4.54 4.539.66-.66c1.228-1.32 1.205-3.344.018-4.54Zm-5.609-1.069c1.802-1.802 4.765-1.778 6.643-.017l.01.009.008.008c1.802 1.802 1.778 4.765.017 6.643l-.009.01-1.739 1.738-6.66-6.66 1.73-1.73Z", "key": "bb79f0c20be684cf87c299c9876869950232396f" }], ["path", { "fill": "currentColor", "d": "m16.896 12.655-5.2 5.2c-.2.2-.5.3-.7.4l-5.5 1c-.4.1-.8-.3-.7-.7l1-5.5c0-.3.2-.5.4-.7l5.2-5.2 5.5 5.5Z", "key": "45631899cc507d37b7d2923f9f8e4504efc17345" }], ["path", { "fill": "currentColor", "d": "m11.396 6.094 6.56 6.56-5.73 5.73a2.073 2.073 0 0 1-.545.379c-.079.04-.155.073-.214.1-.064.029-.104.046-.136.062l-.096.048L5.65 19.99a1.32 1.32 0 0 1-1.221-.367 1.32 1.32 0 0 1-.367-1.22l.987-5.428c.033-.575.415-.951.587-1.12l.03-.03 5.73-5.73Zm0 2.121-4.67 4.67c-.052.052-.09.09-.122.126a.66.66 0 0 0-.058.07v.041l-.974 5.356 5.192-.944.078-.035.013-.006c.06-.026.109-.049.155-.072a.636.636 0 0 0 .155-.097l4.67-4.67-4.44-4.439Z", "key": "624dbe87807873673525b31cda5b3bb7abd9ab6b" }]]);
const EditSquare = createMeisterIcons("edit-square", [["path", { "fill": "currentColor", "d": "M16.782 4.218c-.828-.74-2.061-.703-2.752-.013l-.27.27 2.74 2.74.27-.27c.803-.803.807-1.92.012-2.727ZM12.97 3.145c1.306-1.306 3.463-1.272 4.835-.025l.013.012.012.013c1.393 1.392 1.393 3.467 0 4.86l-1.33 1.33-4.86-4.86 1.33-1.33Z", "key": "75e755f4fb5f68f0eebeeb1eda0b3fb885d6140b" }], ["path", { "fill": "currentColor", "d": "m12.693 3.521 4.875 4.747-4.038 4.037c-.123.124-.27.214-.37.271a6.52 6.52 0 0 1-.316.165l-.102.051-3.765.713a1.07 1.07 0 0 1-1.104-.336 1.369 1.369 0 0 1-.323-.894v-.07l.703-3.714c.023-.38.201-.731.417-.946l4.023-4.024Zm.014 2.108L9.751 8.584l-.001.004v.057l-.625 3.305 3.132-.592a3.592 3.592 0 0 0 .224-.125l2.951-2.951-2.725-2.653Z", "key": "48cafe6665faa5974e0e697694f39370c3178f19" }], ["path", { "fill": "currentColor", "d": "M9 3.825c-2.886 0-5.25 2.364-5.25 5.25v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-6a.75.75 0 0 1 1.5 0v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-6c0-3.714 3.036-6.75 6.75-6.75a.75.75 0 0 1 0 1.5Z", "key": "292c59e380ef6d60e3bd8f29a39184d6d8066784" }]]);
const EditSquareB = createMeisterIcons("edit-square-b", [["path", { "fill": "currentColor", "d": "M16.782 4.218c-.828-.74-2.061-.703-2.752-.013l-.27.27 2.74 2.74.27-.27c.803-.803.807-1.92.012-2.727ZM12.97 3.145c1.306-1.306 3.463-1.272 4.835-.025l.013.012.012.013c1.393 1.392 1.393 3.467 0 4.86l-1.33 1.33-4.86-4.86 1.33-1.33Z", "key": "e4dc442d4f6bd07e2c20007258cff4074873ac8d" }], ["path", { "fill": "currentColor", "d": "m16.5 8.275-3.5 3.5c-.1.1-.3.2-.5.3l-3.7.7c-.3.1-.5-.2-.5-.5l.7-3.7c0-.2.1-.4.2-.5l3.5-3.5 3.8 3.7Z", "key": "7465078b1f8313eb055c711478fd2e72e9456ff0" }], ["path", { "fill": "currentColor", "d": "m12.693 3.521 4.875 4.747-4.038 4.037c-.123.124-.27.214-.37.271a6.52 6.52 0 0 1-.316.165l-.102.051-3.765.713a1.07 1.07 0 0 1-1.104-.336 1.369 1.369 0 0 1-.323-.894v-.07l.703-3.714c.023-.38.201-.731.417-.946l4.023-4.024Zm.014 2.108L9.751 8.584l-.001.004v.057l-.625 3.305 3.132-.592a3.592 3.592 0 0 0 .224-.125l2.951-2.951-2.725-2.653Z", "key": "08e89262c96ee11d88b6f47c52d44d13025932a0" }], ["path", { "fill": "currentColor", "d": "M9 3.825c-2.886 0-5.25 2.364-5.25 5.25v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-6a.75.75 0 0 1 1.5 0v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-6c0-3.714 3.036-6.75 6.75-6.75a.75.75 0 0 1 0 1.5Z", "key": "411a2214e6188121af7d49baacb2475ff3217284" }]]);
const Egg = createMeisterIcons("egg", [["path", { "fill": "currentColor", "d": "M7.692 6.88C6.624 8.958 6.05 11.565 6.05 13.6c0 2.011.585 3.784 1.607 5.039 1.01 1.24 2.472 2.011 4.343 2.011 1.879 0 3.341-.752 4.348-1.966 1.017-1.228 1.602-2.973 1.602-4.984 0-2.026-.62-4.655-1.737-6.76-1.14-2.146-2.646-3.49-4.313-3.49-1.664 0-3.12 1.316-4.208 3.43Zm-1.334-.686C7.521 3.934 9.364 1.95 11.9 1.95c2.533 0 4.427 2.006 5.637 4.286 1.232 2.319 1.913 5.19 1.913 7.464 0 2.29-.665 4.394-1.948 5.941-1.293 1.561-3.18 2.509-5.502 2.509-2.329 0-4.216-.98-5.507-2.564-1.278-1.57-1.943-3.697-1.943-5.986 0-2.265.626-5.108 1.808-7.406Z", "key": "2b94b9f94192ca9adbb1727c2aadadf98156b448" }]]);
const EggB = createMeisterIcons("egg-b", [["path", { "fill": "currentColor", "d": "M11.9 2.7c4.2 0 6.8 6.7 6.8 11s-2.5 7.7-6.7 7.7-6.7-3.5-6.7-7.8S7.7 2.7 11.9 2.7Z", "key": "bbdcfd4b6f0fc4ce054bce202600ad189a50e8fe" }], ["path", { "fill": "currentColor", "d": "M7.692 6.88C6.624 8.958 6.05 11.565 6.05 13.6c0 2.011.585 3.784 1.607 5.039 1.01 1.24 2.472 2.011 4.343 2.011 1.879 0 3.341-.752 4.348-1.966 1.017-1.228 1.602-2.973 1.602-4.984 0-2.026-.62-4.655-1.737-6.76-1.14-2.146-2.646-3.49-4.313-3.49-1.664 0-3.12 1.316-4.208 3.43Zm-1.334-.686C7.521 3.934 9.364 1.95 11.9 1.95c2.533 0 4.427 2.006 5.637 4.286 1.232 2.319 1.913 5.19 1.913 7.464 0 2.29-.665 4.394-1.948 5.941-1.293 1.561-3.18 2.509-5.502 2.509-2.329 0-4.216-.98-5.507-2.564-1.278-1.57-1.943-3.697-1.943-5.986 0-2.265.626-5.108 1.808-7.406Z", "key": "815820bcc2c78079b80c1544e89203892b20c594" }]]);
const EllipsisDoubleH = createMeisterIcons("ellipsis-double-h", [["path", { "fill": "currentColor", "d": "M3.75 8.5a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM5 5.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm5.75 2.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 5.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm7 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM16.25 8.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm-12.5 7a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM5 12.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm7 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 15.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM19 12.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "e4a828f08ebfedd4ac278910a01a200583c54d31" }]]);
const EllipsisDoubleHb = createMeisterIcons("ellipsis-double-hb", [["path", { "fill": "currentColor", "d": "M17.9 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "5a70276ebcfbabe67f87f95723ab732699ba8e47" }], ["path", { "fill": "currentColor", "d": "M17.9 7.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "a8bcac01471203641584a64023d3149969298343" }], ["path", { "fill": "currentColor", "d": "M12 7.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM6.1 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "5a628ed4c28ce6fa19493b3f2d85643f0cf77a47" }], ["path", { "fill": "currentColor", "d": "M6.1 7.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM17.9 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "e7c6404fecc9ec1dc05dda2b7db1635125e01b72" }], ["path", { "fill": "currentColor", "d": "M17.9 14.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "77a6673f526a6171131c97b3d10b35b2ac6c0b00" }], ["path", { "fill": "currentColor", "d": "M12 14.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM6.1 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "ee30f6145b9a1ca383fdb24989a4d4bc4688ebd8" }], ["path", { "fill": "currentColor", "d": "M6.1 14.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z", "key": "2ed248983b173edaafbcfe24e10f422da72a1631" }]]);
const EllipsisDoubleV = createMeisterIcons("ellipsis-double-v", [["path", { "fill": "currentColor", "d": "M8.5 3.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM5.75 5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm1.5 7a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM8.5 9.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5ZM7.25 19a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5ZM14.25 19a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm0-5.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM12.75 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm1.5-7a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "32f6fe373c6f70047ee92df5cfeac52a99a91310" }]]);
const EllipsisDoubleVb = createMeisterIcons("ellipsis-double-vb", [["path", { "fill": "currentColor", "d": "M8.5 7.6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "5b02ab2ff1ceeeb2218808671094a229c8e31124" }], ["path", { "fill": "currentColor", "d": "M8.5 5.1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2 7.4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "4e8890120597332c7c6cb62e75c678629cf578a0" }], ["path", { "fill": "currentColor", "d": "M8.5 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2 7.4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "a18fc0487655006c565392fdeba51c58596f3544" }], ["path", { "fill": "currentColor", "d": "M8.5 16.9a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm9-10.3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "cece3c6bbf2370e631ce2226a413364a2fb7cd10" }], ["path", { "fill": "currentColor", "d": "M15.5 5.1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2 7.4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "1e63a859cb831e5a617b64629972835f1fb09abc" }], ["path", { "fill": "currentColor", "d": "M15.5 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2 7.4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "bc9f1563d83baff20cba0d80c25b9cffb7cb910d" }], ["path", { "fill": "currentColor", "d": "M15.5 16.9a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z", "key": "4bec598734cfa2922f3790f8affd9724e2f6cf5f" }]]);
const EllipsisH = createMeisterIcons("ellipsis-h", [["path", { "fill": "currentColor", "d": "M5 10.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM2.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM12 10.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM19 9.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "ecf8ee59382767721cbec3ed1b78f1cc8951e52a" }]]);
const EllipsisHb = createMeisterIcons("ellipsis-hb", [["path", { "fill": "currentColor", "d": "M17.9 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "676ef9cbdb02838b742782ff18fd13760206fb75" }], ["path", { "fill": "currentColor", "d": "M17.9 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "5f04d6ee99a8d5f4395bbe558754e5211c770c08" }], ["path", { "fill": "currentColor", "d": "M12 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-3.9 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "7f07e1f507874ada74e5cfc6a7d677c4e94c7930" }], ["path", { "fill": "currentColor", "d": "M6.1 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z", "key": "fa886f073e4c36408a57ef5c96973fd2e2853cc3" }]]);
const EllipsisHcircle = createMeisterIcons("ellipsis-hcircle", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25c4.486 0 8.25-3.764 8.25-8.25A8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Z", "key": "05bc8aa91a7f1618cf3bfeee53439d4dac6abd5a" }], ["path", { "fill": "currentColor", "d": "M7.2 12.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.1-.1-.2-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.2.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm4.7 0c-.3 0-.5-.1-.7-.3-.1-.1-.3-.4-.3-.7 0-.2.2-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm4.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "127d4f5e36d223175cb53df6d9c3a945f4cb1252" }]]);
const EllipsisHcircleB = createMeisterIcons("ellipsis-hcircle-b", [["path", { "fill": "currentColor", "d": "M12 21c-5 0-9-4-9-9s4-9 9-9 9 4 9 9c0 4.9-4.1 9-9 9Z", "key": "a5b913f3dfd95aa5f787385f911e8426b52b2fe3" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25c4.486 0 8.25-3.764 8.25-8.25A8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Z", "key": "823f9c86a1a6deacb872f7f01c047d24532476ab" }], ["path", { "fill": "#fff", "d": "M7.2 12.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.1-.1-.2-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.2.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm4.7 0c-.3 0-.5-.1-.7-.3-.1-.1-.3-.4-.3-.7 0-.2.2-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm4.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "3d59f8eee509b5ecd282003ef7b1c1115585897b" }]]);
const EllipsisHpill = createMeisterIcons("ellipsis-hpill", [["path", { "fill": "currentColor", "d": "M9 6.75c-2.886 0-5.25 2.364-5.25 5.25S6.114 17.25 9 17.25h6c2.886 0 5.25-2.364 5.25-5.25S17.886 6.75 15 6.75H9ZM2.25 12c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75s-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75Z", "key": "c01841fac23306f41bbda40ba624fceebdde274b" }], ["path", { "fill": "currentColor", "d": "M7.2 12.9c-.3 0-.5-.1-.7-.3-.1 0-.2-.2-.2-.3-.1-.1-.1-.2-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.2.1.3.1.4 0 .3-.1.6-.3.7-.2.2-.4.3-.7.3Zm4.7 0c-.2 0-.5-.1-.7-.3-.1-.1-.3-.4-.3-.7 0-.2.2-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm4.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "76c5b464c1f8eb6529bae4e77457a577070191c6" }]]);
const EllipsisHpillB = createMeisterIcons("ellipsis-hpill-b", [["path", { "fill": "currentColor", "d": "M15 18H9c-3.3 0-6-2.7-6-6s2.7-6 6-6h6c3.3 0 6 2.7 6 6s-2.7 6-6 6Z", "key": "33e078e2df9e9870e5f9956acdb6acedd61d4015" }], ["path", { "fill": "currentColor", "d": "M9 6.75c-2.886 0-5.25 2.364-5.25 5.25S6.114 17.25 9 17.25h6c2.886 0 5.25-2.364 5.25-5.25S17.886 6.75 15 6.75H9ZM2.25 12c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75s-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75Z", "key": "3ab943ace25515dfb8915eb75b039265ff80b6ac" }], ["path", { "fill": "#fff", "d": "M7.2 12.9c-.3 0-.5-.1-.7-.3-.1 0-.2-.2-.2-.3-.1-.1-.1-.2-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.2.1.3.1.4 0 .3-.1.6-.3.7-.2.2-.4.3-.7.3Zm4.7 0c-.2 0-.5-.1-.7-.3-.1-.1-.3-.4-.3-.7 0-.2.2-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm4.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "845ca71a07e3be84a62071a51a664b63f9020cad" }]]);
const EllipsisHsquare = createMeisterIcons("ellipsis-hsquare", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "c144fc54c41e9bec4a5fca8c88789009f18b1f43" }], ["path", { "fill": "currentColor", "d": "M7.2 12.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.1-.1-.2-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.2.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm4.7 0c-.3 0-.5-.1-.7-.3-.1-.1-.3-.4-.3-.7 0-.2.2-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm4.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "5cf1693d897ec500e0bd7885ea481061976addd6" }]]);
const EllipsisHsquareB = createMeisterIcons("ellipsis-hsquare-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "c12568a30aaa9a39e9713641d1c35c9583ed0219" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "94b6febb57e47a902a456e3acb88ee506398079b" }], ["path", { "fill": "#fff", "d": "M7.2 12.9c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.1-.1-.2-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.2.1.3.1.4 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm4.7 0c-.3 0-.5-.1-.7-.3-.1-.1-.3-.4-.3-.7 0-.2.2-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm4.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "bafdaf03c2ebadcb6a8be053f673caf67933dcf3" }]]);
const EllipsisV = createMeisterIcons("ellipsis-v", [["path", { "fill": "currentColor", "d": "M12 3.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM12 10.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm1.5 7a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 16.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "681ed184862f11de3239dc2c5d36d26559f5433f" }]]);
const EllipsisVb = createMeisterIcons("ellipsis-vb", [["path", { "fill": "currentColor", "d": "M12 7.6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "b82c49f8d0b578503f860d1d6d30d21666489397" }], ["path", { "fill": "currentColor", "d": "M12 5.1a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2 7.4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "1c4a94365359d30035c74685bf3ecd695d9de6c2" }], ["path", { "fill": "currentColor", "d": "M12 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm2 7.4a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "4e16f69317d49c3c8686293949872e5e13392a78" }], ["path", { "fill": "currentColor", "d": "M12 16.9a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z", "key": "25ab19d14b277ed31132a1fe1d46bcab8d1235fa" }]]);
const EllipsisVcircle = createMeisterIcons("ellipsis-vcircle", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.894 2.272 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.822 0-6.75-3.044-6.75-6.75V9Z", "key": "fa2a7ddaad3e9b4c69b51cb5f7923f2328072e69" }], ["path", { "fill": "currentColor", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .3 0 .4.1.1.1.2.1.3.2.4.4.4 1 0 1.4-.1.1-.2.2-.3.2-.2.1-.3.1-.4.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm0 4.8c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7Z", "key": "2f60f0eec4288e5bd71edfd8d215b56f55152634" }]]);
const EllipsisVcircle1 = createMeisterIcons("ellipsis-vcircle1", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "9b06557c93de290866f39a6a5a30c18188040e32" }], ["path", { "fill": "currentColor", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .3 0 .4.1.1.1.2.1.3.2.4.4.4 1 0 1.4-.1.1-.2.2-.3.2-.2.1-.3.1-.4.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm0 4.8c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7Z", "key": "cd3e5a5b9eeefe6abbf70d99b54633d5b1109316" }]]);
const EllipsisVcircleB = createMeisterIcons("ellipsis-vcircle-b", [["path", { "fill": "currentColor", "d": "M3 12c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4.1-9-9Z", "key": "87a01b8758ae9eb9f2a9a7d05198ad75367cddda" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "0d1c1fa62bd1e3c8e10767902220488b6db60f51" }], ["path", { "fill": "#fff", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .3 0 .4.1.1.1.2.1.3.2.4.4.4 1 0 1.4-.1.1-.2.2-.3.2-.2.1-.3.1-.4.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm0 4.8c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7Z", "key": "ea521e14e3bf0662f0cc09fc3c73b9e1d2d48fa8" }]]);
const EllipsisVpill = createMeisterIcons("ellipsis-vpill", [["path", { "fill": "currentColor", "d": "M12 3.75C9.114 3.75 6.75 6.114 6.75 9v6c0 2.894 2.272 5.25 5.25 5.25 2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25ZM5.25 9c0-3.714 3.036-6.75 6.75-6.75S18.75 5.286 18.75 9v6c0 3.714-3.036 6.75-6.75 6.75-3.822 0-6.75-3.044-6.75-6.75V9Z", "key": "bfb351653ca3ad97865f7b73be6d6d862069f0ee" }], ["path", { "fill": "currentColor", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .2 0 .3.1.1.1.2.1.3.2.4.4.4 1 0 1.4 0 .1-.1.2-.3.2-.1.1-.2.1-.3.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.2 0 .5.2.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm0 4.8c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7Z", "key": "594d0c415a54b4320225be42a898d505c0feff36" }]]);
const EllipsisVpillB = createMeisterIcons("ellipsis-vpill-b", [["path", { "fill": "currentColor", "d": "M6 15V9c0-3.3 2.7-6 6-6s6 2.7 6 6v6c0 3.3-2.7 6-6 6-3.4 0-6-2.7-6-6Z", "key": "2bf7665dc00381604de55cfb08aeea6b300420e1" }], ["path", { "fill": "currentColor", "d": "M12 3.75C9.114 3.75 6.75 6.114 6.75 9v6c0 2.894 2.272 5.25 5.25 5.25 2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25ZM5.25 9c0-3.714 3.036-6.75 6.75-6.75S18.75 5.286 18.75 9v6c0 3.714-3.036 6.75-6.75 6.75-3.822 0-6.75-3.044-6.75-6.75V9Z", "key": "43b47a789ddc6b01c791c317e12302a5bbdae116" }], ["path", { "fill": "#fff", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .2 0 .3.1.1.1.2.1.3.2.4.4.4 1 0 1.4 0 .1-.1.2-.3.2-.1.1-.2.1-.3.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.2 0 .5.2.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm0 4.8c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7Z", "key": "b2ee489104cdae5161be189ca36b10f9e9afd64a" }]]);
const EllipsisVsquareB = createMeisterIcons("ellipsis-vsquare-b", [["path", { "fill": "currentColor", "d": "M3 15V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6H9c-3.4 0-6-2.7-6-6Z", "key": "ab480c10e776db23487b038cce51448e64a1976c" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.894 2.272 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.822 0-6.75-3.044-6.75-6.75V9Z", "key": "2400159e736b6e0f6da0808f449a0e23bc09b9be" }], ["path", { "fill": "#fff", "d": "M11 7.2c0-.3.1-.5.3-.7.1-.1.2-.2.3-.2.1-.1.2-.1.4-.1.1 0 .3 0 .4.1.1.1.2.1.3.2.4.4.4 1 0 1.4-.1.1-.2.2-.3.2-.2.1-.3.1-.4.1-.3 0-.6-.1-.7-.3-.2-.2-.3-.4-.3-.7Zm0 4.7c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.1-.3-.4-.3-.7Zm0 4.8c0-.3.1-.5.3-.7.2-.2.4-.3.7-.3.3 0 .5.1.7.3.4.4.4 1 0 1.4-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7Z", "key": "d5544dfd80b8a953a7b0e049fcc918390c8dbb6b" }]]);
const Emrald = createMeisterIcons("emrald", [["path", { "fill": "currentColor", "d": "m10.492 4.665-3.715 5.723-.07.065c-.863.79-.897 2.196.023 3.117l.056.056 3.706 5.71c.782.805 2.12.838 3.025-.015l3.706-5.71.07-.064c.863-.79.897-2.196-.023-3.117l-.056-.055-3.697-5.696c-.905-.853-2.243-.82-3.025-.014Zm-1.145-.972c1.41-1.537 3.804-1.503 5.283-.023l.056.056 3.702 5.703c1.4 1.46 1.435 3.756-.008 5.155l-3.694 5.69-.056.056c-1.48 1.48-3.873 1.515-5.283-.023l-.042-.046-3.693-5.69c-1.4-1.46-1.435-3.756.008-5.155L9.305 3.74l.042-.046Z", "key": "7eff14e5503a6d5482c6d7071d3a3e71e92ae8ad" }]]);
const EmraldB = createMeisterIcons("emrald-b", [["path", { "fill": "currentColor", "d": "m14.1 4.163 3.7 5.7c1.2 1.2 1.2 3.1 0 4.2l-3.7 5.7c-1.2 1.2-3.1 1.2-4.2 0l-3.7-5.7c-1.2-1.2-1.2-3.1 0-4.2l3.7-5.7c1.2-1.1 3.1-1.1 4.2 0Z", "key": "b23a4f55bdb2e4ab69a0ab124e4e1a80d8ee32a2" }], ["path", { "fill": "currentColor", "d": "M10.474 4.657 6.776 10.35l-.07.064c-.863.79-.897 2.197.023 3.117l.056.056 3.706 5.71c.782.805 2.12.839 3.025-.014l3.706-5.71.07-.064c.863-.79.897-2.197-.023-3.117l-.056-.056-3.696-5.694c-.786-.728-2.137-.758-3.045.014ZM9.394 3.61c1.473-1.351 3.831-1.383 5.236.022l.056.056 3.702 5.704c1.4 1.459 1.435 3.756-.008 5.154l-3.694 5.691-.056.056c-1.48 1.48-3.873 1.514-5.283-.024l-.042-.046-3.693-5.69c-1.4-1.459-1.435-3.756.008-5.154l3.703-5.705.07-.064Z", "key": "f0f916c232fbd2220247e4ebbaf474a5f31b67fe" }]]);
const EqualSquare = createMeisterIcons("equal-square", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v6c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25V9ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9ZM8.25 10A.75.75 0 0 1 9 9.25h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "b0d8017026f15ddf2e26a9201095248eed0be7d3" }]]);
const EqualSquareB = createMeisterIcons("equal-square-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "17ef118d87ea686db6f23624f81473a9cc971bd9" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "6c9090fd1f43360a1b11c1536eb2fd67a662ff80" }], ["path", { "fill": "#fff", "d": "M8.25 10A.75.75 0 0 1 9 9.25h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "b87530e5fb963c5a36a16da4e1168c7ca1655ad1" }]]);
const ErrorCircle = createMeisterIcons("error-circle", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "8a7e4bde697ae5d1026cc1f92a757cb3aa72aae5" }], ["path", { "fill": "currentColor", "d": "M12 14.7c-.4 0-.8-.3-.8-.8v-6c0-.4.3-.8.8-.8s.8.3.8.8v6c-.1.5-.4.8-.8.8Zm0 3c-.2 0-.4-.1-.5-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.2.1-.4.2-.5.2-.2.5-.3.8-.2.1 0 .2.1.2.2.1.1.2.3.2.5 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2s-.1.1-.2.2H12Z", "key": "242071e060879d2f019753a2013710d6b56e5318" }]]);
const ErrorCircleB = createMeisterIcons("error-circle-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "2bc4315725f292e3f22ce9ca3303c79cfc4d1ff3" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "01385c49b8043d3671f1557a6904e0067c8e6566" }], ["path", { "fill": "#fff", "d": "M12 14.7c-.4 0-.8-.3-.8-.8v-6c0-.4.3-.7.8-.7s.8.3.8.8v6c-.1.4-.4.7-.8.7Zm0 3c-.1 0-.2 0-.3-.1-.1 0-.2-.1-.2-.2s-.2-.1-.2-.2c-.1-.1-.1-.2-.1-.2 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.1-.1.2-.1.2-.2.3-.1.6-.1.8.2l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.3.1-.4.2-.6.2Z", "key": "1743df5185acd9f6935e993ab4a9a0df79bf1024" }]]);
const ErrorHexagon = createMeisterIcons("error-hexagon", [["path", { "fill": "currentColor", "d": "M12.05 13.8c-.4 0-.8-.3-.8-.8V8c0-.4.4-.7.8-.7s.8.3.8.8v5c-.1.4-.4.7-.8.7Zm0 3c-.2 0-.4-.1-.5-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.2-.2.5-.3.8-.2.1 0 .2.1.2.2l.2.2c0 .1.1.2.1.3 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2s-.1.1-.2.2h-.3Z", "key": "c12ab2005f3611eb724f1d6fa877cdcb6da88525" }], ["path", { "fill": "currentColor", "d": "M8.258 2.99c.223-.1.454-.14.692-.14h6.1c.449 0 .958.147 1.33.52l.007.006 4.2 4.4c.142.143.277.315.373.532.1.223.14.454.14.692v6.1c0 .238-.04.469-.14.692-.097.22-.235.394-.38.538l-4.3 4.3a1.783 1.783 0 0 1-.538.38c-.223.1-.455.14-.692.14h-6.1c-.238 0-.469-.04-.692-.14a1.784 1.784 0 0 1-.538-.38l-4.3-4.3a1.785 1.785 0 0 1-.38-.538 1.68 1.68 0 0 1-.14-.692V9c0-.478.167-.811.27-1.019l.01-.016.054-.11L7.72 3.37c.144-.145.318-.283.538-.38Zm.61 1.37a.323.323 0 0 0-.088.07L4.47 8.742a.96.96 0 0 0-.045.108A.45.45 0 0 0 4.4 9v6.1c0 .06.009.08.01.083a.321.321 0 0 0 .07.087l4.3 4.3a.322.322 0 0 0 .087.07c.002 0 .02.01.083.01h6.1c.06 0 .08-.009.083-.01a.324.324 0 0 0 .087-.07l4.3-4.3a.32.32 0 0 0 .07-.087c0-.002.01-.02.01-.083V9c0-.06-.009-.08-.01-.083a.325.325 0 0 0-.07-.087l-.006-.006-4.197-4.397c-.031-.028-.121-.077-.267-.077h-6.1c-.06 0-.08.009-.083.01Z", "key": "3a8ef3f634ebf804dff8fa1152de09d354de9fc5" }]]);
const ErrorHexagonB = createMeisterIcons("error-hexagon-b", [["path", { "fill": "currentColor", "d": "M15.05 3.65h-6.1c-.3 0-.5.1-.7.2l-4.4 4.4c-.1.2-.2.4-.2.7v6.1c0 .3.1.5.3.7l4.3 4.3c.2.2.4.3.7.3h6.1c.3 0 .5-.1.7-.3l4.3-4.3c.2-.2.3-.4.3-.7v-6.1c0-.3-.1-.5-.3-.7l-4.2-4.4c-.2-.1-.5-.2-.8-.2Z", "key": "02b247393f705256ca39c2a8f1f90a16748fa5be" }], ["path", { "fill": "currentColor", "d": "M7.931 3.17c.208-.103.541-.27 1.019-.27h6.1c.45 0 .865.144 1.135.28l.117.058 4.285 4.488c.142.143.277.315.373.532.1.223.14.455.14.692v6.1c0 .237-.04.469-.14.692-.097.22-.235.394-.38.538l-4.3 4.3a1.786 1.786 0 0 1-.538.38c-.223.1-.455.14-.692.14h-6.1c-.238 0-.469-.04-.692-.14a1.786 1.786 0 0 1-.538-.38l-4.3-4.3a1.786 1.786 0 0 1-.38-.538 1.68 1.68 0 0 1-.14-.692v-6.1c0-.478.167-.811.27-1.019l.01-.016.054-.11 4.572-4.571.109-.055.016-.008Zm.761 1.299L4.47 8.692a.958.958 0 0 0-.045.108.45.45 0 0 0-.024.15v6.1c0 .06.009.08.01.083a.323.323 0 0 0 .07.087l4.3 4.3a.324.324 0 0 0 .087.07c.003.001.023.01.083.01h6.1c.063 0 .081-.01.083-.01a.326.326 0 0 0 .087-.07l4.3-4.3a.32.32 0 0 0 .07-.087.203.203 0 0 0 .01-.083v-6.1c0-.06-.009-.08-.01-.083a.32.32 0 0 0-.07-.087l-.006-.006-4.104-4.299a1.07 1.07 0 0 0-.36-.075h-6.1a.45.45 0 0 0-.15.024.959.959 0 0 0-.108.045Z", "key": "a3930920e2a13a41857e9848a0e03f57e84d1b7b" }], ["path", { "fill": "#fff", "d": "M12.05 13.75c-.4 0-.8-.3-.8-.8v-5c0-.4.3-.8.8-.8s.8.3.8.8v5c-.1.5-.4.8-.8.8Zm0 3c-.2 0-.4-.1-.5-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.2-.2.5-.3.8-.2.1 0 .2.1.2.2l.2.2c0 .1.1.2.1.3 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2s-.1.1-.2.2h-.3Z", "key": "cfd5abdcb208c19728d2af7a6137904a38bc2a49" }]]);
const ErrorSquare = createMeisterIcons("error-square", [["path", { "fill": "currentColor", "d": "M15 20.25c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6ZM21.75 15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6Z", "key": "c6df413c18d7cd633bca56011071bed62f30da26" }], ["path", { "fill": "currentColor", "d": "M12.2 14c-.4 0-.8-.3-.8-.8v-6c0-.4.3-.7.8-.7s.8.3.8.8v6c-.1.4-.4.7-.8.7Zm0 3c-.1 0-.2 0-.3-.1-.1 0-.2-.1-.2-.2s-.2-.1-.2-.2c-.1-.1-.1-.2-.1-.2 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.1-.1.2-.1.2-.2.3-.1.6-.1.8.2l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.3.1-.4.2-.6.2Z", "key": "808ed1ffafe27e96d4d7752bcaaeb9bf34793dbd" }]]);
const ErrorSquareB = createMeisterIcons("error-square-b", [["path", { "fill": "currentColor", "d": "M9 3h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6Z", "key": "947b54d7d2331bb4f081cd17a4ab253fea52f337" }], ["path", { "fill": "currentColor", "d": "M15 20.25c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6ZM21.75 15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6Z", "key": "b09d757ff2ecf1a599c17cf7785cc8bd93bb4eee" }], ["path", { "fill": "#fff", "d": "M12.2 14c-.4 0-.8-.3-.8-.8v-6c0-.4.3-.7.8-.7s.8.3.8.8v6c-.1.4-.4.7-.8.7Zm0 3c-.1 0-.2 0-.3-.1-.1 0-.2-.1-.2-.2s-.2-.1-.2-.2c-.1-.1-.1-.2-.1-.2 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.1-.1.2-.1.2-.2.3-.1.6-.1.8.2l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.3.1-.4.2-.6.2Z", "key": "a061c349d2e2d5872ceef59502367d0f7b132c07" }]]);
const Explosive = createMeisterIcons("explosive", [["path", { "fill": "currentColor", "d": "M9.8 5.783a6.65 6.65 0 1 0 0 13.3 6.65 6.65 0 0 0 0-13.3Zm-8.15 6.65a8.15 8.15 0 1 1 16.3 0 8.15 8.15 0 0 1-16.3 0Z", "key": "3bec7cb4bf47af44c810e20538e0ebc3904a60b8" }], ["path", { "fill": "currentColor", "d": "M16.37 5.263a.518.518 0 0 0-.74 0l-1.4 1.4-1.06-1.06 1.4-1.4a2.017 2.017 0 0 1 2.86 0l1.2 1.2c.787.787.793 2.048.019 2.842l-1.487 1.684-1.124-.992 1.515-1.718.017-.016a.518.518 0 0 0 0-.74l-1.2-1.2Z", "key": "2006300546dca831b2f9b7f18f2adac5b23478c6" }], ["path", { "fill": "currentColor", "d": "m18.112 5.667-.003.004.001-.002.001-.001Zm-.612-.434a41.358 41.358 0 0 1-.611-.434l.001-.002.003-.005.008-.01a2.088 2.088 0 0 1 .102-.13 3.75 3.75 0 0 1 .283-.3 3.56 3.56 0 0 1 1.077-.712 2.861 2.861 0 0 1 1.75-.15c.665.15 1.342.538 2.017 1.213a.75.75 0 1 1-1.06 1.06c-.525-.524-.96-.737-1.289-.81a1.362 1.362 0 0 0-.844.073 2.06 2.06 0 0 0-.617.413 2.256 2.256 0 0 0-.205.224l-.006.008a.75.75 0 0 1-1.221-.871l.612.433Z", "key": "5d08b3c8bc906ad23a8a0becba1a5466d2028e3e" }]]);
const ExplosiveB = createMeisterIcons("explosive-b", [["path", { "fill": "currentColor", "d": "M9.8 19.833a7.4 7.4 0 1 0 0-14.8 7.4 7.4 0 0 0 0 14.8Z", "key": "a5021fca75b810cbdf1c7e159b2e6663e99a6413" }], ["path", { "fill": "currentColor", "d": "M9.8 5.783a6.65 6.65 0 1 0 0 13.3 6.65 6.65 0 0 0 0-13.3Zm-8.15 6.65a8.15 8.15 0 1 1 16.3 0 8.15 8.15 0 0 1-16.3 0Z", "key": "5392ee1eb2392c6bd4437cc042c8302f8b6e95d2" }], ["path", { "fill": "currentColor", "d": "M16.37 5.263a.518.518 0 0 0-.74 0l-1.4 1.4-1.06-1.06 1.4-1.4a2.017 2.017 0 0 1 2.86 0l1.2 1.2c.787.787.793 2.048.019 2.842l-1.487 1.684-1.124-.992 1.515-1.718.017-.016a.518.518 0 0 0 0-.74l-1.2-1.2Z", "key": "8ccdc1a74251d6dc4320fe40aec8341fbeb20abe" }], ["path", { "fill": "currentColor", "d": "m18.112 5.667-.003.004.001-.002.001-.001Zm-.612-.434a41.358 41.358 0 0 1-.611-.434l.001-.002.003-.005.008-.01a2.088 2.088 0 0 1 .102-.13 3.75 3.75 0 0 1 .283-.3 3.56 3.56 0 0 1 1.077-.712 2.861 2.861 0 0 1 1.75-.15c.665.15 1.342.538 2.017 1.213a.75.75 0 1 1-1.06 1.06c-.525-.524-.96-.737-1.289-.81a1.362 1.362 0 0 0-.844.073 2.06 2.06 0 0 0-.617.413 2.256 2.256 0 0 0-.205.224l-.006.008a.75.75 0 0 1-1.221-.871l.612.433Z", "key": "2d9886ad832d8e4ac2210c98041df2434243f733" }]]);
const Eyeliner = createMeisterIcons("eyeliner", [["path", { "fill": "currentColor", "d": "M4.5 14.771V17.3c0 1.168.947 2.05 2.05 2.05h.9c1.168 0 2.05-.947 2.05-2.05v-2.6a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-4.4c-.124 0-.187.037-.226.073a.478.478 0 0 0-.124.248Zm-.9-1.344a1.801 1.801 0 0 1 1.25-.477h4.4c1.062 0 1.75.885 1.75 1.75v2.6c0 1.897-1.518 3.55-3.55 3.55h-.9C4.653 20.85 3 19.331 3 17.3v-2.662l.01-.061c.072-.432.261-.843.59-1.15Zm10.955-8.622c-.015.016-.055.065-.055.195v13.3c0 .586.464 1.05 1.05 1.05h2.8c.586 0 1.05-.464 1.05-1.05V5a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-4.4c-.13 0-.18.04-.195.055Zm-1.06-1.06c.334-.335.785-.495 1.255-.495h4.4c1.062 0 1.75.885 1.75 1.75v13.3a2.543 2.543 0 0 1-2.55 2.55h-2.8A2.543 2.543 0 0 1 13 18.3V5c0-.47.16-.92.495-1.255Z", "key": "4df4e3c430d9c6720ad2b184da18e8fcedb8b3b4" }], ["path", { "fill": "currentColor", "d": "M7.05 3.55a.75.75 0 0 1 .75.75v9.4a.75.75 0 1 1-1.5 0V4.3a.75.75 0 0 1 .75-.75Z", "key": "35ae1d1f4380a87267c9fc43a138a200a619397a" }], ["path", { "fill": "currentColor", "d": "M4.8 6.8a.75.75 0 0 1 .75-.75h2.9a.75.75 0 1 1 0 1.5h-2.9a.75.75 0 0 1-.75-.75Zm0 2.5a.75.75 0 0 1 .75-.75h2.9a.75.75 0 1 1 0 1.5h-2.9a.75.75 0 0 1-.75-.75Z", "key": "8a23a8f3d6c6004bc4be0915f6978906babb0979" }]]);
const EyelinerB = createMeisterIcons("eyeliner-b", [["path", { "fill": "currentColor", "d": "M4.85 13.7h4.4c.6 0 1 .5 1 1v2.6c0 1.5-1.2 2.8-2.8 2.8h-.9c-1.5 0-2.8-1.2-2.8-2.8v-2.6c.1-.6.5-1 1.1-1Z", "key": "d093c0497030d67281acd248cf9accb893c9a257" }], ["path", { "fill": "currentColor", "d": "M4.5 14.771V17.3c0 1.168.947 2.05 2.05 2.05h.9c1.168 0 2.05-.947 2.05-2.05v-2.6a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-4.4c-.124 0-.187.037-.226.073a.478.478 0 0 0-.124.248Zm-.9-1.344a1.801 1.801 0 0 1 1.25-.477h4.4c1.062 0 1.75.885 1.75 1.75v2.6c0 1.897-1.518 3.55-3.55 3.55h-.9C4.653 20.85 3 19.331 3 17.3v-2.662l.01-.061c.072-.432.261-.843.59-1.15ZM14.75 4h4.4c.6 0 1 .5 1 1v13.3c0 1-.8 1.8-1.8 1.8h-2.8c-1 0-1.8-.8-1.8-1.8V5c0-.6.4-1 1-1Z", "key": "9958b30b111a0c834fc40a2ad3adfb174325d1b5" }], ["path", { "fill": "currentColor", "d": "M14.555 4.805c-.015.016-.055.065-.055.195v13.3c0 .586.464 1.05 1.05 1.05h2.8c.586 0 1.05-.464 1.05-1.05V5a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-4.4c-.13 0-.18.04-.195.055Zm-1.06-1.06c.334-.335.785-.495 1.255-.495h4.4c1.062 0 1.75.885 1.75 1.75v13.3a2.543 2.543 0 0 1-2.55 2.55h-2.8A2.543 2.543 0 0 1 13 18.3V5c0-.47.16-.92.495-1.255ZM7.05 3.55a.75.75 0 0 1 .75.75v9.4a.75.75 0 1 1-1.5 0V4.3a.75.75 0 0 1 .75-.75Z", "key": "5fd23cab9e64b28854a20ac7a96c0458ee0d8c7e" }], ["path", { "fill": "currentColor", "d": "M4.8 6.8a.75.75 0 0 1 .75-.75h2.9a.75.75 0 0 1 0 1.5h-2.9a.75.75 0 0 1-.75-.75Zm0 2.5a.75.75 0 0 1 .75-.75h2.9a.75.75 0 0 1 0 1.5h-2.9a.75.75 0 0 1-.75-.75Z", "key": "7972ec60f3894dff947fbcd19f5e0695251f95af" }]]);
const Female = createMeisterIcons("female", [["path", { "fill": "currentColor", "d": "M12 3.65a5.45 5.45 0 1 0 0 10.9 5.45 5.45 0 0 0 0-10.9ZM5.05 9.1a6.95 6.95 0 1 1 13.9 0 6.95 6.95 0 0 1-13.9 0Z", "key": "6d55f0d9a803e3eb3cefb9a881e3b041c0f47552" }], ["path", { "fill": "currentColor", "d": "M12 14.55a.75.75 0 0 1 .75.75v5.8a.75.75 0 1 1-1.5 0v-5.8a.75.75 0 0 1 .75-.75Z", "key": "f448886b75db9092679cf424df8fd2c0cb122eeb" }], ["path", { "fill": "currentColor", "d": "M8.65 18.2a.75.75 0 0 1 .75-.75h5.3a.75.75 0 0 1 0 1.5H9.4a.75.75 0 0 1-.75-.75Z", "key": "253ede6543a8d4be480139e277ab5760b25abc69" }]]);
const FemaleB = createMeisterIcons("female-b", [["path", { "fill": "currentColor", "d": "M12 15.3a6.2 6.2 0 1 0 0-12.4 6.2 6.2 0 0 0 0 12.4Z", "key": "51e1a63d2ae7f9bb2e743b8bdb3d29c9a9f6f797" }], ["path", { "fill": "currentColor", "d": "M12 3.65a5.45 5.45 0 1 0 0 10.9 5.45 5.45 0 0 0 0-10.9ZM5.05 9.1a6.95 6.95 0 1 1 13.9 0 6.95 6.95 0 0 1-13.9 0Z", "key": "60d010c04ce9813445741da479d812fbd37f7dbe" }], ["path", { "fill": "currentColor", "d": "M12 14.55a.75.75 0 0 1 .75.75v5.8a.75.75 0 1 1-1.5 0v-5.8a.75.75 0 0 1 .75-.75Z", "key": "e3c66468fb96892dd4bb69ac0faf9be9f7aa3971" }], ["path", { "fill": "currentColor", "d": "M8.65 18.2a.75.75 0 0 1 .75-.75h5.3a.75.75 0 0 1 0 1.5H9.4a.75.75 0 0 1-.75-.75Z", "key": "04a672c0631130269f2facdb9fa9705f3115eaf4" }]]);
const File = createMeisterIcons("file", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "a0bd943f148c27a1ec5fde901f829f8bd2bc1d3f" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459Z", "key": "60c49a970db9796b62a284dddefa04553275aa04" }]]);
const FileAdd = createMeisterIcons("file-add", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "e4127a888fe595edaaa167184dc932afe32545a1" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459Zm-2.65 8.079a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "1fcde3ca5cb115faf2c80ad3fc4b98cddb4e368e" }], ["path", { "fill": "currentColor", "d": "M7.2 15.2a.75.75 0 0 1 .75-.75h4.9a.75.75 0 1 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "4ed6da0c4dc45914df0744bd05d4c9ac11bd57a0" }]]);
const FileAddB = createMeisterIcons("file-add-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "949b447d78a3c20ce3d073d6eb4be8be6020f36b" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "53e3dbf43af93f768e20e472117a623bb6c75407" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.04-.648-2.014-1.398-2.695l-.013-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Z", "key": "6283cc423fca788d8f78b108f69275ddc5bb20c5" }], ["path", { "fill": "#fff", "d": "M10.35 11.95a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "be620039c642095cd3178e9fe02cb3f503bd7f78" }], ["path", { "fill": "#fff", "d": "M7.2 15.2a.75.75 0 0 1 .75-.75h4.9a.75.75 0 1 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "d19fe324974cd690ce88571c232e9d19b4f82fd8" }]]);
const FileB = createMeisterIcons("file-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "b3e0c0e042d8772dec36810087c9f7def62b5d5a" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "f7b9eec14e90788edc7be38bef57728196bbf61e" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.04-.648-2.014-1.398-2.695l-.013-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Z", "key": "3f35f3a5a0a652ffa77abd8c754339a3ebaacee1" }]]);
const FileBlock = createMeisterIcons("file-block", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "4f8141f3062a3032d66d7dba4130a2cb390dc5f1" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459Zm-1.105 9.934c-.689-.758-1.993-.796-2.815.025l-.012.013-.014.012c-.757.69-.796 1.993.026 2.815.822.822 2.126.783 2.815.026l.024-.027.027-.024c.757-.689.796-1.993-.026-2.815l-.013-.012-.012-.013Zm1.098-1.023c-1.31-1.424-3.586-1.386-4.96-.025-1.43 1.313-1.387 3.6-.013 4.973 1.37 1.37 3.646 1.416 4.96 0 1.412-1.31 1.37-3.577.013-4.948Z", "key": "e2df42952c39d64db21977128527794f96f97f2f" }], ["path", { "fill": "currentColor", "d": "m8.126 16.663 4-3.9 1.048 1.074-4 3.9-1.048-1.074Z", "key": "7eb033d4171dfac7e954abd8808317bea281af35" }]]);
const FileBlockB = createMeisterIcons("file-block-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "f7e1bf07b0a088b5acf6558064a35b4b27a8a789" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "4aac0558de9ae57da41793c62953c6a4a7f22e5d" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.04-.648-2.014-1.398-2.695l-.013-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Zm1.75 9.03h-6.8v5.4h6.8v-5.4Z", "key": "59ec4307d7f86b57e6ebd2750fa5536d84dc098d" }], ["path", { "fill": "currentColor", "d": "M7.3 12.15h8.3v6.9H7.3v-6.9Zm1.5 1.5v3.9h5.3v-3.9H8.8Z", "key": "d21d3d77d06a575469826b3a0a21c3347504e617" }], ["path", { "fill": "#fff", "d": "M10.75 13.45c-.521 0-1.124.235-1.47.58l-.012.013-.013.012c-.751.682-.796 1.968.002 2.791.492.401 1.017.604 1.493.604.593 0 1.127-.174 1.424-.53.416-.5.626-1.035.626-1.52a1.98 1.98 0 0 0-.557-1.346c-.492-.402-1.017-.604-1.493-.604Zm-2.517-.493c.654-.647 1.644-1.007 2.517-1.007.915 0 1.78.39 2.48.974l.026.022.024.024a3.482 3.482 0 0 1 1.02 2.43c0 .915-.39 1.78-.974 2.48-.703.843-1.769 1.07-2.576 1.07-.915 0-1.78-.39-2.48-.974l-.026-.022-.024-.024c-1.374-1.374-1.416-3.66.013-4.973Z", "key": "68e17a209eca2910ee8c6f30f959dc6bcebb0897" }], ["path", { "fill": "#fff", "d": "m8.22 16.87 4-4 1.06 1.06-4 4-1.06-1.06Z", "key": "64241643cbccf316782f9edb0d54537a31f0b36b" }]]);
const FileCheck = createMeisterIcons("file-check", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "ed88f958145fa0d06993d5ea1b446ffcdf81f576" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459Zm.188 9.507a.75.75 0 0 1-.016 1.06l-3.206 3.109a.833.833 0 0 1-.256.248.902.902 0 0 1-.473.13c-.229 0-.505-.083-.717-.295l-.038-.037L7.35 15.95a.75.75 0 1 1 1.2-.9l.815 1.087 2.863-2.776a.75.75 0 0 1 1.06.017Z", "key": "09943e898548f051a3d40e573471915c4b66e3bb" }]]);
const FileCheckB = createMeisterIcons("file-check-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "d2ee448fd2b1ea7dffe991caa2873580ca9880ef" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "1fd64abde62f20eaf3acd0e347e60987692c4477" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.04-.648-2.014-1.398-2.695l-.013-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Z", "key": "855064e1aa948ea88d740f98e518460c37d35226" }], ["path", { "fill": "#fff", "d": "M13.288 13.378a.75.75 0 0 1-.016 1.06l-3.206 3.109a.834.834 0 0 1-.256.248.902.902 0 0 1-.473.13c-.229 0-.506-.083-.717-.295l-.038-.037L7.35 15.95a.75.75 0 0 1 1.2-.9l.815 1.087 2.863-2.776a.75.75 0 0 1 1.06.017Z", "key": "83bedb13d91084ff6ed1dc4e20488726823042b9" }]]);
const FileCode = createMeisterIcons("file-code", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "f64fdf940f08be66b3ec251c7ee26e14beca8ed6" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459Zm-1.201 9.72a.75.75 0 0 1 1.06-.042l1.31 1.21.011.01c.273.273.37.632.37.931 0 .299-.097.658-.37.93l-1.2 1.2a.75.75 0 0 1-1.06-1.06l1.064-1.064-1.143-1.055a.75.75 0 0 1-.042-1.06Zm-2.119.079a.75.75 0 0 1 0 1.06L8.71 15.8l1.07 1.07a.75.75 0 0 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l1.2-1.2a.75.75 0 0 1 1.06 0Z", "key": "299d4a4d54c3ee94931dc3f1c91761a0b369d428" }]]);
const FileCodeB = createMeisterIcons("file-code-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "7977aff8f5c010ed8367b604e055a16c658a13f8" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "054b55edf10cecdd3d83c38079a97d35f1a227df" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.427 6.408 20.1 8.01 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.098c-.153-1.08-.64-2.003-1.402-2.695l-.014-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Z", "key": "de3306c26744d2d44d3dc26044d1a32f148c3b4d" }], ["path", { "fill": "#fff", "d": "M11.899 13.591a.75.75 0 0 1 1.06-.042l1.31 1.21.011.01c.273.273.37.632.37.931 0 .299-.097.658-.37.93l-1.2 1.2a.75.75 0 0 1-1.06-1.06l1.064-1.064-1.143-1.055a.75.75 0 0 1-.042-1.06Zm-2.119.079a.75.75 0 0 1 0 1.06L8.71 15.8l1.07 1.07a.75.75 0 1 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l1.2-1.2a.75.75 0 0 1 1.06 0Z", "key": "9a0da0da6e5e72323aec10582f070435d9301864" }]]);
const FileCross = createMeisterIcons("file-cross", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "b442ea41aa982f5581991b081e4074015cdf92ea" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459Zm-.42 8.999a.75.75 0 0 1 0 1.06l-3.5 3.5a.75.75 0 0 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0Z", "key": "ef4672c05cc28e691abb45602ef2e428cc77928c" }], ["path", { "fill": "currentColor", "d": "M8.12 12.87a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 0 1-1.06 1.06l-3.5-3.5a.75.75 0 0 1 0-1.06Z", "key": "993e3bb359c6b8a678737bf0dc57824fa4a80795" }]]);
const FileCrossB = createMeisterIcons("file-cross-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "d7f177db5be7fd0cc6cefa925535348343814a8e" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "db27193fbd5b4879415c55fa4fea7fa2e406db90" }], ["path", { "fill": "currentColor", "d": "M11.5 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.965.965C19.432 6.407 20.1 8.119 20.1 9.8v.75h-4.65c-2.23 0-3.95-1.851-3.95-3.95V2.35ZM13 3.87V6.6c0 1.301 1.08 2.45 2.45 2.45h3.092c-.162-1.034-.66-1.996-1.472-2.674l-.026-.022-1.037-1.036-.012-.013C15.249 4.484 14.152 3.976 13 3.87Z", "key": "c618041d110a0c50aef1bdbb8ad2fd9322a8a8bc" }], ["path", { "fill": "#fff", "d": "M12.68 12.87a.75.75 0 0 1 0 1.06l-3.5 3.5a.75.75 0 0 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0Z", "key": "9daa7d8fdfb2d73f2a83cb3267a1eafe71d018e1" }], ["path", { "fill": "#fff", "d": "M8.12 12.87a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 1 1-1.06 1.06l-3.5-3.5a.75.75 0 0 1 0-1.06Z", "key": "01eb1e4f943b8007810ce3485898cded9e9d38e4" }]]);
const FileDownload = createMeisterIcons("file-download", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "4b8e4a4d1ee1f266852d44a828312af9e518fbc9" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459ZM9.95 12.05a.75.75 0 0 1 .75.75v4.1a.75.75 0 1 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "f037410ccdadfea45333f5282090c18f2705d679" }], ["path", { "fill": "currentColor", "d": "M7.42 15.07a.75.75 0 0 1 1.06 0l1.42 1.42 1.42-1.42a.75.75 0 0 1 1.06 1.06l-1.7 1.7a1.041 1.041 0 0 1-.743.295c-.224 0-.438-.062-.622-.154l-.11-.055L7.42 16.13a.75.75 0 0 1 0-1.06Z", "key": "ad8301ef79097fcd9489e59d7826cdf4205c5fc8" }]]);
const FileDownloadB = createMeisterIcons("file-download-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "41221cef0c93878ea6300068067f16f7604dcdfb" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "0b8a200395aea54637276c394a3262ffdaf5866b" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.04-.648-2.014-1.398-2.695l-.013-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Z", "key": "63176be856ca97fe15695a06f97e74bc4a2fca67" }], ["path", { "fill": "#fff", "d": "M9.95 12.05a.75.75 0 0 1 .75.75v4.1a.75.75 0 1 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "b8ef8e2f973333cf6ac394200f6f78687794a017" }], ["path", { "fill": "#fff", "d": "M7.42 15.07a.75.75 0 0 1 1.06 0l1.42 1.42 1.42-1.42a.75.75 0 0 1 1.06 1.06l-1.7 1.7a1.041 1.041 0 0 1-.743.295c-.224 0-.438-.062-.622-.154l-.11-.055L7.42 16.13a.75.75 0 0 1 0-1.06Z", "key": "54a5f18dbdbf130ce423d54c87f748a994b67507" }]]);
const FileHeart = createMeisterIcons("file-heart", [["path", { "fill": "currentColor", "d": "M13.782 13.494c-.402-.37-.907-.358-1.302.036l-.947.947-.658-.987a1.126 1.126 0 0 0-.625-.24c-.203 0-.512.123-.67.28-.407.408-.407.933 0 1.34l.2.2 1.87 1.87 2.07-2.07c.157-.158.28-.466.28-.67 0-.243-.052-.468-.218-.706Zm-2.088-1.265c.976-.744 2.281-.664 3.186.24l.038.039.032.042a2.67 2.67 0 0 1 .55 1.65c0 .597-.277 1.288-.72 1.73l-2.1 2.1c-.27.27-.63.445-1.03.445s-.76-.174-1.03-.445l-1.9-1.9-.2-.2c-.993-.992-.993-2.467 0-3.46a2.59 2.59 0 0 1 1.73-.72c.48 0 1.02.18 1.444.48Z", "key": "6a84cadc1f667d9f5370053a1b8a1a841e414af2" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "e36da85c129627766dc426cdebb0acd585e1a1e2" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459Z", "key": "79c4b4f8dde3ee7d04fa988f0e06ded34a477e93" }]]);
const FileInFolder = createMeisterIcons("file-in-folder", [["path", { "fill": "currentColor", "d": "M6.45 4.3c0-1.347 1.07-2.25 2.25-2.25h4.75V5.4c0 .786.664 1.45 1.45 1.45h3.55v7.25c0 .37-.158.793-.28 1.035a.75.75 0 1 1-1.34-.67 1.518 1.518 0 0 0 .115-.335.305.305 0 0 0 .005-.033V8.35H14.9a2.97 2.97 0 0 1-2.95-2.95V3.55H8.7c-.419 0-.75.297-.75.75v1a.75.75 0 1 1-1.5 0v-1Z", "key": "044a9bd85d0855c2f55d721f5c8b6816274d306a" }], ["path", { "fill": "currentColor", "d": "M11.95 2.05h.95c1.295 0 2.487.476 3.43 1.42l.684.683c.984.874 1.436 2.192 1.436 3.447v.75H14.9a2.97 2.97 0 0 1-2.95-2.95V2.05Zm1.5 1.542V5.4c0 .786.664 1.45 1.45 1.45h1.975c-.132-.639-.432-1.204-.869-1.586l-.019-.016-.717-.718a3.24 3.24 0 0 0-1.82-.938ZM4.25 6c0-.751.576-1.55 1.55-1.55h1.977l.158.08a.508.508 0 0 0 .083.03l.145.05c.162.06.366.159.564.357l10.356 10.157c.554.414.667 1.097.667 1.476V20c0 1.154-.977 1.95-1.95 1.95H6.2c-1.154 0-1.95-.977-1.95-1.95V6Zm1.505-.025A.073.073 0 0 0 5.75 6v14a.47.47 0 0 0 .133.31c.084.089.192.14.317.14h11.6a.47.47 0 0 0 .31-.133.427.427 0 0 0 .14-.317v-3.4a.64.64 0 0 0-.038-.218.195.195 0 0 0-.032-.06l-.055-.037L7.67 6.03s0-.002-.033-.015l-.058-.02a5.777 5.777 0 0 1-.13-.045H5.8a.12.12 0 0 0-.031.004s-.002 0-.004.003a.057.057 0 0 0-.01.018Z", "key": "aeab2892d05959e30eae65a9644e09e70609b46d" }]]);
const FileInFolderB = createMeisterIcons("file-in-folder-b", [["path", { "fill": "currentColor", "d": "M8.85 3.5c-.386 0-.75.364-.75.75v.336l.044.016.024.008.145.05c.163.061.368.16.567.36l8.22 8.22V8.4h-1.95c-.795 0-1.543-.369-2.056-.848a1.87 1.87 0 0 1-.337-.284 1.38 1.38 0 0 0-.223-.194l-.334-.223v-.196a.857.857 0 0 1-.09-.274A1.357 1.357 0 0 1 12 5.85V3.5H8.85ZM7.6 6h-1V4.25C6.6 3.036 7.636 2 8.85 2h4.65v3.818l.004.009.008.02a1.637 1.637 0 0 1 .044.119c.112.09.195.175.256.235l.006.006.082.08.094.047.086.086c.287.286.704.48 1.07.48h3.45v7.25c0 .478-.167.811-.27 1.019a.871.871 0 0 0-.01.016l-.465.931L7.82 6.08s0-.002-.033-.015A5.777 5.777 0 0 1 7.6 6Z", "key": "5f065e74429feb5ac65d81934d9dfdc931879d11" }], ["path", { "fill": "currentColor", "d": "M12.2 2.1h.95c1.295 0 2.487.476 3.43 1.42l.7.7c.866.865 1.32 2.17 1.32 3.43v.75h-3.55c-.834 0-1.617-.406-2.13-.92a1.76 1.76 0 0 1-.271-.37 7.157 7.157 0 0 1-.166-.316l-.014-.03a.86.86 0 0 1-.165-.43 7.203 7.203 0 0 0-.015-.047l-.002-.006a1.979 1.979 0 0 1-.045-.143.983.983 0 0 1-.042-.288V2.1Zm1.5 1.542v2.136l.011.035.002.006a2.7 2.7 0 0 1 .045.143l.005.02.014.023a.858.858 0 0 1 .087.195 3.773 3.773 0 0 0 .128.23c.286.281.697.47 1.058.47h1.976c-.128-.65-.417-1.23-.806-1.62l-.7-.7a3.24 3.24 0 0 0-1.82-.938Z", "key": "d8dfa20b6ab336c07c748dd34f16a073b089b8fd" }], ["path", { "fill": "currentColor", "d": "M12.1 2.85h1.5v3h-1.5v-3Zm6.85 13.9v3.3c0 .6-.5 1.2-1.2 1.2H6.25c-.6 0-1.2-.5-1.2-1.2v-14c0-.5.4-.8.9-.8h1.9c.2 0 .4.1.6.3l9.3 9.3.9.9c.2.3.3.6.3 1Z", "key": "7ea1f9b349cd5cc3edca39c5b16240c3c189aae7" }], ["path", { "fill": "currentColor", "d": "M5.801 6.032 5.8 6.05v14c0 .125.051.233.14.317a.47.47 0 0 0 .31.133h11.5a.427.427 0 0 0 .317-.14.47.47 0 0 0 .133-.31v-3.3a.935.935 0 0 0-.138-.527L7.92 6.08A.513.513 0 0 0 7.822 6H5.95a.277.277 0 0 0-.149.032ZM4.828 4.89c.32-.272.727-.39 1.122-.39h1.9c.47 0 .849.238 1.13.52l10.253 10.252.041.062c.28.42.426.863.426 1.416v3.3c0 .973-.796 1.95-1.95 1.95H6.25c-.973 0-1.95-.796-1.95-1.95v-14c0-.467.195-.878.528-1.16Z", "key": "0b306c176d9d953ceba8c00c9d33162a3b6a16a1" }]]);
const FileInFolderVarB = createMeisterIcons("file-in-folder-var-b", [["path", { "fill": "currentColor", "d": "M17.8 7.65v6.5c0 .3-.1.5-.2.7l-9.3-9.3c-.1-.2-.4-.2-.6-.3h-.4v-1c0-.8.7-1.5 1.5-1.5h3.9v3c0 .1.1.3.1.4 0 0 0 .1.1.1 0 .1.1.2.2.3.2.2.2.3.3.4.4.4 1 .7 1.6.7h2.8Z", "key": "2b65c171d147d5ee12521fb06823d566c3c6df74" }], ["path", { "fill": "currentColor", "d": "M8.8 3.5c-.386 0-.75.364-.75.75v.333l.028.009.027.008c.042.012.115.033.17.051.123.041.414.145.614.428l8.161 8.16V8.4H15c-.834 0-1.617-.406-2.13-.92a1.389 1.389 0 0 1-.222-.3l-.004-.007c-.013-.021-.027-.045-.074-.093a.845.845 0 0 1-.515-.844 3.799 3.799 0 0 0-.016-.049l-.002-.006a2.78 2.78 0 0 1-.045-.143.983.983 0 0 1-.042-.288V3.5H8.8Zm3.25 2.65h.75-.75c0 .001 0 0 0 0ZM7.556 6H6.55V4.25C6.55 3.036 7.586 2 8.8 2h4.65v3.5h.2v.54c.14.143.221.263.28.362l.027.044c.286.272.688.454 1.043.454h3.55v7.25c0 .478-.167.811-.27 1.019l-.01.016-.465.931L7.747 6.058a.452.452 0 0 0-.025-.007L7.65 6.03A2.402 2.402 0 0 1 7.556 6Z", "key": "3e6ea17b70e6fe1603e77368a51554bc0dfa135a" }], ["path", { "fill": "currentColor", "d": "M12.05 2.1H13c1.295 0 2.487.476 3.43 1.42l.684.683c.984.874 1.436 2.191 1.436 3.447v.75H15c-.834 0-1.617-.406-2.13-.92a1.248 1.248 0 0 1-.237-.337l-.001-.003a1.198 1.198 0 0 1-.11-.14h-.372v-.678l-.011-.035-.002-.006a2.782 2.782 0 0 1-.045-.143.983.983 0 0 1-.042-.288V2.1Zm1.5 1.542v2.136l.011.035a.849.849 0 0 1 .109.175c.05.074.08.136.097.169l.001.003c.111.122.171.24.197.294.285.267.684.446 1.035.446h1.974c-.131-.639-.431-1.204-.868-1.586l-.019-.016-.717-.718a3.24 3.24 0 0 0-1.82-.938Z", "key": "f3233e802d3fd4734bbed33fa67e4368b2877bc6" }], ["path", { "fill": "currentColor", "d": "M12.05 2.85h1.5v2.9h-1.5v-2.9ZM5.751 6.032a.13.13 0 0 0-.001.018v14c0 .125.051.233.14.317a.47.47 0 0 0 .31.133h11.6a.427.427 0 0 0 .317-.14.47.47 0 0 0 .133-.31v-3.3c0-.105-.034-.224-.28-.47L7.77 6.08A.513.513 0 0 0 7.672 6H5.9a.277.277 0 0 0-.149.032ZM4.778 4.89c.32-.272.727-.39 1.122-.39h1.8c.47 0 .849.238 1.13.52l10.2 10.2c.354.353.72.835.72 1.53v3.3c0 .973-.796 1.95-1.95 1.95H6.2c-.973 0-1.95-.796-1.95-1.95v-14c0-.467.195-.878.528-1.16Z", "key": "5aa0b2112bd3bac48bbcd5e6b90e4309b0762f8e" }]]);
const FileUpload = createMeisterIcons("file-upload", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "14ce5cd1d449181f6a35ce64086b526bdb8a4054" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.71 0 3.297.687 4.53 1.92l.988.988C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.521v2.83a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.041-.648-2.015-1.398-2.696l-.013-.012L16.12 5.33c-.854-.853-1.899-1.353-3.02-1.459ZM9.95 12.55a.75.75 0 0 1 .75.75v4.1a.75.75 0 1 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "f7f78c696760e22d7648cbfeb864c514ed166f41" }], ["path", { "fill": "currentColor", "d": "m10 13.71 1.42 1.42a.75.75 0 0 0 1.06-1.06l-1.786-1.786-.109-.055a1.405 1.405 0 0 0-.622-.154c-.22 0-.511.063-.743.295l-1.7 1.7a.75.75 0 0 0 1.06 1.06L10 13.71Z", "key": "1fdf826d37455bceca4a6f3d5623360539f83d55" }]]);
const FileUploadB = createMeisterIcons("file-upload-b", [["path", { "fill": "currentColor", "d": "M19.35 9.8v9.1c0 1.2-.9 2.1-2.1 2.1H6.75c-1.2 0-2.1-.9-2.1-2.1V5.1c0-1.2.9-2.1 2.1-2.1h5.5v3.6c0 1.7 1.4 3.1 3.1 3.1h4v.1Z", "key": "11d9db1cdb8ab1c3aa2e044e7f995665b12eecd9" }], ["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "e05d6040fc94cbde3144fcf4a21732b993d0501a" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.04-.648-2.014-1.398-2.695l-.013-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Z", "key": "82a8ede02aad99e24ff1e44a5128f54b4364cc0f" }], ["path", { "fill": "#fff", "d": "M9.95 12.55a.75.75 0 0 1 .75.75v4.1a.75.75 0 1 1-1.5 0v-4.1a.75.75 0 0 1 .75-.75Z", "key": "6e1f3786c7b69a87693622070e76c54d7f35997f" }], ["path", { "fill": "#fff", "d": "m10 13.71 1.42 1.42a.75.75 0 1 0 1.06-1.06l-1.786-1.786-.109-.055a1.404 1.404 0 0 0-.623-.154c-.219 0-.51.063-.742.295l-1.7 1.7a.75.75 0 0 0 1.06 1.06L10 13.71Z", "key": "ed4c956e39c076965428a04574e7b85da128df3a" }]]);
const FileVarB = createMeisterIcons("file-var-b", [["path", { "fill": "currentColor", "d": "M6.75 3.75c-.786 0-1.35.564-1.35 1.35v13.8c0 .786.564 1.35 1.35 1.35h10.5c.786 0 1.35-.564 1.35-1.35v-8.45h-3.25A3.866 3.866 0 0 1 11.5 6.6V3.75H6.75ZM3.9 5.1c0-1.614 1.236-2.85 2.85-2.85H13V6.6a2.366 2.366 0 0 0 2.35 2.35h4.75v9.95c0 1.614-1.236 2.85-2.85 2.85H6.75c-1.614 0-2.85-1.236-2.85-2.85V5.1Z", "key": "b3eeda338a183ef02c4f8bfc76fb970cb9b3612d" }], ["path", { "fill": "currentColor", "d": "M19.35 9.8h-3.9c-1.7 0-3.1-1.4-3.1-3.1V3.1h.3c1.5 0 3 .6 4 1.7l1 1c1.1 1 1.7 2.5 1.7 4Z", "key": "7e3ae56218cbdc81d1bd3f6ba23822a6c3b79f51" }], ["path", { "fill": "currentColor", "d": "M11.6 2.35h1.05c1.682 0 3.386.668 4.542 1.932l.976.976C19.432 6.414 20.1 8.118 20.1 9.8v.75h-4.65A3.866 3.866 0 0 1 11.6 6.7V2.35Zm1.5 1.52V6.7a2.366 2.366 0 0 0 2.35 2.35h3.093c-.16-1.04-.648-2.014-1.398-2.695l-.013-.012-1.025-1.025-.012-.013c-.746-.821-1.843-1.329-2.995-1.434Z", "key": "f646c086c6d49f45fca1418c36408da1d1e8cfad" }]]);
const Flag = createMeisterIcons("flag", [["path", { "fill": "currentColor", "d": "M7 4.75c-.686 0-1.25.564-1.25 1.25v7.25H17c.686 0 1.25-.564 1.25-1.25V6c0-.686-.564-1.25-1.25-1.25H7Zm-1.25 10H17A2.756 2.756 0 0 0 19.75 12V6A2.756 2.756 0 0 0 17 3.25H7A2.756 2.756 0 0 0 4.25 6v14a.75.75 0 0 0 1.5 0v-5.25Z", "key": "3f790d3b4ffa7c44d0fe4a225b401c7a3a25cbb3" }]]);
const FlagAlt = createMeisterIcons("flag-alt", [["path", { "fill": "currentColor", "d": "M5.25 5c0-.13.04-.18.055-.195.016-.015.065-.055.195-.055h8c.13 0 .18.04.195.055.015.016.055.065.055.195v4c0 .13-.04.18-.055.195-.016.015-.065.055-.195.055h-1.626a.746.746 0 0 0-.748 0H5.25V5Zm5.5 5.75h-5.5V20a.75.75 0 0 1-1.5 0V5c0-.47.16-.92.495-1.255.334-.335.785-.495 1.255-.495h8c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v1.55h3.25c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v3.6c0 .47-.16.92-.495 1.255-.334.335-.785.495-1.255.495h-6c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.784-.495-1.255v-1.15Zm1.5 0v1.15c0 .13.04.18.055.195.016.015.065.055.195.055h6c.13 0 .18-.04.195-.055.015-.016.055-.065.055-.195V8.3c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055h-3.25V9c0 .47-.16.92-.495 1.255-.334.335-.785.495-1.255.495h-1.25Z", "key": "68b7d1eabf1c0767da08b623fe520ca53db8bd86" }]]);
const FlagAltB = createMeisterIcons("flag-alt-b", [["path", { "fill": "currentColor", "d": "M14.5 5v4c0 .5-.4 1-1 1h-9V5c0-.5.5-1 1-1h8c.5 0 1 .4 1 1Z", "key": "8e910fc7d355f2feccfa9fec73f942e1224cf756" }], ["path", { "fill": "currentColor", "d": "M5.343 4.843c-.082.082-.093.15-.093.157v4.25h8.25c.08 0 .135-.03.177-.074A.27.27 0 0 0 13.75 9V5c0-.08-.03-.135-.074-.177a.27.27 0 0 0-.176-.073h-8c-.006 0-.075.01-.157.093Zm-1.06-1.06c.292-.294.723-.533 1.217-.533h8c.865 0 1.75.688 1.75 1.75v4c0 .865-.688 1.75-1.75 1.75H3.75V5c0-.494.24-.925.532-1.218Z", "key": "78a6fd44eb12af0d6b71dc278146dea400c6823d" }], ["path", { "fill": "currentColor", "d": "M4.5 9.25a.75.75 0 0 1 .75.75v10a.75.75 0 0 1-1.5 0V10a.75.75 0 0 1 .75-.75Zm9.25-2.7h4.75c.494 0 .925.24 1.218.532.293.293.532.724.532 1.218v3.6c0 .865-.688 1.75-1.75 1.75h-6c-.494 0-.925-.24-1.218-.532-.293-.293-.532-.724-.532-1.218V9.15h2.75c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176V6.55Zm1.5 1.5v.85c0 .865-.688 1.75-1.75 1.75h-1.25v1.25c0 .006.01.075.093.157.082.082.15.093.157.093h6c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176V8.3c0-.006-.01-.075-.093-.157-.082-.082-.15-.093-.157-.093h-3.25Z", "key": "07f067ddbeb688cdf419dc81377d0d5142477f90" }]]);
const FlagAltVarB = createMeisterIcons("flag-alt-var-b", [["path", { "fill": "currentColor", "d": "M5.343 4.843c-.082.082-.093.15-.093.157v4.25h8.25c.08 0 .135-.03.177-.074A.27.27 0 0 0 13.75 9V5c0-.08-.03-.135-.074-.177a.27.27 0 0 0-.176-.073h-8c-.006 0-.075.01-.157.093Zm-1.06-1.06c.292-.294.723-.533 1.217-.533h8c.865 0 1.75.688 1.75 1.75v4c0 .865-.688 1.75-1.75 1.75H3.75V5c0-.494.24-.925.532-1.218Z", "key": "a86c76f44afb10749a68504e1952a4f5389d9598" }], ["path", { "fill": "currentColor", "d": "M4.5 9.25a.75.75 0 0 1 .75.75v10a.75.75 0 0 1-1.5 0V10a.75.75 0 0 1 .75-.75Zm15-.95v3.6c0 .5-.4 1-1 1h-6c-.5 0-1-.5-1-1v-2h2c.6 0 1-.5 1-1V7.3h4c.5 0 1 .5 1 1Z", "key": "707a773ba2b2b2f751d96af3ab4a3eb7372fa01d" }], ["path", { "fill": "currentColor", "d": "M13.75 6.55h4.75c.494 0 .925.24 1.218.532.293.293.532.724.532 1.218v3.6c0 .865-.688 1.75-1.75 1.75h-6c-.494 0-.925-.24-1.218-.532-.293-.293-.532-.724-.532-1.218V9.15h2.75c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176V6.55Zm1.5 1.5v.85c0 .865-.688 1.75-1.75 1.75h-1.25v1.25c0 .006.01.075.093.157.082.082.15.093.157.093h6c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176V8.3c0-.006-.01-.075-.093-.157-.082-.082-.15-.093-.157-.093h-3.25Z", "key": "72926d3bd4dc8dc9d3e1ba3866637c5e3ef82024" }]]);
const FlagB = createMeisterIcons("flag-b", [["path", { "fill": "currentColor", "d": "M19 6v6c0 1.1-.9 2-2 2H5V6c0-1.1.9-2 2-2h10c1.1 0 2 .8 2 2Z", "key": "169c804ddee947fee106ab557dfe0cdcf267aaec" }], ["path", { "fill": "currentColor", "d": "M7 4.75c-.686 0-1.25.564-1.25 1.25v7.25H17c.686 0 1.25-.564 1.25-1.25V6c0-.761-.54-1.25-1.25-1.25H7ZM4.25 6A2.756 2.756 0 0 1 7 3.25h10c1.49 0 2.75 1.111 2.75 2.75v6A2.756 2.756 0 0 1 17 14.75H4.25V6Z", "key": "4a85f5a186b47ecc0f4f3085223e6b0a5953c361" }], ["path", { "fill": "currentColor", "d": "M5 13.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "fc8f0c008e92f1fc19a14d4bd2d8c675316a7758" }]]);
const FlagTriangle = createMeisterIcons("flag-triangle", [["path", { "fill": "currentColor", "d": "M7.68 5.238v8.8l8.481-3.98-8.48-4.82Zm0 10.458v4.223a.75.75 0 0 1-1.5 0V4.32c0-.362.188-.682.477-.855.247-.148.66-.218 1 .035l9.452 5.373.007.004c.482.289.73.774.7 1.275a1.366 1.366 0 0 1-.75 1.14l-.008.003-9.377 4.402Z", "key": "d1b9d868bd3ff4c17c56c07cbe673d877dc1f468" }]]);
const FlagTriangleB = createMeisterIcons("flag-triangle-b", [["path", { "fill": "currentColor", "d": "m16.713 10.62-9.8 4.6V4.32c0-.2.2-.3.3-.2l9.5 5.4c.5.2.5.9 0 1.1Z", "key": "c24ed8e9c12bed5be439e946f7d54db84af1bb1b" }], ["path", { "fill": "currentColor", "d": "M7.663 5.238v8.8l8.48-3.98-8.48-4.82Zm-.024-1.739c-.341-.253-.753-.183-1-.035a.992.992 0 0 0-.476.855V16.4l10.852-5.093c1.086-.456 1.097-1.982.031-2.46L7.64 3.5Z", "key": "3e6066eccd4be26fe6b7bdd5c51600dfa0d8f59e" }], ["path", { "fill": "currentColor", "d": "M7.013 14.47a.75.75 0 0 1 .75.75v4.7a.75.75 0 0 1-1.5 0v-4.7a.75.75 0 0 1 .75-.75Z", "key": "c08aaa570ffa98f01994e006c8d2b3ff967c0249" }]]);
const Flask = createMeisterIcons("flask", [["path", { "fill": "currentColor", "d": "M10.744 10.034a.75.75 0 0 1 .322 1.01l-4.71 9.121-.008.012c.001.007.005.02.014.035.01.019.024.03.032.035l.006.003h11.2a.077.077 0 0 0 .038-.008.025.025 0 0 0 .01-.008.035.035 0 0 0 .004-.018c0-.01 0-.035-.021-.078l-4.697-9.094a.75.75 0 1 1 1.332-.688l4.705 9.109c.545 1.09-.204 2.285-1.371 2.285H6.4a1.55 1.55 0 0 1-1.337-.787c-.245-.423-.319-1.006-.02-1.525l4.69-9.082a.75.75 0 0 1 1.011-.322Z", "key": "89db60ac8033f6b0f09548933da087c0e21ec50f" }], ["path", { "fill": "currentColor", "d": "M9.65 3.7c0-.814.636-1.45 1.45-1.45h1.8c.814 0 1.45.636 1.45 1.45v7a.75.75 0 0 1-1.5 0V3.75h-1.7v6.95a.75.75 0 0 1-1.5 0v-7Z", "key": "53c2f244198374030648a80597c3ef0275f6375a" }]]);
const FlaskB = createMeisterIcons("flask-b", [["path", { "fill": "currentColor", "d": "M17.531 21.05h-11.1c-.6 0-1-.7-.8-1.2l4.7-9.1v-7c0-.4.3-.8.8-.8h1.7c.4 0 .8.3.8.8v7l4.7 9.1c.3.6-.2 1.2-.8 1.2Z", "key": "9cb794bd250b693ef93fe7f3fbeff8df01a32de7" }], ["path", { "fill": "currentColor", "d": "M11.086 3.725a.073.073 0 0 0-.005.025v7.182l-4.752 9.2.001.014a.239.239 0 0 0 .09.149l.01.005c-.001 0 0 0 0 0h11.1a.164.164 0 0 0 .13-.064.068.068 0 0 0 .009-.016v-.008a.104.104 0 0 0-.008-.024l-4.78-9.256V3.75a.12.12 0 0 0-.005-.031s0-.002-.003-.004a.073.073 0 0 0-.043-.015h-1.7a.12.12 0 0 0-.024.002l-.007.002-.003.003a.059.059 0 0 0-.01.018Zm-1.505.025c0-.751.576-1.55 1.55-1.55h1.7c.752 0 1.55.576 1.55 1.55v6.818l4.621 8.947a1.527 1.527 0 0 1-.125 1.6 1.67 1.67 0 0 1-1.346.685h-11.1c-.612 0-1.078-.358-1.334-.762-.25-.396-.37-.948-.162-1.466l.013-.034 4.633-8.97V3.75Z", "key": "f1718fe261f64d9de6520e2bd33ce4fcba752382" }]]);
const FlexStand = createMeisterIcons("flex-stand", [["path", { "fill": "currentColor", "d": "m9.41 5.35-2.637 10h6.548l2.617-10H9.41Zm-1.422-.487c.163-.49.58-1.013 1.312-1.013h6.8c.92 0 1.538.89 1.328 1.732l-.002.008-2.947 11.26H4.827L7.98 4.885l.007-.022Z", "key": "9d4c5f27c78c165f90535b30115044e5aa642e01" }], ["path", { "fill": "currentColor", "d": "M5.997 15.376a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 1 1-1.448-.395l.9-3.3a.75.75 0 0 1 .921-.526Zm8.1 0a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 0 1-1.448-.395l.9-3.3a.75.75 0 0 1 .921-.526Zm.906-5.465a.75.75 0 0 1 .986.392l3.8 8.8a.75.75 0 1 1-1.378.594l-3.8-8.8a.75.75 0 0 1 .392-.986Zm-7.578 5.491a.75.75 0 0 1 .973.423l1.3 3.3a.75.75 0 1 1-1.396.55l-1.3-3.3a.75.75 0 0 1 .423-.973Z", "key": "f054d045ea7d6912d03dd0d9c07baf37b2ae3e15" }]]);
const FlexStandB = createMeisterIcons("flex-stand-b", [["path", { "fill": "currentColor", "d": "m16.7 5.45-1.3 5.1-1.4 5.5H5.8l2.9-11c0-.2.3-.4.6-.4h6.8c.4 0 .7.4.6.8Z", "key": "241163377a856945554c61dc71085c597d2100c5" }], ["path", { "fill": "currentColor", "d": "M9.302 5.4H9.3h.002Zm.081 0h6.556l-2.522 9.9H6.773l2.61-9.9Zm-.912-1.25c.23-.152.523-.25.829-.25h6.8c.92 0 1.538.89 1.328 1.732l-.001.003L14.583 16.8H4.827L7.958 4.92c.052-.397.336-.652.513-.77Z", "key": "b35689fc7005ea40533a0dfc589d8ac0374c72af" }], ["path", { "fill": "currentColor", "d": "M5.997 15.326a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 1 1-1.448-.394l.9-3.3a.75.75 0 0 1 .921-.527Zm8.1 0a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 0 1-1.448-.394l.9-3.3a.75.75 0 0 1 .921-.527Zm.906-5.465a.75.75 0 0 1 .986.391l3.8 8.8a.75.75 0 1 1-1.378.595l-3.8-8.8a.75.75 0 0 1 .392-.986Zm-7.578 5.491a.75.75 0 0 1 .973.423l1.3 3.3a.75.75 0 1 1-1.396.55l-1.3-3.3a.75.75 0 0 1 .423-.973Z", "key": "a49d78caeef8e4264a50e5adf085707f46ce86f5" }]]);
const FlexStandFilled = createMeisterIcons("flex-stand-filled", [["path", { "fill": "currentColor", "d": "m9.41 5.35-2.637 10h6.548l2.617-10H9.41Zm-1.422-.487c.163-.49.58-1.013 1.312-1.013h6.8c.92 0 1.538.89 1.328 1.732l-.002.008-2.947 11.26H4.827L7.98 4.885l.007-.022Z", "key": "a3663d6fa9d880bbdd51ba8d21190cd4c0803ff0" }], ["path", { "fill": "currentColor", "d": "M5.997 15.376a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 1 1-1.448-.395l.9-3.3a.75.75 0 0 1 .921-.526Zm8.1 0a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 0 1-1.448-.395l.9-3.3a.75.75 0 0 1 .921-.526Zm.906-5.465a.75.75 0 0 1 .986.392l3.8 8.8a.75.75 0 1 1-1.378.594l-3.8-8.8a.75.75 0 0 1 .392-.986Zm-7.578 5.491a.75.75 0 0 1 .973.423l1.3 3.3a.75.75 0 1 1-1.396.55l-1.3-3.3a.75.75 0 0 1 .423-.973ZM9.55 8.9a.75.75 0 0 1 .75-.75H13a.75.75 0 0 1 0 1.5h-2.7a.75.75 0 0 1-.75-.75Zm-1 3.1a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H9.3a.75.75 0 0 1-.75-.75Z", "key": "8f4b55ee08bb052e8cff958563642a82f9ed0915" }]]);
const FlexStandFilledB = createMeisterIcons("flex-stand-filled-b", [["path", { "fill": "currentColor", "d": "m16.7 5.45-1.3 5.1-1.4 5.5H5.8l2.9-11c0-.2.3-.4.6-.4h6.8c.4 0 .7.4.6.8Z", "key": "31193fd681176732b19fa0fc160077dd2cd0d912" }], ["path", { "fill": "currentColor", "d": "M9.302 5.4H9.3h.002Zm.081 0h6.556l-2.522 9.9H6.773l2.61-9.9Zm-.912-1.25c.23-.152.523-.25.829-.25h6.8c.92 0 1.538.89 1.328 1.732l-.001.003L14.583 16.8H4.827L7.958 4.92c.052-.397.336-.652.513-.77Z", "key": "d180787f76c00628bdaa44dec4b1d9bce1d92b2c" }], ["path", { "fill": "currentColor", "d": "M5.997 15.326a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 1 1-1.448-.394l.9-3.3a.75.75 0 0 1 .921-.527Zm8.1 0a.75.75 0 0 1 .527.921l-.9 3.3a.75.75 0 0 1-1.448-.394l.9-3.3a.75.75 0 0 1 .921-.527Zm.906-5.465a.75.75 0 0 1 .986.391l3.8 8.8a.75.75 0 1 1-1.378.595l-3.8-8.8a.75.75 0 0 1 .392-.986Zm-7.578 5.491a.75.75 0 0 1 .973.423l1.3 3.3a.75.75 0 1 1-1.396.55l-1.3-3.3a.75.75 0 0 1 .423-.973Z", "key": "89429fa0bf59dd8e41cd9b66cf3804c012795b09" }], ["path", { "fill": "#fff", "d": "M9.55 8.85a.75.75 0 0 1 .75-.75H13a.75.75 0 0 1 0 1.5h-2.7a.75.75 0 0 1-.75-.75Zm-1 3.1a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H9.3a.75.75 0 0 1-.75-.75Z", "key": "4548c1a35aac55fe0e78a7538335a390a91e9568" }]]);
const Folder = createMeisterIcons("folder", [["path", { "fill": "currentColor", "d": "M3.75 4.2c0-.286.164-.45.45-.45h8.1c.731 0 1.446.45 1.715 1.055l.009.02.74 1.425H3.75V4.2Zm-1.5 2.05V4.2c0-1.114.836-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.08 2.077H17A4.762 4.762 0 0 1 21.75 11v6A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V6.25Zm1.5 1.5V17c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 17v-6A3.262 3.262 0 0 0 17 7.75H3.75Z", "key": "3646c0428466fc94edfc0390f1f1373a40c474be" }]]);
const FolderAdd = createMeisterIcons("folder-add", [["path", { "fill": "currentColor", "d": "M3.75 4.2c0-.286.164-.45.45-.45h8.1c.731 0 1.446.45 1.715 1.055l.009.02.74 1.425H3.75V4.2Zm-1.5 2.05V4.2c0-1.114.836-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.08 2.077H17A4.762 4.762 0 0 1 21.75 11v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.75H3.75V17A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V6.25Zm11.75 8a.75.75 0 0 1 .75.75v2.25H17a.75.75 0 0 1 0 1.5h-2.25V21a.75.75 0 0 1-1.5 0v-2.25H11a.75.75 0 0 1 0-1.5h2.25V15a.75.75 0 0 1 .75-.75Z", "key": "17fe062a79746797e7d063c6c8279aa87b9916c1" }]]);
const FolderAddB = createMeisterIcons("folder-add-b", [["path", { "fill": "currentColor", "d": "M15.25 7a.75.75 0 0 1 .75-.75h1A4.762 4.762 0 0 1 21.75 11v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.75h-1a.75.75 0 0 1-.75-.75ZM3 6.25a.75.75 0 0 1 .75.75v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A.75.75 0 0 1 3 6.25Z", "key": "6020b1106524c5e0f35764b68aeacc97c60cbb4d" }], ["path", { "fill": "currentColor", "d": "M16 7H3V4.2C3 3.5 3.6 3 4.2 3h8.1c1 0 2 .6 2.4 1.5L16 7Z", "key": "f0c6507579c5f1e4587a3dddb2364d10e48e888a" }], ["path", { "fill": "currentColor", "d": "M3.89 3.883a.427.427 0 0 0-.14.317v2.05h11.015l-.741-1.424-.01-.021C13.747 4.2 13.033 3.75 12.3 3.75H4.2a.47.47 0 0 0-.31.133ZM2.25 4.2c0-1.154.977-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.86 3.577H2.25V4.2ZM14 14.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "fc3a4bb6cc7fde2233c34c726eccf86737e99e98" }], ["path", { "fill": "currentColor", "d": "M10.25 18a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "3fa0e76529158eee34369415c1ce7e53b6e13b85" }]]);
const FolderB = createMeisterIcons("folder-b", [["path", { "fill": "currentColor", "d": "M2.25 6.25H17c2.602 0 4.75 2.024 4.75 4.75v6A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V6.25Zm1.5 1.5V17A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17v-6c0-1.874-1.452-3.25-3.25-3.25H3.75Z", "key": "f970d0819b0c5e1be081932930ecd30becab0cfd" }], ["path", { "fill": "currentColor", "d": "M16 7H3V4.2C3 3.5 3.6 3 4.2 3h8.1c1 0 2 .6 2.4 1.5L16 7Z", "key": "90baeb9291dbb681073eea2abd59442b821d5cd3" }], ["path", { "fill": "currentColor", "d": "M3.89 3.883a.427.427 0 0 0-.14.317v2.05h11.015l-.741-1.424-.01-.021C13.747 4.2 13.033 3.75 12.3 3.75H4.2a.47.47 0 0 0-.31.133ZM2.25 4.2c0-1.154.977-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.86 3.577H2.25V4.2Z", "key": "28cdb83045cc7885a31826c9324a8f5a68725ba7" }]]);
const FolderBlock = createMeisterIcons("folder-block", [["path", { "fill": "currentColor", "d": "M3.75 4.2c0-.286.164-.45.45-.45h8.1c.731 0 1.446.45 1.715 1.055l.009.02.74 1.425H3.75V4.2Zm-1.5 2.05V4.2c0-1.114.836-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.08 2.077H17A4.762 4.762 0 0 1 21.75 11v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.75H3.75V17A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V6.25Zm12.535 8.804c-.994-.59-2.327-.45-3.255.476l-.01.01-.01.01c-.892.828-1.06 2.155-.442 3.221l3.717-3.717Zm-2.668 4.79c1.018.596 2.4.444 3.233-.454l.02-.02.02-.02c.892-.828 1.06-2.154.442-3.22l-3.715 3.714Zm-1.638-5.384c1.68-1.669 4.356-1.698 5.961.02 1.665 1.675 1.698 4.345-.01 5.95-1.596 1.697-4.378 1.693-5.97-.01-1.669-1.678-1.698-4.355.02-5.96Z", "key": "88eaa4db233d72e06f234624e53a6ec1e4d8fb61" }]]);
const FolderBlockB = createMeisterIcons("folder-block-b", [["path", { "fill": "currentColor", "d": "M15.35 15.51c-.992-1.069-2.701-1.098-3.82.02l-.01.01-.01.01c-1.069.992-1.098 2.701.02 3.82l.01.01.01.01c1.003 1.08 2.797 1.08 3.8 0l.02-.02.02-.02c1.069-.992 1.098-2.701-.02-3.82l-.01-.01-.01-.01Zm1.09-1.03c-1.605-1.718-4.282-1.689-5.96-.02-1.718 1.605-1.689 4.282-.02 5.96 1.592 1.703 4.374 1.706 5.97.01 1.708-1.606 1.675-4.275.01-5.95Z", "key": "29930fc764739c2bee3e7ddbd82b96efe1e681e6" }], ["path", { "fill": "currentColor", "d": "m10.47 19.37 4.9-4.9 1.06 1.06-4.9 4.9-1.06-1.06ZM15.25 7a.75.75 0 0 1 .75-.75h1A4.762 4.762 0 0 1 21.75 11v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.75h-1a.75.75 0 0 1-.75-.75ZM3 6.25a.75.75 0 0 1 .75.75v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A.75.75 0 0 1 3 6.25Z", "key": "46450ea3e1fd5b4daa0fb9e83603105bcb82ecf5" }], ["path", { "fill": "currentColor", "d": "M16 7H3V4.2C3 3.5 3.6 3 4.2 3h8.1c1 0 2 .6 2.4 1.5L16 7Z", "key": "0aa2ef79584b7f4bbfbf222571807fdc77c092ea" }], ["path", { "fill": "currentColor", "d": "M3.89 3.883a.427.427 0 0 0-.14.317v2.05h11.015l-.741-1.424-.01-.021C13.747 4.2 13.033 3.75 12.3 3.75H4.2a.47.47 0 0 0-.31.133ZM2.25 4.2c0-1.154.977-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.86 3.577H2.25V4.2Z", "key": "6ac24ceb917f3dc052454a71cdab8ace5bf7d413" }]]);
const FolderCheck = createMeisterIcons("folder-check", [["path", { "fill": "currentColor", "d": "M4.2 3.712c-.286 0-.45.165-.45.45v2.05h11.015l-.741-1.424-.01-.021c-.268-.605-.982-1.055-1.714-1.055H4.2Zm-1.95.45v12.8A4.762 4.762 0 0 0 7 21.712a.75.75 0 0 0 0-1.5 3.262 3.262 0 0 1-3.25-3.25v-9.25H17a3.262 3.262 0 0 1 3.25 3.25v6a.75.75 0 0 0 1.5 0v-6A4.762 4.762 0 0 0 17 6.212h-.545l-1.08-2.077c-.537-1.182-1.815-1.923-3.075-1.923H4.2c-1.114 0-1.95.836-1.95 1.95ZM17.524 17.5a.75.75 0 1 0-1.048-1.073l-3.72 3.629-1.156-1.543a.75.75 0 1 0-1.2.9l1.532 2.043.038.038c.222.222.506.294.73.294.222 0 .504-.07.726-.29l4.098-3.998Z", "key": "a048984aa991f6e4321b85ebbf827adaa181dc3e" }]]);
const FolderCheckB = createMeisterIcons("folder-check-b", [["path", { "fill": "currentColor", "d": "M15.25 6.962a.75.75 0 0 1 .75-.75h1a4.762 4.762 0 0 1 4.75 4.75v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.712h-1a.75.75 0 0 1-.75-.75ZM3 6.212a.75.75 0 0 1 .75.75v10A3.262 3.262 0 0 0 7 20.212a.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-10a.75.75 0 0 1 .75-.75Z", "key": "0330205cc193d604cf96ee6a002c558d1e029f92" }], ["path", { "fill": "currentColor", "d": "M16 6.962H3v-2.8c0-.7.6-1.2 1.2-1.2h8.1c1 0 2 .6 2.4 1.5l1.3 2.5Z", "key": "cd2cd7df22a977feafd3f120dc49af83b34d6707" }], ["path", { "fill": "currentColor", "d": "M3.89 3.845a.427.427 0 0 0-.14.317v2.05h11.015l-.741-1.424-.01-.021c-.268-.605-.982-1.055-1.714-1.055H4.2a.47.47 0 0 0-.31.133Zm-1.64.317c0-1.154.977-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.86 3.577H2.25v-3.55Zm15.287 12.277a.75.75 0 0 1-.013 1.06l-4.098 3.998a1.03 1.03 0 0 1-.726.29c-.224 0-.508-.072-.73-.294l-.038-.038-1.532-2.043a.75.75 0 1 1 1.2-.9l1.157 1.543 3.72-3.63a.75.75 0 0 1 1.06.014Z", "key": "769e4d55d3e00a24a7da355338eb07d522be824b" }]]);
const FolderCross = createMeisterIcons("folder-cross", [["path", { "fill": "currentColor", "d": "M3.75 4.15c0-.286.164-.45.45-.45h8.1c.731 0 1.446.45 1.715 1.054l.009.021.74 1.425H3.75V4.15ZM2.25 6.2V4.15c0-1.115.836-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.08 2.077H17a4.762 4.762 0 0 1 4.75 4.75v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.7H3.75v9.25A3.262 3.262 0 0 0 7 20.2a.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75V6.2Zm15.38 10.02a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 1 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 1 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 1 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "a3d38df8d7059ed32aab8d53ff1e1658bc4cf406" }]]);
const FolderCrossB = createMeisterIcons("folder-cross-b", [["path", { "fill": "currentColor", "d": "M15.25 6.95A.75.75 0 0 1 16 6.2h1a4.762 4.762 0 0 1 4.75 4.75v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.7h-1a.75.75 0 0 1-.75-.75ZM3 6.2a.75.75 0 0 1 .75.75v10A3.262 3.262 0 0 0 7 20.2a.75.75 0 1 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-10A.75.75 0 0 1 3 6.2Z", "key": "db14fade088c88f3f588799304e7b97499b1b29a" }], ["path", { "fill": "currentColor", "d": "M16 6.95H3v-2.8c0-.7.6-1.2 1.2-1.2h8.1c1 0 2 .6 2.4 1.5l1.3 2.5Z", "key": "fba43d050a3876dad55bf2414d818de94d021096" }], ["path", { "fill": "currentColor", "d": "M3.89 3.833a.427.427 0 0 0-.14.317V6.2h11.015l-.741-1.424-.01-.021C13.747 4.15 13.033 3.7 12.3 3.7H4.2a.47.47 0 0 0-.31.133Zm-1.64.317c0-1.154.977-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.86 3.577H2.25V4.15Zm15.38 12.07a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 1 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "3a9d647e4bba8a289b890011352e06aa271df7c5" }], ["path", { "fill": "currentColor", "d": "M12.27 16.22a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 1 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "f8a93ff331ea59ca0997c784edfc4057b75fc81f" }]]);
const FolderHeart = createMeisterIcons("folder-heart", [["path", { "fill": "currentColor", "d": "M12.6 16.15a.907.907 0 0 0-.67.28c-.297.297-.306.891-.03 1.208l.393.294 1.757 1.757 1.72-1.72.16-.16c.244-.334.32-.56.32-.71a.907.907 0 0 0-.28-.669c-.308-.307-.933-.307-1.24 0l-.73.73-.691-.69c-.334-.244-.56-.32-.709-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.037.038.4.3 1.721 1.72c.242.315.601.487.984.487.396 0 .753-.18 1.018-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.72-.294-1.305-.72-1.73-.796-.797-2.135-.883-3.05-.258Zm-.03 4.675v-.001Z", "key": "975c515f2babb4c4e9e3b815fcb7200a719719a1" }], ["path", { "fill": "currentColor", "d": "M2.25 6.25H17A4.762 4.762 0 0 1 21.75 11v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.75H3.75V17A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V6.25Z", "key": "6c13aa4d0dfbe3f5021fe9cd81b476274ffce181" }], ["path", { "fill": "currentColor", "d": "M4.2 3.75c-.286 0-.45.164-.45.45v2.05h11.015l-.741-1.424-.01-.021C13.747 4.2 13.033 3.75 12.3 3.75H4.2Zm-1.95.45c0-1.114.836-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.86 3.577H2.25V4.2Z", "key": "7787d28b89d6e5a367dc1512fc3ff2a656635b18" }]]);
const FolderHeartB = createMeisterIcons("folder-heart-b", [["path", { "fill": "currentColor", "d": "M12.6 16.15a.907.907 0 0 0-.67.28c-.297.297-.306.891-.03 1.208l.393.294 1.757 1.757 1.72-1.72.16-.16c.244-.334.32-.56.32-.71a.907.907 0 0 0-.28-.669c-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.037.038.4.3 1.721 1.72c.242.315.601.487.984.487.396 0 .753-.18 1.018-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.72-.294-1.305-.72-1.73-.796-.797-2.135-.883-3.05-.258Zm-.03 4.675v-.001ZM15.25 7a.75.75 0 0 1 .75-.75h1A4.762 4.762 0 0 1 21.75 11v6a.75.75 0 0 1-1.5 0v-6A3.262 3.262 0 0 0 17 7.75h-1a.75.75 0 0 1-.75-.75ZM3 6.25a.75.75 0 0 1 .75.75v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A.75.75 0 0 1 3 6.25Z", "key": "9c9d506b7b0cd064b19151e852c6a40419f8bc4a" }], ["path", { "fill": "currentColor", "d": "M16 7H3V4.2C3 3.5 3.5 3 4.2 3h8.1c1 0 2 .6 2.4 1.5L16 7Z", "key": "1106fbb68cc9bca650e1995df4a025e957a592bf" }], ["path", { "fill": "currentColor", "d": "M4.2 3.75c-.286 0-.45.164-.45.45v2.05h11.015l-.741-1.424-.01-.021C13.747 4.2 13.033 3.75 12.3 3.75H4.2Zm-1.95.45c0-1.114.836-1.95 1.95-1.95h8.1c1.26 0 2.538.74 3.075 1.923l1.86 3.577H2.25V4.2Z", "key": "25b0ead9a8a2842595c23e95eb80dfc4b1bff333" }]]);
const FoldersShelf = createMeisterIcons("folders-shelf", [["path", { "fill": "currentColor", "d": "M5.3 3.7a.575.575 0 0 0-.55.55v15.5c0 .286.264.55.55.55h3.4c.25 0 .55-.227.55-.65V4.25a.575.575 0 0 0-.55-.55H5.3Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h3.4c1.114 0 2.05.936 2.05 2.05v15.4c0 1.178-.9 2.15-2.05 2.15H5.3a2.073 2.073 0 0 1-2.05-2.05V4.25ZM15.3 3.7a.575.575 0 0 0-.55.55v15.5c0 .286.264.55.55.55h3.4c.117 0 .22-.044.317-.152.1-.11.194-.295.233-.55V4.25a.575.575 0 0 0-.55-.55h-3.4Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h3.4c1.114 0 2.05.936 2.05 2.05v15.447l-.006.046c-.127 1.014-.823 2.057-2.044 2.057h-3.4a2.073 2.073 0 0 1-2.05-2.05V4.25Z", "key": "e08652da2f0f461df602eb969b3b1dbf35cc710e" }], ["path", { "fill": "currentColor", "d": "M10 7.4H4.1V5.9H10v1.5Zm4 3.9h5.9v1.5H14v-1.5Zm3-2.65c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm-10 8.5c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "ca0d6af45caf7c245d4c53e63ed7382f62be63dc" }]]);
const FoldersShelfB = createMeisterIcons("folders-shelf-b", [["path", { "fill": "currentColor", "d": "M10.05 4.25v2.3h-5.9v-2.3c0-.7.6-1.3 1.3-1.3h3.3c.7.1 1.3.6 1.3 1.3Z", "key": "6ca3c287974b09ceb30b4cc89d0ef3e3babd4253" }], ["path", { "fill": "currentColor", "d": "M5.45 3.7a.575.575 0 0 0-.55.55V5.8h4.4V4.25a.44.44 0 0 0-.153-.33.914.914 0 0 0-.457-.22H5.45Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h3.353l.053.008c.934.133 1.944.847 1.944 2.042V7.3H3.4V4.25Z", "key": "04bb62a6df4cb8dcad08b7a678c2732b543b6d9e" }], ["path", { "fill": "currentColor", "d": "M3.3 5.9h7.5v13.85c0 1.114-.936 2.05-2.05 2.05h-3.4a2.073 2.073 0 0 1-2.05-2.05V5.9Zm1.5 1.5v12.35c0 .286.264.55.55.55h3.4c.286 0 .55-.264.55-.55V7.4H4.8Zm15.15 4.65v7.7c0 .7-.6 1.3-1.3 1.3h-3.3c-.7 0-1.3-.6-1.3-1.3v-7.7h5.9Z", "key": "55a996d981bb1c89da4bc9574b4e67ac7610968e" }], ["path", { "fill": "currentColor", "d": "M13.3 11.3h7.4v8.45c0 1.114-.936 2.05-2.05 2.05h-3.3a2.073 2.073 0 0 1-2.05-2.05V11.3Zm1.5 1.5v6.95c0 .286.264.55.55.55h3.3c.286 0 .55-.264.55-.55V12.8h-4.4Z", "key": "98af0ae2cfde495bb0f6f3f7746833dc07f5202c" }], ["path", { "fill": "currentColor", "d": "M15.35 3.7a.575.575 0 0 0-.55.55v6.95h4.4V4.25a.459.459 0 0 0-.13-.345c-.08-.08-.228-.167-.471-.205H15.35Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h3.347l.046.006c.531.066 1.022.273 1.387.639.372.372.57.865.57 1.405v8.45h-7.4V4.25Z", "key": "ae1c7937a8a8e4f3f61d3757da2d646b0c72a60b" }], ["path", { "fill": "currentColor", "d": "M17.05 8.65c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm-10 8.5c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "ed7765a7f9846332cd8b9690585a584f9edfa58e" }]]);
const Football = createMeisterIcons("football", [["path", { "fill": "currentColor", "d": "M5.75 6c0-1.286.964-2.25 2.25-2.25h.25V6c0 .47.16.92.495 1.255.334.335.785.495 1.255.495h4c.494 0 .925-.24 1.218-.532.293-.293.532-.724.532-1.218V3.75H16c1.286 0 2.25.964 2.25 2.25v5.25h-3.604a2.751 2.751 0 0 0-5.292 0H5.75V6Zm-1.5 6v6c0 2.114 1.636 3.75 3.75 3.75h8c2.014 0 3.75-1.736 3.75-3.75V6c0-2.114-1.636-3.75-3.75-3.75H8C5.886 2.25 4.25 3.886 4.25 6v6Zm1.5.75h3.604a2.751 2.751 0 0 0 5.293 0h3.603V18c0 1.186-1.064 2.25-2.25 2.25h-.25V18c0-.47-.16-.92-.495-1.255-.334-.335-.785-.495-1.255-.495h-4c-.47 0-.92.16-1.255.495-.335.334-.495.785-.495 1.255v2.25H8c-1.286 0-2.25-.964-2.25-2.25v-5.25Zm5-.75a1.25 1.25 0 1 0 2.5 0 1.25 1.25 0 0 0-2.5 0Zm3.5 6v2.25h-4.5V18c0-.13.04-.18.055-.195.016-.015.065-.055.195-.055h4c.13 0 .18.04.195.055.015.016.055.065.055.195Zm0-14.25h-4.5V6c0 .13.04.18.055.195.016.015.065.055.195.055h4c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157V3.75Z", "key": "1e224aeb7af3b44e807fda218ff726b0260099d8" }]]);
const FootballA = createMeisterIcons("football-a", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h5.25v3.604a2.751 2.751 0 0 0 0 5.293v3.603H6c-1.286 0-2.25-.964-2.25-2.25v-.25H6c.47 0 .92-.16 1.255-.495.335-.334.495-.785.495-1.255v-4c0-1.062-.885-1.75-1.75-1.75H3.75V8Zm9 10.25v-3.604a2.751 2.751 0 0 0 0-5.292V5.75H18c1.202 0 2.25.98 2.25 2.25v.25H18c-.47 0-.92.16-1.255.495-.335.334-.495.785-.495 1.255v4c0 .47.16.92.495 1.255.334.335.785.495 1.255.495h2.25V16c0 1.286-.964 2.25-2.25 2.25h-5.25Zm-.75 1.5h6c2.114 0 3.75-1.636 3.75-3.75V8c0-2.13-1.752-3.75-3.75-3.75H6C3.886 4.25 2.25 5.886 2.25 8v8c0 2.114 1.636 3.75 3.75 3.75h6Zm0-6.5a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Zm6-3.5h2.25v4.5H18c-.13 0-.18-.04-.195-.055-.015-.016-.055-.065-.055-.195v-4c0-.13.04-.18.055-.195.016-.015.065-.055.195-.055Zm-14.25 0v4.5H6c.13 0 .18-.04.195-.055.015-.016.055-.065.055-.195v-4c0-.08-.03-.135-.074-.177A.27.27 0 0 0 6 9.75H3.75Z", "key": "000e02d5a749e6e2a5dc22c77119d47628166c18" }]]);
const FootballAb = createMeisterIcons("football-ab", [["path", { "fill": "currentColor", "d": "M6.05 5.8c-1.286 0-2.25.964-2.25 2.25v.25h2.25c.494 0 .925.24 1.218.532.293.293.532.724.532 1.218v4c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532H3.8v.25c0 1.286.964 2.25 2.25 2.25h5.25v-3.604a2.758 2.758 0 0 1-2-2.646c0-1.254.848-2.318 2-2.646V5.8H6.05ZM2.3 8.05c0-2.114 1.636-3.75 3.75-3.75h6.75v6.5h-.75c-.686 0-1.25.564-1.25 1.25s.564 1.25 1.25 1.25h.75v6.5H6.05c-2.114 0-3.75-1.636-3.75-3.75V14.3h3.75c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157v-4c0-.006-.01-.075-.093-.157-.082-.082-.15-.093-.157-.093H2.3V8.05Z", "key": "7d84e7b8b2969919ead8696068615f6ed5c0d08c" }], ["path", { "fill": "currentColor", "d": "M11.3 4.3h6.75c2.114 0 3.75 1.636 3.75 3.75V9.8h-3.75c-.006 0-.075.01-.157.093-.082.082-.093.15-.093.157v4c0 .006.01.075.093.157.082.082.15.093.157.093h3.75v1.75c0 2.014-1.736 3.75-3.75 3.75H11.3v-6.5h.75c.686 0 1.25-.564 1.25-1.25s-.564-1.25-1.25-1.25h-.75V4.3Zm1.5 1.5v3.604c1.152.328 2 1.392 2 2.646a2.758 2.758 0 0 1-2 2.646V18.3h5.25c1.186 0 2.25-1.064 2.25-2.25v-.25h-2.25c-.494 0-.925-.24-1.218-.532-.293-.293-.532-.724-.532-1.218v-4c0-.494.24-.925.532-1.218.293-.293.724-.532 1.218-.532h2.25v-.25c0-1.286-.964-2.25-2.25-2.25H12.8Z", "key": "355ff5a022ed6d39fed65c0cd39dab2b14b42666" }], ["path", { "fill": "currentColor", "d": "M21.05 15.05h-3c-.5 0-1-.5-1-1v-4c0-.5.5-1 1-1h3v6Z", "key": "0e50f20e26925a7db686eae9affd9891cf104e0a" }], ["path", { "fill": "currentColor", "d": "M17.893 9.893c-.082.082-.093.15-.093.157v4c0 .006.01.075.093.157.082.082.15.093.157.093h2.25V9.8h-2.25c-.006 0-.075.01-.157.093Zm-1.06-1.06c.292-.294.723-.533 1.217-.533h3.75v7.5h-3.75c-.494 0-.925-.24-1.218-.532-.293-.293-.532-.724-.532-1.218v-4c0-.494.24-.925.532-1.218ZM6.05 15.05h-3v-6h3c.5 0 1 .5 1 1v4c0 .5-.5 1-1 1Z", "key": "8df08001b1386a21a21d733f8621ef306f5df36b" }], ["path", { "fill": "currentColor", "d": "M2.3 8.3h3.75c.494 0 .925.24 1.218.532.293.293.532.724.532 1.218v4c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532H2.3V8.3Zm1.5 1.5v4.5h2.25c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157v-4c0-.006-.01-.075-.093-.157-.082-.082-.15-.093-.157-.093H3.8Zm8.25 4.25a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "0a71cd519ba7c93b63c43d025e0b9c22055c2f8e" }], ["path", { "fill": "currentColor", "d": "M12.05 10.8a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.3 12.05a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "94d9205ffda344478a4dea43444a7877ac15085d" }]]);
const FootballB = createMeisterIcons("football-b", [["path", { "fill": "currentColor", "d": "M4.3 11.3h6.5v.75c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.75h6.5v6.75c0 2.114-1.636 3.75-3.75 3.75H14.3v-3.75c0-.006-.01-.075-.093-.157-.082-.082-.15-.093-.157-.093h-4c-.006 0-.075.01-.157.093-.082.082-.093.15-.093.157v3.75H8.05c-2.114 0-3.75-1.636-3.75-3.75V11.3Zm1.5 1.5v5.25c0 1.286.964 2.25 2.25 2.25h.25v-2.25c0-.494.24-.925.532-1.218.293-.293.724-.532 1.218-.532h4c.494 0 .925.24 1.218.532.293.293.532.724.532 1.218v2.25h.25c1.286 0 2.25-.964 2.25-2.25V12.8h-3.604a2.758 2.758 0 0 1-2.646 2 2.758 2.758 0 0 1-2.646-2H5.8Z", "key": "6569be3b1276c563dc9429e7708e93ad4525a8a1" }], ["path", { "fill": "currentColor", "d": "M8.05 3.8c-1.286 0-2.25.964-2.25 2.25v5.25h3.604a2.758 2.758 0 0 1 2.646-2c1.254 0 2.318.848 2.646 2H18.3V6.05c0-1.27-1.048-2.25-2.25-2.25h-.25v2.25c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532h-4c-.494 0-.925-.24-1.218-.532C8.54 6.975 8.3 6.544 8.3 6.05V3.8h-.25ZM4.3 6.05c0-2.114 1.636-3.75 3.75-3.75H9.8v3.75c0 .006.01.075.093.157.082.082.15.093.157.093h4c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157V2.3h1.75c1.998 0 3.75 1.62 3.75 3.75v6.75h-6.5v-.75c0-.686-.564-1.25-1.25-1.25s-1.25.564-1.25 1.25v.75H4.3V6.05Z", "key": "55b783b01b6607ed75d9c7a38eb1bccd821e8fea" }], ["path", { "fill": "currentColor", "d": "M15.05 3.05v3c0 .5-.5 1-1 1h-4c-.5 0-1-.5-1-1v-3h6Z", "key": "e210a1c438fe0b6485c02a5091a4eb3b3df43a74" }], ["path", { "fill": "currentColor", "d": "M8.3 2.3h7.5v3.75c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532h-4c-.494 0-.925-.24-1.218-.532C8.54 6.975 8.3 6.544 8.3 6.05V2.3Zm1.5 1.5v2.25c0 .006.01.075.093.157.082.082.15.093.157.093h4c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157V3.8H9.8Zm5.25 14.25v3h-6v-3c0-.5.5-1 1-1h4c.5 0 1 .4 1 1Z", "key": "82922773dc3e76520051b5dcfe81908aeaa3d68a" }], ["path", { "fill": "currentColor", "d": "M9.893 17.893c-.082.082-.093.15-.093.157v2.25h4.5v-2.25c0-.08-.03-.135-.074-.177a.27.27 0 0 0-.176-.073h-4c-.006 0-.075.01-.157.093Zm-1.06-1.06c.292-.294.723-.533 1.217-.533h4c.865 0 1.75.688 1.75 1.75v3.75H8.3v-3.75c0-.494.24-.925.532-1.218Zm3.217-2.783a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "3c3793a13494bb7e39cc14b03247f61624895e90" }], ["path", { "fill": "currentColor", "d": "M12.05 10.8a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.3 12.05a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "9f2c1e41b8d8ca80cb4bcba53165ea5f39a3a414" }]]);
const Fork = createMeisterIcons("fork", [["path", { "fill": "currentColor", "d": "M11.9 15.45a.575.575 0 0 0-.55.55v3.1c0 .25.228.55.65.55.242 0 .362-.072.42-.13.058-.058.13-.178.13-.42V16a.575.575 0 0 0-.55-.55h-.1ZM9.85 16c0-1.114.936-2.05 2.05-2.05h.1c1.114 0 2.05.936 2.05 2.05v3.1c0 .558-.178 1.088-.57 1.48-.392.393-.922.57-1.48.57-1.178 0-2.15-.9-2.15-2.05V16Z", "key": "0086ee00a3d9a3df850ed501709246cd5e0fc1e7" }], ["path", { "fill": "currentColor", "d": "M12 2.85a.75.75 0 0 1 .75.75v11.1a.75.75 0 0 1-1.5 0V3.6a.75.75 0 0 1 .75-.75Z", "key": "2dac3e59ec7a922753bd592095c35f5720672b38" }], ["path", { "fill": "currentColor", "d": "M8.7 2.85a.75.75 0 0 1 .75.75v2.2c0 1.386 1.164 2.55 2.55 2.55s2.55-1.164 2.55-2.55V3.6a.75.75 0 0 1 1.5 0v2.2c0 2.214-1.836 4.05-4.05 4.05-2.214 0-4.05-1.836-4.05-4.05V3.6a.75.75 0 0 1 .75-.75Z", "key": "1f4b8d1fe4e2ed6e9478c4e9610b2a08845969f1" }]]);
const ForkB = createMeisterIcons("fork-b", [["path", { "fill": "currentColor", "d": "M12 20.4c-.8 0-1.4-.6-1.4-1.3V16c0-.7.6-1.3 1.3-1.3h.1c.7 0 1.3.6 1.3 1.3v3.1c0 .8-.5 1.3-1.3 1.3Z", "key": "70522bbb3059b3059a0e2b7a395786482b5e34f1" }], ["path", { "fill": "currentColor", "d": "M11.9 15.45a.575.575 0 0 0-.55.55v3.1c0 .25.228.55.65.55.242 0 .362-.072.42-.13.058-.058.13-.178.13-.42V16a.575.575 0 0 0-.55-.55h-.1ZM9.85 16c0-1.114.936-2.05 2.05-2.05h.1c1.114 0 2.05.936 2.05 2.05v3.1c0 .558-.178 1.088-.57 1.48-.392.393-.922.57-1.48.57-1.178 0-2.15-.9-2.15-2.05V16Z", "key": "fba6389b19810180f0ac0d49b80869771398d1e8" }], ["path", { "fill": "currentColor", "d": "M12 2.85a.75.75 0 0 1 .75.75v11.1a.75.75 0 0 1-1.5 0V3.6a.75.75 0 0 1 .75-.75Z", "key": "f0670a4a1ce0332b23fbd56f36a916d1536cee3c" }], ["path", { "fill": "currentColor", "d": "M8.7 2.85a.75.75 0 0 1 .75.75v2.2c0 1.386 1.164 2.55 2.55 2.55s2.55-1.164 2.55-2.55V3.6a.75.75 0 0 1 1.5 0v2.2c0 2.214-1.836 4.05-4.05 4.05-2.214 0-4.05-1.836-4.05-4.05V3.6a.75.75 0 0 1 .75-.75Z", "key": "3f6ea20e35d2052def209f051cb3d8e01829e1eb" }]]);
const ForkDiag = createMeisterIcons("fork-diag", [["path", { "fill": "currentColor", "d": "M7.735 15.425 5.613 17.65l-.033.027c-.14.117-.18.236-.18.336 0 .109.048.275.23.458a.517.517 0 0 0 .73.009l2.098-2.297.012-.012a.518.518 0 0 0 0-.74.517.517 0 0 0-.735-.005ZM6.67 14.37a2.017 2.017 0 0 1 2.86 0c.789.788.793 2.053.014 2.847l-2.102 2.301-.012.012a2.017 2.017 0 0 1-2.86 0c-.418-.418-.67-.95-.67-1.518 0-.56.247-1.077.684-1.458l2.08-2.178.006-.006Z", "key": "1f81105bf2c9a17448e772a03cb1ce16950bd6ed" }], ["path", { "fill": "currentColor", "d": "M17.53 6.47a.75.75 0 0 1 0 1.06l-7.9 7.9a.75.75 0 0 1-1.06-1.06l7.9-7.9a.75.75 0 0 1 1.06 0Z", "key": "47568304d681271abeae46824f67a03f41a14bcb" }], ["path", { "fill": "currentColor", "d": "M15.13 4.17a.75.75 0 0 1 0 1.06l-1.6 1.6a2.57 2.57 0 0 0 0 3.64 2.57 2.57 0 0 0 3.64 0l1.6-1.6a.75.75 0 1 1 1.06 1.06l-1.6 1.6a4.07 4.07 0 0 1-5.76 0 4.07 4.07 0 0 1 0-5.76l1.6-1.6a.75.75 0 0 1 1.06 0Z", "key": "3cb57801e8c163a1cade65e22653881f5b215a5c" }]]);
const ForkDiagB = createMeisterIcons("fork-diag-b", [["path", { "fill": "currentColor", "d": "M5.1 19c-.6-.6-.6-1.4 0-1.9l2.1-2.2c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8L6.9 19c-.5.5-1.3.5-1.8 0Z", "key": "9354ae4cd2e367d980e1b8adf6d5598609370eb1" }], ["path", { "fill": "currentColor", "d": "M7.735 15.425 5.613 17.65l-.033.027c-.14.117-.18.236-.18.336 0 .109.048.275.23.458a.517.517 0 0 0 .73.009l2.098-2.297.012-.012a.518.518 0 0 0 0-.74.517.517 0 0 0-.735-.005ZM6.67 14.37a2.017 2.017 0 0 1 2.86 0c.789.788.793 2.053.014 2.847l-2.102 2.301-.012.012a2.017 2.017 0 0 1-2.86 0c-.418-.418-.67-.95-.67-1.518 0-.56.247-1.077.684-1.458l2.08-2.178.006-.006Z", "key": "2af74fbfab2f240bc086564552b0f964a92bc018" }], ["path", { "fill": "currentColor", "d": "M17.53 6.47a.75.75 0 0 1 0 1.06l-7.9 7.9a.75.75 0 0 1-1.06-1.06l7.9-7.9a.75.75 0 0 1 1.06 0Z", "key": "88003dbafeac007bd6c165bb495f3272c65d868e" }], ["path", { "fill": "currentColor", "d": "M15.13 4.17a.75.75 0 0 1 0 1.06l-1.6 1.6a2.57 2.57 0 0 0 0 3.64 2.57 2.57 0 0 0 3.64 0l1.6-1.6a.75.75 0 1 1 1.06 1.06l-1.6 1.6a4.07 4.07 0 0 1-5.76 0 4.07 4.07 0 0 1 0-5.76l1.6-1.6a.75.75 0 0 1 1.06 0Z", "key": "8163262e3f19473e9d6e58bbf29e0189e34609fc" }]]);
const Frame1039 = createMeisterIcons("frame1039", [["path", { "stroke": "#000", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M8 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4ZM8 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0 9V7m9-2s0 7-9 7", "key": "1d7b3cb94e39dcc55a7474f92662e0450976cbe6" }], ["path", { "stroke": "#000", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "m14.1 6.5 2.4-1.8c.2-.2.6-.1.7.1L19 7.2", "key": "42f8b716b81d1769c9c74633aa8659f6570545f0" }]]);
const Frame964 = createMeisterIcons("frame964", [["g", { "stroke": "#000", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "clip-path": "url(#prefix__a)", "key": "109ff674093d8fc7e23b56896a9bf19e6bbb46b4" }], ["defs", { "key": "ffdef3dd75e4762e23bb943e2c33fbd9a31ec1d0" }]]);
const Fruits = createMeisterIcons("fruits", [["path", { "fill": "currentColor", "d": "M2.7 9.75h18v1.979c-.11 2.835-1.529 5.352-3.72 6.885a.75.75 0 1 1-.86-1.228c1.805-1.264 2.985-3.342 3.08-5.7v-.436h-15v.05c0 2.54 1.269 4.727 3.1 6.1a.75.75 0 1 1-.9 1.2c-2.169-1.627-3.7-4.24-3.7-7.3V9.75Z", "key": "86ff8a8a45bc9ff9c027a3f1994901bfedb758fa" }], ["path", { "fill": "currentColor", "d": "M16.04 18.75H7.35a2.985 2.985 0 0 0-.123.002.368.368 0 0 0-.092.1A.278.278 0 0 0 7.1 19v.2a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h8.8a.27.27 0 0 0 .176-.073.228.228 0 0 0 .074-.177V19a.29.29 0 0 0-.012-.094.077.077 0 0 0-.014-.026c-.007-.008-.033-.034-.106-.052l-.201-.05-.028-.028Zm.755-1.329a1.237 1.237 0 0 0-.71-.171H7.332c-.087 0-.218 0-.356.023a1.603 1.603 0 0 0-.462.156l-.042.021-.039.026c-.473.315-.834.833-.834 1.524v.2c0 .865.688 1.75 1.75 1.75h8.8c.865 0 1.75-.688 1.75-1.75V19a1.66 1.66 0 0 0-.374-1.08 1.651 1.651 0 0 0-.73-.499ZM7.95 6.05A3.731 3.731 0 0 0 4.2 9.8a.996.996 0 0 0 .038.253c.021.088.062.266.062.447a.75.75 0 1 1-1.5 0s-.002-.016-.032-.15A2.454 2.454 0 0 1 2.7 9.8a5.231 5.231 0 0 1 5.25-5.25c1.278 0 2.451.463 3.288 1.18a.75.75 0 1 1-.976 1.14c-.563-.483-1.39-.82-2.312-.82Z", "key": "4c7775a82990f6c71fd9d3b71ca2fb2606e041c1" }], ["path", { "fill": "currentColor", "d": "M11.408 6.662c-.36.727-.608 1.501-.608 2.338 0 .515.085.949.178 1.318a.75.75 0 0 1-1.456.364A6.8 6.8 0 0 1 9.3 9c0-1.153.347-2.17.78-3.035l.012-.026.015-.025C11.129 4.211 13.06 2.95 15.25 2.95h.025C18.637 3.062 21.4 5.655 21.4 9c0 1.153-.347 2.17-.78 3.035a.75.75 0 0 1-1.34-.67c.367-.735.62-1.518.62-2.365 0-2.451-2.03-4.456-4.662-4.55-1.596.005-3.05.93-3.83 2.212Z", "key": "b51febcf9332d0e470eede3405542a9b59eb52ba" }]]);
const Gameboy = createMeisterIcons("gameboy", [["path", { "fill": "currentColor", "d": "M6.7 3.3c-.486 0-.95.464-.95.95v15.5c0 .486.464.95.95.95h10.6c.486 0 .95-.464.95-.95V4.25c0-.486-.464-.95-.95-.95H6.7Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h10.6c1.314 0 2.45 1.136 2.45 2.45v15.5c0 1.314-1.136 2.45-2.45 2.45H6.7c-1.314 0-2.45-1.136-2.45-2.45V4.25Z", "key": "c1d16997dc60b455cece986bb7f3b7d8cef59b70" }], ["path", { "fill": "currentColor", "d": "M4.35 12.05a.75.75 0 0 1 .75-.75H19a.75.75 0 0 1 0 1.5H5.1a.75.75 0 0 1-.75-.75Zm2.6 4.5a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z", "key": "86318cd9c08925edc2bf02d1dfeeb3d2f3ad851e" }], ["path", { "fill": "currentColor", "d": "M9.7 13.8a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm5.8 1.95c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5s.1-.4.2-.5c.2-.2.6-.3.8-.2.1 0 .2.1.2.2.1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.2.1-.2.2h-.3Zm0 3.1c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Z", "key": "22f40001f00175129ed689d6ce5ce21c0b4ce5c4" }]]);
const GameboyB = createMeisterIcons("gameboy-b", [["path", { "fill": "currentColor", "d": "M18.95 4.25v7.7H5.05v-7.7c0-.9.8-1.7 1.7-1.7h10.5c.9.1 1.7.8 1.7 1.7Z", "key": "5ba6db1665b06d571aa312f1b6cd70ed225f4403" }], ["path", { "fill": "currentColor", "d": "M6.75 3.3c-.486 0-.95.464-.95.95v6.95h12.4V4.25c0-.412-.392-.867-.996-.95H6.75Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h10.542l.04.005c1.175.13 2.368 1.066 2.368 2.445v8.45H4.3V4.25Z", "key": "e3043344c2a50d41ce4222e486b902b7dd63ba89" }], ["path", { "fill": "currentColor", "d": "M4.3 11.3h15.4v8.45c0 1.314-1.136 2.45-2.45 2.45H6.75c-1.314 0-2.45-1.136-2.45-2.45V11.3Zm1.5 1.5v6.95c0 .486.464.95.95.95h10.5c.486 0 .95-.464.95-.95V12.8H5.8Z", "key": "b95abf5a5c24c6a21af5547bdb2566b9a4fee496" }], ["path", { "fill": "currentColor", "d": "M6.9 16.55a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z", "key": "8a200ffbfc6626a96c68910f87f208148e005bf1" }], ["path", { "fill": "currentColor", "d": "M9.65 13.8a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm5.8 1.95c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5s.1-.4.2-.5c.2-.2.6-.3.8-.2.1 0 .2.1.2.2.1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.2.1-.2.2h-.3Zm0 3.1c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Z", "key": "c7d2ff008f099fc6539a7ea3e40ceeba180823f3" }]]);
const Git = createMeisterIcons("git", [["path", { "fill": "currentColor", "d": "M7.5 4.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm2.75 1.25a2.75 2.75 0 0 1-2 2.646v3.592c3.848-.13 5.684-1.258 6.568-2.24a3.78 3.78 0 0 0 .81-1.39 2.751 2.751 0 1 1 1.535.062c-.022.1-.05.21-.085.327a5.26 5.26 0 0 1-1.146 2.005c-1.238 1.376-3.524 2.605-7.682 2.736v2.616a2.751 2.751 0 1 1-1.5 0V8.146a2.751 2.751 0 1 1 3.5-2.646Zm6.25 1.25a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5ZM6.25 18.5a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Z", "key": "484b8768e107866d804a035323744761e188b752" }]]);
const GitAlt = createMeisterIcons("git-alt", [["path", { "fill": "currentColor", "d": "M16.75 4.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM19.5 5.5c0 1.29-.889 2.373-2.087 2.67-.022.1-.05.21-.085.327a5.26 5.26 0 0 1-1.145 2.005c-1.239 1.376-3.524 2.605-7.683 2.736V15.5c0 .12-.028.232-.078.333a2.751 2.751 0 1 1-1.344 0A.747.747 0 0 1 7 15.5V5.81L5.78 7.03a.75.75 0 0 1-1.06-1.06l2.1-2.1c.537-.538 1.261-.417 1.746-.094l.062.041L10.78 5.97a.75.75 0 1 1-1.06 1.06L8.5 5.81v5.928c3.848-.13 5.684-1.258 6.568-2.24a3.78 3.78 0 0 0 .81-1.39A2.751 2.751 0 1 1 19.5 5.5ZM7.75 17.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Z", "key": "390899b3d7cb05d7f1e70b15c0d528f88be9f421" }]]);
const GitAltB = createMeisterIcons("git-alt-b", [["path", { "fill": "currentColor", "d": "M7.65 20.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "214e75e265dda62bab13862c26790edcdedce653" }], ["path", { "fill": "currentColor", "d": "M7.65 17.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM4.9 18.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm11.85-11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "0d556fe44c4ff22cd0ade578e906301d3a303e3f" }], ["path", { "fill": "currentColor", "d": "M16.75 4.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM14 5.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm-6.35-.75a.75.75 0 0 1 .75.75v10a.75.75 0 0 1-1.5 0v-10a.75.75 0 0 1 .75-.75Z", "key": "34b63df0d28c1835f6313d9e194605058134ee2f" }], ["path", { "fill": "currentColor", "d": "M16.75 6.75a.75.75 0 0 1 .75.75h-.75l.75.001v.035a2.388 2.388 0 0 1-.024.274 4.32 4.32 0 0 1-.148.687 5.26 5.26 0 0 1-1.145 2.005c-1.311 1.456-3.796 2.748-8.433 2.748a.75.75 0 0 1 0-1.5c4.363 0 6.378-1.208 7.318-2.252a3.76 3.76 0 0 0 .823-1.432 2.822 2.822 0 0 0 .108-.555L16 7.493v-.001.006M7.75 5.06l1.97 1.97a.75.75 0 1 0 1.06-1.06L8.628 3.817l-.062-.041c-.485-.323-1.209-.444-1.746.094l-2.1 2.1a.75.75 0 0 0 1.06 1.06l1.97-1.97Z", "key": "f09625db9e28e27ff7b6291d0ade8535b8cbf612" }]]);
const GitArrowUp = createMeisterIcons("git-arrow-up", [["path", { "fill": "currentColor", "d": "M7.5 21.25c-1.5 0-2.8-1.2-2.8-2.8 0-1.6 1.2-2.7 2.8-2.7 1.6 0 2.8 1.2 2.8 2.8 0 1.6-1.3 2.7-2.8 2.7Zm0-4c-.7 0-1.3.6-1.3 1.3 0 .7.6 1.2 1.3 1.2.7 0 1.2-.6 1.2-1.2s-.6-1.3-1.2-1.3Zm0-9c-1.6 0-2.8-1.2-2.8-2.7 0-1.5 1.2-2.8 2.8-2.8 1.6 0 2.8 1.2 2.8 2.8 0 1.6-1.3 2.7-2.8 2.7Zm0-4c-.7 0-1.3.6-1.3 1.3 0 .7.6 1.2 1.3 1.2.7 0 1.2-.6 1.2-1.2s-.6-1.3-1.2-1.3Z", "key": "32e0ba8a7263b92e4f5ac46bc4d081e0b294e974" }], ["path", { "fill": "currentColor", "d": "M7.5 17.25c-.4 0-.8-.3-.8-.8v-9c0-.4.3-.7.8-.7s.8.3.8.8v9c-.1.4-.4.7-.8.7Z", "key": "b836b939768c66ec470002f7f65ce81a6f1b6908" }], ["path", { "fill": "currentColor", "d": "M7.5 13.25c-.5 0-.8-.3-.8-.7 0-.4.3-.8.8-.8 8.1 0 8.2-6 8.2-6.2 0-.5.3-.8.8-.8s.8.3.8.8c-.1 0-.2 7.7-9.8 7.7Z", "key": "bfce179e163f77877b5d4e353b3b7984c42817de" }], ["path", { "fill": "currentColor", "d": "M18.5 8.45c-.2 0-.5-.1-.6-.3l-1.7-2.2-2.2 1.7c-.3.2-.8.1-1-.2-.3-.3-.2-.8.2-1l2.4-1.8c.6-.4 1.4-.3 1.8.3l1.8 2.4c.2.3.2.8-.2 1-.1.1-.3.1-.5.1Z", "key": "66861b071eac4e7f876ddbd7d2a0593ef805ed94" }]]);
const GitArrowUpB = createMeisterIcons("git-arrow-up-b", [["path", { "fill": "currentColor", "d": "M7.5 20.55a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "7af7ffe2ebb507422e39ff4d5ab9c52731a25f3f" }], ["path", { "fill": "currentColor", "d": "M7.5 21.25c-1.5 0-2.8-1.2-2.8-2.8 0-1.6 1.2-2.7 2.8-2.7 1.6 0 2.8 1.2 2.8 2.8 0 1.6-1.3 2.7-2.8 2.7Zm0-4c-.7 0-1.3.6-1.3 1.3 0 .7.6 1.2 1.3 1.2.7 0 1.2-.6 1.2-1.2s-.6-1.3-1.2-1.3Zm0-9.7a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "4af6ad11fbfacdd760a69c655dd2fe26a9da8afb" }], ["path", { "fill": "currentColor", "d": "M7.5 8.25c-1.6 0-2.8-1.2-2.8-2.7 0-1.5 1.2-2.8 2.8-2.8 1.6 0 2.8 1.2 2.8 2.8 0 1.6-1.3 2.7-2.8 2.7Zm0-4c-.7 0-1.3.6-1.3 1.3 0 .7.6 1.2 1.3 1.2.7 0 1.2-.6 1.2-1.2s-.6-1.3-1.2-1.3Z", "key": "96fc77632a8b0a7d3baf0a1f009e0772058f391d" }], ["path", { "fill": "currentColor", "d": "M7.5 17.25c-.4 0-.8-.3-.8-.8v-9c0-.4.3-.7.8-.7s.8.3.8.8v9c-.1.4-.4.7-.8.7Z", "key": "d14d9b0d90558fbdc3302b9adebd67f51a241df5" }], ["path", { "fill": "currentColor", "d": "M7.5 13.25c-.5 0-.8-.3-.8-.7 0-.4.3-.8.8-.8 8.1 0 8.2-6 8.2-6.2 0-.5.3-.8.8-.8s.8.3.8.8c-.1 0-.2 7.7-9.8 7.7Z", "key": "1402089db96faa1926b4837e61da66f8681fbf27" }], ["path", { "fill": "currentColor", "d": "M18.5 8.45c-.2 0-.5-.1-.6-.3l-1.7-2.2-2.2 1.7c-.3.2-.8.1-1-.2-.3-.3-.2-.8.2-1l2.4-1.8c.6-.4 1.4-.3 1.8.3l1.8 2.4c.2.3.2.8-.2 1-.1.1-.3.1-.5.1Z", "key": "68a92ad2189830926259819e593c5773bf8bdc57" }]]);
const GitB = createMeisterIcons("git-b", [["path", { "fill": "currentColor", "stroke": "#000", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M7.5 20.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm0-13a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm9 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "ed88e83a9bcb880f80dd9ca2b7e5717f1cf1f4db" }], ["path", { "stroke": "#000", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M7.5 16.5v-9m9 0s0 5-9 5", "key": "a20cfe8596139013ed1f03774de0367549c62cb3" }]]);
const Glass = createMeisterIcons("glass", [["path", { "fill": "currentColor", "d": "M6.296 4.501c-.033.036-.074.103-.054.243l.003.02 1.201 13.911c.066.562.483.925.954.925h7.2a.979.979 0 0 0 .954-.83l1.201-14.014.005-.03c.018-.106-.086-.326-.36-.326H6.6c-.172 0-.264.06-.304.101ZM5.204 3.473c.36-.382.868-.573 1.396-.573h10.8c1.115 0 2.004.96 1.845 2.04l-1.199 13.988-.002.015C17.9 20.093 16.903 21.1 15.6 21.1H8.4c-1.327 0-2.308-1.034-2.445-2.267l-.001-.01-1.2-13.89c-.072-.552.088-1.075.45-1.46Z", "key": "0423f46de9a2c91f19dfa9490bfa16c1b5984b4e" }]]);
const GlassHalf = createMeisterIcons("glass-half", [["path", { "fill": "currentColor", "d": "M6.296 4.501c-.033.036-.074.103-.054.243l.003.02 1.201 13.911c.066.562.483.925.954.925h7.2a.979.979 0 0 0 .954-.83l1.201-14.014.005-.03c.018-.106-.086-.326-.36-.326H6.6c-.172 0-.264.06-.304.101ZM5.204 3.473c.36-.382.868-.573 1.396-.573h10.8c1.115 0 2.004.96 1.845 2.04l-1.199 13.988-.002.015C17.9 20.093 16.903 21.1 15.6 21.1H8.4c-1.327 0-2.308-1.034-2.445-2.267l-.001-.01-1.2-13.89c-.072-.552.088-1.075.45-1.46Z", "key": "eb1fa7532b94f2eb0a08bd6fc06c1d42f2d5ad5f" }], ["path", { "fill": "currentColor", "d": "M6 11h11.9v1.5H6V11Z", "key": "ed47a7815f1e93b805348c9d8c8c43b66cc6b4cf" }]]);
const GlassHalfB = createMeisterIcons("glass-half-b", [["path", { "fill": "currentColor", "d": "m17.9 11.75-.6 7c-.1.9-.8 1.6-1.7 1.6H8.4c-.9 0-1.6-.7-1.7-1.6l-.6-7h11.8Z", "key": "cddae2fb0d6d4b79a57e71249a1c8c3a68551620" }], ["path", { "fill": "currentColor", "d": "M5.283 11h13.434l-.67 7.823-.002.01c-.137 1.233-1.118 2.267-2.445 2.267H8.4c-1.327 0-2.308-1.034-2.445-2.267l-.001-.01L5.283 11Zm1.634 1.5.53 6.176c.065.561.482.924.953.924h7.2c.47 0 .888-.363.954-.925l.529-6.175H6.917Z", "key": "1082b1c3d3d7060a9bbc7b6e46247074c1e2ea6d" }], ["path", { "fill": "currentColor", "d": "M6.296 4.501c-.033.036-.074.103-.054.243l.004.026.452 6.23h10.514l.543-6.236.003-.02a.247.247 0 0 0-.076-.226.417.417 0 0 0-.282-.118H6.6c-.172 0-.264.06-.304.101ZM5.204 3.473c.36-.382.868-.573 1.396-.573h10.8c.94 0 2.009.79 1.846 2.033l-.658 7.567H5.302l-.548-7.573c-.07-.55.09-1.07.45-1.454Z", "key": "c249b2572478e4b1bdcf5fe8cda337e1cd2de2e0" }]]);
const GlassStraw = createMeisterIcons("glass-straw", [["path", { "fill": "currentColor", "d": "M6.28 7.405a.125.125 0 0 0-.04.122l.004.024 1.202 12.02c.064.564.482.929.954.929h7.2c.532 0 .897-.326.954-.83l1.202-12.019.004-.024c.018-.107-.086-.327-.36-.327H6.6c-.173 0-.275.06-.32.105Zm-1.524.341C4.579 6.582 5.576 5.8 6.6 5.8h10.8c1.117 0 2.007.964 1.844 2.046l-1.198 11.987C17.902 21.128 16.867 22 15.6 22H8.4c-1.327 0-2.308-1.034-2.445-2.267l-.001-.008L4.756 7.746Z", "key": "1d50b900d48eadbb492d74282a5180beb535ea6f" }], ["path", { "fill": "currentColor", "d": "M6.1 13.1h11.8v1.5H6.1v-1.5Z", "key": "b40a522556ced6f96e7f5a71ae90e2cdca6d6ec4" }], ["path", { "fill": "currentColor", "d": "M17.547 2.585a.75.75 0 0 1-.682.812l-2.297.2h-.001c-.772.07-1.39.627-1.53 1.387l-.001.01-2.6 13.2a.75.75 0 0 1-1.472-.289l2.6-13.195a3.193 3.193 0 0 1 2.868-2.607h.003l2.3-.2a.75.75 0 0 1 .812.682Z", "key": "f250e7f51945cf9ec9905f76acb6089f98b84789" }]]);
const GlassStrawB = createMeisterIcons("glass-straw-b", [["path", { "fill": "currentColor", "d": "m17.9 13.85-.6 5.9c-.1.9-.8 1.6-1.7 1.6H8.3c-.9 0-1.6-.7-1.7-1.6l-.6-5.9h11.9Z", "key": "4327afddc73ac34ca812f1020f1bfd0923221cda" }], ["path", { "fill": "currentColor", "d": "M5.17 13.1h13.56l-.685 6.733c-.137 1.234-1.118 2.267-2.445 2.267H8.3c-1.327 0-2.308-1.033-2.445-2.267l-.001-.007L5.17 13.1Zm1.66 1.5.516 5.07c.064.565.482.93.954.93h7.3c.472 0 .89-.365.954-.93l.516-5.07H6.83Z", "key": "1cf2e4951948eb3dfab8b08da5f31fdb55c17a31" }], ["path", { "fill": "currentColor", "d": "M11.28 5.8h6.02c.522 0 1.037.186 1.415.542.386.365.61.896.53 1.496L18.58 14.6H9.593l1.687-8.8Zm1.24 1.5-1.112 5.8h5.812l.535-5.44.003-.016a.22.22 0 0 0-.073-.211.566.566 0 0 0-.385-.133h-4.78Z", "key": "db4da01d757d5a50ca9fc0678ee4a2d1f0596fa4" }], ["path", { "fill": "currentColor", "d": "M6.296 7.402c-.033.035-.074.102-.054.242l.003.016.535 5.44h3.2l1.112-5.8H6.6c-.172 0-.264.06-.304.102ZM5.204 6.374c.36-.383.868-.574 1.396-.574h6.308l-1.688 8.8h-5.8l-.665-6.762c-.074-.553.086-1.079.449-1.464Z", "key": "17cbd5a9e24612dc7224c32c1890c0d0c2dc4adc" }], ["path", { "fill": "currentColor", "d": "M17.547 2.685a.75.75 0 0 1-.682.812l-2.297.2h-.001c-.772.07-1.39.627-1.53 1.387v.004l-.3 1.6a.75.75 0 0 1-1.474-.276l.3-1.598a3.193 3.193 0 0 1 2.87-2.61l.002-.001 2.3-.2a.75.75 0 0 1 .812.682ZM10.64 13.113a.75.75 0 0 1 .597.877l-.8 4.2a.75.75 0 0 1-1.474-.28l.8-4.2a.75.75 0 0 1 .877-.597Z", "key": "af0afd073c9e941a93b97a9de910472ca3b5a205" }]]);
const Graphdown = createMeisterIcons("graphdown", [["path", { "fill": "currentColor", "d": "M14.13 8.42a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 0 1-1.06-1.06l3-3a.75.75 0 0 1 1.06 0Zm-8.76.9a.75.75 0 0 1 1.06 0l2.1 2.1a.75.75 0 0 1-1.06 1.06l-2.1-2.1a.75.75 0 0 1 0-1.06Zm9.876-.831a.75.75 0 0 1 1.015.307l3 5.6a.75.75 0 1 1-1.322.708l-3-5.6a.75.75 0 0 1 .307-1.015Z", "key": "d361c3b31111be2e7ea62a32b8f17ad428f66e42" }], ["path", { "fill": "currentColor", "d": "M4.6 7.8a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM9.3 12.2a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM14.8 6.8a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.05 7.55a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "e0a78897e05dc418547f6bceb21d3ee88f55edf7" }]]);
const GraphdownB = createMeisterIcons("graphdown-b", [["path", { "fill": "currentColor", "d": "M14.13 8.42a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 0 1-1.06-1.06l3-3a.75.75 0 0 1 1.06 0Zm-8.76.9a.75.75 0 0 1 1.06 0l2.1 2.1a.75.75 0 0 1-1.06 1.06l-2.1-2.1a.75.75 0 0 1 0-1.06Zm9.876-.831a.75.75 0 0 1 1.015.307l3 5.6a.75.75 0 1 1-1.322.708l-3-5.6a.75.75 0 0 1 .307-1.015Z", "key": "69d4bdb774fe4db47eea9f5167c735dd6a0ff0d2" }], ["path", { "fill": "currentColor", "d": "M4.6 10.45a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "9df378f8c92b38449ef0e93432db7952cc015e27" }], ["path", { "fill": "currentColor", "d": "M4.6 7.8a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.15 6.1a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "6c5e1fcb660858b429e076c32135836fca63ab33" }], ["path", { "fill": "currentColor", "d": "M9.3 12.2a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.95-3.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "e8f63ac82d5e576ff2d421fc37fd37ffec42f153" }], ["path", { "fill": "currentColor", "d": "M14.8 6.8a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.05 10.2a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "92246a75997be9443bc824a63bde50ac4f2ee7ad" }], ["path", { "fill": "currentColor", "d": "M19.4 15.3a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "4df152437e97b55c63487911033cc7301d9a2eb0" }]]);
const Graphup = createMeisterIcons("graphup", [["path", { "fill": "currentColor", "d": "M10.07 11.42a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06Zm-1.54 0a.75.75 0 0 1 0 1.06l-2.1 2.1a.75.75 0 1 1-1.06-1.06l2.1-2.1a.75.75 0 0 1 1.06 0Zm10.43-2.829a.75.75 0 0 1 .298 1.018l-3 5.5a.75.75 0 1 1-1.316-.718l3-5.5a.75.75 0 0 1 1.017-.3Z", "key": "720196e4737fd1c6c34be7db8af2e667a9cd6eb1" }], ["path", { "fill": "currentColor", "d": "M4.6 14.2a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM9.3 9.9a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.95 4.45a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM19.4 6.8a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "5a2bf92b78857245f3c50be5de3177c9bf166a09" }]]);
const GraphupB = createMeisterIcons("graphup-b", [["path", { "fill": "currentColor", "d": "M10.07 11.42a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06Zm-1.54 0a.75.75 0 0 1 0 1.06l-2.1 2.1a.75.75 0 1 1-1.06-1.06l2.1-2.1a.75.75 0 0 1 1.06 0Zm10.43-2.829a.75.75 0 0 1 .298 1.018l-3 5.5a.75.75 0 1 1-1.316-.718l3-5.5a.75.75 0 0 1 1.017-.3Z", "key": "ddcd251c8fb51ed3d3c03ccadde43b4318ff5eca" }], ["path", { "fill": "currentColor", "d": "M4.6 16.85a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "897ac4901b32690f8c07c9ca64c508d7a3abe00d" }], ["path", { "fill": "currentColor", "d": "M4.6 14.2a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.15-2.6a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "e0dbbfecc78050b66d7bf7e3962c54c0861e8381" }], ["path", { "fill": "currentColor", "d": "M9.3 9.9a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.95 7.1a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "c5d9063779bd94b344d89ad03293132e7a3fd2ea" }], ["path", { "fill": "currentColor", "d": "M14.8 15.3a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm7.05-6.8a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "1d2bfbd9bcfc17ce24749d71f6ca25b9864f2c95" }], ["path", { "fill": "currentColor", "d": "M19.4 6.8a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "a68c382a03fa04e23f6e88a985e764bbe1e7e776" }]]);
const Guitar = createMeisterIcons("guitar", [["path", { "fill": "currentColor", "d": "M8.357 9.043C9.17 7.26 10.953 6.15 13 6.15c1.284 0 2.453.467 3.381 1.275 1.172.944 1.869 2.454 1.869 3.875 0 2.211-1.443 4.074-3.33 4.868-.368 3.225-3.017 5.782-6.42 5.782-4.646 0-8.126-4.878-5.571-9.785 1.011-2.12 3.244-3.113 5.428-3.122Zm1.273.845a.824.824 0 0 1-.555.61c-.17.057-.348.053-.372.052h-.039c-1.895-.091-3.653.723-4.386 2.271l-.006.013-.007.013C2.232 16.736 4.95 20.45 8.5 20.45c2.68 0 4.77-2.067 4.95-4.686a.87.87 0 0 1 .1-.37v-.335l.513-.17c1.529-.51 2.687-1.948 2.687-3.59 0-.973-.498-2.057-1.319-2.713l-.012-.01-.013-.012A3.607 3.607 0 0 0 13 7.65c-1.578 0-2.866.89-3.37 2.238ZM8.5 14.15c-.71 0-1.35.587-1.35 1.35 0 .823.844 1.536 1.744 1.279.445-.127.845-.523.98-.966.17-.802-.538-1.663-1.374-1.663ZM5.65 15.5c0-1.637 1.36-2.85 2.85-2.85 1.758 0 3.245 1.725 2.83 3.519l-.004.018-.005.019a3.003 3.003 0 0 1-2.015 2.015c-1.9.543-3.656-.945-3.656-2.721Z", "key": "f0367240629af1095f3d82c68ed23549d4eb4aee" }], ["path", { "fill": "currentColor", "d": "M8.5 14.15c-.71 0-1.35.587-1.35 1.35 0 .823.844 1.536 1.744 1.279.398-.114.74-.477.885-.985.246-.861-.413-1.644-1.279-1.644ZM5.65 15.5c0-1.637 1.36-2.85 2.85-2.85 1.734 0 3.275 1.617 2.721 3.556-.255.892-.913 1.729-1.915 2.015-1.9.543-3.656-.945-3.656-2.721ZM21.73 2.27a.75.75 0 0 1 0 1.06l-5.2 5.2a.75.75 0 1 1-1.06-1.06l5.2-5.2a.75.75 0 0 1 1.06 0Z", "key": "8a139257b6e0e0cc77251c4eef806776859826f0" }]]);
const HandheldConsole = createMeisterIcons("handheld-console", [["path", { "fill": "currentColor", "d": "M6.9 17.15c-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.2-.2.5-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3-.2-.1-.5-.2-.7-.3Zm8.7-8.8c-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.2-.2.5-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3-.2 0-.5-.1-.7-.3Z", "key": "a4933a725e7fb995229a9c5db9f79b9ac4d1429e" }], ["path", { "fill": "currentColor", "d": "M5.35 11.175c-.015 0-.02.005-.02.005l-1.2 1.2c-.907.907-.907 2.433 0 3.34l4.2 4.2c.907.907 2.432.907 3.34 0l1.2-1.2a.388.388 0 0 0-.044-.084L6.27 12.08l-.9-.9s-.006-.005-.02-.005Zm1.08-1.055 7.538 7.537.032.043c.219.292.375.646.375 1.038 0 .406-.169.766-.445 1.042l-1.2 1.2c-1.493 1.493-3.967 1.493-5.46 0l-4.2-4.2c-1.493-1.493-1.493-3.967 0-5.46l1.2-1.2a1.535 1.535 0 0 1 2.16 0Zm9.24-6.04c-.907-.907-2.433-.907-3.34 0l-1.2 1.2s-.005.006-.005.02c0 .015.005.02.005.02l.004.004 6.598 6.698.898.898s.006.005.02.005c.015 0 .02-.005.02-.005l1.2-1.2c.893-.893.925-2.426-.012-3.45L15.67 4.08Zm-4.4-1.06c1.493-1.493 3.967-1.493 5.46 0l4.21 4.21.011.011c1.454 1.576 1.483 4.035-.02 5.54l-1.2 1.2a1.535 1.535 0 0 1-2.161 0l-.904-.905-6.599-6.698a1.535 1.535 0 0 1 .003-2.158l1.2-1.2Z", "key": "e2861cb469c432b75f0adc5a313a8b7a5fffa8b2" }], ["path", { "fill": "currentColor", "d": "m5.644 11.545 5.87-5.869 6.787 6.789-5.869 5.869-6.788-6.789Zm2.122 0 4.666 4.667 3.748-3.747-4.667-4.667-3.747 3.747Z", "key": "39ce148d33ace33351981f11a0548e70b1ca092a" }]]);
const HandheldConsoleB = createMeisterIcons("handheld-console-b", [["path", { "fill": "currentColor", "d": "M6.9 17.15c-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.2-.2.5-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3-.2-.1-.5-.2-.7-.3Zm8.7-8.8c-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.2-.2.5-.3.7-.3.5 0 1 .5 1 1 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3-.2 0-.5-.1-.7-.3Z", "key": "83cd148f4577c4c5850c57d0c0819789621b3df9" }], ["path", { "fill": "currentColor", "d": "M5.35 11.175c-.015 0-.02.005-.02.005l-1.2 1.2c-.907.907-.907 2.433 0 3.34l4.2 4.2c.907.907 2.432.907 3.34 0l1.2-1.2a.388.388 0 0 0-.044-.084L6.27 12.08l-.9-.9s-.006-.005-.02-.005Zm1.08-1.055 7.538 7.537.032.043c.219.292.375.646.375 1.038 0 .406-.169.766-.445 1.042l-1.2 1.2c-1.493 1.493-3.967 1.493-5.46 0l-4.2-4.2c-1.493-1.493-1.493-3.967 0-5.46l1.2-1.2a1.535 1.535 0 0 1 2.16 0Zm9.24-6.04c-.907-.907-2.433-.907-3.34 0l-1.2 1.2s-.005.006-.005.02c0 .015.005.02.005.02l.004.004 6.598 6.698.898.898s.006.005.02.005c.015 0 .02-.005.02-.005l1.2-1.2c.893-.893.925-2.426-.012-3.45L15.67 4.08Zm-4.4-1.06c1.493-1.493 3.967-1.493 5.46 0l4.21 4.21.011.011c1.454 1.576 1.483 4.035-.02 5.54l-1.2 1.2a1.535 1.535 0 0 1-2.161 0l-.904-.905-6.599-6.698a1.535 1.535 0 0 1 .003-2.158l1.2-1.2Z", "key": "4106bf49f2bd497668442a10ed3ff8fc3660701d" }], ["path", { "fill": "currentColor", "d": "m11.513 6.737-4.808 4.808 5.728 5.728 4.808-4.808-5.728-5.728Z", "key": "fabcfb083d46a6e8ec4a8a2e6bbc7ec4cfbc48bc" }], ["path", { "fill": "currentColor", "d": "m5.644 11.545 5.87-5.869 6.787 6.789-5.869 5.869-6.788-6.789Zm2.122 0 4.666 4.667 3.748-3.747-4.667-4.667-3.747 3.747Z", "key": "209b513af55624f99f245017464061b9daeb3a07" }]]);
const Hashtag = createMeisterIcons("hashtag", [["path", { "fill": "currentColor", "d": "M8.65 2.9a.75.75 0 0 1 .75.75v16.7a.75.75 0 0 1-1.5 0V3.65a.75.75 0 0 1 .75-.75Zm6.6 0a.75.75 0 0 1 .75.75v16.7a.75.75 0 0 1-1.5 0V3.65a.75.75 0 0 1 .75-.75Z", "key": "dd7cd4a64c0d835ed5574def3ef1f571fc685fac" }], ["path", { "fill": "currentColor", "d": "M2.9 8.65a.75.75 0 0 1 .75-.75h16.7a.75.75 0 0 1 0 1.5H3.65a.75.75 0 0 1-.75-.75Zm0 6.6a.75.75 0 0 1 .75-.75h16.7a.75.75 0 0 1 0 1.5H3.65a.75.75 0 0 1-.75-.75Z", "key": "32d4322ee0b957e286201052fc1622418933e141" }]]);
const HashtagCircle = createMeisterIcons("hashtag-circle", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "a2e8d985582b3923f91806c58a111dc4a5f78de1" }], ["path", { "fill": "currentColor", "d": "M10.2 6.85a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Zm3.5 0a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Z", "key": "de7df2e63b7d72dce34712185a4b06790478f774" }], ["path", { "fill": "currentColor", "d": "M6.85 10.2a.75.75 0 0 1 .75-.75h8.7a.75.75 0 0 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Zm0 3.5a.75.75 0 0 1 .75-.75h8.7a.75.75 0 1 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Z", "key": "993ba74e5a869255a20cb406b562726eaedda754" }]]);
const HashtagCircleB = createMeisterIcons("hashtag-circle-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "bf41e439de62da3459ba85a0fac76576ab7d5bed" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "22356c0d15812afa80a950cb3699d2e7595a9ab6" }], ["path", { "fill": "#fff", "d": "M10.2 6.85a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Zm3.5 0a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Z", "key": "28721be9c4f6cdfb80b7e112dc3cb3f0be47a351" }], ["path", { "fill": "#fff", "d": "M6.85 10.2a.75.75 0 0 1 .75-.75h8.7a.75.75 0 0 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Zm0 3.5a.75.75 0 0 1 .75-.75h8.7a.75.75 0 1 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Z", "key": "fc378cc48ada8e479ff9fb12b163fb8180d25d66" }]]);
const HashtagSquare = createMeisterIcons("hashtag-square", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "c998f74a406bf6721fc505b538a267272e493d08" }], ["path", { "fill": "currentColor", "d": "M10.2 6.85a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Zm3.5 0a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Z", "key": "94ce31fbad578c3b71b4fa7cf1a575f8bfab267d" }], ["path", { "fill": "currentColor", "d": "M6.85 10.2a.75.75 0 0 1 .75-.75h8.7a.75.75 0 0 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Zm0 3.5a.75.75 0 0 1 .75-.75h8.7a.75.75 0 1 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Z", "key": "b84bc91dabe97d625ce5523fe1fa64d07d77deb8" }]]);
const HashtagSquareB = createMeisterIcons("hashtag-square-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "e97637d425fa028462d4cb62dc6ef900331f9a24" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "dd2032894f85fade6708c652ab62fb3eb6ef15e7" }], ["path", { "fill": "#fff", "d": "M10.2 6.85a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Zm3.5 0a.75.75 0 0 1 .75.75v8.7a.75.75 0 0 1-1.5 0V7.6a.75.75 0 0 1 .75-.75Z", "key": "804907e4242eb769175f91d357bb499d2c2929f9" }], ["path", { "fill": "#fff", "d": "M6.85 10.2a.75.75 0 0 1 .75-.75h8.7a.75.75 0 0 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Zm0 3.5a.75.75 0 0 1 .75-.75h8.7a.75.75 0 1 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Z", "key": "f3f8eb45dda6dfd614bf4968237a7fac38ee4a54" }]]);
const Hat = createMeisterIcons("hat", [["path", { "fill": "currentColor", "d": "M7.8 5.05c-.686 0-1.25.564-1.25 1.25v.85h10.9V6.3c0-.662-.54-1.25-1.35-1.25H7.8ZM5.05 6.3A2.756 2.756 0 0 1 7.8 3.55h8.3c1.59 0 2.85 1.212 2.85 2.75v2.35H5.05V6.3Z", "key": "f0e08893056006d43a74bd377234fcd59bc105d8" }], ["path", { "fill": "currentColor", "d": "M5.05 7.15h13.9v6.61l-1-.353c-1.617-.57-3.632-.957-5.95-.957s-4.333.386-5.95.957l-1 .353V7.15Zm1.5 1.5v3.025c1.578-.447 3.414-.725 5.45-.725s3.872.278 5.45.725V8.65H6.55Z", "key": "46ef2326790a9d770502b801add7de7d543280b9" }], ["path", { "fill": "currentColor", "d": "M6.058 13.304c-.996.38-1.752.814-2.246 1.255-.497.444-.662.832-.662 1.141 0 .288.138.632.53 1.019.396.389 1.007.774 1.821 1.114C7.127 18.51 9.425 18.95 12 18.95c2.575 0 4.873-.439 6.499-1.117.814-.34 1.425-.725 1.82-1.114.393-.387.531-.731.531-1.019 0-.309-.165-.697-.662-1.14-.494-.442-1.25-.875-2.246-1.256-1.616-.569-3.629-.954-5.942-.954s-4.326.385-5.942.954Zm-.508-1.411c1.783-.63 3.968-1.043 6.45-1.043s4.667.414 6.45 1.043l.008.003.009.003c1.1.42 2.04.935 2.72 1.542.678.606 1.163 1.368 1.163 2.26 0 .811-.4 1.517-.979 2.087-.576.567-1.372 1.044-2.295 1.43-1.849.77-4.351 1.232-7.076 1.232-2.725 0-5.227-.461-7.076-1.233-.923-.385-1.719-.862-2.295-1.43-.58-.569-.979-1.275-.979-2.087 0-.89.485-1.653 1.163-2.26.68-.606 1.62-1.122 2.72-1.54l.009-.004.008-.003Z", "key": "5ff7f5ceced8416dc55c7276bbf18cbca78f4d5c" }]]);
const HatB = createMeisterIcons("hat-b", [["path", { "fill": "currentColor", "d": "M7.8 5.05c-.686 0-1.25.564-1.25 1.25v.85h10.9V6.3c0-.662-.54-1.25-1.35-1.25H7.8ZM5.05 6.3A2.756 2.756 0 0 1 7.8 3.55h8.3c1.59 0 2.85 1.212 2.85 2.75v2.35H5.05V6.3Z", "key": "860a7be29b2a61b0c68864f88ed0b76cdb2a01ee" }], ["path", { "fill": "currentColor", "d": "M18.2 7.9v4.8c-1.7-.6-3.8-1-6.2-1-2.4 0-4.5.4-6.2 1V7.9h12.4Z", "key": "e0c0c9ce4cb5f5df99142bcdad45c24d88290663" }], ["path", { "fill": "currentColor", "d": "M5.05 7.15h13.9v6.61l-1-.353c-1.617-.57-3.632-.957-5.95-.957s-4.333.386-5.95.957l-1 .353V7.15Zm1.5 1.5v3.025c1.578-.447 3.414-.725 5.45-.725s3.872.278 5.45.725V8.65H6.55Z", "key": "bfd62c935dd4cd7f55418806338492fbf67ad170" }], ["path", { "fill": "currentColor", "d": "M6.058 13.304c-.996.38-1.752.814-2.246 1.255-.497.444-.662.832-.662 1.141 0 .288.138.632.53 1.019.396.389 1.007.774 1.821 1.114C7.127 18.51 9.425 18.95 12 18.95c2.575 0 4.873-.439 6.499-1.117.814-.34 1.425-.725 1.82-1.114.393-.387.531-.731.531-1.019 0-.309-.165-.697-.662-1.14-.494-.442-1.25-.875-2.246-1.256-1.616-.569-3.629-.954-5.942-.954s-4.326.385-5.942.954Zm-.508-1.411c1.783-.63 3.968-1.043 6.45-1.043s4.667.414 6.45 1.043l.008.003.009.003c1.1.42 2.04.935 2.72 1.542.678.606 1.163 1.368 1.163 2.26 0 .811-.4 1.517-.979 2.087-.576.567-1.372 1.044-2.295 1.43-1.849.77-4.351 1.232-7.076 1.232-2.725 0-5.227-.461-7.076-1.233-.923-.385-1.719-.862-2.295-1.43-.58-.569-.979-1.275-.979-2.087 0-.89.485-1.653 1.163-2.26.68-.606 1.62-1.122 2.72-1.54l.009-.004.008-.003Z", "key": "d744c6ce2876ed682a72ade8c7aac8150099472d" }]]);
const Headphone = createMeisterIcons("headphone", [["path", { "fill": "currentColor", "d": "M5.55 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.086 0 2.05-.964 2.05-2.05v-1.2c0-1.103-.882-2.05-2.05-2.05h-.2ZM2 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.2c0 1.914-1.636 3.55-3.55 3.55h-.2C3.518 21.15 2 19.497 2 17.6v-1.2Z", "key": "eb2217f306178c9d67c12c5f58dee36e987b917e" }], ["path", { "fill": "currentColor", "d": "M2 12.9C2 7.28 6.541 2.85 12.05 2.85a9.9 9.9 0 0 1 7.022 2.912C20.926 7.51 22 10.008 22 12.8v3.6a.75.75 0 0 1-1.5 0v-3.6c0-2.404-.922-4.503-2.464-5.954l-.008-.008-.008-.008a8.4 8.4 0 0 0-5.97-2.48A8.532 8.532 0 0 0 3.5 12.9v3.5a.75.75 0 0 1-1.5 0v-3.5Z", "key": "38c84f2ad6885cefe592fcb39c9bb32699d535e3" }], ["path", { "fill": "currentColor", "d": "M18.15 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.216 0 2.12-.98 2.052-2l-.002-.025V16.4c0-1.103-.882-2.05-2.05-2.05h-.2ZM14.6 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.177c.115 1.968-1.574 3.573-3.55 3.573h-.2c-2.032 0-3.55-1.653-3.55-3.55v-1.2Z", "key": "1d2636af5d143872d858fde5e6a6949864a5b360" }]]);
const HeadphoneAdd = createMeisterIcons("headphone-add", [["path", { "fill": "currentColor", "d": "M11.95 6.75a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V7.5a.75.75 0 0 1 .75-.75Z", "key": "7a047cb3205e1d9554354e85dc79bf1e85a59892" }], ["path", { "fill": "currentColor", "d": "M8.8 10a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9A.75.75 0 0 1 8.8 10Zm-3.25 4.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.086 0 2.05-.964 2.05-2.05v-1.2c0-1.103-.882-2.05-2.05-2.05h-.2ZM2 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.2c0 1.914-1.636 3.55-3.55 3.55h-.2C3.518 21.15 2 19.497 2 17.6v-1.2Z", "key": "0c534c5e2ce8780aa6a761341fc552ccd4c3ca8c" }], ["path", { "fill": "currentColor", "d": "M2 12.9C2 7.28 6.541 2.85 12.05 2.85a9.9 9.9 0 0 1 7.022 2.912C20.926 7.51 22 10.008 22 12.8v3.6a.75.75 0 0 1-1.5 0v-3.6c0-2.404-.922-4.503-2.464-5.954l-.008-.008-.008-.008a8.4 8.4 0 0 0-5.97-2.48A8.532 8.532 0 0 0 3.5 12.9v3.5a.75.75 0 0 1-1.5 0v-3.5Z", "key": "9ea0a7626fdadd1fe1f0d4730ad70d92e50fcd99" }], ["path", { "fill": "currentColor", "d": "M18.15 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.216 0 2.12-.98 2.052-2l-.002-.025V16.4c0-1.103-.882-2.05-2.05-2.05h-.2ZM14.6 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.177c.115 1.968-1.574 3.573-3.55 3.573h-.2c-2.032 0-3.55-1.653-3.55-3.55v-1.2Z", "key": "a9e29421b6b3bd0963a5c5666c2d214fd39fe394" }]]);
const HeadphoneAddB = createMeisterIcons("headphone-add-b", [["path", { "fill": "currentColor", "d": "M11.95 6.75a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V7.5a.75.75 0 0 1 .75-.75Z", "key": "ac9b42fec365eb076115d3b7291ea7aa03cbf118" }], ["path", { "fill": "currentColor", "d": "M8.8 10a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9A.75.75 0 0 1 8.8 10ZM5.75 20.4h-.2c-1.6 0-2.8-1.3-2.8-2.8v-1.2c0-1.6 1.3-2.8 2.8-2.8h.2c1.6 0 2.8 1.3 2.8 2.8v1.2c0 1.5-1.3 2.8-2.8 2.8Z", "key": "2502468b88b0a23e322df3db8b5ce3d5d6145421" }], ["path", { "fill": "currentColor", "d": "M5.55 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.086 0 2.05-.964 2.05-2.05v-1.2c0-1.103-.882-2.05-2.05-2.05h-.2ZM2 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.2c0 1.914-1.636 3.55-3.55 3.55h-.2C3.518 21.15 2 19.497 2 17.6v-1.2Z", "key": "b9b840a809e38b8b5da95acbda567a9e098e7ce6" }], ["path", { "fill": "currentColor", "d": "M2 12.9C2 7.28 6.541 2.85 12.05 2.85a9.9 9.9 0 0 1 7.022 2.912C20.926 7.51 22 10.008 22 12.8v3.6a.75.75 0 0 1-1.5 0v-3.6c0-2.404-.922-4.503-2.464-5.954l-.008-.008-.008-.008a8.4 8.4 0 0 0-5.97-2.48A8.532 8.532 0 0 0 3.5 12.9v3.5a.75.75 0 0 1-1.5 0v-3.5Z", "key": "40c65f29f8a0f2e598c461b5eadd7a8021093ab0" }], ["path", { "fill": "currentColor", "d": "M18.35 20.4h-.2c-1.6 0-2.8-1.3-2.8-2.8v-1.2c0-1.6 1.3-2.8 2.8-2.8h.2c1.6 0 2.8 1.3 2.8 2.8v1.2c.1 1.5-1.2 2.8-2.8 2.8Z", "key": "fbe80e8c0bcd805d59c97b0dbe147376aaa854ef" }], ["path", { "fill": "currentColor", "d": "M18.15 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.216 0 2.12-.98 2.052-2l-.002-.025V16.4c0-1.103-.882-2.05-2.05-2.05h-.2ZM14.6 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.177c.115 1.968-1.574 3.573-3.55 3.573h-.2c-2.032 0-3.55-1.653-3.55-3.55v-1.2Z", "key": "40e0153ecd8c795387f9ef0795fdcdb63be06b5a" }]]);
const HeadphoneB = createMeisterIcons("headphone-b", [["path", { "fill": "currentColor", "d": "M5.75 20.4h-.2c-1.6 0-2.8-1.3-2.8-2.8v-1.2c0-1.6 1.3-2.8 2.8-2.8h.2c1.6 0 2.8 1.3 2.8 2.8v1.2c0 1.5-1.3 2.8-2.8 2.8Z", "key": "928b2a16994e95deef35aad6f95ac55bda2db30d" }], ["path", { "fill": "currentColor", "d": "M5.55 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.086 0 2.05-.964 2.05-2.05v-1.2c0-1.103-.882-2.05-2.05-2.05h-.2ZM2 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.2c0 1.914-1.636 3.55-3.55 3.55h-.2C3.518 21.15 2 19.497 2 17.6v-1.2Z", "key": "4b69a5c524393a78e89952b36c9f4a8442b321fb" }], ["path", { "fill": "currentColor", "d": "M2 12.9C2 7.28 6.541 2.85 12.05 2.85a9.9 9.9 0 0 1 7.022 2.912C20.926 7.51 22 10.008 22 12.8v3.6a.75.75 0 0 1-1.5 0v-3.6c0-2.404-.922-4.503-2.464-5.954l-.008-.008-.008-.008a8.4 8.4 0 0 0-5.97-2.48A8.532 8.532 0 0 0 3.5 12.9v3.5a.75.75 0 0 1-1.5 0v-3.5Z", "key": "bf964f682e80b937522a231e7004be797c7c2dc4" }], ["path", { "fill": "currentColor", "d": "M18.35 20.4h-.2c-1.6 0-2.8-1.3-2.8-2.8v-1.2c0-1.6 1.3-2.8 2.8-2.8h.2c1.6 0 2.8 1.3 2.8 2.8v1.2c.1 1.5-1.2 2.8-2.8 2.8Z", "key": "ee835f424d2f51287be79fe40b6300bac6bb2599" }], ["path", { "fill": "currentColor", "d": "M18.15 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.216 0 2.12-.98 2.052-2l-.002-.025V16.4c0-1.103-.882-2.05-2.05-2.05h-.2ZM14.6 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.177c.115 1.968-1.574 3.573-3.55 3.573h-.2c-2.032 0-3.55-1.653-3.55-3.55v-1.2Z", "key": "b8887ff7525d4fda7883f98a1f1bedecf873e1cc" }]]);
const HeadphoneCross = createMeisterIcons("headphone-cross", [["path", { "fill": "currentColor", "d": "M14.173 7.662a.75.75 0 0 1 .015 1.06l-3.4 3.5a.75.75 0 0 1-1.076-1.045l3.4-3.5a.75.75 0 0 1 1.06-.015Z", "key": "3d1e65ca9b927ea8c9107e85afb595ac62caaaeb" }], ["path", { "fill": "currentColor", "d": "M9.727 7.662a.75.75 0 0 1 1.061.015l3.4 3.5a.75.75 0 0 1-1.076 1.046l-3.4-3.5a.75.75 0 0 1 .015-1.061ZM5.55 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.086 0 2.05-.964 2.05-2.05v-1.2c0-1.103-.882-2.05-2.05-2.05h-.2ZM2 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.2c0 1.914-1.636 3.55-3.55 3.55h-.2C3.518 21.15 2 19.497 2 17.6v-1.2Z", "key": "db9981552eb96e85fe3d3ec5c25a352b28df6ff2" }], ["path", { "fill": "currentColor", "d": "M2 12.9C2 7.28 6.541 2.85 12.05 2.85a9.9 9.9 0 0 1 7.022 2.912C20.926 7.51 22 10.008 22 12.8v3.6a.75.75 0 0 1-1.5 0v-3.6c0-2.404-.922-4.503-2.464-5.954l-.008-.008-.008-.008a8.4 8.4 0 0 0-5.97-2.48A8.532 8.532 0 0 0 3.5 12.9v3.5a.75.75 0 0 1-1.5 0v-3.5Z", "key": "ba2f5b871a904cb60ada5f13883c6f3b935ccc6f" }], ["path", { "fill": "currentColor", "d": "M18.15 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.216 0 2.12-.98 2.052-2l-.002-.025V16.4c0-1.103-.882-2.05-2.05-2.05h-.2ZM14.6 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.177c.115 1.968-1.574 3.573-3.55 3.573h-.2c-2.032 0-3.55-1.653-3.55-3.55v-1.2Z", "key": "f3a65076bf1fe19d942334713e7796f0bee3d207" }]]);
const HeadphoneCrossB = createMeisterIcons("headphone-cross-b", [["path", { "fill": "currentColor", "d": "M14.173 7.662a.75.75 0 0 1 .015 1.06l-3.4 3.5a.75.75 0 0 1-1.076-1.045l3.4-3.5a.75.75 0 0 1 1.06-.015Z", "key": "bb0b28601a52a48b7f545e783f70d5e9e14c0049" }], ["path", { "fill": "currentColor", "d": "M9.727 7.662a.75.75 0 0 1 1.061.015l3.4 3.5a.75.75 0 0 1-1.076 1.046l-3.4-3.5a.75.75 0 0 1 .015-1.061ZM5.75 20.4h-.2c-1.6 0-2.8-1.3-2.8-2.8v-1.2c0-1.6 1.3-2.8 2.8-2.8h.2c1.6 0 2.8 1.3 2.8 2.8v1.2c0 1.5-1.3 2.8-2.8 2.8Z", "key": "4bbad0ac16b3c23765f9d3d541e9bf87943911a0" }], ["path", { "fill": "currentColor", "d": "M5.55 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.086 0 2.05-.964 2.05-2.05v-1.2c0-1.103-.882-2.05-2.05-2.05h-.2ZM2 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.2c0 1.914-1.636 3.55-3.55 3.55h-.2C3.518 21.15 2 19.497 2 17.6v-1.2Z", "key": "b46a1c23dad862c4da7539d7b582157051793508" }], ["path", { "fill": "currentColor", "d": "M2 12.9C2 7.28 6.541 2.85 12.05 2.85a9.9 9.9 0 0 1 7.022 2.912C20.926 7.51 22 10.008 22 12.8v3.6a.75.75 0 0 1-1.5 0v-3.6c0-2.404-.922-4.503-2.464-5.954l-.008-.008-.008-.008a8.4 8.4 0 0 0-5.97-2.48A8.532 8.532 0 0 0 3.5 12.9v3.5a.75.75 0 0 1-1.5 0v-3.5Z", "key": "40528793150b26f8ed82e28c698fd28e61bbe2a7" }], ["path", { "fill": "currentColor", "d": "M18.35 20.4h-.2c-1.6 0-2.8-1.3-2.8-2.8v-1.2c0-1.6 1.3-2.8 2.8-2.8h.2c1.6 0 2.8 1.3 2.8 2.8v1.2c.1 1.5-1.2 2.8-2.8 2.8Z", "key": "ce06b3db0ef2cc2ff4579ea2dc5c27f8e5ed5dbb" }], ["path", { "fill": "currentColor", "d": "M18.15 14.35c-1.103 0-2.05.882-2.05 2.05v1.2c0 1.103.882 2.05 2.05 2.05h.2c1.216 0 2.12-.98 2.052-2l-.002-.025V16.4c0-1.103-.882-2.05-2.05-2.05h-.2ZM14.6 16.4c0-2.032 1.653-3.55 3.55-3.55h.2c2.032 0 3.55 1.653 3.55 3.55v1.177c.115 1.968-1.574 3.573-3.55 3.573h-.2c-2.032 0-3.55-1.653-3.55-3.55v-1.2Z", "key": "cc162e8e5db0b429007cca19363005cf41fa704b" }]]);
const HeadphoneFancy = createMeisterIcons("headphone-fancy", [["path", { "fill": "currentColor", "d": "M12 4.2c-4.986 0-9.05 4.064-9.05 9.05v4a.75.75 0 0 1-1.5 0v-4C1.45 7.436 6.186 2.7 12 2.7c2.897 0 5.593 1.178 7.438 3.127 1.925 1.93 3.112 4.514 3.112 7.423v4a.75.75 0 0 1-1.5 0v-4c0-2.487-1.01-4.7-2.68-6.37l-.008-.007-.007-.008C16.8 5.219 14.499 4.2 12 4.2Z", "key": "e5f7e5ccdca0f2b0cebc2c7ac6d1167cb3cf54e5" }], ["path", { "fill": "currentColor", "d": "M6.7 14.6c-.786 0-1.35.564-1.35 1.35v2.5c0 .786.564 1.35 1.35 1.35.709 0 1.35-.587 1.35-1.35v-2.5c0-.786-.564-1.35-1.35-1.35Zm-2.85 1.35c0-1.614 1.236-2.85 2.85-2.85s2.85 1.236 2.85 2.85v2.5c0 1.637-1.36 2.85-2.85 2.85-1.614 0-2.85-1.236-2.85-2.85v-2.5ZM17.3 14.6c-.786 0-1.35.564-1.35 1.35v2.5c0 .786.564 1.35 1.35 1.35.71 0 1.35-.587 1.35-1.35v-2.5c0-.786-.564-1.35-1.35-1.35Zm-2.85 1.35c0-1.614 1.236-2.85 2.85-2.85s2.85 1.236 2.85 2.85v2.5c0 1.637-1.36 2.85-2.85 2.85-1.614 0-2.85-1.236-2.85-2.85v-2.5Z", "key": "ead39f2dfec1585139bac880c72152a2687ab9ea" }], ["path", { "fill": "currentColor", "d": "M18.65 17.25a.75.75 0 0 1 .75-.75h2.4a.75.75 0 0 1 0 1.5h-2.4a.75.75 0 0 1-.75-.75Zm-17.2 0a.75.75 0 0 1 .75-.75h2.4a.75.75 0 0 1 0 1.5H2.2a.75.75 0 0 1-.75-.75Z", "key": "dd99273030cccd714367641c4d73f04fda51b392" }]]);
const HeadphoneFancyB = createMeisterIcons("headphone-fancy-b", [["path", { "fill": "currentColor", "d": "M12 4.2c-4.986 0-9.05 4.064-9.05 9.05v4a.75.75 0 0 1-1.5 0v-4C1.45 7.436 6.186 2.7 12 2.7c2.897 0 5.593 1.178 7.438 3.127 1.925 1.93 3.112 4.514 3.112 7.423v4a.75.75 0 0 1-1.5 0v-4c0-2.487-1.01-4.7-2.68-6.37l-.008-.007-.007-.008C16.8 5.219 14.499 4.2 12 4.2Z", "key": "572b82cc04ae9b2c8d049ee23f4d498576dd6e0e" }], ["path", { "fill": "currentColor", "d": "M6.7 20.55c-1.2 0-2.1-.9-2.1-2.1v-2.5c0-1.2.9-2.1 2.1-2.1 1.2 0 2.1.9 2.1 2.1v2.5c0 1.2-1 2.1-2.1 2.1Z", "key": "54a3e0e8dd34e40cce541218405d0f2a58e6581e" }], ["path", { "fill": "currentColor", "d": "M6.7 14.6c-.786 0-1.35.564-1.35 1.35v2.5c0 .786.564 1.35 1.35 1.35.709 0 1.35-.587 1.35-1.35v-2.5c0-.786-.564-1.35-1.35-1.35Zm-2.85 1.35c0-1.614 1.236-2.85 2.85-2.85s2.85 1.236 2.85 2.85v2.5c0 1.637-1.36 2.85-2.85 2.85-1.614 0-2.85-1.236-2.85-2.85v-2.5Zm13.45 4.6c-1.2 0-2.1-.9-2.1-2.1v-2.5c0-1.2.9-2.1 2.1-2.1 1.2 0 2.1.9 2.1 2.1v2.5c0 1.2-1 2.1-2.1 2.1Z", "key": "30cee140f1dbda1611d157c4e040995759c56442" }], ["path", { "fill": "currentColor", "d": "M17.3 14.6c-.786 0-1.35.564-1.35 1.35v2.5c0 .786.564 1.35 1.35 1.35.71 0 1.35-.587 1.35-1.35v-2.5c0-.786-.564-1.35-1.35-1.35Zm-2.85 1.35c0-1.614 1.236-2.85 2.85-2.85s2.85 1.236 2.85 2.85v2.5c0 1.637-1.36 2.85-2.85 2.85-1.614 0-2.85-1.236-2.85-2.85v-2.5Z", "key": "37985764b50e15efe96d41c5bbe2586932885996" }], ["path", { "fill": "currentColor", "d": "M18.65 17.25a.75.75 0 0 1 .75-.75h2.4a.75.75 0 0 1 0 1.5h-2.4a.75.75 0 0 1-.75-.75Zm-17.2 0a.75.75 0 0 1 .75-.75h2.4a.75.75 0 0 1 0 1.5H2.2a.75.75 0 0 1-.75-.75Z", "key": "6ab23ebaf4f5617f1c5652f135faba5aef75eadb" }]]);
const Heart = createMeisterIcons("heart", [["path", { "fill": "currentColor", "d": "M4.75 6.274a4.384 4.384 0 0 0 0 6.053l6.293 6.293a1.302 1.302 0 0 0 1.84 0l5.582-5.583.712-.815.034-.03c.823-.74 1.252-1.827 1.252-2.942 0-.995-.417-2.109-1.188-2.976a4.384 4.384 0 0 0-6.04.013l-1.188 1.19-1.362-1.192-.03-.033C9.915 5.429 8.827 5 7.712 5c-.996 0-2.102.417-2.962 1.274ZM3.682 5.22c1.14-1.14 2.63-1.72 4.03-1.72 1.471 0 2.969.56 4.027 1.714l.24.21.21-.211.007-.007a5.884 5.884 0 0 1 8.133 0l.021.02.02.022c1.016 1.13 1.592 2.606 1.592 4.002 0 1.47-.56 2.968-1.713 4.026l-.688.787-5.618 5.617a2.802 2.802 0 0 1-3.96 0l-6.308-6.306-.006-.007a5.884 5.884 0 0 1 0-8.134l.006-.007.007-.006Z", "key": "0a4386d6fa5afcfcf635a3b03b6a7ef51ffc3c3c" }]]);
const HeartB = createMeisterIcons("heart-b", [["path", { "fill": "currentColor", "d": "M21.213 9.25c0 1.3-.5 2.6-1.5 3.5l-.7.8-5.6 5.6c-.8.8-2.1.8-2.9 0l-5.6-5.6-.7-.7c-1.9-2-1.9-5.1 0-7.1 1-1 2.3-1.5 3.5-1.5 1.3 0 2.6.5 3.5 1.5l.8.7.7-.7c2-1.9 5.1-1.9 7.1 0 .9 1 1.4 2.3 1.4 3.5Z", "key": "9b5cd983a1c8ab5b8f79920e95d005106ab7aa90" }], ["path", { "fill": "currentColor", "d": "M4.75 6.274a4.384 4.384 0 0 0 0 6.053l6.293 6.293a1.302 1.302 0 0 0 1.84 0l5.582-5.583.712-.815.034-.03c.823-.74 1.252-1.827 1.252-2.942 0-.995-.417-2.109-1.188-2.976a4.384 4.384 0 0 0-6.04.013l-1.188 1.19-1.362-1.192-.03-.033C9.915 5.429 8.827 5 7.712 5c-.996 0-2.102.417-2.962 1.274ZM3.682 5.22c1.14-1.14 2.63-1.72 4.03-1.72 1.471 0 2.969.56 4.027 1.714l.24.21.21-.211.007-.007a5.884 5.884 0 0 1 8.133 0l.021.02.02.022c1.016 1.13 1.592 2.606 1.592 4.002 0 1.47-.56 2.968-1.713 4.026l-.688.787-5.618 5.617a2.802 2.802 0 0 1-3.96 0l-6.308-6.306-.006-.007a5.884 5.884 0 0 1 0-8.134l.006-.007.007-.006Z", "key": "1c0e55e99a0dcab663ce1c3eecd1f9c49f6fc104" }]]);
const HeartHalf = createMeisterIcons("heart-half", [["path", { "fill": "currentColor", "d": "M4.75 6.274a4.384 4.384 0 0 0 0 6.053l6.293 6.293a1.302 1.302 0 0 0 1.84 0l5.582-5.583.712-.815.034-.03c.823-.74 1.252-1.827 1.252-2.942 0-.995-.417-2.109-1.188-2.976a4.384 4.384 0 0 0-6.04.013l-1.188 1.19-1.362-1.192-.03-.033C9.915 5.429 8.827 5 7.713 5c-.997 0-2.103.417-2.963 1.274ZM3.682 5.22c1.14-1.14 2.63-1.72 4.03-1.72 1.471 0 2.969.56 4.027 1.714l.24.21.21-.211.007-.007a5.885 5.885 0 0 1 8.133 0l.021.02.02.022c1.016 1.13 1.592 2.606 1.592 4.002 0 1.47-.56 2.968-1.713 4.026l-.688.787-5.618 5.617a2.802 2.802 0 0 1-3.96 0l-6.308-6.306-.006-.007a5.884 5.884 0 0 1 0-8.134l.006-.007.007-.006Z", "key": "bbada9c306c10fc911463d6520fa0486a0e5a8a1" }], ["path", { "fill": "currentColor", "d": "M12.013 5.7a.75.75 0 0 1 .75.75v13.3a.75.75 0 0 1-1.5 0V6.45a.75.75 0 0 1 .75-.75Z", "key": "a9985791ef01a1c9b77d642b768250c84c0b3319" }]]);
const Heartrate = createMeisterIcons("heartrate", [["path", { "fill": "currentColor", "d": "m9.715 6.53 2.962 12.747.011.033c.16.48.592.72.939.778.349.058.972-.04 1.185-.678l1.995-5.987H19.5a.75.75 0 1 0 0-1.5h-2.9c-.513 0-.804.292-.92.409l-.01.01-.126.126-1.714 5.143-3.007-12.942-.011-.033c-.183-.549-.699-.738-1.062-.738-.363 0-.879.189-1.061.738l-.006.017-2.008 7.17H4.5a.75.75 0 0 0 0 1.5h2.4c.513 0 .804-.292.92-.409l.01-.01.14-.14L9.714 6.53Z", "key": "2729843c281f1c551766697be44485590254eb93" }]]);
const Hearts = createMeisterIcons("hearts", [["path", { "fill": "currentColor", "d": "M8.985 4.808c-.632-.548-1.468-.502-1.955-.015l-.83.83-.83-.83c-.238-.238-.637-.38-.97-.38-.285 0-.605.11-.888.305-.512.627-.458 1.438.018 1.914l.306.306 2.287 2.386.005.002c.016.006.04.011.072.011a.218.218 0 0 0 .078-.013L8.97 6.632c.238-.238.38-.636.38-.97 0-.289-.112-.593-.365-.854ZM6.27 9.332Zm-.072-5.805c1.11-.894 2.711-.793 3.8.175l.017.015.015.015a2.72 2.72 0 0 1 .82 1.93c0 .667-.258 1.469-.82 2.03l-2.7 2.7c-.322.323-.756.446-1.13.446-.374 0-.808-.123-1.13-.445l-.006-.006-2.3-2.4-.294-.294c-1.11-1.11-1.067-2.863-.03-4.029l.05-.056.06-.046c.502-.376 1.156-.65 1.85-.65.58 0 1.26.195 1.798.615Zm7.002 7.986c-.614 0-1.22.23-1.67.68a2.302 2.302 0 0 0 .079 3.318l.01.01 3.911 3.911a.518.518 0 0 0 .74 0l3.9-3.9c.45-.45.68-1.055.68-1.67 0-.606-.222-1.188-.738-1.63l-.022-.019-.02-.02c-.907-.907-2.433-.907-3.34 0l-.93.93-.93-.93a2.352 2.352 0 0 0-1.67-.68Zm-2.73-.38a3.852 3.852 0 0 1 2.73-1.12c.93 0 1.867.328 2.6.995 1.496-1.361 3.858-1.326 5.31.104.869.756 1.24 1.765 1.24 2.75 0 .986-.37 1.98-1.12 2.73l-3.9 3.9a2.017 2.017 0 0 1-2.86 0l-3.89-3.89a3.802 3.802 0 0 1-.11-5.47Z", "key": "cefe15a6868eea25ee98be61069971592f0b54cb" }]]);
const HeartsAlt = createMeisterIcons("hearts-alt", [["path", { "fill": "currentColor", "d": "M9.385 9.983c-.632-.548-1.468-.502-1.955-.015l-.83.83-.83-.83c-.238-.238-.637-.38-.97-.38-.285 0-.605.11-.888.305-.512.627-.458 1.438.018 1.914l.306.306L6.523 14.5l.005.001c.016.006.04.011.072.011a.217.217 0 0 0 .078-.013l2.692-2.692c.238-.238.38-.636.38-.97 0-.289-.112-.593-.365-.854ZM6.67 14.507Zm-.072-5.805c1.11-.894 2.711-.793 3.8.175l.017.015.015.015a2.72 2.72 0 0 1 .82 1.93c0 .667-.258 1.469-.82 2.03l-2.7 2.7c-.322.323-.756.445-1.13.445-.374 0-.808-.122-1.13-.444l-.006-.006-2.3-2.4-.294-.294c-1.11-1.109-1.067-2.863-.03-4.029l.05-.056.06-.045c.502-.377 1.156-.65 1.85-.65a3 3 0 0 1 1.798.614Zm13.52 1.126c-.623-.489-1.418-.43-1.888.04l-.83.83-.83-.83c-.239-.238-.637-.38-.97-.38-.406 0-.707.124-.954.365-.548.632-.502 1.467-.016 1.954l.3.3 2.392 2.392.006.002c.016.006.04.012.072.012a.219.219 0 0 0 .072-.011l.005-.003 2.287-2.386.306-.306c.238-.238.38-.636.38-.97 0-.279-.105-.607-.332-1.009Zm-2.72-1.226c1.11-.894 2.711-.793 3.8.175l.086.076.06.099c.33.55.606 1.189.606 1.886 0 .666-.258 1.468-.82 2.03l-.294.294-2.3 2.4-.006.006c-.322.322-.756.445-1.13.445-.374 0-.808-.123-1.13-.445l-2.4-2.4-.3-.3c-1.11-1.109-1.067-2.863-.03-4.029l.014-.016.016-.016c.55-.55 1.245-.82 2.03-.82.58 0 1.26.195 1.798.615Z", "key": "21dd5185d1128617714831425bc9fd2aec2db21f" }]]);
const HeartsB = createMeisterIcons("hearts-b", [["path", { "fill": "currentColor", "d": "M8.985 4.808c-.632-.548-1.468-.502-1.955-.015l-.83.83-.83-.83c-.238-.238-.637-.38-.97-.38-.285 0-.605.11-.888.305-.512.627-.458 1.438.018 1.914l.306.306 2.287 2.386.005.002c.016.006.04.011.072.011a.218.218 0 0 0 .078-.013L8.97 6.632c.238-.238.38-.636.38-.97 0-.289-.112-.593-.365-.854ZM6.27 9.332Zm-.072-5.805c1.11-.894 2.711-.793 3.8.175l.017.015.015.015a2.72 2.72 0 0 1 .82 1.93c0 .667-.258 1.469-.82 2.03l-2.7 2.7c-.322.323-.756.446-1.13.446-.374 0-.808-.123-1.13-.445l-.006-.006-2.3-2.4-.294-.294c-1.11-1.11-1.067-2.863-.03-4.029l.05-.056.06-.046c.502-.376 1.156-.65 1.85-.65.58 0 1.26.195 1.798.615ZM21.6 13.863c0 .8-.3 1.6-.9 2.2l-.4.4-3.5 3.5c-.5.5-1.3.5-1.8 0l-3.5-3.5-.4-.4c-1.3-1.2-1.3-3.2-.1-4.4.6-.6 1.4-.9 2.2-.9.8 0 1.6.3 2.2.9l.4.4.4-.4c1.2-1.2 3.2-1.2 4.4 0 .7.6 1 1.4 1 2.2Z", "key": "2076288aac92504c2651e95fd3676d3a73395a5b" }], ["path", { "fill": "currentColor", "d": "M13.2 11.513c-.614 0-1.22.23-1.67.68a2.302 2.302 0 0 0 .079 3.318l.01.01 3.911 3.911a.518.518 0 0 0 .74 0l3.9-3.9c.45-.45.68-1.055.68-1.67 0-.606-.222-1.188-.738-1.63l-.022-.019-.02-.02c-.907-.907-2.433-.907-3.34 0l-.93.93-.93-.93a2.352 2.352 0 0 0-1.67-.68Zm-2.73-.38a3.852 3.852 0 0 1 2.73-1.12c.93 0 1.867.328 2.6.995 1.496-1.361 3.858-1.326 5.31.104.869.756 1.24 1.765 1.24 2.75 0 .986-.37 1.98-1.12 2.73l-3.9 3.9a2.017 2.017 0 0 1-2.86 0l-3.89-3.89a3.802 3.802 0 0 1-.11-5.47Z", "key": "e2798e34b731e2a329f2cf8f782867a6775d554e" }]]);
const Heptagon = createMeisterIcons("heptagon", [["path", { "fill": "currentColor", "d": "m13.58 2.376 5.205 2.503c.98.49 1.742 1.364 1.996 2.505l1.301 5.603c.247 1.111.003 2.252-.754 3.14l-3.58 4.477C17.082 21.522 15.941 22 14.85 22h-5.7c-1.14 0-2.141-.512-2.87-1.362l-.008-.01-3.6-4.5c-.757-.89-1.001-2.03-.754-3.14l.001-.008 1.3-5.596c.254-1.141 1.016-2.015 1.996-2.505l.01-.005 5.195-2.498a3.504 3.504 0 0 1 3.16 0Zm-.665 1.345a2.004 2.004 0 0 0-1.83 0l-.01.005-5.194 2.497c-.617.31-1.053.834-1.199 1.49l-.001.007-1.3 5.596c-.15.684.003 1.338.438 1.846l.009.01 3.6 4.499c.47.544 1.066.829 1.722.829h5.7c.7 0 1.354-.316 1.69-.786l.012-.017 3.62-4.525.009-.01c.435-.508.588-1.162.438-1.846l-1.301-5.603c-.146-.656-.582-1.18-1.199-1.49l-5.204-2.502Z", "key": "8c95fe27bb68ec8433a90214081dee59c9d5c641" }]]);
const HeptagonB = createMeisterIcons("heptagon-b", [["path", { "fill": "currentColor", "d": "m10.75 2.962-5.2 2.5c-.8.4-1.4 1.1-1.6 2l-1.3 5.6c-.2.9 0 1.8.6 2.5l3.6 4.6c.6.7 1.4 1.1 2.3 1.1h5.7c.9 0 1.8-.4 2.3-1.1l3.6-4.5c.6-.7.8-1.6.6-2.5l-1.3-5.6c-.2-.9-.8-1.6-1.6-2l-5.1-2.6c-.8-.3-1.8-.3-2.6 0Z", "key": "61286979c02c44982666b2703f2d22f3bd6c97b9" }], ["path", { "fill": "currentColor", "d": "M10.487 2.26a4.617 4.617 0 0 1 3.126 0l.04.015 5.132 2.617.003.001c.979.49 1.739 1.363 1.993 2.503L22.082 13c.247 1.11.003 2.25-.754 3.14l-3.58 4.476c-.666.918-1.806 1.396-2.898 1.396h-5.7c-1.14 0-2.141-.512-2.87-1.361l-.01-.013-3.6-4.6c-.756-.89-.999-2.029-.752-3.138l.001-.007 1.3-5.597c.254-1.14 1.016-2.014 1.996-2.504l.01-.006 5.23-2.514.032-.012Zm.556 1.394L5.88 6.136c-.617.31-1.053.833-1.199 1.49l-.001.006-1.3 5.596c-.15.684.003 1.338.438 1.846l.011.013 3.6 4.6c.47.542 1.065.825 1.72.825h5.7c.7 0 1.354-.315 1.69-.785l.012-.017 3.62-4.526.008-.01c.436-.508.59-1.162.439-1.845l-1.301-5.604c-.146-.657-.584-1.182-1.203-1.492l-.006-.002-5.06-2.58a3.132 3.132 0 0 0-2.006.003Z", "key": "46929c09db88a6b45ca06b28cb9e3df1e8b21a12" }]]);
const HexAdd = createMeisterIcons("hex-add", [["path", { "fill": "currentColor", "d": "M14.42 4.98c-1.307-1.307-3.533-1.307-4.84 0l-4.6 4.6c-1.307 1.307-1.307 3.533 0 4.84l4.6 4.6c1.307 1.307 3.533 1.307 4.84 0l4.6-4.6c1.307-1.307 1.307-3.533 0-4.84l-4.6-4.6Zm-5.9-1.06c1.893-1.893 5.067-1.893 6.96 0l4.6 4.6c1.893 1.893 1.893 5.067 0 6.96l-4.6 4.6c-1.893 1.893-5.068 1.893-6.96 0l-4.6-4.6c-1.893-1.893-1.893-5.068 0-6.96l4.6-4.6Z", "key": "83894db81ebb2ce0e42833bbe89ca2e38afb6a1a" }], ["path", { "fill": "currentColor", "d": "M12.05 8.3a.75.75 0 0 1 .75.75v6a.75.75 0 1 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "a0503d4ad3ceab232fc834ce9130acf1fa7595b0" }], ["path", { "fill": "currentColor", "d": "M8.3 12.05a.75.75 0 0 1 .75-.75h6a.75.75 0 1 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "501abd1344764edf54ca53fc0500aa6752797919" }]]);
const HexAddB = createMeisterIcons("hex-add-b", [["path", { "fill": "currentColor", "d": "m19.55 14.95-4.6 4.6c-1.6 1.6-4.3 1.6-5.9 0l-4.6-4.6c-1.6-1.6-1.6-4.3 0-5.9l4.6-4.6c1.6-1.6 4.3-1.6 5.9 0l4.6 4.6c1.6 1.6 1.6 4.2 0 5.9Z", "key": "e0fe886418538041c25713c4298c6628cbc6ac54" }], ["path", { "fill": "currentColor", "d": "M14.42 4.98c-1.307-1.307-3.533-1.307-4.84 0l-4.6 4.6c-1.307 1.307-1.307 3.533 0 4.84l4.6 4.6c1.307 1.307 3.533 1.307 4.84 0l4.591-4.592c1.33-1.42 1.305-3.552.009-4.848l-4.6-4.6Zm-5.9-1.06c1.893-1.893 5.067-1.893 6.96 0l4.6 4.6c1.902 1.901 1.88 4.964.016 6.944l-.008.008-4.608 4.608c-1.893 1.893-5.067 1.893-6.96 0l-4.6-4.6c-1.893-1.893-1.893-5.067 0-6.96l4.6-4.6Z", "key": "64a37806b82b152aacfff143a2894618ddcdecd4" }], ["path", { "fill": "#fff", "d": "M11.95 8.2a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "23631bd4df5bab7cd87f013fb71b9a66b2ee03c3" }], ["path", { "fill": "#fff", "d": "M8.2 11.95a.75.75 0 0 1 .75-.75h6a.75.75 0 1 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "7c3f10452d1c3c89173c945d5745184f1d03e0dc" }]]);
const HexCross = createMeisterIcons("hex-cross", [["path", { "fill": "currentColor", "d": "M8.258 3.04c.223-.1.454-.14.692-.14h6.1c.237 0 .469.04.692.14.22.097.394.235.538.38l4.3 4.3c.145.144.283.318.38.538.1.223.14.455.14.692v6.1c0 .238-.04.469-.14.692-.097.22-.235.394-.38.538l-4.3 4.3a1.784 1.784 0 0 1-.538.38c-.223.1-.455.14-.692.14h-6.1c-.237 0-.469-.04-.692-.14a1.785 1.785 0 0 1-.538-.38l-4.3-4.3a1.787 1.787 0 0 1-.38-.538 1.68 1.68 0 0 1-.14-.692v-6.1c0-.237.04-.469.14-.692.097-.22.235-.394.38-.538l4.3-4.3c.144-.145.318-.283.538-.38Zm.61 1.37a.323.323 0 0 0-.088.07l-4.3 4.3a.323.323 0 0 0-.07.087.205.205 0 0 0-.01.083v6.1c0 .06.009.08.01.083a.322.322 0 0 0 .07.087l-.53.53.53-.53 4.3 4.3a.324.324 0 0 0 .087.07c.003.001.023.01.083.01h6.1c.06 0 .08-.009.083-.01a.324.324 0 0 0 .087-.07l4.3-4.3a.324.324 0 0 0 .07-.087c.001-.003.01-.022.01-.083v-6.1c0-.06-.009-.08-.01-.083a.32.32 0 0 0-.07-.087l-4.3-4.3a.325.325 0 0 0-.087-.07.204.204 0 0 0-.083-.01h-6.1c-.06 0-.08.009-.083.01Zm.452 5.01a.75.75 0 0 1 1.06 0L12 11.04l1.62-1.62a.75.75 0 0 1 1.06 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06L12 13.16l-1.62 1.62a.75.75 0 1 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 0-1.06Z", "key": "17a50032300316239830704910841290a9b2b7a2" }]]);
const HexCross1 = createMeisterIcons("hex-cross1", [["path", { "fill": "currentColor", "d": "M14.42 4.98c-1.307-1.307-3.533-1.307-4.84 0l-4.6 4.6c-1.307 1.307-1.307 3.533 0 4.84l4.6 4.6c1.307 1.307 3.533 1.307 4.84 0l4.6-4.6c1.307-1.307 1.307-3.533 0-4.84l-4.6-4.6Zm-5.9-1.06c1.893-1.893 5.067-1.893 6.96 0l4.6 4.6c1.893 1.893 1.893 5.067 0 6.96l-4.6 4.6c-1.893 1.893-5.068 1.893-6.96 0l-4.6-4.6c-1.893-1.893-1.893-5.068 0-6.96l4.6-4.6Z", "key": "ec0bd2303aad36bbd3a783dc9d0775276c54452c" }], ["path", { "fill": "currentColor", "d": "M14.68 9.32a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 0 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "89d25b1859d1d4746fd7d79d9d974f22ce1af528" }], ["path", { "fill": "currentColor", "d": "M9.32 9.32a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 0 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "d010d8417f0ee2159cedd8bb765725a74d1259b6" }]]);
const HexCrossB = createMeisterIcons("hex-cross-b", [["path", { "fill": "currentColor", "d": "m19.55 14.95-4.6 4.6c-1.6 1.6-4.3 1.6-5.9 0l-4.6-4.6c-1.6-1.6-1.6-4.3 0-5.9l4.6-4.6c1.6-1.6 4.3-1.6 5.9 0l4.6 4.6c1.6 1.6 1.6 4.2 0 5.9Z", "key": "dba60db6fdbfb226c29a174797a34b23438b5b10" }], ["path", { "fill": "currentColor", "d": "M14.42 4.98c-1.307-1.307-3.533-1.307-4.84 0l-4.6 4.6c-1.307 1.307-1.307 3.533 0 4.84l4.6 4.6c1.307 1.307 3.533 1.307 4.84 0l4.591-4.592c1.33-1.42 1.305-3.552.009-4.848l-4.6-4.6Zm-5.9-1.06c1.893-1.893 5.067-1.893 6.96 0l4.6 4.6c1.902 1.901 1.88 4.964.016 6.944l-.008.008-4.608 4.608c-1.893 1.893-5.067 1.893-6.96 0l-4.6-4.6c-1.893-1.893-1.893-5.067 0-6.96l4.6-4.6Z", "key": "e34c8148287b01eebc9877db9c0e3f5bbdffaf39" }], ["path", { "fill": "#fff", "d": "M14.58 9.32a.75.75 0 0 1 0 1.06l-4.2 4.2a.75.75 0 1 1-1.06-1.06l4.2-4.2a.75.75 0 0 1 1.06 0Z", "key": "fb8319ef36b6195cdf5db31fc161dcecc3372d05" }], ["path", { "fill": "#fff", "d": "M9.32 9.32a.75.75 0 0 1 1.06 0l4.2 4.2a.75.75 0 0 1-1.06 1.06l-4.2-4.2a.75.75 0 0 1 0-1.06Z", "key": "42953c2ade6d327b3e4904f2dabcb43e6f2c94ea" }]]);
const HexCrossB1 = createMeisterIcons("hex-cross-b1", [["path", { "fill": "currentColor", "d": "M15.05 3.65h-6.1c-.3 0-.5.1-.7.2l-4.4 4.4c-.1.2-.2.4-.2.7v6.1c0 .3.1.5.3.7l4.3 4.3c.2.2.4.3.7.3h6.1c.3 0 .5-.1.7-.3l4.3-4.3c.2-.2.3-.4.3-.7v-6.1c0-.3-.1-.5-.3-.7l-4.2-4.4c-.2-.1-.5-.2-.8-.2Z", "key": "9ea5de09aad57b842f52fc6138a8d2485b06789f" }], ["path", { "fill": "currentColor", "d": "M7.931 3.17c.208-.103.541-.27 1.019-.27h6.1c.45 0 .865.144 1.135.28l.117.058 4.285 4.488c.142.143.277.315.373.532.1.223.14.455.14.692v6.1c0 .237-.04.469-.14.692-.097.22-.235.394-.38.538l-4.3 4.3a1.786 1.786 0 0 1-.538.38c-.223.1-.455.14-.692.14h-6.1c-.238 0-.469-.04-.692-.14a1.786 1.786 0 0 1-.538-.38l-4.3-4.3a1.786 1.786 0 0 1-.38-.538 1.68 1.68 0 0 1-.14-.692v-6.1c0-.478.167-.811.27-1.019l.01-.016.054-.11 4.572-4.571.109-.055.016-.008Zm.761 1.299L4.47 8.692a.958.958 0 0 0-.045.108.45.45 0 0 0-.024.15v6.1c0 .06.009.08.01.083a.323.323 0 0 0 .07.087l4.3 4.3a.324.324 0 0 0 .087.07c.003.001.023.01.083.01h6.1c.063 0 .081-.01.083-.01a.326.326 0 0 0 .087-.07l4.3-4.3a.32.32 0 0 0 .07-.087.203.203 0 0 0 .01-.083v-6.1c0-.06-.009-.08-.01-.083a.32.32 0 0 0-.07-.087l-.006-.006-4.104-4.299a1.07 1.07 0 0 0-.36-.075h-6.1a.45.45 0 0 0-.15.024.959.959 0 0 0-.108.045Z", "key": "34283012d7b33971b6dc87754129446914cf67cc" }], ["path", { "fill": "#fff", "d": "M9.42 9.42a.75.75 0 0 1 1.06 0l4.2 4.2a.75.75 0 0 1-1.06 1.06l-4.2-4.2a.75.75 0 0 1 0-1.06Z", "key": "4b244c8d33bf2c8debc408dae73b4ecf78c07ee5" }], ["path", { "fill": "#fff", "d": "M14.68 9.42a.75.75 0 0 1 0 1.06l-4.2 4.2a.75.75 0 1 1-1.06-1.06l4.2-4.2a.75.75 0 0 1 1.06 0Z", "key": "af03a934b715bb71b83656503bf31b829e5b23de" }]]);
const Hockey = createMeisterIcons("hockey", [["path", { "fill": "currentColor", "d": "M5.233 3.7h-.074l-.073.015a2.526 2.526 0 0 0-1.655 1.13c-.358.584-.448 1.338-.067 2.044l5.288 11.276c.636 1.394 2.022 2.135 3.38 2.135h4.4c1.367 0 2.46-.959 2.733-2.187l.003-.014.403-2.215.002-.01c.165-.993-.513-2.074-1.74-2.074h-6.2c-.069 0-.096-.015-.11-.024a.403.403 0 0 1-.119-.16v-.001L7.117 4.94A2.05 2.05 0 0 0 5.233 3.7ZM4.71 5.63c.112-.184.324-.351.59-.426a.547.547 0 0 1 .436.325l.011.027 4.313 8.726.002.003c.144.29.348.551.63.739.286.191.61.276.94.276h6.2c.12 0 .176.044.209.085a.31.31 0 0 1 .053.238l-.396 2.177c-.132.565-.636 1-1.265 1h-4.4c-.84 0-1.652-.458-2.017-1.26L4.7 6.208l-.013-.022a.518.518 0 0 1 .022-.557Zm12.173 4.52c0-.386.364-.75.75-.75h1c.386 0 .75.364.75.75s-.364.75-.75.75h-1c-.386 0-.75-.364-.75-.75Zm.75-2.25c-1.214 0-2.25 1.036-2.25 2.25s1.036 2.25 2.25 2.25h1c1.214 0 2.25-1.036 2.25-2.25s-1.036-2.25-2.25-2.25h-1Z", "key": "fe62d3392fdbceea0a99fcf587328cf870695624" }]]);
const HockeyB = createMeisterIcons("hockey-b", [["path", { "fill": "currentColor", "d": "m4.05 6.45 5.3 11.3c.5 1.1 1.6 1.7 2.7 1.7h4.4c1 0 1.8-.7 2-1.6l.4-2.2c.1-.6-.3-1.2-1-1.2h-6.1c-.4 0-.7-.2-.9-.6l-4.4-8.6c-.2-.5-.7-.7-1.2-.7-1 0-1.6 1-1.2 1.9Z", "key": "85fdc323b83f634ef2413b0afbbf85295755bd5d" }], ["path", { "fill": "currentColor", "d": "M3.365 6.755C2.76 5.394 3.669 3.8 5.25 3.8c.657 0 1.514.268 1.882 1.136l4.389 8.579c.055.11.102.149.12.161.014.009.04.024.109.024h6.1c1.227 0 1.905 1.081 1.74 2.073l-.002.011-.403 2.214-.003.015A2.793 2.793 0 0 1 16.45 20.2h-4.4c-1.359 0-2.745-.74-3.38-2.135L3.367 6.762l-.003-.007Zm1.368-.615 5.3 11.3c.365.802 1.177 1.26 2.017 1.26h4.4c.629 0 1.133-.435 1.265-1l.396-2.177a.31.31 0 0 0-.053-.237c-.033-.042-.089-.086-.208-.086h-6.1c-.331 0-.655-.085-.941-.276a1.876 1.876 0 0 1-.628-.735L5.766 5.56l-.012-.032a.283.283 0 0 0-.142-.154.788.788 0 0 0-.362-.075c-.418 0-.707.403-.517.84Zm13.917 5.41h-1c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h1c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5Z", "key": "7238508878427d4a70a00e0f751aaf79fca6e674" }], ["path", { "fill": "currentColor", "d": "M17.65 9.3c-.386 0-.75.364-.75.75s.364.75.75.75h1c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-1Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25h1c1.214 0 2.25 1.036 2.25 2.25s-1.036 2.25-2.25 2.25h-1c-1.214 0-2.25-1.036-2.25-2.25Z", "key": "0f1ee3510fbdedce77eaa822dd0dda83a4f6bd97" }]]);
const HomeCh = createMeisterIcons("home-ch", [["path", { "fill": "currentColor", "d": "M13.245 4.907a1.856 1.856 0 0 0-2.497 0l-.006.006L5.76 9.296c-.581.589-.965 1.399-.965 2.154v7.1c0 .786.665 1.45 1.45 1.45h11.5c.924 0 1.512-.685 1.453-1.388l-.003-.03V11.45c0-.804-.32-1.59-.944-2.136l-.001-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.497 0L4.733 8.204l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.298 2.95-2.979V11.45c0-1.196-.478-2.409-1.455-3.264l-4.996-4.397Z", "key": "7aa26f601da2cdd4446b26ed277af5b332a516ff" }], ["path", { "fill": "currentColor", "d": "M12.046 11a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm7.55-9.75a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "8aba93d7730d8714df173d062815e82eda476c9f" }]]);
const HomeChB = createMeisterIcons("home-ch-b", [["path", { "fill": "currentColor", "d": "M13.245 4.908a1.856 1.856 0 0 0-2.497 0l-.006.005L5.76 9.297c-.581.588-.965 1.398-.965 2.153v7.1c0 .786.665 1.45 1.45 1.45h11.5c.924 0 1.512-.685 1.453-1.388l-.003-.03V11.45c0-.804-.32-1.59-.944-2.136h-.001l-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.497 0L4.733 8.203l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.298 2.95-2.979V11.45c0-1.196-.478-2.409-1.455-3.264L14.244 3.79Z", "key": "9221c95ef611432432f817c4bfd35babd0093b2d" }], ["path", { "fill": "currentColor", "d": "M12.046 14.25a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "ccc746d67982e5520f28d9664c483b31926bb9a6" }], ["path", { "fill": "currentColor", "d": "M12.046 11a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm7.55-9.75a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "5fdd682279b71266014daaeb7c2fea9367cb7a00" }]]);
const HomeCircle = createMeisterIcons("home-circle", [["path", { "fill": "currentColor", "d": "M13.245 4.695a1.856 1.856 0 0 0-2.497 0l-.006.006L5.76 9.084c-.581.588-.965 1.399-.965 2.154v7.1c0 .785.665 1.45 1.45 1.45h11.5c.924 0 1.512-.686 1.453-1.388l-.003-.031v-7.131c0-.804-.32-1.591-.944-2.136l-.001-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.497 0L4.733 7.99l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.297 2.95-2.978v-7.071c0-1.196-.478-2.41-1.455-3.264l-4.996-4.397Z", "key": "09389e6a86bd717a638f26cc2bee4f301aa54d05" }], ["path", { "fill": "currentColor", "d": "M12.046 10.788a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "addb5d37db2081a7639d01ba22a6b6af5c020e9b" }]]);
const HomeCircle1 = createMeisterIcons("home-circle1", [["path", { "fill": "currentColor", "d": "M13.245 4.695a1.856 1.856 0 0 0-2.497 0l-.006.005L5.76 9.084c-.581.588-.965 1.399-.965 2.153v7.1c0 .786.665 1.45 1.45 1.45h3.05v-3.85c0-.485.09-.943.254-1.307.081-.18.194-.369.352-.523a1.07 1.07 0 0 1 .744-.32h2.8c.337 0 .59.168.745.32.157.154.27.342.352.523.164.364.253.822.253 1.307v3.85h2.95c.924 0 1.512-.685 1.453-1.387l-.003-.031v-7.132c0-.803-.32-1.59-.944-2.135L18.25 9.1l-5.006-4.405Zm-3.199 16.593h-3.8a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.239.61-2.42 1.42-3.23l.017-.018 5.015-4.413a3.356 3.356 0 0 1 4.497 0l4.995 4.396h.001c.977.856 1.455 2.068 1.455 3.264v7.072c.12 1.68-1.284 2.978-2.95 2.978h-7.699Zm.75-5.35v3.85h2.5v-3.85c0-.285-.049-.51-.103-.65H10.9a1.86 1.86 0 0 0-.104.65Zm0-6.4a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "25ba64761effc3705288bc491e07c04f30311b48" }]]);
const HomeCircleB = createMeisterIcons("home-circle-b", [["path", { "fill": "currentColor", "d": "m14.198 3.527 4.996 4.396c.94.823 1.556 2.02 1.556 3.265v7.1a2.97 2.97 0 0 1-2.95 2.95h-4.55v-5.35c0-.285-.05-.51-.104-.65h-2.292a1.86 1.86 0 0 0-.104.65v5.35H6.2a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.197.479-2.41 1.455-3.264l.001-.001 4.996-4.396a3.356 3.356 0 0 1 4.496 0Zm-1 1.118a1.856 1.856 0 0 0-2.496 0l-.007.006-5 4.4h-.001a2.822 2.822 0 0 0-.944 2.137v7.1c0 .785.664 1.45 1.45 1.45h3.05v-3.85c0-.486.09-.944.254-1.308a1.7 1.7 0 0 1 .351-.523 1.07 1.07 0 0 1 .745-.32h2.8c.336 0 .59.168.745.32.157.154.27.342.351.523.164.364.254.822.254 1.307v3.85h3.05a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.755-.384-1.558-1.044-2.135l-.002-.001-5.006-4.406ZM12 8.337c-.686 0-1.25.565-1.25 1.25 0 .686.564 1.25 1.25 1.25.61 0 1.25-.588 1.25-1.25 0-.685-.564-1.25-1.25-1.25Zm-2.75 1.25A2.756 2.756 0 0 1 12 6.837a2.756 2.756 0 0 1 2.75 2.75c0 1.539-1.36 2.75-2.75 2.75a2.756 2.756 0 0 1-2.75-2.75Z", "key": "8dea45f674ba6a2a249cf328496ff7cc793f6175" }], ["path", { "fill": "currentColor", "d": "M14 15.988v4.6h-4v-4.6c0-.8.3-1.4.6-1.4h2.8c.3 0 .6.6.6 1.4Z", "key": "015b4be098d5b3e81e71813ea43e28070b0c585d" }], ["path", { "fill": "currentColor", "d": "M10.854 15.338a1.86 1.86 0 0 0-.104.65v3.85h2.5v-3.85c0-.285-.05-.51-.104-.65h-2.292Zm-.999-1.18a1.07 1.07 0 0 1 .745-.32h2.8c.336 0 .59.168.745.32.157.154.27.341.351.522.164.364.254.822.254 1.308v5.35h-5.5v-5.35c0-.486.09-.944.254-1.308.08-.18.194-.368.351-.522ZM12 11.588a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "688f90ab893d25fcde80848a71cd1e00dd3ea2f5" }], ["path", { "fill": "currentColor", "d": "M12 8.338a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "78b8d234fbf198bf16d6674e765de3da8c8c9697" }]]);
const HomeCircleB1 = createMeisterIcons("home-circle-b1", [["path", { "fill": "currentColor", "d": "M13.245 4.645a1.856 1.856 0 0 0-2.497 0l-.006.006-4.981 4.383c-.581.588-.965 1.398-.965 2.153v7.2c0 .786.665 1.45 1.45 1.45h11.5c.898 0 1.517-.661 1.453-1.492l-.003-.029v-7.128c0-.804-.32-1.591-.943-2.136l-.002-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.497 0L4.733 7.94l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.2a2.97 2.97 0 0 0 2.95 2.95h11.5c1.693 0 3.068-1.323 2.95-3.076v-7.073c0-1.196-.478-2.41-1.455-3.264v-.001l-4.996-4.396Z", "key": "e0346c972b96c456f908f0211e29485da9eac670" }], ["path", { "fill": "currentColor", "d": "M12.047 13.987a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "5df21791fe30a3d14b4756d960435e03aa591fa3" }], ["path", { "fill": "currentColor", "d": "M12.047 10.737a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "f323a826177e48bda68c1bc76324569295c1b72c" }]]);
const HomeCircleCh = createMeisterIcons("home-circle-ch", [["path", { "fill": "currentColor", "d": "M17.596 3.25a.75.75 0 0 0-1.5 0v2.169l-1.851-1.63a3.356 3.356 0 0 0-4.497 0L4.733 8.204l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.501c1.665 0 3.07-1.298 2.95-2.979V11.45c0-1.196-.48-2.409-1.456-3.264l-1.645-1.447V3.25Zm-4.3 12.9V20h-2.5v-3.85c0-.284.05-.509.104-.65h2.293c.054.141.103.366.103.65Zm1.5 0V20h2.95c.924 0 1.512-.685 1.453-1.388l-.003-.03V11.45c0-.804-.32-1.59-.944-2.136l-.001-.001-5.006-4.406a1.856 1.856 0 0 0-2.497 0l-.006.006L5.76 9.296c-.581.589-.965 1.399-.965 2.154v7.1c0 .786.665 1.45 1.45 1.45h3.05v-3.85c0-.485.09-.944.254-1.308a1.7 1.7 0 0 1 .352-.522c.155-.152.408-.32.744-.32h2.8c.337 0 .59.168.745.32.157.154.27.342.352.522.164.364.253.823.253 1.308Zm-4-6.4a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12.046 7a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "0247215de50a6285c8d7463baaa24f4283fa130e" }]]);
const HomeCircleChB = createMeisterIcons("home-circle-ch-b", [["path", { "fill": "currentColor", "d": "M9.731 3.664c1.274-1.019 3.164-1.019 4.438 0l.012.01 3.12 2.717 1.896 1.697c.947.83 1.553 2.03 1.553 3.362v7.1a2.97 2.97 0 0 1-2.95 2.95h-4.55v-5.35c0-.284-.05-.509-.104-.65h-2.292a1.86 1.86 0 0 0-.104.65v5.35H6.2a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.285.471-2.502 1.455-3.364h.001l5.012-4.41.013-.012Zm.95 1.162L5.695 9.213l-.001.001c-.615.539-.944 1.321-.944 2.236v7.1c0 .786.664 1.45 1.45 1.45h3.05v-3.85c0-.485.09-.944.254-1.308.08-.18.194-.368.351-.522A1.07 1.07 0 0 1 10.6 14h2.8c.336 0 .59.168.745.32.157.154.27.342.351.522.164.364.254.823.254 1.308V20h3.05a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.866-.393-1.666-1.044-2.236L18.2 9.21l-1.896-1.697-3.084-2.685c-.722-.569-1.816-.57-2.539-.001ZM12 8.5c-.686 0-1.25.564-1.25 1.25S11.314 11 12 11c.61 0 1.25-.588 1.25-1.25 0-.686-.564-1.25-1.25-1.25ZM9.25 9.75A2.756 2.756 0 0 1 12 7a2.756 2.756 0 0 1 2.75 2.75c0 1.538-1.36 2.75-2.75 2.75a2.756 2.756 0 0 1-2.75-2.75Z", "key": "c5a34eda0f194a5456f0ad16fb2b07e98a5883ef" }], ["path", { "fill": "currentColor", "d": "M14 16.15v4.6h-4v-4.6c0-.8.3-1.4.6-1.4h2.8c.3 0 .6.6.6 1.4Z", "key": "f02aaf57d3759f0fd81c285965f2769d31d943ea" }], ["path", { "fill": "currentColor", "d": "M10.854 15.5a1.86 1.86 0 0 0-.104.65V20h2.5v-3.85c0-.284-.05-.509-.104-.65h-2.292Zm-.999-1.18A1.07 1.07 0 0 1 10.6 14h2.8c.336 0 .59.168.745.32.157.154.27.342.351.522.164.364.254.823.254 1.308v5.35h-5.5v-5.35c0-.485.09-.944.254-1.308.08-.18.194-.368.351-.522ZM16.8 2.5a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75ZM12 11.75a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "c61010f402b9be1a481cdd86dd840643d6dc7940" }], ["path", { "fill": "currentColor", "d": "M12 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 9.75a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "f87d2145ab71c52e1e4be189d75c54a210cc7973" }]]);
const HomeEmpty = createMeisterIcons("home-empty", [["path", { "fill": "currentColor", "d": "M13.245 4.695a1.856 1.856 0 0 0-2.497 0l-.006.006L5.76 9.084c-.581.588-.965 1.399-.965 2.154v7.1c0 .785.665 1.45 1.45 1.45h11.5c.924 0 1.512-.686 1.453-1.388l-.003-.031v-7.131c0-.804-.32-1.591-.944-2.136l-.001-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.497 0L4.733 7.99l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.297 2.95-2.978v-7.071c0-1.196-.478-2.41-1.455-3.264l-4.996-4.397Z", "key": "4f39a85410452f5aa82c253d1f740bf9c5009160" }]]);
const HomeEmptyB = createMeisterIcons("home-empty-b", [["path", { "fill": "currentColor", "d": "M17.747 20.588h-11.5c-1.2 0-2.2-1-2.2-2.2v-7.2c0-1 .5-2 1.2-2.7l5-4.4c1-.9 2.5-.9 3.5 0l5 4.4c.8.7 1.2 1.7 1.2 2.7v7.1c.1 1.3-.9 2.3-2.2 2.3Z", "key": "6ff8cf329ed9b8143cde34ce488c2437dbddb9a5" }], ["path", { "fill": "currentColor", "d": "M13.245 4.645a1.856 1.856 0 0 0-2.497 0l-.006.006-4.981 4.383c-.581.588-.965 1.398-.965 2.153v7.2c0 .786.665 1.45 1.45 1.45h11.5c.898 0 1.517-.661 1.453-1.492l-.003-.029v-7.128c0-.804-.32-1.591-.943-2.136l-.002-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.497 0L4.733 7.94l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.2a2.97 2.97 0 0 0 2.95 2.95h11.5c1.693 0 3.068-1.323 2.95-3.076v-7.073c0-1.196-.478-2.41-1.455-3.264v-.001l-4.996-4.396Z", "key": "e876c3f93b8a4d529fe9c065edac1effc4d14786" }]]);
const HomeGarage = createMeisterIcons("home-garage", [["path", { "fill": "currentColor", "d": "M13.245 4.695a1.856 1.856 0 0 0-2.497 0l-.006.006L5.76 9.084c-.581.588-.965 1.399-.965 2.154v7.1c0 .785.665 1.45 1.45 1.45h.55v-3.85c0-1.215.936-2.15 2.15-2.15h6.2c1.215 0 2.15.935 2.15 2.15v3.85h.45c.924 0 1.512-.686 1.453-1.388l-.003-.031v-7.131c0-.804-.32-1.591-.944-2.136l-.001-.001-5.006-4.406Zm2.551 12.093v-.85c0-.386-.264-.65-.65-.65h-6.2c-.385 0-.65.264-.65.65v.85h7.5Zm-7.5 1.5h7.5v1.5h-7.5v-1.5Zm5.949-14.71a3.356 3.356 0 0 0-4.497 0L4.733 7.99l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.297 2.95-2.978v-7.071c0-1.196-.478-2.41-1.455-3.264l-4.996-4.397Z", "key": "ac8b40ad6e76b31f6eabf29229ee41b5210421b5" }]]);
const HomeGarageB = createMeisterIcons("home-garage-b", [["path", { "fill": "currentColor", "d": "M20 11.238v7.1c0 1.2-1 2.2-2.2 2.2h-1.3v-4.6c0-.8-.6-1.4-1.4-1.4H8.8c-.8 0-1.4.6-1.4 1.4v4.6H6.2c-1.2 0-2.2-1-2.2-2.2v-7.1c0-1 .4-2 1.2-2.7l5-4.4c1-.9 2.5-.9 3.5 0l5 4.4c.8.7 1.3 1.7 1.3 2.7Z", "key": "0d78694443f5a7c44c9b53b5f6432854073876ff" }], ["path", { "fill": "currentColor", "d": "M13.198 4.695a1.856 1.856 0 0 0-2.496 0l-.007.006-5 4.4-.001.001a2.821 2.821 0 0 0-.944 2.136v7.1c0 .785.664 1.45 1.45 1.45h.45v-3.85c0-1.215.936-2.15 2.15-2.15h6.3c1.214 0 2.15.935 2.15 2.15v3.85h.55a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.756-.384-1.559-1.044-2.136l-.002-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.496 0L4.706 7.973c-.977.856-1.456 2.068-1.456 3.265v7.1a2.97 2.97 0 0 0 2.95 2.95h1.95v-5.35c0-.386.264-.65.65-.65h6.3c.386 0 .65.264.65.65v5.35h2.05a2.97 2.97 0 0 0 2.95-2.95v-7.1c0-1.245-.616-2.442-1.555-3.264h-.001l-4.996-4.397Z", "key": "51c2a34a08180edfba1bf66bd01f2f9a4dbd2912" }], ["path", { "fill": "currentColor", "d": "M8.9 15.288c-.386 0-.65.264-.65.65v3.85h7.5v-3.85c0-.093-.049-.234-.205-.382a1.067 1.067 0 0 0-.507-.268H8.9Zm-2.15.65c0-1.215.936-2.15 2.15-2.15h6.253l.053.007a2.55 2.55 0 0 1 1.374.674c.369.352.67.861.67 1.469v5.35H6.75v-5.35Z", "key": "68996401bc706257669fddcca555e3a1baddef9f" }], ["path", { "fill": "currentColor", "d": "M6.75 17.638a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75Z", "key": "c63e8a04a279ad5dac98cc503f0dafd3c812c83f" }]]);
const HomeGarageCircle = createMeisterIcons("home-garage-circle", [["path", { "fill": "currentColor", "d": "M10.748 4.695a1.856 1.856 0 0 1 2.497 0L18.25 9.1l.002.002c.622.545.943 1.332.943 2.135v7.132l.003.03c.059.703-.529 1.388-1.453 1.388h-.45v-3.85c0-1.214-.935-2.15-2.15-2.15h-6.2c-1.214 0-2.15.936-2.15 2.15v3.85h-.55a1.47 1.47 0 0 1-1.45-1.45v-7.1c0-.755.384-1.565.965-2.153L10.74 4.7l.007-.005Zm5.048 11.243v.85h-7.5v-.85c0-.386.265-.65.65-.65h6.2c.386 0 .65.264.65.65Zm0 3.85v-1.5h-7.5v1.5h7.5Zm-8.26 1.5h10.21c1.666 0 3.07-1.298 2.95-2.98v-7.07c0-1.197-.478-2.41-1.455-3.264v-.001l-4.996-4.396a3.356 3.356 0 0 0-4.497 0L4.733 7.99l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h1.29Zm3.26-11.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "81066efa74305f7e52b83a734d62029ff99b19bb" }]]);
const HomeGarageCircleChA = createMeisterIcons("home-garage-circle-ch-a", [["path", { "fill": "currentColor", "d": "M16.846 2.5a.75.75 0 0 1 .75.75v3.489l1.644 1.446.001.001c.977.855 1.455 2.068 1.455 3.264v7.071c.12 1.681-1.284 2.979-2.95 2.979h-11.5a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.238.61-2.42 1.42-3.23l.017-.017L9.748 3.79a3.356 3.356 0 0 1 4.497 0l1.851 1.629V3.25a.75.75 0 0 1 .75-.75Zm-8.55 16V20h7.5v-1.5h-7.5Zm0-2.35V17h7.5v-.85c0-.386-.264-.65-.65-.65h-6.2c-.385 0-.65.264-.65.65Zm9 0V20h.45c.924 0 1.512-.685 1.453-1.388l-.003-.03V11.45c0-.804-.32-1.59-.944-2.136l-.001-.001-5.006-4.406a1.856 1.856 0 0 0-2.497 0l-.006.006L5.76 9.296c-.581.589-.965 1.399-.965 2.154v7.1c0 .786.665 1.45 1.45 1.45h.55v-3.85c0-1.214.936-2.15 2.15-2.15h6.2c1.215 0 2.15.936 2.15 2.15Zm-6.5-6.4a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12.046 7a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "b6f83609638511a05f51b08ccce9d12561ecadac" }]]);
const HomeGarageCircleChAb = createMeisterIcons("home-garage-circle-ch-ab", [["path", { "fill": "currentColor", "d": "M9.731 3.664c1.274-1.019 3.164-1.019 4.438 0l.012.01 3.12 2.717 1.896 1.697c.947.83 1.553 2.03 1.553 3.362v7.1a2.97 2.97 0 0 1-2.95 2.95h-2.05v-5.35c0-.386-.264-.65-.65-.65H8.9c-.386 0-.65.264-.65.65v5.35H6.2a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.285.471-2.502 1.455-3.364h.001l5.012-4.41.013-.012Zm.95 1.162L5.695 9.213l-.001.001c-.615.539-.944 1.321-.944 2.236v7.1c0 .786.664 1.45 1.45 1.45h.55v-3.85c0-1.214.936-2.15 2.15-2.15h6.2c1.214 0 2.15.936 2.15 2.15V20h.55a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.866-.393-1.666-1.044-2.236L18.2 9.21l-1.896-1.697-3.084-2.685c-.722-.569-1.816-.57-2.539-.001ZM12 8.5c-.686 0-1.25.564-1.25 1.25S11.314 11 12 11c.61 0 1.25-.588 1.25-1.25 0-.686-.564-1.25-1.25-1.25ZM9.25 9.75A2.756 2.756 0 0 1 12 7a2.756 2.756 0 0 1 2.75 2.75c0 1.538-1.36 2.75-2.75 2.75a2.756 2.756 0 0 1-2.75-2.75Z", "key": "2783e6c57245ff1fc62e6e3ec8fcdab83ca21ebf" }], ["path", { "fill": "currentColor", "d": "M16.5 17.75h-9v3h9v-3Z", "key": "838809159c9275400d279042996bd5f0faef7352" }], ["path", { "fill": "currentColor", "d": "M6.75 17h10.5v4.5H6.75V17Zm1.5 1.5V20h7.5v-1.5h-7.5Zm8.55-16a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "a0421101de23c51b040bd05f48335049ea9fe5ae" }], ["path", { "fill": "currentColor", "d": "M8.9 15.5c-.386 0-.65.264-.65.65V17h7.5v-.85c0-.352-.33-.65-.65-.65H8.9Zm-2.15.65c0-1.214.936-2.15 2.15-2.15h6.2c1.08 0 2.15.902 2.15 2.15v2.35H6.75v-2.35Zm5.25-4.4a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "2135648ae79577ded2915da54b10dac672f5fa01" }], ["path", { "fill": "currentColor", "d": "M12 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 9.75a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "4621007d2a6144a3afbd812a335ac5edcafd6f96" }]]);
const HomeGarageCircleVarB = createMeisterIcons("home-garage-circle-var-b", [["path", { "fill": "currentColor", "d": "m14.198 3.527 4.996 4.396c.94.823 1.556 2.02 1.556 3.265v7.1a2.97 2.97 0 0 1-2.95 2.95h-2.05v-3h-7.5v3H6.2a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.197.479-2.41 1.455-3.264l.001-.001 4.996-4.396a3.356 3.356 0 0 1 4.496 0Zm-1 1.118a1.856 1.856 0 0 0-2.496 0l-.007.006-5 4.4h-.001a2.822 2.822 0 0 0-.944 2.137v7.1c0 .785.664 1.45 1.45 1.45h.55v-3h10.5v3h.55a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.756-.384-1.559-1.044-2.136l-.002-.001-5.006-4.406ZM12 8.337c-.686 0-1.25.565-1.25 1.25 0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25c0-.685-.564-1.25-1.25-1.25Zm-2.75 1.25A2.756 2.756 0 0 1 12 6.837a2.756 2.756 0 0 1 2.75 2.75 2.756 2.756 0 0 1-2.75 2.75 2.756 2.756 0 0 1-2.75-2.75Z", "key": "a5cc6ecd028d3862c3eda7b0b4a3faffad5f46b8" }], ["path", { "fill": "currentColor", "d": "M16.5 17.588h-9v3h9v-3Z", "key": "2b8f9a18cf2b5c77315efaed1bec361f4e06870f" }], ["path", { "fill": "currentColor", "d": "M6.75 16.838h10.5v4.5H6.75v-4.5Zm1.5 1.5v1.5h7.5v-1.5h-7.5Z", "key": "9f9cca811ce5f5fff2b5715737665349095c4043" }], ["path", { "fill": "currentColor", "d": "M8.9 15.338c-.386 0-.65.264-.65.65v1.6a.75.75 0 0 1-1.5 0v-1.6c0-1.215.936-2.15 2.15-2.15h6.2c1.214 0 2.15.935 2.15 2.15v1.6a.75.75 0 0 1-1.5 0v-1.6c0-.386-.264-.65-.65-.65H8.9Zm3.1-3.75a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "be5b37e0a3e4cd8d4fd45dd1af36ad4495748b3a" }], ["path", { "fill": "currentColor", "d": "M12 8.338a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "ac5d0dbfc527df284ded255d5b34f41446037e6e" }]]);
const HomeGarageLine = createMeisterIcons("home-garage-line", [["path", { "fill": "currentColor", "d": "M10.748 4.695a1.856 1.856 0 0 1 2.497 0L18.25 9.1l.002.002c.622.545.943 1.332.943 2.135v7.132l.003.03c.059.703-.529 1.388-1.453 1.388h-.45v-3.85c0-1.214-.935-2.15-2.15-2.15h-6.2c-1.214 0-2.15.936-2.15 2.15v3.85h-.55a1.47 1.47 0 0 1-1.45-1.45v-7.1c0-.755.384-1.565.965-2.153L10.74 4.7l.007-.005Zm5.048 11.243v.85h-7.5v-.85c0-.386.265-.65.65-.65h6.2c.386 0 .65.264.65.65Zm0 2.35h-7.5v1.5h7.5v-1.5Zm-8.26 3h10.21c1.666 0 3.07-1.298 2.95-2.98v-7.07c0-1.197-.478-2.41-1.455-3.264v-.001l-4.996-4.396a3.356 3.356 0 0 0-4.497 0L4.733 7.99l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h1.29Zm1.51-12a.75.75 0 1 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Z", "key": "8650b7ea1129a8aad1920d20616c6ba14434c406" }]]);
const HomeGarageLineB = createMeisterIcons("home-garage-line-b", [["path", { "fill": "currentColor", "d": "M13.198 4.645a1.856 1.856 0 0 0-2.496 0l-.007.006-5 4.4h-.001a2.822 2.822 0 0 0-.944 2.137v7.1c0 .785.664 1.45 1.45 1.45h.45v-3.85c0-1.215.936-2.15 2.15-2.15h6.3c1.214 0 2.15.935 2.15 2.15v3.85h.55a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.756-.384-1.559-1.044-2.136l-.002-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.496 0L4.706 7.923c-.977.856-1.456 2.069-1.456 3.265v7.1a2.97 2.97 0 0 0 2.95 2.95h1.95v-5.35c0-.386.264-.65.65-.65h6.3c.386 0 .65.264.65.65v5.35h2.05a2.97 2.97 0 0 0 2.95-2.95v-7.1c0-1.245-.616-2.442-1.555-3.264l-.001-.001-4.996-4.396Z", "key": "e94f8d81c8557fc3073b6398b8d3b793f8acabcc" }], ["path", { "fill": "currentColor", "d": "M6.75 16.838h10.5v4.5H6.75v-4.5Zm1.5 1.5v1.5h7.5v-1.5h-7.5Z", "key": "79b43219392efa23ed8b93e62a6dbb458092ee71" }], ["path", { "fill": "currentColor", "d": "M16.5 15.988v1.6h-9v-1.6c0-.8.6-1.4 1.4-1.4h6.2c.7 0 1.4.6 1.4 1.4Z", "key": "05b905f33588725490908067032480e4c2e5ce0a" }], ["path", { "fill": "currentColor", "d": "M8.9 15.338c-.386 0-.65.264-.65.65v.85h7.5v-.85c0-.352-.33-.65-.65-.65H8.9Zm-2.15.65c0-1.215.936-2.15 2.15-2.15h6.2c1.08 0 2.15.901 2.15 2.15v2.35H6.75v-2.35Zm1.5-6.001a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "9595a9141259ad6097c59ac545aba1c30cf8da1c" }]]);
const HomeLargedoor = createMeisterIcons("home-largedoor", [["path", { "fill": "currentColor", "d": "M10.748 4.695a1.856 1.856 0 0 1 2.497 0l5.006 4.406h.002c.622.546.943 1.333.943 2.137v7.13l.003.032c.059.703-.529 1.388-1.453 1.388h-.45v-3.85c0-1.215-.935-2.15-2.15-2.15h-6.2c-1.214 0-2.15.935-2.15 2.15v3.85h-.55a1.47 1.47 0 0 1-1.45-1.45v-7.1c0-.755.384-1.566.965-2.154l4.98-4.383.007-.006ZM8.296 19.788h7.5v-3.85c0-.386-.264-.65-.65-.65h-6.2c-.385 0-.65.264-.65.65v3.85Zm1.452-16.21a3.356 3.356 0 0 1 4.497-.001l4.995 4.396h.001c.977.856 1.455 2.069 1.455 3.265v7.07c.12 1.682-1.284 2.98-2.95 2.98h-11.5a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.239.61-2.42 1.42-3.23l.017-.018 5.015-4.413Z", "key": "97c9c85e6d6c8b5678537aff8d2c5e02c11756f7" }]]);
const HomeLargedoorB = createMeisterIcons("home-largedoor-b", [["path", { "fill": "currentColor", "d": "M13.198 4.695a1.856 1.856 0 0 0-2.496 0l-.007.006-5 4.4-.001.001a2.821 2.821 0 0 0-.944 2.136v7.1c0 .785.664 1.45 1.45 1.45h.45v-3.85c0-1.215.936-2.15 2.15-2.15h6.3c1.214 0 2.15.935 2.15 2.15v3.85h.55a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.756-.384-1.559-1.044-2.136l-.002-.001-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.496 0L4.706 7.973c-.977.856-1.456 2.068-1.456 3.265v7.1a2.97 2.97 0 0 0 2.95 2.95h1.95v-5.35c0-.386.264-.65.65-.65h6.3c.386 0 .65.264.65.65v5.35h2.05a2.97 2.97 0 0 0 2.95-2.95v-7.1c0-1.245-.616-2.442-1.555-3.264h-.001l-4.996-4.397Z", "key": "7575314d51a4dd5924ec6cff1932e520177a2c8d" }], ["path", { "fill": "currentColor", "d": "M16.5 15.938v4.6h-9v-4.6c0-.8.6-1.4 1.4-1.4h6.2c.7.1 1.4.7 1.4 1.4Z", "key": "7a198870666f1cb25989c5ff79af069f2d32b0c6" }], ["path", { "fill": "currentColor", "d": "M8.9 15.288c-.386 0-.65.264-.65.65v3.85h7.5v-3.85c0-.093-.049-.234-.205-.382a1.067 1.067 0 0 0-.507-.268H8.9Zm-2.15.65c0-1.215.936-2.15 2.15-2.15h6.253l.053.007a2.55 2.55 0 0 1 1.374.674c.369.352.67.861.67 1.469v5.35H6.75v-5.35Z", "key": "8d5b7e0b4202d0983310d8726c0195923cb0702a" }]]);
const HomeLargedoorCircle = createMeisterIcons("home-largedoor-circle", [["path", { "fill": "currentColor", "d": "M13.245 4.695a1.856 1.856 0 0 0-2.497 0l-.006.005L5.76 9.084c-.581.588-.965 1.399-.965 2.153v7.1c0 .786.665 1.45 1.45 1.45h.55v-3.85c0-1.214.936-2.15 2.15-2.15h6.2c1.215 0 2.15.936 2.15 2.15v3.85h.45c.924 0 1.512-.685 1.453-1.387l-.003-.031v-7.132c0-.803-.32-1.59-.944-2.135L18.25 9.1l-5.006-4.405ZM7.546 21.288h-1.3a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.239.61-2.42 1.42-3.23l.017-.018 5.015-4.413a3.356 3.356 0 0 1 4.497 0l4.995 4.396h.001c.977.856 1.455 2.068 1.455 3.264v7.072c.12 1.68-1.284 2.978-2.95 2.978H7.547Zm.75-5.35v3.85h7.5v-3.85c0-.386-.264-.65-.65-.65h-6.2c-.385 0-.65.264-.65.65Zm2.5-6.4a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "f82695938f70dade42972e0a1217073dcd0a79f5" }]]);
const HomeLargedoorCircleB = createMeisterIcons("home-largedoor-circle-b", [["path", { "fill": "currentColor", "d": "m14.198 3.577 4.996 4.396c.94.823 1.556 2.02 1.556 3.265v7.1a2.97 2.97 0 0 1-2.95 2.95h-2.05v-5.35c0-.386-.264-.65-.65-.65H8.9c-.386 0-.65.264-.65.65v5.35H6.2a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.197.479-2.41 1.455-3.264h.001l4.996-4.397a3.356 3.356 0 0 1 4.496 0Zm-1 1.118a1.856 1.856 0 0 0-2.496 0l-.007.006-5 4.4-.001.001a2.821 2.821 0 0 0-.944 2.136v7.1c0 .785.664 1.45 1.45 1.45h.55v-3.85c0-1.215.936-2.15 2.15-2.15h6.2c1.214 0 2.15.935 2.15 2.15v3.85h.55a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.756-.384-1.559-1.044-2.136l-.002-.001-5.006-4.406ZM12 8.388c-.686 0-1.25.564-1.25 1.25 0 .685.564 1.25 1.25 1.25.61 0 1.25-.588 1.25-1.25 0-.686-.564-1.25-1.25-1.25Zm-2.75 1.25A2.756 2.756 0 0 1 12 6.888a2.756 2.756 0 0 1 2.75 2.75c0 1.537-1.36 2.75-2.75 2.75a2.756 2.756 0 0 1-2.75-2.75Z", "key": "8f037261aab5d8fef3fad8a4d8a7799e1be973fd" }], ["path", { "fill": "currentColor", "d": "M16.5 15.938v4.6h-9v-4.6c0-.8.6-1.4 1.4-1.4h6.2c.7.1 1.4.7 1.4 1.4Z", "key": "dcff877fa0eef72b4cb298cace50150451230f93" }], ["path", { "fill": "currentColor", "d": "M8.9 15.288c-.386 0-.65.264-.65.65v3.85h7.5v-3.85c0-.093-.049-.234-.205-.382a1.067 1.067 0 0 0-.507-.268H8.9Zm-2.15.65c0-1.215.936-2.15 2.15-2.15h6.253l.053.007a2.55 2.55 0 0 1 1.374.674c.369.352.67.861.67 1.469v5.35H6.75v-5.35Zm5.25-4.3a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "6a0b5746a0d808479bb7f201dd0c8f3ad3fbdbfc" }], ["path", { "fill": "currentColor", "d": "M12 8.388a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "659ca4dca464555432a44aa2c9c503167f1bd26b" }]]);
const HomeLargedoorCircleCh = createMeisterIcons("home-largedoor-circle-ch", [["path", { "fill": "currentColor", "d": "M17.596 3.25a.75.75 0 0 0-1.5 0v2.169l-1.851-1.63a3.356 3.356 0 0 0-4.497 0L4.733 8.204l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.298 2.95-2.979V11.45c0-1.196-.478-2.409-1.455-3.264l-1.645-1.447V3.25Zm-1.8 12.9V20h-7.5v-3.85c0-.386.265-.65.65-.65h6.2c.386 0 .65.264.65.65Zm1.5 0V20h.45c.924 0 1.512-.685 1.453-1.388l-.003-.03V11.45c0-.804-.32-1.59-.944-2.136l-.001-.001-5.006-4.406a1.856 1.856 0 0 0-2.497 0l-.006.006L5.76 9.296c-.581.589-.965 1.399-.965 2.154v7.1c0 .786.665 1.45 1.45 1.45h.55v-3.85c0-1.214.936-2.15 2.15-2.15h6.2c1.215 0 2.15.936 2.15 2.15Zm-6.5-6.4a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12.046 7a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "5d7b8d4ef8440e6a331b218796c3f288070aff2c" }]]);
const HomeLargedoorCircleChB = createMeisterIcons("home-largedoor-circle-ch-b", [["path", { "fill": "currentColor", "d": "M9.731 3.664c1.274-1.019 3.164-1.019 4.438 0l.012.01 3.12 2.717 1.896 1.697c.947.83 1.553 2.03 1.553 3.362v7.1a2.97 2.97 0 0 1-2.95 2.95h-2.05v-5.35c0-.386-.264-.65-.65-.65H8.9c-.386 0-.65.264-.65.65v5.35H6.2a2.97 2.97 0 0 1-2.95-2.95v-7.1c0-1.285.471-2.502 1.455-3.364h.001l5.012-4.41.013-.012Zm.95 1.162L5.695 9.213l-.001.001c-.615.539-.944 1.321-.944 2.236v7.1c0 .786.664 1.45 1.45 1.45h.55v-3.85c0-1.214.936-2.15 2.15-2.15h6.2c1.214 0 2.15.936 2.15 2.15V20h.55a1.47 1.47 0 0 0 1.45-1.45v-7.1c0-.866-.393-1.666-1.044-2.236L18.2 9.21l-1.896-1.697-3.084-2.685c-.722-.569-1.816-.57-2.539-.001ZM12 8.5c-.686 0-1.25.564-1.25 1.25S11.314 11 12 11c.61 0 1.25-.588 1.25-1.25 0-.686-.564-1.25-1.25-1.25ZM9.25 9.75A2.756 2.756 0 0 1 12 7a2.756 2.756 0 0 1 2.75 2.75c0 1.538-1.36 2.75-2.75 2.75a2.756 2.756 0 0 1-2.75-2.75Z", "key": "9b2cd473021c21494d381e766387461665c8a793" }], ["path", { "fill": "currentColor", "d": "M16.8 2.5a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Zm-.3 13.65v4.6h-9v-4.6c0-.8.6-1.4 1.4-1.4h6.2c.7 0 1.4.6 1.4 1.4Z", "key": "aebb70ed038596b39d74db0ebacd01528b01cfbf" }], ["path", { "fill": "currentColor", "d": "M8.9 15.5c-.386 0-.65.264-.65.65V20h7.5v-3.85c0-.352-.33-.65-.65-.65H8.9Zm-2.15.65c0-1.214.936-2.15 2.15-2.15h6.2c1.08 0 2.15.902 2.15 2.15v5.35H6.75v-5.35Zm5.25-4.4a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "f1678b16ec41d974b4224029a5ef0ab8a0ddfd82" }], ["path", { "fill": "currentColor", "d": "M12 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 9.75a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "65bd80eb722031870cc1bc83b31fbed2c17f01a7" }]]);
const HomeMinimal = createMeisterIcons("home-minimal", [["path", { "fill": "currentColor", "d": "M17.596 3.25a.75.75 0 0 0-1.5 0v2.169l-1.851-1.63a3.356 3.356 0 0 0-4.497 0L4.733 8.204l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.298 2.95-2.979V11.45c0-1.196-.478-2.409-1.455-3.264l-1.645-1.447V3.25Zm-6.848 1.657a1.856 1.856 0 0 1 2.497 0l5.006 4.406.002.001c.622.545.943 1.332.943 2.136v7.131l.003.031c.059.703-.529 1.388-1.453 1.388h-11.5a1.47 1.47 0 0 1-1.45-1.45v-7.1c0-.755.384-1.565.965-2.154l4.98-4.383.007-.006Z", "key": "456f0f248324b836763f3aa78b35244acf4dafde" }]]);
const HomeMinimalB = createMeisterIcons("home-minimal-b", [["path", { "fill": "currentColor", "d": "M17.746 20.75h-11.5c-1.2 0-2.2-1-2.2-2.2v-7.1c0-1 .5-2 1.2-2.7l5-4.4c1-.9 2.5-.9 3.5 0l5 4.4c.8.7 1.2 1.7 1.2 2.7v7.1c.1 1.2-.9 2.2-2.2 2.2Z", "key": "5dfea2dc69a77a60abf925fe38246e755b6bebe2" }], ["path", { "fill": "currentColor", "d": "M13.245 4.908a1.856 1.856 0 0 0-2.497 0l-.006.005L5.76 9.297c-.581.588-.965 1.398-.965 2.153v7.1c0 .786.665 1.45 1.45 1.45h11.5c.924 0 1.512-.685 1.453-1.388l-.003-.03V11.45c0-.804-.32-1.59-.944-2.136h-.001l-5.006-4.406Zm1-1.118a3.356 3.356 0 0 0-4.497 0L4.733 8.203l-.017.017c-.81.81-1.42 1.992-1.42 3.23v7.1a2.97 2.97 0 0 0 2.95 2.95h11.5c1.666 0 3.07-1.298 2.95-2.979V11.45c0-1.196-.478-2.409-1.455-3.264L14.244 3.79Z", "key": "558ad2fd3808fbd4f794a00944989f957070c62d" }], ["path", { "fill": "currentColor", "d": "M16.846 2.5a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "df0595e59147f68cb34986b23f0e1f5edd81bd5c" }]]);
const Icecream = createMeisterIcons("icecream", [["path", { "fill": "currentColor", "d": "M9.149 10.278a.75.75 0 0 1 1.023-.28c.629.36 1.3.602 2.028.602.66 0 1.232-.16 1.828-.501a.75.75 0 0 1 .744 1.302c-.804.46-1.632.699-2.572.699-1.072 0-2-.358-2.772-.799a.75.75 0 0 1-.28-1.023ZM12.1 3.2c-1.743 0-3.235 1.248-3.565 2.897a.75.75 0 0 1-1.47-.294C7.535 3.453 9.643 1.7 12.1 1.7c2.457 0 4.565 1.752 5.035 4.103a.75.75 0 1 1-1.47.294C15.335 4.447 13.843 3.2 12.1 3.2Z", "key": "6b788c7142893f202beb8b8e20ff94c48b3b36a9" }], ["path", { "fill": "currentColor", "d": "M8.548 5.892a.75.75 0 0 1-.69.806c-.889.068-1.708.922-1.708 1.952 0 1.086.864 1.95 1.95 1.95.474 0 .913-.2 1.331-.536a.75.75 0 0 1 .938 1.172c-.582.465-1.343.864-2.269.864a3.439 3.439 0 0 1-3.45-3.45c0-1.77 1.38-3.316 3.092-3.448a.75.75 0 0 1 .806.69Zm7.224-.024a.75.75 0 0 1 .91-.546c1.494.374 2.668 1.644 2.668 3.328a3.439 3.439 0 0 1-3.45 3.45c-.749 0-1.558-.247-2.13-.82a.75.75 0 1 1 1.06-1.06c.228.227.619.38 1.07.38 1.086 0 1.95-.864 1.95-1.95 0-.916-.626-1.646-1.532-1.872a.75.75 0 0 1-.546-.91Z", "key": "f2f3fea0ed03be1c60a1b16958707281600e7906" }], ["path", { "fill": "currentColor", "d": "M7.004 10.56a.75.75 0 0 1 .985.394l4.061 9.444 4.061-9.444a.75.75 0 0 1 1.378.592l-4.308 10.02-.01.02a1.255 1.255 0 0 1-1.121.714c-.477 0-.902-.277-1.12-.715l-.01-.019-4.309-10.02a.75.75 0 0 1 .393-.985Z", "key": "dfdd0ee07106809740fa36f883d42e0a8ec58c6f" }]]);
const IcecreamB = createMeisterIcons("icecream-b", [["path", { "fill": "currentColor", "d": "M12.2 3.2c-1.743 0-3.235 1.248-3.565 2.897l-.112.56-.57.041c-1.001.072-1.803.94-1.803 1.952 0 .886.503 1.599 1.297 1.892.17.055.265.058.553.058.475 0 .921-.199 1.484-.574l.466-.31.43.358c.417.347 1.02.526 1.82.526.579 0 1.228-.17 1.684-.474l.512-.341.434.435c.228.227.619.38 1.07.38.288 0 .383-.003.553-.058.837-.309 1.397-1.05 1.397-1.892 0-.95-.66-1.754-1.532-1.972l-.46-.116-.093-.465C15.435 4.447 13.943 3.2 12.2 3.2ZM7.297 5.287A5.155 5.155 0 0 1 12.2 1.7a5.153 5.153 0 0 1 4.928 3.666A3.543 3.543 0 0 1 19.35 8.65c0 1.554-1.035 2.81-2.394 3.305l-.01.003-.009.003c-.416.14-.718.139-1.019.139H15.9a3.19 3.19 0 0 1-1.667-.453 4.847 4.847 0 0 1-2.033.453c-.814 0-1.626-.147-2.322-.553-.54.309-1.156.553-1.878.553h-.018c-.301 0-.603 0-1.02-.139l-.009-.003-.01-.003c-1.4-.51-2.293-1.795-2.293-3.305a3.48 3.48 0 0 1 2.647-3.363Z", "key": "78f219fed2e093b125a4378bd0a7312c55fcff1f" }], ["path", { "fill": "currentColor", "d": "m16.8 11.25-4.3 10c-.2.3-.7.3-.9 0l-4.3-10c.3.1.5.1.8.1.7 0 1.3-.3 1.8-.7.7.4 1.5.7 2.3.7.8 0 1.5-.2 2.2-.6.5.4 1 .6 1.6.6.2 0 .5 0 .8-.1Z", "key": "8686c4c8fbd1fd725abea024b52d63127d08a869" }], ["path", { "fill": "currentColor", "d": "m9.83 9.746.442.253c.639.365 1.307.6 1.928.6.66 0 1.232-.16 1.828-.5l.442-.253.398.318c.39.312.73.436 1.132.436.206 0 .392-.005.563-.062l1.587-.529-4.988 11.6-.038.057c-.266.398-.7.559-1.074.559-.374 0-.809-.16-1.074-.559l-.038-.057-4.988-11.6 1.587.53c.176.058.27.06.563.06.474 0 .913-.2 1.331-.535l.399-.318Zm.129 1.783c-.424.27-.92.483-1.486.55l3.577 8.319 3.577-8.319a3.087 3.087 0 0 1-1.286-.454 4.948 4.948 0 0 1-2.141.475c-.801 0-1.57-.244-2.241-.57Z", "key": "7437ce8c025393bd70ad5bd6aeabcdfe707cb071" }]]);
const IcecreamVarB = createMeisterIcons("icecream-var-b", [["path", { "fill": "currentColor", "d": "M18.6 8.65c0 1.2-.8 2.2-1.9 2.6-.3.1-.5.1-.8.1-.6 0-1.2-.2-1.6-.6-.6.4-1.4.6-2.1.6-.9 0-1.7-.2-2.3-.7-.6.4-1.2.7-1.9.7-.3 0-.5 0-.8-.1-1.1-.4-1.8-1.4-1.8-2.6 0-1.4 1.1-2.6 2.5-2.7.4-2 2.2-3.5 4.3-3.5 2.1 0 3.9 1.5 4.3 3.5 1.2.3 2.1 1.4 2.1 2.7Z", "key": "cbd61ab822c32e74c9aa05462633689636c2a745" }], ["path", { "fill": "currentColor", "d": "M12.2 3.2c-1.743 0-3.235 1.248-3.565 2.897l-.112.56-.57.041c-1.001.072-1.803.94-1.803 1.952 0 .886.503 1.599 1.297 1.892.17.055.265.058.553.058.475 0 .921-.199 1.484-.574l.466-.31.43.358c.417.347 1.02.526 1.82.526.579 0 1.228-.17 1.684-.474l.512-.341.434.435c.228.227.619.38 1.07.38.288 0 .383-.003.553-.058.837-.309 1.397-1.05 1.397-1.892 0-.95-.66-1.754-1.532-1.972l-.46-.116-.093-.465C15.435 4.447 13.943 3.2 12.2 3.2ZM7.297 5.287A5.155 5.155 0 0 1 12.2 1.7a5.153 5.153 0 0 1 4.928 3.666A3.543 3.543 0 0 1 19.35 8.65c0 1.554-1.035 2.81-2.394 3.305l-.01.003-.009.003c-.416.14-.718.139-1.019.139H15.9a3.19 3.19 0 0 1-1.667-.453 4.847 4.847 0 0 1-2.033.453c-.814 0-1.626-.147-2.322-.553-.54.309-1.156.553-1.878.553h-.018c-.301 0-.603 0-1.02-.139l-.009-.003-.01-.003c-1.4-.51-2.293-1.795-2.293-3.305a3.48 3.48 0 0 1 2.647-3.363Z", "key": "aa4645d63c986f16f241038b3eb83106acbdd926" }], ["path", { "fill": "currentColor", "d": "m9.83 9.746.442.253c.639.365 1.307.6 1.928.6.66 0 1.232-.16 1.828-.5l.442-.253.398.318c.39.312.73.436 1.132.436.206 0 .392-.005.563-.062l1.587-.529-4.988 11.6-.038.057c-.266.398-.7.559-1.074.559-.374 0-.809-.16-1.074-.559l-.038-.057-4.988-11.6 1.587.53c.176.058.27.06.563.06.474 0 .913-.2 1.331-.535l.399-.318Zm.129 1.783c-.424.27-.92.483-1.486.55l3.577 8.319 3.577-8.319a3.087 3.087 0 0 1-1.286-.454 4.948 4.948 0 0 1-2.141.475c-.801 0-1.57-.244-2.241-.57Z", "key": "c91350e97ef0ca6f1913f4c0c1d9a3c9ff9f3fc2" }]]);
const IdCircle = createMeisterIcons("id-circle", [["path", { "fill": "currentColor", "d": "M3.75 9c0-1.286.964-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v6c0 1.186-1.064 2.25-2.25 2.25H6c-1.286 0-2.25-.964-2.25-2.25V9ZM6 5.25C3.886 5.25 2.25 6.886 2.25 9v6c0 2.114 1.636 3.75 3.75 3.75h12c2.014 0 3.75-1.736 3.75-3.75V9c0-2.114-1.636-3.75-3.75-3.75H6ZM7.25 12a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0ZM9 8.75a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Zm4.75 1.75a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm.75 2.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z", "key": "9cc1aaeb9357418182ea3534d5f6e2aa68cfa172" }]]);
const IdCircleB = createMeisterIcons("id-circle-b", [["path", { "fill": "currentColor", "d": "M18 18H6c-1.7 0-3-1.3-3-3V9c0-1.7 1.3-3 3-3h12c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "2cc3d6bf9ed162cad2f0fca87269735d711d797e" }], ["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h12c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "f0784936eebe6182f66bdbf5818edc5f1eab7e24" }], ["path", { "fill": "#fff", "d": "M9 14.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z", "key": "689ef9866eddaf7f5f819281c3570c834d7274d9" }], ["path", { "fill": "#fff", "d": "M9 10.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM5.75 12a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm8-1.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm0 3a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Z", "key": "aafaa8908240480e2dec8c5aa8b7e9818ff9eb76" }]]);
const IdCircleVarB = createMeisterIcons("id-circle-var-b", [["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h12c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "2f08ab12ca447fc85f1de5138d7579360ac1271a" }], ["path", { "fill": "currentColor", "d": "M9 14.5a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z", "key": "ec4849bf5a7a9284a891e4bae502daeb7598094e" }], ["path", { "fill": "currentColor", "d": "M9 10.25a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM5.75 12a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Zm8-1.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm0 3a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Z", "key": "c33ee3016f8ff1f637c59fc08b8cddb1b19dbf36" }]]);
const IdSquare = createMeisterIcons("id-square", [["path", { "fill": "currentColor", "d": "M3.75 9c0-1.286.964-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v6c0 1.186-1.064 2.25-2.25 2.25H6c-1.286 0-2.25-.964-2.25-2.25V9ZM6 5.25C3.886 5.25 2.25 6.886 2.25 9v6c0 2.114 1.636 3.75 3.75 3.75h12c2.014 0 3.75-1.736 3.75-3.75V9c0-2.114-1.636-3.75-3.75-3.75H6Zm8.7 4.5a.75.75 0 1 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Zm-.75 3.75a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm-7-3c0-.13.04-.18.055-.195.016-.015.065-.055.195-.055h3c.13 0 .18.04.195.055.015.016.055.065.055.195v3a.27.27 0 0 1-.073.176.228.228 0 0 1-.177.074h-3c-.13 0-.18-.04-.195-.055-.015-.016-.055-.065-.055-.195v-3Zm.25-1.75c-.47 0-.92.16-1.255.495-.335.334-.495.785-.495 1.255v3c0 .47.16.92.495 1.255.334.335.785.495 1.255.495h3c1.062 0 1.75-.885 1.75-1.75v-3c0-.47-.16-.92-.495-1.255-.334-.335-.785-.495-1.255-.495h-3Z", "key": "6aecb085d142415d52be007afda85054412d4b49" }]]);
const IdSquareB = createMeisterIcons("id-square-b", [["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h12c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "9700bf6bc502c4449aa8ebb3fad1d091cda1b151" }], ["path", { "fill": "currentColor", "d": "M13.95 10.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm0 3a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm-3.75 1h-3c-.6 0-1-.4-1-1v-3c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v3c0 .5-.4 1-1 1Z", "key": "6098d3b6cc65fd972d61fc714afda24e4e56b1a2" }], ["path", { "fill": "currentColor", "d": "M7.005 10.305c-.015.016-.055.065-.055.195v3c0 .13.04.18.055.195.016.015.065.055.195.055h3c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176v-3c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055h-3c-.13 0-.18.04-.195.055Zm-1.06-1.06c.334-.335.785-.495 1.255-.495h3c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v3c0 .865-.688 1.75-1.75 1.75h-3c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255v-3c0-.47.16-.92.495-1.255Z", "key": "00459a0de8abcf8248d604c0d19a40a8b36b63f6" }]]);
const IdSquareVarB = createMeisterIcons("id-square-var-b", [["path", { "fill": "currentColor", "d": "M18 18H6c-1.7 0-3-1.3-3-3V9c0-1.7 1.3-3 3-3h12c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "bdc6a00df9d1ba98c24a48fadba56230b688f612" }], ["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h12c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "50a50029541afc558dc49f8db615c36f1a4e3f77" }], ["path", { "fill": "#fff", "d": "M13.95 10.5a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm0 3a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Zm-3.75 1h-3c-.6 0-1-.4-1-1v-3c0-.6.4-1 1-1h3c.6 0 1 .4 1 1v3c0 .5-.4 1-1 1Z", "key": "2da43328202f5aeccf2874909ad72a538a20ccb9" }], ["path", { "fill": "#fff", "d": "M7.005 10.305c-.015.016-.055.065-.055.195v3c0 .13.04.18.055.195.016.015.065.055.195.055h3c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176v-3c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055h-3c-.13 0-.18.04-.195.055Zm-1.06-1.06c.334-.335.785-.495 1.255-.495h3c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v3c0 .865-.688 1.75-1.75 1.75h-3c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255v-3c0-.47.16-.92.495-1.255Z", "key": "9c485ac006ed45dccf2e23b3862f5054cf06ef1b" }]]);
const Image = createMeisterIcons("image", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6.521l4.404-3.224a2.733 2.733 0 0 1 3.576.273l2.62 2.62.661-.559c1.133-.987 2.656-.794 3.683.105l.008.007 1.548 1.433V7A3.262 3.262 0 0 0 17 3.75H7Zm13.25 12.47-2.551-2.362c-.57-.494-1.24-.5-1.705-.094l-.01.009-.569.481 4.387 4.387A3.22 3.22 0 0 0 20.25 17v-.78ZM3.75 17v-1.62l5.293-3.875.007-.005a1.233 1.233 0 0 1 1.62.13l8.094 8.095A3.223 3.223 0 0 1 17 20.25H7c-1.874 0-3.25-1.452-3.25-3.25ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Z", "key": "c80b7eb3240d9a5c74793dc01deb81e7a6321bf3" }]]);
const ImageAdd = createMeisterIcons("image-add", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6.521l4.404-3.224a2.733 2.733 0 0 1 3.576.273l2.667 2.666.714-.605c1.133-.987 2.656-.794 3.683.105l.008.007 1.448 1.34V9a.75.75 0 0 1 1.5 0v8A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h5a.75.75 0 0 1 0 1.5H7Zm13.25 12.378-2.451-2.27c-.57-.494-1.24-.5-1.705-.094l-.01.009-.623.527 4.34 4.34A3.22 3.22 0 0 0 20.25 17v-.872ZM3.75 17v-1.62l5.293-3.875.007-.005a1.233 1.233 0 0 1 1.62.13l8.094 8.095A3.223 3.223 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17ZM16.4 3.25a.75.75 0 0 1 .75.75v1.65h1.75a.75.75 0 0 1 0 1.5h-1.75V8.9a.75.75 0 0 1-1.5 0V7.15H14a.75.75 0 0 1 0-1.5h1.65V4a.75.75 0 0 1 .75-.75Z", "key": "b2dafd2030a3df89b2d7aceb483edf2689e4fe97" }]]);
const ImageAddB = createMeisterIcons("image-add-b", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v8a.75.75 0 0 1-1.5 0V7A4.762 4.762 0 0 1 7 2.25h5a.75.75 0 0 1 0 1.5H7Zm14 4.5a.75.75 0 0 1 .75.75v8c0 1.328-.601 2.512-1.42 3.33a.75.75 0 1 1-1.06-1.06c.581-.582.98-1.398.98-2.27V9a.75.75 0 0 1 .75-.75Z", "key": "3caa34e91d0edc82126482bee4a8b5b133738586" }], ["path", { "fill": "currentColor", "d": "M19.8 19.8c-.7.7-1.7 1.2-2.8 1.2H7c-2.2 0-4-1.8-4-4v-1.9L8.6 11c.8-.6 1.9-.5 2.6.2l3 3 5.6 5.6Z", "key": "5acbf1c6054dbef5df242db0caf094611431240d" }], ["path", { "fill": "currentColor", "d": "M10.67 11.73a1.233 1.233 0 0 0-1.62-.13l-.007.005L3.75 15.48V17A3.262 3.262 0 0 0 7 20.25h10c.608 0 1.188-.194 1.681-.508L10.67 11.73Zm-2.516-1.333a2.733 2.733 0 0 1 3.576.273l9.13 9.13-.53.53c-.818.819-2.002 1.42-3.33 1.42H7A4.762 4.762 0 0 1 2.25 17v-2.28l5.904-4.323Z", "key": "a85dd30c23d673a2ce092fb2658452b6d0cac060" }], ["path", { "fill": "currentColor", "d": "M17.799 13.858c-.57-.494-1.24-.5-1.705-.094l-.01.009-1.3 1.1-.968-1.146 1.295-1.096c1.133-.987 2.656-.794 3.683.105l.008.007 2.708 2.507-1.02 1.1-2.691-2.492ZM16.4 3.25a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V4a.75.75 0 0 1 .75-.75Z", "key": "f9d6780b84a20113b6d79c7eeb81348e1bbe8f72" }], ["path", { "fill": "currentColor", "d": "M13.25 6.4a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5H14a.75.75 0 0 1-.75-.75Z", "key": "ec80e13f71fcd24c67bcba9c95f60f48b2dc6641" }]]);
const ImageAlt = createMeisterIcons("image-alt", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v5.979A8.316 8.316 0 0 1 9 11.15c1.1 0 1.964.207 2.688.56.718.35 1.256.822 1.717 1.284.167.167.322.329.472.485.709.74 1.3 1.355 2.36 1.709l.006.002c.827.283 1.462.273 1.947.143.49-.132.885-.401 1.2-.722.319-.324.546-.689.695-.98.074-.144.126-.265.159-.348l.006-.015V7A3.262 3.262 0 0 0 17 3.75H7ZM3.75 17v-1.943a6.844 6.844 0 0 1 1.19-1.1A6.817 6.817 0 0 1 9 12.65c.9 0 1.536.168 2.03.409.502.244.901.584 1.315.997.126.126.254.261.388.403.716.754 1.585 1.67 3.027 2.152 1.072.366 2.011.388 2.819.172a4.07 4.07 0 0 0 1.671-.919V17A3.262 3.262 0 0 1 17 20.25H7c-1.874 0-3.25-1.452-3.25-3.25ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Zm12.5 1.5a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75-2.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "f98d382f9d435154b91259e7c0608c3790d97c44" }]]);
const ImageAltB = createMeisterIcons("image-alt-b", [["path", { "fill": "currentColor", "d": "M21 13.5V17c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4v-2.1S5 12 9 12s4 3 7 4c3.7 1.2 5-2.5 5-2.5Z", "key": "ed0b97eacfae92596933576c408e56ffa666ecf9" }], ["path", { "fill": "currentColor", "d": "M21.75 9.103V17A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17v-2.334l.133-.192L3 14.9l-.617-.426v-.001l.002-.002.002-.004.008-.01a3.216 3.216 0 0 1 .11-.146c.073-.093.179-.22.318-.372.277-.302.69-.7 1.237-1.096A8.317 8.317 0 0 1 9 11.25c1.1 0 1.964.207 2.688.56.718.35 1.256.823 1.717 1.285.167.166.322.328.473.485.707.738 1.297 1.354 2.356 1.707.798.259 1.421.24 1.908.106a2.807 2.807 0 0 0 1.22-.728 4.198 4.198 0 0 0 .924-1.396l.007-.018v-.002l1.457-4.146Zm-18 6.054c.047-.057.106-.125.177-.203.223-.242.56-.569 1.013-.897A6.817 6.817 0 0 1 9 12.75c.9 0 1.536.168 2.03.409.502.243.901.583 1.315.996.126.126.254.262.388.403.716.755 1.586 1.672 3.03 2.154l.006.001c1.05.341 1.976.346 2.774.125a4.25 4.25 0 0 0 1.707-.95V17A3.262 3.262 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17v-1.843Zm-.134.171v-.001.001Z", "key": "a0855869da9e22d841be7b59cc967ed02cc8f8ff" }], ["path", { "fill": "currentColor", "d": "M2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.602 0 4.75 2.024 4.75 4.75v6.616l-.035.11L21 13.5l.715.226v.003l-.003.005-.004.014-.015.044a5.54 5.54 0 0 1-.272.623 5.52 5.52 0 0 1-.961 1.349 4.136 4.136 0 0 1-1.881 1.118c-.808.217-1.747.195-2.819-.171-1.442-.482-2.311-1.398-3.027-2.153-.134-.141-.262-.277-.388-.403-.414-.413-.814-.752-1.314-.996-.495-.241-1.13-.409-2.031-.409a6.817 6.817 0 0 0-4.06 1.307c-.452.328-.79.656-1.013.897a4.99 4.99 0 0 0-.3.358l-.01.015-1.367 1.981V7Zm18 6.369V7c0-1.874-1.452-3.25-3.25-3.25H7A3.262 3.262 0 0 0 3.75 7v6.078A8.316 8.316 0 0 1 9 11.25c1.1 0 1.964.207 2.688.56.718.35 1.256.823 1.717 1.285.167.166.322.329.473.485.708.74 1.298 1.355 2.36 1.709l.005.001c.827.283 1.462.274 1.947.143.49-.131.885-.4 1.2-.722.319-.323.546-.688.695-.98.074-.143.126-.264.159-.347l.006-.015ZM15.5 7.75c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25-1.036 2.25-2.25 2.25-2.25-1.036-2.25-2.25Z", "key": "ecc5f5b659ade46d32cc23207db0d489d6c24fc2" }], ["path", { "fill": "currentColor", "d": "M15.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "ffb6a971c09125f67a2180584c825e84086e5dca" }], ["path", { "fill": "currentColor", "d": "M15.5 7.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "2535a7b3a3d36b3871c9dcb6a47e84d1e86e283b" }]]);
const ImageB = createMeisterIcons("image-b", [["path", { "fill": "currentColor", "d": "M19.8 19.8c-.7.7-1.7 1.2-2.8 1.2H7c-2.2 0-4-1.8-4-4v-1.9L8.6 11c.8-.6 1.9-.5 2.6.2l3 3 5.6 5.6Z", "key": "3251f7748e9180860b76013c8988a600decb8121" }], ["path", { "fill": "currentColor", "d": "M10.67 11.73a1.233 1.233 0 0 0-1.62-.13l-.007.005L3.75 15.48V17A3.262 3.262 0 0 0 7 20.25h10c.608 0 1.188-.194 1.681-.508L10.67 11.73Zm-2.516-1.333a2.733 2.733 0 0 1 3.576.273l9.13 9.13-.53.53c-.818.819-2.002 1.42-3.33 1.42H7A4.762 4.762 0 0 1 2.25 17v-2.28l5.904-4.323Z", "key": "a4429ff51eac2361b99e257dacbac246b3800250" }], ["path", { "fill": "currentColor", "d": "M17.704 13.762c-.571-.498-1.245-.505-1.71-.098l-.01.009-.672.568 4.426 4.347a3.142 3.142 0 0 0 .512-1.688v-.864l-2.547-2.274Zm-2.693-1.23c1.133-.988 2.656-.795 3.683.104l.006.005 3.05 2.723V16.9c0 1.328-.601 2.512-1.42 3.33l-.525.526-6.717-6.597 1.923-1.628Z", "key": "8537a7154acf384da202c704c1f8c6cc45d8c18a" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6.621l4.404-3.224a2.733 2.733 0 0 1 3.576.273l2.512 2.512.79-.669.018-.013c1.046-.784 2.664-.835 3.67.159l1.53 1.421V7c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.602 0 4.75 2.024 4.75 4.75v10.52l-4.07-3.78-.01-.01c-.391-.39-1.155-.442-1.704-.042l-1.808 1.53-3.488-3.488a1.233 1.233 0 0 0-1.62-.13l-.007.005L2.25 16.58V7Z", "key": "a60dbee77ccd5338026be51468ffa858a0fd88bd" }]]);
const ImageBlock = createMeisterIcons("image-block", [["path", { "fill": "currentColor", "d": "M14.53 4.555c.928-.927 2.261-1.065 3.255-.476l-3.717 3.717c-.618-1.066-.45-2.393.442-3.221l.01-.01.01-.01Zm3.82 3.86c-.834.898-2.215 1.05-3.233.454l3.715-3.715c.618 1.067.45 2.393-.442 3.222l-.02.018-.02.02Zm1.09-4.91c-1.605-1.718-4.282-1.689-5.96-.02-1.718 1.605-1.689 4.282-.02 5.96 1.592 1.703 4.374 1.707 5.97.01 1.708-1.605 1.675-4.275.01-5.95ZM3.75 7.025A3.262 3.262 0 0 1 7 3.775h3a.75.75 0 0 0 0-1.5H7a4.762 4.762 0 0 0-4.75 4.75v10A4.762 4.762 0 0 0 7 21.775h10a4.762 4.762 0 0 0 4.75-4.75v-6a.75.75 0 0 0-1.5 0V14.1l-1.548-1.434-.008-.006c-1.027-.9-2.55-1.092-3.683-.105l-.714.605-2.567-2.566a2.733 2.733 0 0 0-3.576-.273L3.75 13.546V7.025Zm11.61 7.2 4.442 4.44a3.22 3.22 0 0 0 .448-1.64v-.88l-2.551-2.362c-.57-.494-1.24-.5-1.705-.094l-.01.008-.623.528Zm-4.69-2.57 8.094 8.095a3.223 3.223 0 0 1-1.764.525H7a3.262 3.262 0 0 1-3.25-3.25v-1.62l5.293-3.875.007-.005a1.233 1.233 0 0 1 1.62.13Z", "key": "0471e99587aff717a78b1dde0077998f4ef98cb4" }]]);
const ImageBlockB = createMeisterIcons("image-block-b", [["path", { "fill": "currentColor", "d": "M18.35 4.535c-.992-1.069-2.701-1.098-3.82.02l-.01.01-.01.01c-1.069.992-1.098 2.701.02 3.82l.01.01.01.01c1.003 1.08 2.797 1.08 3.8 0l.02-.02.02-.02c1.069-.992 1.098-2.701-.02-3.82l-.01-.01-.01-.01Zm1.09-1.03c-1.605-1.718-4.282-1.689-5.96-.02-1.718 1.605-1.689 4.282-.02 5.96 1.592 1.703 4.374 1.706 5.97.01 1.708-1.606 1.675-4.275.01-5.95Z", "key": "7b3ae0384ec918081abae5f67a87b057245ee33f" }], ["path", { "fill": "currentColor", "d": "m13.47 8.395 4.9-4.9 1.06 1.06-4.9 4.9-1.06-1.06ZM7 3.775a3.262 3.262 0 0 0-3.25 3.25v8a.75.75 0 0 1-1.5 0v-8A4.762 4.762 0 0 1 7 2.275h3a.75.75 0 0 1 0 1.5H7Zm10.799 10.008c-.57-.494-1.24-.5-1.705-.094l-.01.008-.677.574 4.361 4.362c.316-.476.482-1.059.482-1.708v-.872l-2.451-2.27Zm-2.688-1.227c1.133-.987 2.656-.794 3.683.105l.008.006 2.948 2.73v1.528c0 1.285-.471 2.503-1.456 3.364l-.528.462-6.573-6.572 1.918-1.623Z", "key": "645ae53e14a88e703028dae9c98ff4dfa994b425" }], ["path", { "fill": "currentColor", "d": "M21 10.275a.75.75 0 0 1 .75.75v4.7a.75.75 0 0 1-1.5 0v-4.7a.75.75 0 0 1 .75-.75Zm-1.2 9.55c-.7.7-1.7 1.2-2.8 1.2H7c-2.2 0-4-1.8-4-4v-1.9l5.6-4.1c.8-.6 1.9-.5 2.6.2l3.1 3.1 5.5 5.5Z", "key": "609e89e720237b6b2ab1167dd9d70615fc0ca0a4" }], ["path", { "fill": "currentColor", "d": "M10.67 11.755a1.233 1.233 0 0 0-1.62-.13l-.007.005-5.293 3.875v1.52A3.262 3.262 0 0 0 7 20.275h10c.608 0 1.188-.194 1.681-.508l-8.011-8.012Zm-2.516-1.333a2.733 2.733 0 0 1 3.576.273l9.13 9.13-.53.53c-.818.819-2.002 1.42-3.33 1.42H7a4.762 4.762 0 0 1-4.75-4.75v-2.28l5.904-4.323Z", "key": "7ebcd9fbfbb2c9d545052e02089a3b63e0620505" }]]);
const ImageCheck = createMeisterIcons("image-check", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h5a.75.75 0 0 0 0-1.5H7A4.762 4.762 0 0 0 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V9a.75.75 0 0 0-1.5 0v5.084l-1.448-1.341-.008-.007c-1.027-.9-2.55-1.092-3.683-.105l-.714.605-2.667-2.666a2.733 2.733 0 0 0-3.576-.273L3.75 13.521V7Zm14.049 6.858 2.451 2.27V17a3.22 3.22 0 0 1-.448 1.64L15.46 14.3l.623-.527.01-.008c.464-.407 1.135-.4 1.705.093ZM3.75 15.38V17A3.262 3.262 0 0 0 7 20.25h10a3.22 3.22 0 0 0 1.764-.525L10.67 11.63a1.233 1.233 0 0 0-1.62-.13l-.007.005L3.75 15.38ZM19.122 5.14a.75.75 0 1 0-1.044-1.077l-2.863 2.775L14.4 5.75a.75.75 0 1 0-1.2.9l1.232 1.643.038.037c.211.212.488.295.717.295.116 0 .296-.02.473-.13a.833.833 0 0 0 .256-.248l3.206-3.108Z", "key": "7e76955c89157e3bf4fb470ab1fc6deba67e138d" }]]);
const ImageCheckB = createMeisterIcons("image-check-b", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v8a.75.75 0 0 1-1.5 0V7A4.762 4.762 0 0 1 7 2.25h5a.75.75 0 0 1 0 1.5H7Zm10.704 10.012c-.571-.498-1.245-.505-1.71-.098l-.01.009-.672.568 4.426 4.347a3.142 3.142 0 0 0 .512-1.688v-.864l-2.547-2.274Zm-2.693-1.23c1.133-.988 2.656-.795 3.683.104l.006.005 3.05 2.723V16.9c0 1.328-.601 2.512-1.42 3.33l-.525.526-6.717-6.597 1.923-1.628Z", "key": "9cc44970d392e8c82486734a498ce3d8122d8148" }], ["path", { "fill": "currentColor", "d": "M21 8.25a.75.75 0 0 1 .75.75v6.7a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75ZM19.8 19.8c-.7.7-1.7 1.2-2.8 1.2H7c-2.2 0-4-1.8-4-4v-1.9L8.6 11c.8-.6 1.9-.5 2.6.2l3 3 5.6 5.6Z", "key": "dabc576aa884b977588eac9d9ff398c530e66d4d" }], ["path", { "fill": "currentColor", "d": "M10.67 11.73a1.233 1.233 0 0 0-1.62-.13l-.007.005L3.75 15.48V17A3.262 3.262 0 0 0 7 20.25h10c.608 0 1.188-.194 1.681-.508L10.67 11.73Zm-2.516-1.333a2.733 2.733 0 0 1 3.576.273l9.13 9.13-.53.53c-.818.819-2.002 1.42-3.33 1.42H7A4.762 4.762 0 0 1 2.25 17v-2.28l5.904-4.323Zm10.984-6.319a.75.75 0 0 1-.016 1.06l-3.206 3.109a.833.833 0 0 1-.256.248.902.902 0 0 1-.473.13c-.229 0-.505-.083-.717-.295l-.038-.037L13.2 6.65a.75.75 0 1 1 1.2-.9l.816 1.087 2.862-2.775a.75.75 0 0 1 1.06.016Z", "key": "32d3f883c54233a355015c078c4d8b9001c1328e" }]]);
const ImageCircleAlt = createMeisterIcons("image-circle-alt", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 .484.043.96.125 1.424l4.279-3.127a2.733 2.733 0 0 1 3.576.272l2.612 2.612.769-.65c1.133-.987 2.656-.794 3.683.104l.012.01 1.244 1.186c.13-.588.2-1.201.2-1.831A8.213 8.213 0 0 0 12 3.75Zm7.527 11.655-1.732-1.65c-.57-.49-1.238-.496-1.701-.09l-.01.007-.677.574 2.989 2.99a8.197 8.197 0 0 0 1.131-1.832ZM12 20.25c-3.52 0-6.5-2.219-7.693-5.284l4.735-3.46.008-.006a1.233 1.233 0 0 1 1.62.13l6.675 6.675A8.23 8.23 0 0 1 12 20.25ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "c3d733833b1d0277b9c6ddde13ac342e9fec565c" }]]);
const ImageCircleAltB = createMeisterIcons("image-circle-alt-b", [["path", { "fill": "currentColor", "d": "M21 12.05c0 1.1-.2 2.2-.6 3.2l-2.2-2c-.7-.7-1.9-.7-2.7-.1l-1.3 1.1-3-3c-.7-.7-1.8-.8-2.6-.2l-5.2 3.8c-.3-.9-.4-1.8-.4-2.8 0-5 4-9 9-9 2.5 0 4.7 1 6.4 2.6 1.5 1.6 2.6 3.9 2.6 6.4Z", "key": "b9d96ce4ad11007d28c69e771527cddb8a0edb64" }], ["path", { "fill": "currentColor", "d": "M12 3.8a8.213 8.213 0 0 0-8.25 8.25c0 .549.032 1.053.11 1.535l4.294-3.138a2.733 2.733 0 0 1 3.576.273l2.512 2.512.79-.669.018-.013c1.045-.783 2.66-.835 3.667.156l1.32 1.201a8.155 8.155 0 0 0 .213-1.857c0-2.274-1-4.389-2.381-5.87C16.295 4.706 14.28 3.8 12 3.8Zm-9.75 8.25A9.713 9.713 0 0 1 12 2.3c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017c1.611 1.718 2.803 4.196 2.803 6.913a9.413 9.413 0 0 1-.654 3.479l-.401 1.003-3.013-2.739-.012-.013c-.391-.39-1.155-.442-1.704-.042l-1.808 1.53-3.488-3.488a1.233 1.233 0 0 0-1.62-.13l-.007.006-6.03 4.406-.325-.975c-.333-1-.438-1.985-.438-3.037Z", "key": "53eddfcd34efe05fb5e6457299301bd6e630ff29" }], ["path", { "fill": "currentColor", "d": "m8.902 11.585-4.72 3.45c.39 1.045 1.037 1.971 1.84 2.777C7.597 19.29 9.615 20.2 11.9 20.2c2.024 0 3.898-.712 5.313-1.876L10.67 11.78c-.425-.425-1.132-.53-1.768-.195Zm-.766-1.29c1.154-.642 2.628-.542 3.594.425l7.63 7.63-.53.53c-1.74 1.741-4.231 2.82-6.93 2.82-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008c-1.07-1.07-1.949-2.376-2.391-3.924l-.144-.503 5.66-4.136.04-.023Z", "key": "a2abe759d700538348ac1cbe8e2fa1c4c5d87bd7" }], ["path", { "fill": "currentColor", "d": "M17.701 13.81c-.57-.495-1.242-.502-1.707-.096l-.01.009-.677.573 3.038 3.039a10.92 10.92 0 0 0 1.15-1.895L17.7 13.81Zm-2.69-1.229c1.133-.987 2.656-.794 3.683.105l.005.004 2.597 2.36-.204.489a12.308 12.308 0 0 1-2.131 3.41l-.529.594-5.339-5.339 1.918-1.623Z", "key": "41c7486b8e68cf5998b84c01f039d1768183739d" }]]);
const ImageCross = createMeisterIcons("image-cross", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6.521l4.404-3.224a2.733 2.733 0 0 1 3.576.273l2.62 2.62.661-.559c1.133-.987 2.656-.794 3.683.105l.008.007 1.548 1.433V9a.75.75 0 0 1 1.5 0v8A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h5a.75.75 0 0 1 0 1.5H7Zm13.25 12.47-2.551-2.362c-.57-.494-1.24-.5-1.705-.094l-.01.009-.569.481 4.387 4.387A3.22 3.22 0 0 0 20.25 17v-.78ZM3.75 17v-1.62l5.293-3.875.007-.005a1.233 1.233 0 0 1 1.62.13l8.094 8.095A3.223 3.223 0 0 1 17 20.25H7A3.262 3.262 0 0 1 3.75 17ZM18.63 4.17a.75.75 0 0 1 0 1.06L17.46 6.4l1.17 1.17a.75.75 0 1 1-1.06 1.06L16.4 7.46l-1.17 1.17a.75.75 0 0 1-1.06-1.06l1.17-1.17-1.17-1.17a.75.75 0 1 1 1.06-1.06l1.17 1.17 1.17-1.17a.75.75 0 0 1 1.06 0Z", "key": "f0a471d8bef848573115f99b6dc64f4ce083fc21" }]]);
const ImageCrossB = createMeisterIcons("image-cross-b", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v8a.75.75 0 0 1-1.5 0V7A4.762 4.762 0 0 1 7 2.25h5a.75.75 0 0 1 0 1.5H7Zm14 4.5a.75.75 0 0 1 .75.75v8c0 1.328-.601 2.512-1.42 3.33a.75.75 0 1 1-1.06-1.06c.581-.582.98-1.398.98-2.27V9a.75.75 0 0 1 .75-.75Z", "key": "2d8653f9992797cc4352daa5cda893a536920149" }], ["path", { "fill": "currentColor", "d": "M19.8 19.8c-.7.7-1.7 1.2-2.8 1.2H7c-2.2 0-4-1.8-4-4v-1.9L8.6 11c.8-.6 1.9-.5 2.6.2l3 3 5.6 5.6Z", "key": "a86f98b69c39889874964b0a3df876db166f6019" }], ["path", { "fill": "currentColor", "d": "M10.67 11.73a1.233 1.233 0 0 0-1.62-.13l-.007.005L3.75 15.48V17A3.262 3.262 0 0 0 7 20.25h10c.608 0 1.188-.194 1.681-.508L10.67 11.73Zm-2.516-1.333a2.733 2.733 0 0 1 3.576.273l9.13 9.13-.53.53c-.818.819-2.002 1.42-3.33 1.42H7A4.762 4.762 0 0 1 2.25 17v-2.28l5.904-4.323Z", "key": "6cb055cb0f8a9715d4275f6b7d591fd95733f97e" }], ["path", { "fill": "currentColor", "d": "M17.799 13.858c-.57-.494-1.24-.5-1.705-.094l-.01.009-1.3 1.1-.968-1.146 1.295-1.096c1.133-.987 2.656-.794 3.683.105l.008.007 2.708 2.507-1.02 1.1-2.691-2.492Zm.831-9.688a.75.75 0 0 1 0 1.06l-3.4 3.4a.75.75 0 1 1-1.06-1.06l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "a0995ac11db461d825ae5c1fcb731603c3a6e185" }], ["path", { "fill": "currentColor", "d": "M14.17 4.17a.75.75 0 0 1 1.06 0l3.4 3.4a.75.75 0 0 1-1.06 1.06l-3.4-3.4a.75.75 0 0 1 0-1.06Z", "key": "2a57d1b878761748fa07142d3449f8cfad2e8488" }]]);
const ImageMinimal = createMeisterIcons("image-minimal", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6.811c.635-.302 1.544-.668 2.79-1.03 2.73-.795 7.078-1.573 13.71-1.628V7A3.262 3.262 0 0 0 17 3.75H7Zm13.25 8.904c-6.515.054-10.719.819-13.29 1.566-1.334.389-2.229.772-2.778 1.05-.18.09-.323.17-.432.235V17c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 17v-4.347ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Zm5.25-.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "2fe5ef5db4f22d93f43087d37a05e4d41aed1e3e" }]]);
const ImageMinimalB = createMeisterIcons("image-minimal-b", [["path", { "fill": "currentColor", "d": "M21 11.95v5.1c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4v-1.9s4-3.2 18-3.2Z", "key": "a5d35c3249f2cbb01159115d84bf3497442bf61e" }], ["path", { "fill": "currentColor", "d": "M17 21.75H7c-2.6 0-4.8-2.1-4.8-4.8v-2.2l.3-.2c.2-.1 4.4-3.4 18.5-3.4h.8v5.8c-.1 2.7-2.2 4.8-4.8 4.8Zm-13.3-6.2v1.5c0 1.7 1.5 3.2 3.3 3.2h10c1.8 0 3.3-1.5 3.3-3.3v-4.3c-11 .1-15.5 2.2-16.6 2.9Z", "key": "1a6e5520fea08ba351246098ac81e31a05fa1852" }], ["path", { "fill": "currentColor", "d": "M2.2 16.65v-9.7c0-2.6 2.1-4.7 4.8-4.7h10c2.6 0 4.8 2.1 4.8 4.8v5.7H21c-13.4 0-17.5 3-17.5 3l-1.3.9ZM7 3.75c-1.8 0-3.3 1.5-3.3 3.3v6.8c2-1 6.8-2.6 16.5-2.7v-4.1c0-1.8-1.5-3.3-3.3-3.3H7Z", "key": "0d7dcc6c2f66d47f9adaf51d984482d271aafa1c" }], ["path", { "fill": "currentColor", "d": "M7.5 9.05a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "e55b4ea99252b868b3dd96fe04b8420f40e86971" }], ["path", { "fill": "currentColor", "d": "M7.5 9.75c-1.3 0-2.3-1-2.3-2.2 0-1.2 1-2.3 2.3-2.3 1.3 0 2.3 1 2.3 2.3 0 1.3-1.1 2.2-2.3 2.2Zm0-3c-.4 0-.8.3-.8.8s.3.7.8.7.7-.3.7-.7c0-.4-.3-.8-.7-.8Z", "key": "18b958f18a3fc510dcd0be86f170e9454af8f5f3" }]]);
const ImageMinimalCircle = createMeisterIcons("image-minimal-circle", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 .58.061 1.146.177 1.695 2.167-.977 7.003-2.472 16.28-2.543A8.208 8.208 0 0 0 12 3.75Zm8.225 8.902c-9.412.072-14.028 1.632-15.849 2.487C5.612 18.114 8.547 20.25 12 20.25a8.209 8.209 0 0 0 8.225-7.598ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75ZM8.5 7.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "e55ef463304edf7a9eb23a043fbafe3ffb55cd1a" }]]);
const ImageMinimalCircleB = createMeisterIcons("image-minimal-circle-b", [["path", { "fill": "currentColor", "d": "M21.05 11.95c0 2.5-1 4.8-2.6 6.4-1.6 1.6-3.9 2.6-6.4 2.6-2.5 0-4.7-1-6.4-2.6-1-1-1.7-2.2-2.2-3.5 1.4-.8 6.2-2.9 17.6-2.9Z", "key": "c19eb816e63cbff38fbfe02ab19ba412b3bb181c" }], ["path", { "fill": "currentColor", "d": "M4.408 15.199c.442.976 1.014 1.86 1.764 2.613C7.747 19.29 9.765 20.2 12.05 20.2c2.301 0 4.41-.921 5.87-2.38 1.298-1.299 2.17-3.111 2.347-5.117-9.458.083-14.057 1.645-15.859 2.496Zm-1.33-1C4.624 13.315 9.564 11.2 21.05 11.2h.75v.75c0 2.699-1.079 5.19-2.82 6.93-1.74 1.741-4.232 2.82-6.93 2.82-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008c-1.09-1.09-1.841-2.386-2.37-3.76l-.231-.602.559-.32Z", "key": "13e01e060b59c9dca07c012064642baf53cf41da" }], ["path", { "fill": "currentColor", "d": "M2.2 12.05a9.713 9.713 0 0 1 9.75-9.75c2.699 0 5.19 1.079 6.93 2.82a9.583 9.583 0 0 1 2.82 6.83v.75h-.75c-11.213 0-15.874 2.085-17.128 2.801l-.794.454-.29-.868c-.316-.95-.538-1.932-.538-3.037Zm9.75-8.25a8.213 8.213 0 0 0-8.25 8.25c0 .598.08 1.161.217 1.723 2.13-.973 6.944-2.489 16.25-2.57A8.067 8.067 0 0 0 17.82 6.18c-1.46-1.459-3.568-2.38-5.87-2.38Zm-3.4 4c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25-1.036 2.25-2.25 2.25S6.3 9.764 6.3 8.55Z", "key": "242972c40950cbaf6eae6f8e90730768ef8a6b7b" }], ["path", { "fill": "currentColor", "d": "M8.55 10.05a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "dbb24fafdb73ecc0071cf62ddf657e827dcf0614" }], ["path", { "fill": "currentColor", "d": "M8.55 7.8a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "366302bc8353d23e384c9afb545c3584255becbd" }]]);
const ImageMountains = createMeisterIcons("image-mountains", [["path", { "stroke": "#000", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M3 17V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "9334cfe0e0d668ffde29fe04d0642d367f723cb5" }], ["path", { "stroke": "#000", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M15.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM3 13.7l3.5-3.5c.8-.8 2-.8 2.8 0l5.3 5.3c.8.8 2 .8 2.8 0l3.5-3.5", "key": "753f20d95c6d6f1d124016969e2e89483f55d91b" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v4.89l2.22-2.22c1.093-1.093 2.767-1.093 3.86 0l5.3 5.3c.507.507 1.233.507 1.74 0l3.38-3.38V7A3.262 3.262 0 0 0 17 3.75H7Zm13.25 9.96-2.32 2.32c-1.093 1.093-2.767 1.093-3.86 0l-5.3-5.3c-.507-.507-1.233-.507-1.74 0l-3.28 3.28V17c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 17v-3.29ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Zm13.25.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "aa66da328ac30640e3a4833ee3fe4d5a5635384d" }]]);
const ImageMountainsB = createMeisterIcons("image-mountains-b", [["path", { "fill": "currentColor", "d": "M2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.576 0 4.761 2.003 4.65 4.666v5.295l-3.82 3.82c-1.093 1.092-2.767 1.092-3.86 0l-5.3-5.3c-.384-.384-1.213-.436-1.752.013L2.25 15.686V7ZM7 3.75A3.262 3.262 0 0 0 3.75 7v4.914l2.13-2.255.026-.023c1.062-.93 2.813-.977 3.824.034l5.3 5.3c.507.507 1.233.507 1.74 0l3.38-3.38V6.865C20.23 5.138 18.82 3.75 17 3.75H7Zm8.5 4c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25-1.036 2.25-2.25 2.25-2.25-1.036-2.25-2.25Z", "key": "a150d93344df73b49d2afe186e582dad56a739bf" }], ["path", { "fill": "currentColor", "d": "M21 12v5c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4v-3.2l3.4-3.6c.8-.7 2.1-.7 2.8 0l5.3 5.3c.8.8 2 .8 2.8 0L21 12Z", "key": "65815a71b77cede2b146358917be2570b9ca5e58" }], ["path", { "fill": "currentColor", "d": "M6.918 10.744 3.75 14.098V17A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17v-3.258l-2.428 2.296c-1.093 1.085-2.762 1.083-3.852-.008l-5.3-5.3c-.384-.383-1.213-.435-1.752.014ZM5.906 9.636c1.062-.93 2.813-.977 3.824.034l5.3 5.3c.507.507 1.233.507 1.74 0l.007-.008 4.973-4.704V17A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17v-3.498l3.63-3.843.026-.023Z", "key": "137225f7a0cda31ff6b6e568f90de118b81e59b4" }], ["path", { "fill": "currentColor", "d": "M15.5 10a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "eaef742e877bff543b20956f3e49baee81e20d48" }], ["path", { "fill": "currentColor", "d": "M15.5 7.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "55f3c1d3c7d958eb1049506be57c25f7f82ada5e" }]]);
const ImageMountainsCircle = createMeisterIcons("image-mountains-circle", [["path", { "fill": "currentColor", "d": "M3.75 11.888 5.87 9.77c1.065-1.065 2.856-1.125 3.877.017l5.283 5.283c.508.507 1.233.507 1.74 0l3.47-3.47A8.21 8.21 0 0 0 12 3.75a8.212 8.212 0 0 0-8.25 8.138Zm16.276 2.047L17.83 16.13c-1.092 1.093-2.767 1.093-3.86 0l-5.318-5.318-.016-.018c-.383-.438-1.177-.492-1.706.036l-2.978 2.978c.827 3.648 4.1 6.442 8.048 6.442a8.208 8.208 0 0 0 8.026-6.315ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75ZM15.5 8.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "f43c8a64f76cff50d05864189f4802be8bb90e30" }]]);
const ImageMountainsCircleB = createMeisterIcons("image-mountains-circle-b", [["path", { "fill": "currentColor", "d": "M2.2 12a9.713 9.713 0 0 1 9.75-9.75c2.699 0 5.19 1.079 6.93 2.82 1.721 1.72 2.93 4.216 2.82 6.861l-.013.293-3.807 3.806c-1.092 1.093-2.767 1.093-3.86 0l-5.3-5.3c-.385-.384-1.217-.435-1.756.017l-4.081 4.205-.43-1.073c-.254-.637-.253-1.36-.253-1.831V12Zm1.5-.044 2.233-2.3.023-.02c1.062-.93 2.814-.977 3.824.034l5.3 5.3c.508.507 1.233.507 1.74 0l3.386-3.387c-.004-2.054-.973-4.039-2.386-5.453-1.46-1.459-3.568-2.38-5.87-2.38a8.212 8.212 0 0 0-8.25 8.206ZM15.55 8.75c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25S17.8 8.286 17.8 9.5s-1.036 2.25-2.25 2.25-2.25-1.036-2.25-2.25Z", "key": "ab07d33584d349b550b91467129dc60beda75ac3" }], ["path", { "fill": "currentColor", "d": "M21.05 12c0 2.5-1 4.7-2.6 6.4-1.6 1.6-3.9 2.6-6.4 2.6-2.5 0-4.7-1-6.4-2.6-1.3-1.3-2.2-2.9-2.5-4.7l3.3-3.5c.8-.7 2.1-.7 2.8 0l5.3 5.3c.8.8 2 .8 2.8 0l3.7-3.5Z", "key": "df7411af5cbaff628a3ff7bb95f2c4bf8fad9f30" }], ["path", { "fill": "currentColor", "d": "M6.968 10.744 3.96 13.935c.324 1.48 1.102 2.813 2.213 3.927 1.575 1.478 3.593 2.388 5.878 2.388 2.297 0 4.403-.918 5.862-2.372 1.04-1.107 1.797-2.433 2.156-3.917l-2.196 2.077c-1.093 1.085-2.762 1.083-3.852-.008l-5.3-5.3c-.384-.383-1.213-.435-1.752.014ZM5.956 9.636c1.062-.93 2.814-.977 3.824.034l5.3 5.3c.508.507 1.233.507 1.74 0l.007-.008L21.6 10.21l.2 1.79c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.231 2.82-6.93 2.82-2.71 0-5.09-1.087-6.914-2.804l-.008-.008-.008-.008c-1.396-1.395-2.38-3.133-2.71-5.107l-.06-.367L5.928 9.66l.027-.023Z", "key": "2d0f2a06ce8e5b854c2704e9afde66ef97d5bfe5" }], ["path", { "fill": "currentColor", "d": "M15.55 8.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "5473be5cec6f0050a628c4774afc03c2ee1229e7" }], ["path", { "fill": "currentColor", "d": "M15.55 11a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "9d1bdca8ee815f7ea1bd3eb55494337a7a408d77" }]]);
const Images = createMeisterIcons("images", [["path", { "fill": "currentColor", "d": "M6.35 6.25A3.262 3.262 0 0 0 3.1 9.5v8c0 1.798 1.376 3.25 3.25 3.25h8a3.262 3.262 0 0 0 3.25-3.25v-8a3.262 3.262 0 0 0-3.25-3.25h-8ZM1.6 9.5a4.762 4.762 0 0 1 4.75-4.75h8A4.762 4.762 0 0 1 19.1 9.5v8a4.762 4.762 0 0 1-4.75 4.75h-8c-2.726 0-4.75-2.148-4.75-4.75v-8Z", "key": "7c5167fb6cd5d6c4ab906dd3fa73db1ef04c3a08" }], ["path", { "fill": "currentColor", "d": "M9.02 13.33c-.373-.373-.937-.365-1.19-.154l-.02.017-5.022 3.616-.876-1.218 4.98-3.586c.948-.767 2.368-.556 3.188.265l7.7 7.7-1.06 1.06-7.7-7.7Z", "key": "182a4b593acd0c79c04600d58174f50078297b82" }], ["path", { "fill": "currentColor", "d": "M15.42 15.13c-.415-.414-.97-.414-1.382-.06l-.008.006-1.2 1-.96-1.152 1.196-.997c.984-.84 2.418-.842 3.402.13l2.389 2.19-1.014 1.106-2.412-2.211-.011-.012Z", "key": "94438b2c29b10b73372c7b55e79d58bc869a2e14" }], ["path", { "fill": "currentColor", "d": "M9.65 3.25c-1.56 0-2.851 1.068-3.17 2.422l-1.46-.344C5.502 3.282 7.41 1.75 9.65 1.75h8A4.762 4.762 0 0 1 22.4 6.5v8c0 2.383-1.783 4.388-4.139 4.742l-.222-1.484c1.645-.246 2.861-1.641 2.861-3.258v-8a3.262 3.262 0 0 0-3.25-3.25h-8Z", "key": "cbe4fb8f7bf18972b86902ca0a51bfd4422c4230" }]]);
const ImagesB = createMeisterIcons("images-b", [["path", { "fill": "currentColor", "d": "M17.2 20.3c-.7.7-1.7 1.2-2.8 1.2h-8c-2.2 0-4-1.8-4-4v-1.3l5-3.6c.6-.5 1.6-.4 2.2.2l7.6 7.5Z", "key": "dd5143962b3e03af8ea91fd0f451f507e338dd34" }], ["path", { "fill": "currentColor", "d": "M9.07 13.33c-.373-.373-.937-.365-1.19-.154l-.02.017-4.71 3.391v.916a3.262 3.262 0 0 0 3.25 3.25h8a3.14 3.14 0 0 0 1.676-.505L9.07 13.33Zm1.058-1.062c-.82-.819-2.24-1.03-3.185-.263l-5.293 3.81V17.5a4.762 4.762 0 0 0 4.75 4.75h8c1.328 0 2.512-.601 3.33-1.42l.534-.533-8.136-8.03Z", "key": "618a50f54425826c42075b1a2c53f8c588227db5" }], ["path", { "fill": "currentColor", "d": "M15.47 15.03c-.415-.414-.97-.413-1.382-.06l-.008.006-.569.474 3.616 3.616c.144-.256.258-.544.352-.872l.004-.016.005-.015c.055-.164.062-.336.062-.763v-.29l-2.08-2.08Zm-2.354-1.203c.988-.843 2.43-.842 3.414.143l2.52 2.52v.958c0 .357 0 .76-.133 1.172-.225.779-.576 1.499-1.187 2.11l-.53.53-5.911-5.911 1.827-1.523Z", "key": "233e687656d02ab486ff7b6c4cb090c0bf1e704a" }], ["path", { "fill": "currentColor", "d": "M6.3 6.25A3.262 3.262 0 0 0 3.05 9.5v5.236l3.814-2.746c1.005-.718 2.409-.573 3.26.274l2.212 2.13.705-.588.023-.016a2.706 2.706 0 0 1 3.324.14l.016.014 1.146 1.098V9.5a3.262 3.262 0 0 0-3.25-3.25h-8ZM1.55 9.5A4.762 4.762 0 0 1 6.3 4.75h8a4.762 4.762 0 0 1 4.75 4.75v9.058l-3.652-3.5a1.206 1.206 0 0 0-1.442-.062l-1.692 1.41-3.19-3.07-.004-.006c-.348-.348-.94-.4-1.333-.12h-.001L1.55 17.664V9.5Zm16.18 10.27.1.1-1.06 1.06-.1-.1 1.06-1.06Z", "key": "8792199b57c873098fef5a5af46cc24778a4f17f" }], ["path", { "fill": "currentColor", "d": "M9.7 3.25c-1.56 0-2.852 1.068-3.17 2.422l-1.46-.344C5.55 3.282 7.46 1.75 9.7 1.75h8a4.762 4.762 0 0 1 4.75 4.75v8c0 2.383-1.784 4.388-4.139 4.742l-.222-1.484c1.645-.246 2.861-1.641 2.861-3.258v-8a3.262 3.262 0 0 0-3.25-3.25h-8Z", "key": "87b38e28d438ab196c7fb46324f132ef1b146b1a" }]]);
const ImagesVarB = createMeisterIcons("images-var-b", [["path", { "fill": "currentColor", "d": "M5.794 4.7h8.556C16.877 4.7 19 6.848 19 9.45v8.049c0 .357 0 .76-.133 1.172-.225.779-.576 1.499-1.187 2.11-.818.818-2.002 1.419-3.33 1.419h-8a4.762 4.762 0 0 1-4.75-4.75v-8c0-2.383 1.784-4.388 4.139-4.742l.055-.008Zm.115 1.5C4.29 6.468 3.1 7.85 3.1 9.45v8a3.262 3.262 0 0 0 3.25 3.25h8c.872 0 1.688-.399 2.27-.98.385-.386.633-.861.809-1.476l.004-.016.006-.015c.054-.164.061-.337.061-.763v-8c0-1.798-1.477-3.25-3.15-3.25H5.909Z", "key": "06d1f83c90db879aad06db4358f65c5324252eea" }], ["path", { "fill": "currentColor", "d": "M9.02 13.28c-.373-.373-.937-.365-1.19-.154l-.02.017-5.022 3.616-.876-1.218 4.98-3.586c.947-.767 2.368-.556 3.188.265l7.7 7.7-1.06 1.06-7.7-7.7Z", "key": "5cef915ab7384efaf1d317bb8ce8adbbee1b7d66" }], ["path", { "fill": "currentColor", "d": "M15.42 15.08c-.415-.414-.97-.414-1.382-.06l-.008.006-1.2 1-.96-1.152 1.196-.997c.984-.84 2.418-.842 3.402.13l2.389 2.19-1.014 1.106-2.412-2.211-.011-.012Z", "key": "9f68777f42d5fa4e27fb22912dbbeef1a079ad48" }], ["path", { "fill": "currentColor", "d": "M21.65 6.55v8c0 2-1.5 3.7-3.5 4 .1-.3.1-.7.1-1v-8c0-2.2-1.8-4-4-4h-8.5c.4-1.7 2-3 3.9-3h8c2.2 0 4 1.7 4 4Z", "key": "5e7c587e78373ccde730c4fa8bdd13fe1254e060" }], ["path", { "fill": "currentColor", "d": "M6.872 4.8h7.378A4.762 4.762 0 0 1 19 9.55v7.965c1.136-.542 1.9-1.684 1.9-2.965v-8c0-1.873-1.452-3.25-3.25-3.25h-8a3.3 3.3 0 0 0-2.778 1.5Zm-1.852.578C5.5 3.332 7.41 1.8 9.65 1.8h8c2.602 0 4.75 2.024 4.75 4.75v8c0 2.383-1.784 4.389-4.139 4.742l-1.21.181.388-1.16c.053-.161.061-.428.061-.763v-8a3.262 3.262 0 0 0-3.25-3.25H4.803l.217-.922Z", "key": "b7d929d803ed0410fa1cf7b47feecebd56ee5b6b" }]]);
const ImageVarB = createMeisterIcons("image-var-b", [["path", { "fill": "currentColor", "d": "M10.67 11.73a1.233 1.233 0 0 0-1.62-.13l-.007.005L3.75 15.48V17A3.262 3.262 0 0 0 7 20.25h10c.608 0 1.188-.194 1.681-.508L10.67 11.73Zm-2.516-1.333a2.733 2.733 0 0 1 3.576.273l9.13 9.13-.53.53c-.818.819-2.002 1.42-3.33 1.42H7A4.762 4.762 0 0 1 2.25 17v-2.28l5.904-4.323Z", "key": "0b782b8a6887dce3b0f7d4b064f1cdf784090cdf" }], ["path", { "fill": "currentColor", "d": "M17.704 13.762c-.571-.498-1.245-.505-1.71-.098l-.01.009-.672.568 4.426 4.347a3.142 3.142 0 0 0 .512-1.688v-.864l-2.547-2.274Zm-2.693-1.23c1.133-.988 2.656-.795 3.683.104l.006.005 3.05 2.723V16.9c0 1.328-.601 2.512-1.42 3.33l-.525.526-6.717-6.597 1.923-1.628Z", "key": "78c8338edac9d428b46000472fc7ee47be85980c" }], ["path", { "fill": "currentColor", "d": "M21 7v8.8l-2.8-2.6c-.7-.7-1.9-.7-2.7-.1l-1.3 1.1-3-3c-.7-.7-1.8-.8-2.6-.2L3 15.1V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "1bc5a4a8cc7577b0207de50fa89a89652864b9da" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6.621l4.404-3.224a2.733 2.733 0 0 1 3.576.273l2.512 2.512.79-.669.018-.013c1.046-.784 2.664-.835 3.67.159l1.53 1.421V7c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.602 0 4.75 2.024 4.75 4.75v10.52l-4.07-3.78-.01-.01c-.391-.39-1.155-.442-1.704-.042l-1.808 1.53-3.488-3.488a1.233 1.233 0 0 0-1.62-.13l-.007.005L2.25 16.58V7Z", "key": "7ddafaa78b3beea3b44824c89dbc2ac52c3cbf63" }]]);
const ImaheCircle = createMeisterIcons("imahe-circle", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 .307.017.61.05.91A8.368 8.368 0 0 1 9 11.15c1.099 0 1.964.207 2.688.56.718.35 1.255.822 1.717 1.284.167.167.322.329.472.485.709.74 1.299 1.355 2.36 1.709l.007.002c1.24.428 2.077.201 2.657-.163.547-.344.924-.852 1.16-1.247A8.4 8.4 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75Zm0 16.5c-3.667 0-6.75-2.409-7.834-5.674.788-.769 2.399-1.927 4.834-1.927.9 0 1.536.168 2.03.409.501.244.901.584 1.315.997.125.126.254.261.388.403.715.754 1.585 1.67 3.026 2.152 1.183.407 2.189.384 3.02.117A8.215 8.215 0 0 1 12 20.25ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Zm12.5-2.5a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75-2.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "c37f6515f289501abf36c250923fe7820e436748" }]]);
const Inbox = createMeisterIcons("inbox", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v5.25H14a.75.75 0 0 0-.75.75c0 .686-.564 1.25-1.25 1.25s-1.25-.564-1.25-1.25a.75.75 0 0 0-.75-.75H3.75V9Zm-1.5 6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9C5.286 2.25 2.25 5.286 2.25 9v6Zm1.554.75h5.55a2.758 2.758 0 0 0 2.646 2 2.758 2.758 0 0 0 2.646-2h5.55c-.367 2.534-2.565 4.5-5.196 4.5H9c-2.631 0-4.829-1.966-5.196-4.5ZM7.75 7a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7A.75.75 0 0 1 7.75 7Zm.75 3.25a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5h-7Z", "key": "4a841508942cfac789df0c282455b89d281125d5" }]]);
const InboxB = createMeisterIcons("inbox-b", [["path", { "fill": "currentColor", "d": "M21 9v6h-7c0 1.1-.9 2-2 2s-2-.9-2-2H3V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "fbc9a9e6e6a07610f755e72af31c479e2b5c1e04" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v5.25h7V15c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.75h7V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6.75h-7.104a2.758 2.758 0 0 1-2.646 2 2.758 2.758 0 0 1-2.646-2H2.25V9Z", "key": "33f54eb94f2ccc556aa529ff53cb0355fd0cbc12" }], ["path", { "fill": "currentColor", "d": "M2.25 14.25h8.5V15c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.75h8.5V15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-.75Zm1.554 1.5c.367 2.534 2.565 4.5 5.196 4.5h6c2.631 0 4.829-1.966 5.196-4.5h-5.55a2.758 2.758 0 0 1-2.646 2 2.758 2.758 0 0 1-2.646-2h-5.55Z", "key": "f3fae5f73fbf8ca92dab66308aa0368fe77be4e3" }], ["path", { "fill": "#fff", "d": "M7.75 7a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7A.75.75 0 0 1 7.75 7Zm0 4a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Z", "key": "6cbcc140d3b85fa542e5be8f46d8e771968bdf07" }]]);
const InboxCircle = createMeisterIcons("inbox-circle", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v4.25h-4.575a3.751 3.751 0 0 0-7.35 0H3.75V9Zm-1.5 5v1c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9C5.286 2.25 2.25 5.286 2.25 9v5Zm1.5.75h4.575a3.751 3.751 0 0 0 7.35 0h4.575V15c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25v-.25Zm6-.75a2.25 2.25 0 1 0 4.5 0 2.25 2.25 0 0 0-4.5 0Z", "key": "5eb736a5a392330741993f86115efdfd2f0ec477" }]]);
const InboxCircleB = createMeisterIcons("inbox-circle-b", [["path", { "fill": "currentColor", "d": "M2.25 13.25h7.5V14c0 1.286.964 2.25 2.25 2.25s2.25-.964 2.25-2.25v-.75h7.5V15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-1.75Zm1.5 1.5V15c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-.25h-4.57c-.336 1.739-1.824 3-3.68 3s-3.344-1.261-3.68-3H3.75Z", "key": "6eea1c4cde451a6006993ca191a1ebb30c2cdfb8" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v4.25h4.57c.336-1.739 1.824-3 3.68-3s3.344 1.261 3.68 3h4.57V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v5.75h-7.5V14c0-1.286-.964-2.25-2.25-2.25s-2.25.964-2.25 2.25v.75h-7.5V9Z", "key": "54e928a1b3cbebaed7a8eb080e91dea90b51727d" }], ["path", { "fill": "currentColor", "d": "M12 17a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "d0f144c463e3f383573252064bfa2b631f0f76df" }], ["path", { "fill": "currentColor", "d": "M12 11.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 14a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "3a9e4c290075f2908bac8d8d4e9dee5415632578" }]]);
const InboxEmpty = createMeisterIcons("inbox-empty", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v5.25H14a.75.75 0 0 0-.75.75c0 .686-.564 1.25-1.25 1.25s-1.25-.564-1.25-1.25a.75.75 0 0 0-.75-.75H3.75V9Zm-1.5 6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9C5.286 2.25 2.25 5.286 2.25 9v6Zm1.554.75h5.55a2.758 2.758 0 0 0 2.646 2 2.758 2.758 0 0 0 2.646-2h5.55c-.367 2.534-2.565 4.5-5.196 4.5H9c-2.631 0-4.829-1.966-5.196-4.5Z", "key": "85eb9dd166a2b901778df5405db25352482eb289" }]]);
const InboxEmptyB = createMeisterIcons("inbox-empty-b", [["path", { "fill": "currentColor", "d": "M2.25 14.25h8.5V15c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.75h8.5V15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-.75Zm1.554 1.5c.367 2.534 2.565 4.5 5.196 4.5h6c2.631 0 4.829-1.966 5.196-4.5h-5.55a2.758 2.758 0 0 1-2.646 2 2.758 2.758 0 0 1-2.646-2h-5.55Z", "key": "9d7e5b77c659df48b0ae03de89012c439b6c808d" }], ["path", { "fill": "currentColor", "d": "M21 9v6h-7c0 1.1-.9 2-2 2s-2-.9-2-2H3V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "5c882ae065d9fcf66545db491a54b93806f27617" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v5.25h7V15c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.75h7V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6.75h-7.104a2.758 2.758 0 0 1-2.646 2 2.758 2.758 0 0 1-2.646-2H2.25V9Z", "key": "c5d07549f5be52f3c4a8a43b9f8a7489d85e8439" }]]);
const InboxVarB = createMeisterIcons("inbox-var-b", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v5.25h7V15c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.75h7V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6.75h-7.104a2.758 2.758 0 0 1-2.646 2 2.758 2.758 0 0 1-2.646-2H2.25V9Z", "key": "4b42a61931c0faf6fe65a4f5a8a8d71098133e36" }], ["path", { "fill": "currentColor", "d": "M21 15c0 3.3-2.7 6-6 6H9c-3.3 0-6-2.7-6-6h7c0 1.1.9 2 2 2s2-.9 2-2h7Z", "key": "0d4727d401700312295d2c81b6be225c39c35d7f" }], ["path", { "fill": "currentColor", "d": "M2.25 14.25h8.5V15c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.75h8.5V15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-.75Zm1.554 1.5c.367 2.534 2.565 4.5 5.196 4.5h6c2.631 0 4.829-1.966 5.196-4.5h-5.55a2.758 2.758 0 0 1-2.646 2 2.758 2.758 0 0 1-2.646-2h-5.55ZM7.75 7a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7A.75.75 0 0 1 7.75 7Zm0 4a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Z", "key": "d8b1034b57d5ee07a93d1686fb47b311fa6e6f25" }]]);
const Incognito = createMeisterIcons("incognito", [["path", { "fill": "currentColor", "d": "M6.528 16c-1.275.011-2.228.971-2.228 2.25 0 1.27 1.048 2.25 2.25 2.25 1.27 0 2.25-1.048 2.25-2.25 0-1.157-.94-2.161-2.272-2.25ZM2.8 18.25c0-2.114 1.636-3.75 3.75-3.75h.022l.022.001c2.056.121 3.706 1.712 3.706 3.749 0 1.998-1.62 3.75-3.75 3.75-1.998 0-3.75-1.62-3.75-3.75ZM17.45 16c-1.286 0-2.25.964-2.25 2.25s.964 2.25 2.25 2.25c1.27 0 2.25-1.048 2.25-2.25S18.72 16 17.45 16Zm-3.75 2.25c0-2.114 1.636-3.75 3.75-3.75 2.13 0 3.75 1.752 3.75 3.75S19.58 22 17.45 22c-2.114 0-3.75-1.636-3.75-3.75Z", "key": "8d8077fe6468fb8b641e4032269ae9f3bced525f" }], ["path", { "fill": "currentColor", "d": "M8.8 18.25a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Zm9.039-5.837a.75.75 0 0 1 .948-.475c.26.087.55.154.882.231l.016.004c.314.072.668.154 1.002.265a.75.75 0 0 1-.474 1.423 9.841 9.841 0 0 0-.898-.234 11.048 11.048 0 0 1-1.002-.266.75.75 0 0 1-.474-.948Zm-11.347.031a.75.75 0 0 1-.636.848c-.65.093-1.412.283-2.1.48a.75.75 0 0 1-.412-1.443c.712-.203 1.55-.414 2.3-.521a.75.75 0 0 1 .848.636Z", "key": "7c8e6d493c025497b7c6395028bab0322b8426aa" }], ["path", { "fill": "currentColor", "d": "M8.95 3.5C7.564 3.5 6.5 4.564 6.5 5.95v5.798c1.749-.298 3.5-.448 5.25-.448 2.062 0 4.136.158 6.15.547V5.95c0-1.271-1.054-2.362-2.373-2.45H8.95ZM5 5.95A3.909 3.909 0 0 1 8.95 2h6.622l.022.001c2.071.122 3.806 1.827 3.806 3.949v6.317c0 .087 0 .218-.023.356a1.6 1.6 0 0 1-.156.462l-.263.527-.574-.13c-2.134-.486-4.376-.682-6.634-.682-1.95 0-3.9.195-5.853.585l-.897.18V5.95Z", "key": "4db05fdaaace2a02a1be726caf7cdc743a245fad" }]]);
const IncognitoB = createMeisterIcons("incognito-b", [["path", { "fill": "currentColor", "d": "M9.55 18.25c0 1.6-1.3 3-3 3-1.6 0-3-1.3-3-3s1.3-3 3-3c1.7.1 3 1.4 3 3Z", "key": "cffc5271d3e50667f44fcd16565863f02b4a46c1" }], ["path", { "fill": "currentColor", "d": "M6.528 16c-1.275.011-2.228.971-2.228 2.25 0 1.27 1.048 2.25 2.25 2.25 1.27 0 2.25-1.048 2.25-2.25 0-1.157-.94-2.161-2.272-2.25ZM2.8 18.25c0-2.114 1.636-3.75 3.75-3.75h.022l.022.001c2.056.121 3.706 1.712 3.706 3.749 0 1.998-1.62 3.75-3.75 3.75-1.998 0-3.75-1.62-3.75-3.75Zm17.65 0c0 1.6-1.3 3-3 3s-3-1.3-3-3 1.3-3 3-3 3 1.4 3 3Z", "key": "be55130925d3286fa28b58b6557ed26dc3ffe591" }], ["path", { "fill": "currentColor", "d": "M17.45 16c-1.286 0-2.25.964-2.25 2.25s.964 2.25 2.25 2.25c1.27 0 2.25-1.048 2.25-2.25S18.72 16 17.45 16Zm-3.75 2.25c0-2.114 1.636-3.75 3.75-3.75 2.13 0 3.75 1.752 3.75 3.75S19.58 22 17.45 22c-2.114 0-3.75-1.636-3.75-3.75Z", "key": "1f5e4954258eaf5168ae4a84d1c250220a779ed1" }], ["path", { "fill": "currentColor", "d": "M8.8 18.25a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Zm9.039-5.837a.75.75 0 0 1 .948-.475c.26.087.55.154.882.231l.016.004c.314.072.668.154 1.002.265a.75.75 0 0 1-.474 1.423 9.841 9.841 0 0 0-.898-.234 11.048 11.048 0 0 1-1.002-.266.75.75 0 0 1-.474-.948Zm-11.347.031a.75.75 0 0 1-.636.848c-.65.093-1.412.283-2.1.48a.75.75 0 0 1-.412-1.443c.712-.203 1.55-.414 2.3-.521a.75.75 0 0 1 .848.636Z", "key": "84419aa4cc02cc991645771fb94c30bd8f5dbffc" }], ["path", { "fill": "currentColor", "d": "M18.65 5.95v6.3c0 .2 0 .3-.1.5-2.2-.5-4.5-.7-6.8-.7-2 0-4 .2-6 .6v-6.7c0-1.8 1.4-3.2 3.2-3.2h6.6c1.7.1 3.1 1.5 3.1 3.2Z", "key": "c7c5e07e828ffa3b5b924acf95b2fd25c0ae5d52" }], ["path", { "fill": "currentColor", "d": "M8.95 3.5C7.564 3.5 6.5 4.564 6.5 5.95v5.798c1.749-.298 3.5-.448 5.25-.448 2.062 0 4.136.158 6.15.547V5.95c0-1.271-1.054-2.362-2.373-2.45H8.95ZM5 5.95A3.909 3.909 0 0 1 8.95 2h6.622l.022.001c2.071.122 3.806 1.827 3.806 3.949v6.317c0 .087 0 .218-.023.356a1.6 1.6 0 0 1-.156.462l-.263.527-.574-.13c-2.134-.486-4.376-.682-6.634-.682-1.95 0-3.9.195-5.853.585l-.897.18V5.95Z", "key": "54bdb7083de35e5ec24c11d3cd00da06352f2b59" }]]);
const InfoCircle = createMeisterIcons("info-circle", [["path", { "fill": "currentColor", "d": "M12 20.25a8.25 8.25 0 1 0 0-16.5 8.25 8.25 0 0 0 0 16.5ZM21.75 12c0 5.385-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25s9.75 4.365 9.75 9.75Z", "key": "4bec20a9f65ad62fdd69b113ef385a68f6d4ac1d" }], ["path", { "fill": "currentColor", "d": "M12 9.3c.4 0 .8.3.8.8v6c0 .4-.3.8-.8.8s-.8-.3-.8-.8v-6c.1-.5.4-.8.8-.8Zm0-3c.2 0 .4.1.5.2l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.2.2-.5.3-.8.2-.1 0-.2-.1-.2-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2s.1-.1.2-.2h.1Z", "key": "358eb7af5bfcdba9271a964ebce6f479be892fd1" }]]);
const InfoCircleB = createMeisterIcons("info-circle-b", [["path", { "fill": "currentColor", "d": "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18Z", "key": "57244b87b021a28a316313d04af18c93531e707b" }], ["path", { "fill": "currentColor", "d": "M12 20.25a8.25 8.25 0 1 0 0-16.5 8.25 8.25 0 0 0 0 16.5ZM21.75 12c0 5.385-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12 6.615 2.25 12 2.25s9.75 4.365 9.75 9.75Z", "key": "0b43b4876e43644df1f819bbeb890d4318445c73" }], ["path", { "fill": "#fff", "d": "M12 9.3c.4 0 .8.3.8.8v6c0 .4-.3.7-.8.7s-.8-.3-.8-.8v-6c.1-.4.4-.7.8-.7Zm0-3c.1 0 .2 0 .3.1.1 0 .2.1.2.2s.2.1.2.2c.1.1.1.2.1.2 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2-.1.1-.2.1-.2.2-.3.1-.6.1-.8-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.2.1-.4.2-.5.3-.1.4-.2.6-.2Z", "key": "9940feb2746dbd381be375fcd5f25fc873f24637" }]]);
const InfoOctagon = createMeisterIcons("info-octagon", [["path", { "fill": "currentColor", "d": "M11.95 10.2c.4 0 .8.3.8.8v5c0 .4-.4.7-.8.7s-.8-.3-.8-.8v-5c.1-.4.4-.7.8-.7Zm0-3c.2 0 .4.1.5.2l.2.2c0 .1.1.2.1.3 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2-.2.2-.5.3-.8.2-.1 0-.2-.1-.2-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2s.1-.1.2-.2h.3Z", "key": "0f800a4a16413abf7ec4bd228119768f08505e5d" }], ["path", { "fill": "currentColor", "d": "M15.742 21.01c-.223.1-.455.14-.692.14h-6.1c-.449 0-.958-.147-1.33-.52l-.007-.006-4.2-4.4a1.778 1.778 0 0 1-.373-.532A1.68 1.68 0 0 1 2.9 15V8.9c0-.237.04-.469.14-.692.097-.22.235-.394.38-.538l4.3-4.3c.144-.145.318-.283.538-.38.223-.1.454-.14.692-.14h6.1c.237 0 .469.04.692.14.22.097.394.235.538.38l4.3 4.3c.145.144.283.318.38.538.1.223.14.455.14.692V15c0 .478-.167.811-.27 1.019l-.01.016-.054.11-4.486 4.485a1.786 1.786 0 0 1-.538.38Zm-.61-1.37a.326.326 0 0 0 .088-.07l4.312-4.312a.972.972 0 0 0 .044-.108.45.45 0 0 0 .024-.15V8.9c0-.06-.009-.08-.01-.083a.32.32 0 0 0-.07-.087l-4.3-4.3a.324.324 0 0 0-.087-.07c-.002 0-.02-.01-.083-.01h-6.1c-.06 0-.08.009-.083.01a.323.323 0 0 0-.087.07l-4.3 4.3a.323.323 0 0 0-.07.087c0 .002-.01.02-.01.083V15c0 .06.009.08.01.083a.323.323 0 0 0 .07.087l.006.006 4.197 4.397c.031.028.121.077.267.077h6.1c.06 0 .08-.009.083-.01Z", "key": "8d09b6e62ac3bcd7bed5a89e2f947f8c37fde858" }]]);
const InfoOctagonB = createMeisterIcons("info-octagon-b", [["path", { "fill": "currentColor", "d": "M8.95 20.35h6.1c.3 0 .5-.1.7-.2l4.4-4.4c.1-.2.2-.4.2-.7v-6.1c0-.3-.1-.5-.3-.7l-4.3-4.3c-.2-.2-.4-.3-.7-.3h-6.1c-.3 0-.5.1-.7.3l-4.3 4.3c-.2.2-.3.4-.3.7v6.1c0 .3.1.5.3.7l4.2 4.4c.2.1.5.2.8.2Z", "key": "e240c90a517904c94d2b4e1c610beb165f6c5f60" }], ["path", { "fill": "currentColor", "d": "M16.069 20.83c-.208.103-.541.27-1.019.27h-6.1c-.45 0-.865-.144-1.135-.28l-.117-.058-4.285-4.488a1.78 1.78 0 0 1-.373-.532 1.68 1.68 0 0 1-.14-.692v-6.1c0-.238.04-.469.14-.692.097-.22.235-.394.38-.538l4.3-4.3c.144-.145.318-.283.538-.38.223-.1.454-.14.692-.14h6.1c.237 0 .469.04.692.14.22.097.394.235.538.38l4.3 4.3c.145.144.283.318.38.538.1.223.14.454.14.692v6.1c0 .478-.167.811-.27 1.019a2.592 2.592 0 0 1-.01.016l-.054.11-4.572 4.571-.109.055-.016.008Zm-.761-1.298 4.224-4.224a.957.957 0 0 0 .044-.108.45.45 0 0 0 .024-.15v-6.1c0-.06-.009-.08-.01-.083a.325.325 0 0 0-.07-.087l-4.3-4.3a.322.322 0 0 0-.087-.07c-.003-.001-.022-.01-.083-.01h-6.1c-.062 0-.081.01-.083.01a.322.322 0 0 0-.087.07l-4.3 4.3a.322.322 0 0 0-.07.087c-.001.003-.01.023-.01.083v6.1c0 .06.009.08.01.083a.321.321 0 0 0 .07.087l.006.006 4.104 4.299c.114.043.246.075.36.075h6.1a.45.45 0 0 0 .15-.024.985.985 0 0 0 .108-.044Z", "key": "ff5b5e1b4cb983aa4a57400290fab5ddee6c8006" }], ["path", { "fill": "#fff", "d": "M11.95 10.25c.4 0 .8.3.8.8v5c0 .4-.3.8-.8.8s-.8-.3-.8-.8v-5c.1-.5.4-.8.8-.8Zm0-3c.2 0 .4.1.5.2l.2.2c0 .1.1.2.1.3 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2-.2.2-.5.3-.8.2-.1 0-.2-.1-.2-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2s.1-.1.2-.2h.3Z", "key": "779bb2c78a330b873188b189caead290cb7687d3" }]]);
const InfoSquare = createMeisterIcons("info-square", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "35e0edc6ca44f18911de73c492eff0b88ecf2a22" }], ["path", { "fill": "currentColor", "d": "M11.8 10c.4 0 .8.3.8.8v6c0 .4-.3.7-.8.7s-.8-.3-.8-.8v-6c.1-.4.4-.7.8-.7Zm0-3c.1 0 .2 0 .3.1.1 0 .2.1.2.2s.2.1.2.2c.1.1.1.2.1.2 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2-.1.1-.2.1-.2.2-.3.1-.6.1-.8-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.2.1-.4.2-.5.3-.1.4-.2.6-.2Z", "key": "27e16b317ef85cd742ddd9192fd7f96a6692b4f6" }]]);
const InfoSquareB = createMeisterIcons("info-square-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "5492e66f8c244bb12476c2af415c2783277ab8ff" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "e9355012f14dea9c13bb177f0d240a6e08f5ba40" }], ["path", { "fill": "#fff", "d": "M11.8 10c.4 0 .8.3.8.8v6c0 .4-.3.7-.8.7s-.8-.3-.8-.8v-6c.1-.4.4-.7.8-.7Zm0-3c.1 0 .2 0 .3.1.1 0 .2.1.2.2s.2.1.2.2c.1.1.1.2.1.2 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2-.1.1-.2.1-.2.2-.3.1-.6.1-.8-.2l-.2-.2c0-.1-.1-.2-.1-.3 0-.2.1-.4.2-.5.3-.1.4-.2.6-.2Z", "key": "472763f11a35f9ec247fde8700d60d25809230bf" }]]);
const Intersection = createMeisterIcons("intersection", [["path", { "fill": "currentColor", "d": "M10.7 3.5a.75.75 0 0 0-1.5 0v3.9c0 .986-.864 1.85-1.85 1.85h-3.9a.75.75 0 0 0 0 1.5h3.9c1.814 0 3.35-1.536 3.35-3.35V3.5Zm4.1 0a.75.75 0 0 0-1.5 0v3.9c0 1.814 1.536 3.35 3.35 3.35h3.9a.75.75 0 0 0 0-1.5h-3.9c-.986 0-1.85-.864-1.85-1.85V3.5Zm1.85 11.25c-.986 0-1.85.864-1.85 1.85v3.9a.75.75 0 0 1-1.5 0v-3.9c0-1.814 1.536-3.35 3.35-3.35h3.9a.75.75 0 0 1 0 1.5h-3.9Zm-13.2-1.5a.75.75 0 0 0 0 1.5h3.9c.986 0 1.85.864 1.85 1.85v3.9a.75.75 0 0 0 1.5 0v-3.9c0-1.814-1.536-3.35-3.35-3.35h-3.9Z", "key": "e5276c865ed2647c1244042722d8d3285c00e248" }]]);
const Iphone = createMeisterIcons("iphone", [["path", { "fill": "currentColor", "d": "M5.75 7A3.262 3.262 0 0 1 9 3.75h6A3.262 3.262 0 0 1 18.25 7v10A3.262 3.262 0 0 1 15 20.25H9A3.262 3.262 0 0 1 5.75 17V7ZM9 2.25A4.762 4.762 0 0 0 4.25 7v10A4.762 4.762 0 0 0 9 21.75h6A4.762 4.762 0 0 0 19.75 17V7A4.762 4.762 0 0 0 15 2.25H9Zm2.25 14.25a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0Zm.75-2.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "7be1762757d8d31f751043da73cf83c75ce2672b" }]]);
const Italics = createMeisterIcons("italics", [["path", { "fill": "currentColor", "d": "M14.91 4.147a.75.75 0 0 1 .443.964l-5.3 14.3a.75.75 0 1 1-1.406-.522l5.3-14.3a.75.75 0 0 1 .964-.442Z", "key": "2629d4ba45a3bd92a068980f5e73e1f8eb2505a5" }], ["path", { "fill": "currentColor", "d": "M9.5 4.85a.75.75 0 0 1 .75-.75h8.7a.75.75 0 0 1 0 1.5h-8.7a.75.75 0 0 1-.75-.75Zm-5.2 14.3a.75.75 0 0 1 .75-.75h8.6a.75.75 0 1 1 0 1.5h-8.6a.75.75 0 0 1-.75-.75Z", "key": "83b1a7b223f9a6d5f02c8573bf392265a84b3ba5" }]]);
const Joystick = createMeisterIcons("joystick", [["path", { "fill": "currentColor", "d": "M7.15 6.977h9.693l.09.022c1.41.353 2.606 1.301 3.204 2.726l1.697 3.694c1.067 2.371.008 5.327-2.488 6.397-2.401 1.03-5.287.057-6.416-2.34h-1.814c-1.095 2.47-4.027 3.483-6.461 2.44l-.014-.006-.013-.006c-2.461-1.172-3.527-4-2.467-6.473l.004-.008 1.698-3.698c.607-1.442 1.911-2.373 3.19-2.722l.097-.026Zm.206 1.5c-.885.268-1.73.92-2.113 1.838l-.006.013-1.701 3.703c-.732 1.72-.003 3.682 1.723 4.512 1.745.74 3.779-.025 4.502-1.712l.009-.02.417-.834h3.565l.46.691.028.063c.724 1.692 2.767 2.455 4.515 1.706 1.702-.73 2.443-2.772 1.712-4.4v-.002l-1.704-3.707-.005-.013c-.392-.94-1.16-1.577-2.105-1.838H7.356Z", "key": "fe503081110cd943685b1f322b16178c20e9cb9d" }], ["path", { "fill": "currentColor", "d": "M14.65 12.427c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7-.4.4-1 .4-1.4 0-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.1-.2.4-.3.7-.3Zm-4.5 0c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7-.4.4-1 .4-1.4 0-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.4-.3.7-.3Zm2.547-4.869v.003-.013l-.003-.07c0-.066 0-.165.011-.285.022-.245.08-.556.216-.857.133-.294.338-.571.66-.78.321-.207.811-.38 1.57-.38a.75.75 0 0 0 0-1.5c-.993 0-1.778.229-2.384.62a3.277 3.277 0 0 0-1.212 1.421c-.227.5-.313.989-.344 1.344a4.277 4.277 0 0 0-.01.614l.002.013v.007s0 .002.747-.068l-.746.07a.75.75 0 0 0 1.493-.136m0 0v-.003.003Z", "key": "2e47789c676c0d86064aee7fd0b357011a422e6d" }]]);
const JoystickAlt = createMeisterIcons("joystick-alt", [["path", { "fill": "currentColor", "d": "M3.95 19.45a.75.75 0 0 1 .75-.75h14.6a.75.75 0 1 1 0 1.5H4.7a.75.75 0 0 1-.75-.75ZM15.7 5.3a2.45 2.45 0 1 0 0 4.9 2.45 2.45 0 0 0 0-4.9Zm-3.95 2.45a3.95 3.95 0 1 1 7.9 0 3.95 3.95 0 0 1-7.9 0Z", "key": "c1c911f5d2ce252a7dc77ec15eab080cf15f0006" }], ["path", { "fill": "currentColor", "d": "M15.03 10.036a.75.75 0 0 1 .484.944l-2.8 8.7a.75.75 0 1 1-1.428-.46l2.8-8.7a.75.75 0 0 1 .944-.484Z", "key": "1dcc40ed80325032310d5999f71eb6a3e5012723" }]]);
const JoystickAltB = createMeisterIcons("joystick-alt-b", [["path", { "fill": "currentColor", "d": "M3.95 19.45a.75.75 0 0 1 .75-.75h14.6a.75.75 0 1 1 0 1.5H4.7a.75.75 0 0 1-.75-.75Zm11.75-8.5a3.2 3.2 0 1 0 0-6.4 3.2 3.2 0 0 0 0 6.4Z", "key": "61faebb99ca19efe57e3308d7b62d06009e077dc" }], ["path", { "fill": "currentColor", "d": "M15.7 5.3a2.45 2.45 0 1 0 0 4.9 2.45 2.45 0 0 0 0-4.9Zm-3.95 2.45a3.95 3.95 0 1 1 7.9 0 3.95 3.95 0 0 1-7.9 0Z", "key": "0e4212a5258c6b26984e6c6676ffbf155a67dfd8" }], ["path", { "fill": "currentColor", "d": "M15.03 10.036a.75.75 0 0 1 .484.944l-2.8 8.7a.75.75 0 1 1-1.428-.46l2.8-8.7a.75.75 0 0 1 .944-.484Z", "key": "c214f427e51baa18ba2b1c99771dcfb8e015b016" }]]);
const JoystickB = createMeisterIcons("joystick-b", [["path", { "fill": "currentColor", "d": "M19.05 19.127c-2.1.9-4.6 0-5.5-2.1l-.2-.3h-2.7l-.2.4c-.9 2.1-3.4 3-5.5 2.1-2.1-1-3-3.4-2.1-5.5l1.7-3.7c.5-1.2 1.6-2 2.7-2.3h9.5c1.2.3 2.2 1.1 2.7 2.3l1.7 3.7c.9 2 0 4.5-2.1 5.4Z", "key": "0e90846178ae18ce60b2b54abb2d9e490d144dbc" }], ["path", { "fill": "currentColor", "d": "M7.15 6.977h9.693l.09.022c1.41.353 2.606 1.301 3.204 2.726l1.697 3.694c1.067 2.371.009 5.327-2.488 6.397-2.401 1.03-5.287.057-6.415-2.34h-1.815c-1.094 2.47-4.027 3.483-6.461 2.44l-.014-.006-.013-.006c-2.461-1.172-3.527-4-2.467-6.473l.004-.008 1.698-3.698c.607-1.442 1.912-2.373 3.19-2.722l.097-.026Zm.206 1.5c-.885.268-1.73.92-2.113 1.838l-.006.013-1.7 3.703c-.733 1.72-.004 3.682 1.722 4.512 1.745.74 3.779-.025 4.502-1.712l.009-.02.417-.834h3.565l.46.691.028.063c.725 1.692 2.767 2.455 4.515 1.706 1.702-.73 2.444-2.772 1.713-4.4l-.002-.002-1.703-3.707-.005-.013c-.392-.94-1.159-1.577-2.104-1.838H7.356Z", "key": "c51f0f0bd5d4b0b0d231a14c6d4122c5b11c5a24" }], ["path", { "fill": "#fff", "d": "M14.65 12.427c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7-.4.4-1 .4-1.4 0-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.1-.2.4-.3.7-.3Zm-4.5 0c.3 0 .5.1.7.3.2.2.3.4.3.7 0 .3-.1.5-.3.7-.4.4-1 .4-1.4 0-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.2-.2.4-.3.7-.3Z", "key": "b6766129728dcb3272bbc897383565ff6afd2788" }], ["path", { "fill": "currentColor", "d": "M12.697 7.558v.003-.013l-.003-.07c0-.066 0-.165.011-.285.022-.245.08-.556.216-.857.134-.294.338-.571.66-.78.322-.207.811-.38 1.57-.38a.75.75 0 0 0 0-1.5c-.993 0-1.778.229-2.384.62a3.276 3.276 0 0 0-1.212 1.421 4.18 4.18 0 0 0-.344 1.344 4.277 4.277 0 0 0-.01.614l.002.013v.007s0 .002.747-.068l-.746.07a.75.75 0 0 0 1.493-.136m0 0v-.003.003Z", "key": "7381600f653988d963c0f99b61c02ac9260b3585" }]]);
const JoystickCute = createMeisterIcons("joystick-cute", [["path", { "fill": "currentColor", "d": "M7.898 7.55A4.414 4.414 0 0 0 3.448 12a4.414 4.414 0 0 0 4.45 4.45h8.3c2.491 0 4.436-1.963 4.35-4.424V12a4.414 4.414 0 0 0-4.45-4.45h-8.2ZM1.948 12a5.914 5.914 0 0 1 5.95-5.95h8.2a5.914 5.914 0 0 1 5.95 5.937c.108 3.333-2.545 5.963-5.85 5.963h-8.3A5.914 5.914 0 0 1 1.948 12Z", "key": "3f9fdcc1e37fea0c5952b62dbb1b2edd6cfdfc0b" }], ["path", { "fill": "currentColor", "d": "M7.499 9.45a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "e8a58234b3d238e8dec6908157c4ee2a4a029f7d" }], ["path", { "fill": "currentColor", "d": "M4.948 12a.75.75 0 0 1 .75-.75h3.6a.75.75 0 0 1 0 1.5h-3.6a.75.75 0 0 1-.75-.75Zm10.95-2.55a.75.75 0 0 1 .75.75v3.7a.75.75 0 1 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "18e5c8aad7a9b55bdf2aa0458e3bc4f798b1c793" }], ["path", { "fill": "currentColor", "d": "M13.348 12a.75.75 0 0 1 .75-.75h3.6a.75.75 0 0 1 0 1.5h-3.6a.75.75 0 0 1-.75-.75Z", "key": "30993e94f20b5e78e60836452e033a0819da4307" }]]);
const JoystickCuteB = createMeisterIcons("joystick-cute-b", [["path", { "fill": "currentColor", "d": "M16.199 17.2h-8.3c-2.9 0-5.2-2.3-5.2-5.2 0-2.9 2.3-5.2 5.2-5.2h8.2c2.9 0 5.2 2.3 5.2 5.2.1 2.9-2.2 5.2-5.1 5.2Z", "key": "6948984799a9bb7a3718e64040553e8456642636" }], ["path", { "fill": "currentColor", "d": "M7.898 7.55A4.414 4.414 0 0 0 3.448 12a4.414 4.414 0 0 0 4.45 4.45h8.3c2.491 0 4.436-1.963 4.35-4.424V12a4.414 4.414 0 0 0-4.45-4.45h-8.2ZM1.948 12a5.914 5.914 0 0 1 5.95-5.95h8.2a5.914 5.914 0 0 1 5.95 5.937c.108 3.333-2.545 5.963-5.85 5.963h-8.3A5.914 5.914 0 0 1 1.948 12Z", "key": "e7196f91d7c31b845732d1cb2f98d97833ae6e9a" }], ["path", { "fill": "#fff", "d": "M7.499 9.45a.75.75 0 0 1 .75.75v3.7a.75.75 0 0 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "3c9e75c600f264385bfc7b4b3d2810fc40813bbd" }], ["path", { "fill": "#fff", "d": "M4.948 12a.75.75 0 0 1 .75-.75h3.6a.75.75 0 0 1 0 1.5h-3.6a.75.75 0 0 1-.75-.75Zm10.95-2.55a.75.75 0 0 1 .75.75v3.7a.75.75 0 1 1-1.5 0v-3.7a.75.75 0 0 1 .75-.75Z", "key": "264e31f6c37a18ff47820badd0cc9b224acdd662" }], ["path", { "fill": "#fff", "d": "M13.348 12a.75.75 0 0 1 .75-.75h3.6a.75.75 0 0 1 0 1.5h-3.6a.75.75 0 0 1-.75-.75Z", "key": "dfd2fc7f7cde9d922798bd31daf1f74406cc9451" }]]);
const Key = createMeisterIcons("key", [["path", { "fill": "currentColor", "d": "M6.166 6.166a2.85 2.85 0 0 1 4.035 4.027l-.004.004-.004.004a2.85 2.85 0 0 1-4.027-4.035Zm4.516 5.576a4.351 4.351 0 1 1 1.06-1.06l6.622 6.621.389-.389a.75.75 0 1 1 1.06 1.061L16.35 21.44a.75.75 0 1 1-1.06-1.06l2.014-2.016-1.626-1.626-1.167 1.166a.75.75 0 1 1-1.06-1.06l1.166-1.167-3.934-3.935Z", "key": "f45fc15e03a9fd4a8df91087f87c2e93abdcfccf" }]]);
const KeyB = createMeisterIcons("key-b", [["path", { "fill": "currentColor", "d": "M5.6 10.692A3.6 3.6 0 1 0 10.693 5.6 3.6 3.6 0 0 0 5.6 10.69Z", "key": "d9009c2e64d6e6d507c0c90d8ee67e34775f8353" }], ["path", { "fill": "currentColor", "d": "M10.162 6.131a2.85 2.85 0 1 0-4.03 4.03 2.85 2.85 0 0 0 4.03-4.03ZM5.07 5.071a4.35 4.35 0 1 1 6.152 6.151A4.35 4.35 0 0 1 5.07 5.07Z", "key": "05728916581f837387b0924e46f5fd64391838e5" }], ["path", { "fill": "currentColor", "d": "M10.162 10.162a.75.75 0 0 1 1.06 0l7.708 7.707a.75.75 0 1 1-1.061 1.06l-7.707-7.707a.75.75 0 0 1 0-1.06Z", "key": "5cf312e167234b1cb605c3cf3ef762b56823dd9e" }], ["path", { "fill": "currentColor", "d": "M19.708 17.091a.75.75 0 0 1 0 1.06l-3.324 3.324a.75.75 0 0 1-1.06-1.06l3.323-3.324a.75.75 0 0 1 1.06 0Zm-3.465-1.909a.75.75 0 0 1 0 1.06l-1.768 1.768a.75.75 0 0 1-1.06-1.06l1.767-1.768a.75.75 0 0 1 1.06 0Z", "key": "77ae3d30e314b96f180927c4905372bedacc4d11" }]]);
const Keypad = createMeisterIcons("keypad", [["path", { "fill": "currentColor", "d": "M5 3.825a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM12 3.825a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM19 2.325a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm-14 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 9.325a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm7 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm-6.42 5.87a.75.75 0 0 0-1.06 1.06l2.3 2.3a1.233 1.233 0 0 0 1.76 0l2.3-2.3a.75.75 0 0 0-1.06-1.06l-2.12 2.12-2.12-2.12Z", "key": "2ba2f705352c1f4969a05d2d31945f9a433378ec" }]]);
const KeypadB = createMeisterIcons("keypad-b", [["path", { "fill": "currentColor", "d": "M17.9 5.825a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "dd66a2ad611be0219270d843e83bb9b02a8a6566" }], ["path", { "fill": "currentColor", "d": "M17.9 3.325a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-3.9 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "237a3e91fab2821968d7b32103b7a0af6b0ce0be" }], ["path", { "fill": "currentColor", "d": "M12 3.325a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-3.9 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "bb61f6fb8310f2a04b13a49603c088f89666e0d0" }], ["path", { "fill": "currentColor", "d": "M6.1 3.325a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm13.8 8.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "2678ad63fdb914e9871e82c9e801665d5d8c21d7" }], ["path", { "fill": "currentColor", "d": "M17.9 10.325a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-3.9 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "4596571fe85ae924c00267c8a04d64929ea7e6c0" }], ["path", { "fill": "currentColor", "d": "M12 10.325a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-3.9 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "9d9ba2a6370d76f0d5a41b0570589bfeac263bf9" }], ["path", { "fill": "currentColor", "d": "M6.1 10.325a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm4.72 6.62a.75.75 0 0 1 1.06 0l2.12 2.12 2.12-2.12a.75.75 0 0 1 1.06 1.06l-2.3 2.3a1.233 1.233 0 0 1-1.76 0l-2.3-2.3a.75.75 0 0 1 0-1.06Z", "key": "1b40d19787113a6d4a3a62549618e1bbeddb2610" }]]);
const KeyStraight = createMeisterIcons("key-straight", [["path", { "fill": "currentColor", "d": "M3.75 12a2.85 2.85 0 1 1 5.7 0 2.85 2.85 0 0 1-5.7 0ZM6.6 7.65a4.35 4.35 0 1 0 4.286 5.1h5.564v1.65a.75.75 0 0 0 1.5 0v-1.65h2.3v2.85a.75.75 0 0 0 1.5 0v-4.9a.75.75 0 0 0-1.5 0v.55h-9.364A4.351 4.351 0 0 0 6.6 7.65Z", "key": "98346272f96fa4b46a7423698bb117f3d88a80ed" }]]);
const KeyStraightB = createMeisterIcons("key-straight-b", [["path", { "fill": "currentColor", "d": "M6.55 15.6a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z", "key": "fd52a39ea03d10aee4f6008589eaf45117289ccf" }], ["path", { "fill": "currentColor", "d": "M6.55 9.15a2.85 2.85 0 1 0 0 5.7 2.85 2.85 0 0 0 0-5.7ZM2.2 12a4.35 4.35 0 1 1 8.7 0 4.35 4.35 0 0 1-8.7 0Z", "key": "58d3088643dc44a8234d8d7b7968dd0dcb977a77" }], ["path", { "fill": "currentColor", "d": "M9.4 12a.75.75 0 0 1 .75-.75h10.9a.75.75 0 0 1 0 1.5h-10.9A.75.75 0 0 1 9.4 12Z", "key": "67badf7da05472398f3bafbeb5e078982363162b" }], ["path", { "fill": "currentColor", "d": "M21.05 10.15a.75.75 0 0 1 .75.75v4.7a.75.75 0 1 1-1.5 0v-4.7a.75.75 0 0 1 .75-.75Zm-3.8 1.1A.75.75 0 0 1 18 12v2.5a.75.75 0 0 1-1.5 0V12a.75.75 0 0 1 .75-.75Z", "key": "24667be6509d60bd593940eae417aba801d95c16" }]]);
const Knife = createMeisterIcons("knife", [["path", { "fill": "currentColor", "d": "M18.97 4.23a.518.518 0 0 0-.74 0l-2.9 2.9a.518.518 0 0 0 0 .74l.4.4a.518.518 0 0 0 .74 0l2.9-2.9a.518.518 0 0 0 0-.74l-.4-.4Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0l.4.4a2.017 2.017 0 0 1 0 2.86l-2.9 2.9a2.017 2.017 0 0 1-2.86 0l-.4-.4a2.017 2.017 0 0 1 0-2.86l2.9-2.9ZM12.9 9.64l4.505 4.505c.45.38.608.926.567 1.417a1.91 1.91 0 0 1-.698 1.32C12.98 20.44 7.068 21.146 4.355 21.347l-.027.002H4.3a1.343 1.343 0 0 1-1.217-.77c-.207-.444-.162-1.045.317-1.44l9.5-9.5Zm0 2.12-8.04 8.041c2.844-.26 7.835-1.071 11.461-4.078l.01-.009a.41.41 0 0 0 .147-.276c.007-.095-.024-.134-.047-.152l-.032-.026-3.499-3.5Z", "key": "7bd9f84090ce803a2740a0071396d404ffe7eb3b" }], ["path", { "fill": "currentColor", "d": "m15.53 9.13-2.1 2.1-1.06-1.06 2.1-2.1 1.06 1.06Z", "key": "f00c026596998b8952cf039fbaaee95534348713" }]]);
const KnifeB = createMeisterIcons("knife-b", [["path", { "fill": "currentColor", "d": "M19.9 5.9 17 8.8c-.5.5-1.3.5-1.8 0l-.2-.2-.2-.2c-.5-.5-.5-1.3 0-1.8l2.9-2.9c.5-.5 1.3-.5 1.8 0l.4.4c.5.5.5 1.3 0 1.8Z", "key": "8b512bf04ea64ced5853707f60f5d5c2349a4751" }], ["path", { "fill": "currentColor", "d": "M18.97 4.23a.518.518 0 0 0-.74 0l-2.9 2.9a.518.518 0 0 0 0 .74l.4.4a.518.518 0 0 0 .74 0l2.9-2.9a.518.518 0 0 0 0-.74l-.4-.4Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0l.4.4a2.017 2.017 0 0 1 0 2.86l-2.9 2.9a2.017 2.017 0 0 1-2.86 0l-.4-.4a2.017 2.017 0 0 1 0-2.86l2.9-2.9ZM16.8 16.3c-4.1 3.4-9.8 4.1-12.5 4.3-.5 0-.8-.6-.4-.9l7.9-7.9 1.1-1.1 4 4c.5.4.4 1.2-.1 1.6Z", "key": "7c7fb38296e8ae9619146420f8c51c578985efa2" }], ["path", { "fill": "currentColor", "d": "m12.9 9.64 4.505 4.505c.45.38.608.926.567 1.417a1.91 1.91 0 0 1-.698 1.32C12.98 20.44 7.068 21.146 4.355 21.347l-.027.002H4.3a1.343 1.343 0 0 1-1.217-.77c-.207-.444-.162-1.045.317-1.44l9.5-9.5Zm0 2.12-8.04 8.041c2.844-.26 7.835-1.071 11.461-4.078l.01-.009a.41.41 0 0 0 .147-.276c.007-.095-.024-.134-.047-.152l-.032-.026-3.499-3.5Z", "key": "04f771ac7479d5193f3f0596fe6b801bb8ab3f0f" }], ["path", { "fill": "currentColor", "d": "m15.53 9.13-2.1 2.1-1.06-1.06 2.1-2.1 1.06 1.06Z", "key": "6028276be21c386ebae087dd6d9336b70ee54cb1" }]]);
const Knight = createMeisterIcons("knight", [["path", { "fill": "currentColor", "d": "m4.35 15.863.95.264c1.72.478 4.05.773 6.6.773 2.651 0 4.98-.295 6.7-.773l.95-.264v1.487c0 2.502-2.023 4.65-4.65 4.65H9c-2.502 0-4.65-2.023-4.65-4.65v-1.487Zm1.534 1.952A3.159 3.159 0 0 0 9 20.5h5.9a3.154 3.154 0 0 0 3.115-2.685c-1.725.373-3.823.585-6.115.585-2.21 0-4.294-.212-6.016-.585ZM12 5.7c-3.405 0-6.139 2.678-6.05 6.03v.054C7.62 11.41 9.717 11.2 12 11.2s4.38.21 6.05.584v-.034c0-1.686-.71-3.2-1.78-4.27A6.05 6.05 0 0 0 12 5.7Zm-7.55 6.06C4.344 7.517 7.808 4.2 12 4.2c2.114 0 4 .89 5.33 2.22a7.55 7.55 0 0 1 2.22 5.33v2.002l-.962-.283c-1.61-.473-3.934-.769-6.588-.769-2.655 0-4.979.296-6.588.77l-.962.282V11.76Z", "key": "8477479ff47168dbdc817f4e5e7de2ce56908b28" }], ["path", { "fill": "currentColor", "d": "M12 12.7c-2.55 0-4.88.295-6.6.773-.862.24-1.5.513-1.905.786-.426.287-.445.466-.445.491 0 .025.019.204.445.49.405.274 1.043.548 1.906.787l.01.003c1.61.474 3.934.77 6.589.77 2.655 0 4.978-.296 6.588-.77l.011-.003c.863-.24 1.501-.513 1.906-.786.426-.287.445-.466.445-.491 0-.003-.014-.183-.475-.486-.425-.28-1.07-.554-1.887-.794-1.61-.474-3.933-.77-6.588-.77Zm-7-.673c1.88-.522 4.35-.827 7-.827 2.745 0 5.221.304 7.012.83.883.26 1.688.586 2.288.981.564.372 1.15.942 1.15 1.739 0 .775-.531 1.346-1.105 1.734-.594.4-1.404.727-2.339.987-1.79.526-4.264.829-7.006.829-2.743 0-5.217-.303-7.006-.829-.935-.26-1.745-.586-2.339-.987-.574-.388-1.105-.96-1.105-1.734 0-.775.53-1.346 1.105-1.734.595-.402 1.407-.728 2.344-.989ZM12 2a.75.75 0 0 1 .75.75v2.2a.75.75 0 0 1-1.5 0v-2.2A.75.75 0 0 1 12 2Z", "key": "2e57b4a0887f12d8514f0be0c3ced5fe00f4d558" }]]);
const KnightB = createMeisterIcons("knight-b", [["path", { "fill": "currentColor", "d": "M18.8 16.85v.5c0 2.1-1.7 3.9-3.9 3.9H9c-2.1 0-3.9-1.7-3.9-3.9v-.5c1.8.5 4.2.8 6.8.8 2.7 0 5.1-.3 6.9-.8Z", "key": "717b6c8905fa0ff85bcd88c9476ef6f82069b9aa" }], ["path", { "fill": "currentColor", "d": "m4.35 15.863.95.264c1.72.478 4.05.773 6.6.773 2.651 0 4.98-.295 6.7-.773l.95-.264v1.487c0 2.502-2.023 4.65-4.65 4.65H9c-2.502 0-4.65-2.023-4.65-4.65v-1.487Zm1.534 1.952A3.159 3.159 0 0 0 9 20.5h5.9a3.154 3.154 0 0 0 3.115-2.685c-1.725.373-3.823.585-6.115.585-2.21 0-4.294-.212-6.016-.585ZM18.8 11.75v1c-1.7-.5-4.1-.8-6.8-.8s-5.1.3-6.8.8v-1c-.1-3.8 3-6.8 6.8-6.8 1.9 0 3.6.8 4.8 2 1.2 1.2 2 2.9 2 4.8Z", "key": "37cb81ededce16f2705577753af0ee414d4e5c01" }], ["path", { "fill": "currentColor", "d": "M12 5.7c-3.405 0-6.139 2.678-6.05 6.03v.054C7.62 11.41 9.717 11.2 12 11.2s4.38.21 6.05.584v-.034c0-1.686-.71-3.2-1.78-4.27A6.05 6.05 0 0 0 12 5.7Zm-7.55 6.06C4.344 7.517 7.808 4.2 12 4.2c2.114 0 4 .89 5.33 2.22a7.55 7.55 0 0 1 2.22 5.33v2.002l-.962-.283c-1.61-.473-3.934-.769-6.588-.769-2.655 0-4.979.296-6.588.77l-.962.282V11.76Z", "key": "baf73c4d9ffab9e0685e4f692adec7825feafbcd" }], ["path", { "fill": "currentColor", "d": "M12 12.7c-2.55 0-4.88.295-6.6.773-.862.24-1.5.513-1.905.786-.426.287-.445.466-.445.491 0 .025.019.204.445.49.405.274 1.043.548 1.906.787l.01.003c1.61.474 3.934.77 6.589.77 2.655 0 4.978-.296 6.588-.77l.011-.003c.863-.24 1.501-.513 1.906-.786.426-.287.445-.466.445-.491 0-.003-.014-.183-.475-.486-.425-.28-1.07-.554-1.887-.794-1.61-.474-3.933-.77-6.588-.77Zm-7-.673c1.88-.522 4.35-.827 7-.827 2.745 0 5.221.304 7.012.83.883.26 1.688.586 2.288.981.564.372 1.15.942 1.15 1.739 0 .775-.531 1.346-1.105 1.734-.594.4-1.404.727-2.339.987-1.79.526-4.264.829-7.006.829-2.743 0-5.217-.303-7.006-.829-.935-.26-1.745-.586-2.339-.987-.574-.388-1.105-.96-1.105-1.734 0-.775.53-1.346 1.105-1.734.595-.402 1.407-.728 2.344-.989ZM12 2a.75.75 0 0 1 .75.75v2.2a.75.75 0 0 1-1.5 0v-2.2A.75.75 0 0 1 12 2Z", "key": "f8dae71d18a7458cb885f0e6c5caf2a9cc0c6703" }]]);
const Laptop = createMeisterIcons("laptop", [["path", { "fill": "currentColor", "d": "M4.35 6.85c0-1.186.964-2.15 2.15-2.15h11c1.186 0 2.15.964 2.15 2.15v9.45H4.35V6.85Zm-1.5 9.55V6.85A3.652 3.652 0 0 1 6.5 3.2h11a3.652 3.652 0 0 1 3.65 3.65v9.55c.912.29 1.6 1.16 1.6 2.15 0 1.214-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25 0-.99.688-1.86 1.6-2.15Zm.644 1.4c-.384.004-.744.366-.744.75 0 .386.364.75.75.75h17c.386 0 .75-.364.75-.75 0-.384-.36-.746-.744-.75H3.494Z", "key": "a452e6a58890ddab157fe11dce6cda8f4e92697c" }]]);
const LaptopAdd = createMeisterIcons("laptop-add", [["path", { "fill": "currentColor", "d": "M4.35 6.9c0-1.186.964-2.15 2.15-2.15h11c1.186 0 2.15.964 2.15 2.15v9.35H4.35V6.9Zm-1.5 9.45V6.9A3.652 3.652 0 0 1 6.5 3.25h11a3.652 3.652 0 0 1 3.65 3.65v9.45c.912.29 1.6 1.16 1.6 2.15 0 1.214-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25 0-.99.688-1.86 1.6-2.15Zm.65 1.4c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm8.9-10.5a.75.75 0 0 1 .75.75v1.65h1.75a.75.75 0 0 1 0 1.5h-1.75v1.75a.75.75 0 0 1-1.5 0v-1.75H10a.75.75 0 0 1 0-1.5h1.65V8a.75.75 0 0 1 .75-.75Z", "key": "39bbd22d7ce8254de429fdf6bad658fd243f3052" }]]);
const LaptopAddB = createMeisterIcons("laptop-add-b", [["path", { "fill": "currentColor", "d": "M20.3 17.05H3.6V6.85c0-1.6 1.3-2.9 2.9-2.9h11c1.6 0 2.9 1.3 2.9 2.9v10.2h-.1Z", "key": "9bc3f97c5454e1bebd6a731d5995f2516d295dc6" }], ["path", { "fill": "currentColor", "d": "M6.5 4.7c-1.186 0-2.15.964-2.15 2.15v9.45h15.3V6.85c0-1.186-.964-2.15-2.15-2.15h-11ZM2.85 6.85A3.652 3.652 0 0 1 6.5 3.2h11a3.652 3.652 0 0 1 3.65 3.65V17.8H2.85V6.85Z", "key": "f26d360a998d2d88b5ad21b16155c868223eb150" }], ["path", { "fill": "currentColor", "d": "M3.5 17.8c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25h17c1.214 0 2.25 1.036 2.25 2.25s-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25Z", "key": "ab51886079fc9dd08cd8d600976f15e27e8608ea" }], ["path", { "fill": "#fff", "d": "M12.4 7.3a.75.75 0 0 1 .75.75v4.9a.75.75 0 1 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "23ec577d0d773b67f9786dede435b3fad89c58ac" }], ["path", { "fill": "#fff", "d": "M9.25 10.45A.75.75 0 0 1 10 9.7h4.9a.75.75 0 0 1 0 1.5H10a.75.75 0 0 1-.75-.75Z", "key": "46e4bc3d8862a2bdf834f41315f1f5d1d625d33b" }]]);
const LaptopB = createMeisterIcons("laptop-b", [["path", { "fill": "currentColor", "d": "M20.3 17.05H3.6V6.85c0-1.6 1.3-2.9 2.9-2.9h11c1.6 0 2.9 1.3 2.9 2.9v10.2h-.1Z", "key": "59da6257fe945be773a56b9b3e194c489da2b639" }], ["path", { "fill": "currentColor", "d": "M6.5 4.7c-1.186 0-2.15.964-2.15 2.15v9.45h15.3V6.85c0-1.186-.964-2.15-2.15-2.15h-11ZM2.85 6.85A3.652 3.652 0 0 1 6.5 3.2h11a3.652 3.652 0 0 1 3.65 3.65V17.8H2.85V6.85Z", "key": "3f84322a87404b1a68d6489be319dd0e5a4dba93" }], ["path", { "fill": "currentColor", "d": "M3.5 17.8c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25h17c1.214 0 2.25 1.036 2.25 2.25s-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25Z", "key": "3f4debec2b9e455d8fb43ad86be0aa0d3d5ea053" }]]);
const LaptopBlock = createMeisterIcons("laptop-block", [["path", { "fill": "currentColor", "d": "M4.35 6.9c0-1.186.964-2.15 2.15-2.15h11c1.186 0 2.15.964 2.15 2.15v9.35H4.35V6.9Zm-1.5 9.45V6.9A3.652 3.652 0 0 1 6.5 3.25h11a3.652 3.652 0 0 1 3.65 3.65v9.45c.912.29 1.6 1.16 1.6 2.15 0 1.214-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25 0-.99.688-1.86 1.6-2.15Zm.65 1.4c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm9.37-9.28c-.79-.397-1.815-.264-2.54.46l-.011.012-.012.01c-.687.63-.849 1.649-.422 2.502l2.984-2.984Zm1.045 1.075-2.935 2.936c.855.365 1.87.209 2.49-.411l.011-.012.012-.01c.686-.63.848-1.649.422-2.503Zm.627-1.664c-1.408-1.521-3.784-1.487-5.26-.023-1.526 1.411-1.488 3.797-.012 5.272l.011.012.012.01c1.47 1.348 3.82 1.383 5.226-.01 1.521-1.407 1.487-3.784.023-5.26Z", "key": "18c9d3d0baa32254993ef30adc2c8c0d81d64136" }]]);
const LaptopBlockB = createMeisterIcons("laptop-block-b", [["path", { "fill": "currentColor", "d": "M6.5 4.7c-1.186 0-2.15.964-2.15 2.15v9.45h15.3V6.85c0-1.186-.964-2.15-2.15-2.15h-11ZM2.85 6.85A3.652 3.652 0 0 1 6.5 3.2h11a3.652 3.652 0 0 1 3.65 3.65V17.8H2.85V6.85Z", "key": "8c8e3efcfa03d777a6a8131b5a4caac3c8084d86" }], ["path", { "fill": "currentColor", "d": "M20.5 20.05h-17c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5h17c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5Z", "key": "c55c1a4d900c6db3e1d6ec96059a854ae91c5a5a" }], ["path", { "fill": "currentColor", "d": "M3.5 17.8c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25h17c1.214 0 2.25 1.036 2.25 2.25s-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25Zm12.197-9.593c-.79-.862-2.196-.897-3.117.023l-.011.012-.012.01c-.859.788-.897 2.185.012 3.106.926.838 2.359.803 3.15.012l.012-.012.012-.01c.862-.791.897-2.197-.023-3.118l-.012-.011-.011-.012Zm1.095-1.026c-1.408-1.521-3.784-1.487-5.26-.023-1.526 1.411-1.488 3.797-.012 5.272l.011.012.012.01c1.47 1.348 3.82 1.383 5.226-.01 1.521-1.407 1.487-3.784.023-5.26Z", "key": "673c9725f8f790a4a2f86d82e712f3eb378b6fee" }], ["path", { "fill": "currentColor", "d": "m9.27 12.12 4.3-4.3 1.06 1.06-4.3 4.3-1.06-1.06Z", "key": "b1abca697bbc3e2de15a1a855815f3e352ce8daa" }]]);
const LaptopCheck = createMeisterIcons("laptop-check", [["path", { "fill": "currentColor", "d": "M6.5 4.75c-1.186 0-2.15.964-2.15 2.15v9.35h15.3V6.9c0-1.186-.964-2.15-2.15-2.15h-11ZM2.85 6.9v9.45c-.912.29-1.6 1.16-1.6 2.15 0 1.214 1.036 2.25 2.25 2.25h17c1.214 0 2.25-1.036 2.25-2.25 0-.99-.688-1.86-1.6-2.15V6.9a3.652 3.652 0 0 0-3.65-3.65h-11A3.652 3.652 0 0 0 2.85 6.9Zm-.1 11.6c0-.386.364-.75.75-.75h17c.386 0 .75.364.75.75s-.364.75-.75.75h-17c-.386 0-.75-.364-.75-.75Zm12.372-8.361a.75.75 0 1 0-1.044-1.077l-2.863 2.775-.815-1.087a.75.75 0 1 0-1.2.9l1.232 1.643.038.037c.211.212.488.295.717.295a.9.9 0 0 0 .473-.13.831.831 0 0 0 .256-.248l3.206-3.108Z", "key": "d2ab273414f762c1000c74eb6ac8f315e829b406" }]]);
const LaptopCheckB = createMeisterIcons("laptop-check-b", [["path", { "fill": "currentColor", "d": "M20.3 17.05H3.6V6.85c0-1.6 1.3-2.9 2.9-2.9h11c1.6 0 2.9 1.3 2.9 2.9v10.2h-.1Z", "key": "cb821b4792ef7a202b1c84cff73b3081473b94c5" }], ["path", { "fill": "currentColor", "d": "M6.5 4.7c-1.186 0-2.15.964-2.15 2.15v9.45h15.3V6.85c0-1.186-.964-2.15-2.15-2.15h-11ZM2.85 6.85A3.652 3.652 0 0 1 6.5 3.2h11a3.652 3.652 0 0 1 3.65 3.65V17.8H2.85V6.85Z", "key": "1ea28e8503cd849c2f579aaf9feede7de6050501" }], ["path", { "fill": "currentColor", "d": "M3.5 17.8c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25h17c1.214 0 2.25 1.036 2.25 2.25s-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25Z", "key": "53b708ab76d9e8e704f1a157988adda1afbd81f9" }], ["path", { "fill": "#fff", "d": "M15.139 9.128a.75.75 0 0 1-.017 1.06l-3.206 3.109a.832.832 0 0 1-.256.248.901.901 0 0 1-.472.13c-.23 0-.506-.083-.718-.295l-.038-.037L9.2 11.7a.75.75 0 0 1 1.2-.9l.816 1.087 2.862-2.775a.75.75 0 0 1 1.06.016Z", "key": "944c444d770f47ec090e1d2cd64c141a10e54c8b" }]]);
const LaptopCode = createMeisterIcons("laptop-code", [["path", { "fill": "currentColor", "d": "M4.35 6.9c0-1.186.964-2.15 2.15-2.15h11c1.186 0 2.15.964 2.15 2.15v9.35H4.35V6.9Zm-1.5 9.45V6.9A3.652 3.652 0 0 1 6.5 3.25h11a3.652 3.652 0 0 1 3.65 3.65v9.45c.912.29 1.6 1.16 1.6 2.15 0 1.214-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25 0-.99.688-1.86 1.6-2.15Zm.65 1.4c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm9.77-9.28a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03s-.174.76-.445 1.03l-1.4 1.4a.75.75 0 1 1-1.06-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64 1.16a.75.75 0 1 0-1.06-1.06l-1.4 1.4c-.27.27-.445.63-.445 1.03s.174.76.445 1.03l1.4 1.4a.75.75 0 1 0 1.06-1.06L9.26 11l1.37-1.37Z", "key": "0963498121ee37c5a79156e0e735f4c6fbc28f3b" }]]);
const LaptopCodeB = createMeisterIcons("laptop-code-b", [["path", { "fill": "currentColor", "d": "M20.3 17.05H3.6V6.85c0-1.6 1.3-2.9 2.9-2.9h11c1.6 0 2.9 1.3 2.9 2.9v10.2h-.1Z", "key": "f277b97e5bbde0f98498a192ce0e5e2b03ba34da" }], ["path", { "fill": "currentColor", "d": "M6.5 4.7c-1.186 0-2.15.964-2.15 2.15v9.45h15.3V6.85c0-1.186-.964-2.15-2.15-2.15h-11ZM2.85 6.85A3.652 3.652 0 0 1 6.5 3.2h11a3.652 3.652 0 0 1 3.65 3.65V17.8H2.85V6.85Z", "key": "151bb4ec6504370d642b459e304dd70832de57ef" }], ["path", { "fill": "currentColor", "d": "M3.5 17.8c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25h17c1.214 0 2.25 1.036 2.25 2.25s-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25Z", "key": "c7ded84a333a12b680709f2f9d32bc49c697a170" }], ["path", { "fill": "#fff", "d": "M13.288 8.502a.75.75 0 0 1 1.06.036l1.393 1.492c.264.27.434.625.434 1.02 0 .4-.174.76-.445 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.37-1.37-1.388-1.488a.75.75 0 0 1 .036-1.06Zm-2.658.018a.75.75 0 0 1 0 1.06l-1.37 1.37 1.388 1.488a.75.75 0 0 1-1.096 1.024L8.159 11.97a1.453 1.453 0 0 1-.434-1.02c0-.4.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Z", "key": "85f75af20003c3aea1aa9c7dd24a916e53e0185c" }]]);
const LaptopCross = createMeisterIcons("laptop-cross", [["path", { "fill": "currentColor", "d": "M4.35 6.9c0-1.186.964-2.15 2.15-2.15h11c1.186 0 2.15.964 2.15 2.15v9.35H4.35V6.9Zm-1.5 9.45V6.9A3.652 3.652 0 0 1 6.5 3.25h11a3.652 3.652 0 0 1 3.65 3.65v9.45c.912.29 1.6 1.16 1.6 2.15 0 1.214-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25 0-.99.688-1.86 1.6-2.15Zm.65 1.4c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm11.13-9.58a.75.75 0 0 1 0 1.06l-1.17 1.17 1.17 1.17a.75.75 0 0 1-1.06 1.06l-1.17-1.17-1.17 1.17a.75.75 0 0 1-1.06-1.06l1.17-1.17-1.17-1.17a.75.75 0 0 1 1.06-1.06l1.17 1.17 1.17-1.17a.75.75 0 0 1 1.06 0Z", "key": "8d774f1caab8f7eee6dfdc07f69e864d50561173" }]]);
const LaptopCrossB = createMeisterIcons("laptop-cross-b", [["path", { "fill": "currentColor", "d": "M20.3 17.05H3.6V6.85c0-1.6 1.3-2.9 2.9-2.9h11c1.6 0 2.9 1.3 2.9 2.9v10.2h-.1Z", "key": "b9f3b2d9d67f24350d7a639ac258b7eca06cd204" }], ["path", { "fill": "currentColor", "d": "M6.5 4.7c-1.186 0-2.15.964-2.15 2.15v9.45h15.3V6.85c0-1.186-.964-2.15-2.15-2.15h-11ZM2.85 6.85A3.652 3.652 0 0 1 6.5 3.2h11a3.652 3.652 0 0 1 3.65 3.65V17.8H2.85V6.85Z", "key": "a9d0eefffbdcb116ff8a1cb5a99250b2063b2510" }], ["path", { "fill": "currentColor", "d": "M3.5 17.8c-.386 0-.75.364-.75.75s.364.75.75.75h17c.386 0 .75-.364.75-.75s-.364-.75-.75-.75h-17Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25h17c1.214 0 2.25 1.036 2.25 2.25s-1.036 2.25-2.25 2.25h-17c-1.214 0-2.25-1.036-2.25-2.25Z", "key": "6e21f9e9af0b54c70b4857ce7097dd3ec8307fd7" }], ["path", { "fill": "#fff", "d": "M14.63 8.22a.75.75 0 0 1 0 1.06l-3.4 3.4a.75.75 0 0 1-1.06-1.06l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "f1c437d0bd81d2c0fe8b054ea35ce726cb9ddda5" }], ["path", { "fill": "#fff", "d": "M10.17 8.22a.75.75 0 0 1 1.06 0l3.4 3.4a.75.75 0 0 1-1.06 1.06l-3.4-3.4a.75.75 0 0 1 0-1.06Z", "key": "6b116d2bb70129dc813b026ef7cb0fbba4186fda" }]]);
const LaptopSlanted = createMeisterIcons("laptop-slanted", [["path", { "fill": "currentColor", "d": "M3.293 7.87a.227.227 0 0 0-.052.224l.009.032 1.506 7.829c.03.143.216.295.364.295h12.077l-1.713-8.203c-.028-.144-.216-.297-.364-.297H3.52a.326.326 0 0 0-.227.12Zm-1.147-.966c.329-.39.832-.654 1.374-.654h11.6c.85 0 1.662.645 1.835 1.5v.003l2.088 9.997H5.12c-.852 0-1.664-.647-1.836-1.503v-.005L1.788 8.47c-.16-.605.023-1.17.357-1.566Z", "key": "39a2fc070ac7ce3ea1d696483ef56d0267a1e97e" }], ["path", { "fill": "currentColor", "d": "M17.37 17a.75.75 0 0 1 .75-.75h3.4a.75.75 0 0 1 0 1.5h-3.4a.75.75 0 0 1-.75-.75Zm-7.05-6.05a1.05 1.05 0 1 0 0 2.1 1.05 1.05 0 0 0 0-2.1ZM7.77 12a2.55 2.55 0 1 1 5.1 0 2.55 2.55 0 0 1-5.1 0Z", "key": "8e9f5956dee1b344ed57d92a0c41762e52f985de" }]]);
const LaptopSlantedB = createMeisterIcons("laptop-slanted-b", [["path", { "fill": "currentColor", "d": "M18.12 17h-13c-.5 0-1-.4-1.1-.9l-1.5-7.8c-.2-.7.4-1.3 1-1.3h11.6c.5 0 1 .4 1.1.9l1.9 9.1Z", "key": "f90b342cb751fbf73f517107b0c9305832f9179b" }], ["path", { "fill": "currentColor", "d": "M3.293 7.87a.227.227 0 0 0-.052.224l.009.032 1.506 7.829c.03.143.216.295.364.295h12.077l-1.713-8.203c-.028-.144-.216-.297-.364-.297H3.52a.326.326 0 0 0-.227.12Zm-1.147-.966c.329-.39.832-.654 1.374-.654h11.6c.85 0 1.662.645 1.835 1.5v.003l2.088 9.997H5.12c-.852 0-1.664-.647-1.836-1.503v-.005L1.788 8.47c-.16-.605.023-1.17.357-1.566Z", "key": "53880917e9d072a205cf5adf0433bf537a98d981" }], ["path", { "fill": "currentColor", "d": "M17.37 17a.75.75 0 0 1 .75-.75h3.4a.75.75 0 0 1 0 1.5h-3.4a.75.75 0 0 1-.75-.75Z", "key": "fb37f79cc9598d9305a86e5e78fc4597f915dc8c" }], ["path", { "fill": "#fff", "d": "M10.32 13.8a1.8 1.8 0 1 0 0-3.6 1.8 1.8 0 0 0 0 3.6Z", "key": "f089c5c19d1cd3b0bad9f7c277a070384421055b" }], ["path", { "fill": "#fff", "d": "M10.32 10.95a1.05 1.05 0 1 0 0 2.1 1.05 1.05 0 0 0 0-2.1ZM7.77 12a2.55 2.55 0 1 1 5.1 0 2.55 2.55 0 0 1-5.1 0Z", "key": "d45179f828a86056f73c0562cf9e8c4a2a09cb29" }]]);
const Like = createMeisterIcons("like", [["path", { "fill": "currentColor", "d": "M2.1 11.067c0-1.214.936-2.15 2.15-2.15H9.8v11.6H4.25a2.117 2.117 0 0 1-2.15-2.15v-7.3Zm2.15-.65c-.386 0-.65.265-.65.65v7.3c0 .386.264.65.65.65H8.3v-8.6H4.25Z", "key": "e1b2efeabae0d7565e8f3d2b1c0868109531dfba" }], ["path", { "fill": "currentColor", "d": "M8.3 5.467c0-1.622 1.646-2.39 2.885-1.77.546.272 1.012.585 1.35 1.03.346.455.502.976.561 1.566l.004.037v.037c0 .077.026.124.069.16.05.045.145.09.281.09h6.1a2.33 2.33 0 0 1 2.35 2.35v.081l-2.001 9.207a2.328 2.328 0 0 1-2.349 2.262H8.3V5.467Zm1.722-.423c-.12.069-.222.198-.222.423v13.55h7.75a.83.83 0 0 0 .85-.85v-.08l1.998-9.189a.828.828 0 0 0-.848-.78h-6.1c-.905 0-1.825-.629-1.85-1.707-.042-.391-.134-.612-.26-.777-.137-.181-.37-.368-.825-.596a.522.522 0 0 0-.493.006Z", "key": "dfc19c2b5530ed1ec52d255feb5a9a81de845fd0" }]]);
const Like1 = createMeisterIcons("like1", [["path", { "fill": "currentColor", "d": "m17.3 7.475-.8.8-3.8-3.8.8-.8c1-1 2.7-1 3.8 0 1.1 1.1 1.1 2.7 0 3.8Z", "key": "ff198e59eb966e01006011693249db6258cc0327" }], ["path", { "fill": "currentColor", "d": "M16.782 4.218c-.828-.74-2.061-.703-2.752-.013l-.27.27 2.74 2.74.27-.27c.803-.803.807-1.92.012-2.727ZM12.97 3.145c1.306-1.306 3.463-1.272 4.835-.025l.013.012.012.013c1.393 1.392 1.393 3.467 0 4.86l-1.33 1.33-4.86-4.86 1.33-1.33Z", "key": "fe00dd158cd8e3d97a33a99e75d5c57551fb43f2" }], ["path", { "fill": "currentColor", "d": "m12.693 3.521 4.875 4.747-4.038 4.037c-.123.124-.27.214-.37.271a6.52 6.52 0 0 1-.316.165l-.102.051-3.765.713a1.07 1.07 0 0 1-1.104-.336 1.369 1.369 0 0 1-.323-.894v-.07l.703-3.714c.023-.38.201-.731.417-.946l4.023-4.024Zm.014 2.108L9.751 8.584a.07.07 0 0 0-.001.004v.057l-.625 3.305 3.132-.592a3.65 3.65 0 0 0 .224-.125l2.951-2.951-2.725-2.653Z", "key": "4937f75da6b19560e6b9db675a2dc4199a6933d6" }], ["path", { "fill": "currentColor", "d": "M9 3.825c-2.886 0-5.25 2.364-5.25 5.25v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-6a.75.75 0 0 1 1.5 0v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-6c0-3.714 3.036-6.75 6.75-6.75a.75.75 0 0 1 0 1.5Z", "key": "23f1d27ad8bcd80486cea01c521905e2b829b490" }]]);
const LikeB = createMeisterIcons("like-b", [["path", { "fill": "currentColor", "d": "M9.05 19.767v-10.1h-4.8c-.8 0-1.4.6-1.4 1.4v7.3c0 .8.6 1.4 1.4 1.4h4.8Z", "key": "4cec23ad38c904fea364e1d39fc98d4a84db0c7d" }], ["path", { "fill": "currentColor", "d": "M2.1 11.067c0-1.214.936-2.15 2.15-2.15H9.8v11.6H4.25a2.117 2.117 0 0 1-2.15-2.15v-7.3Zm2.15-.65c-.386 0-.65.265-.65.65v7.3c0 .386.264.65.65.65H8.3v-8.6H4.25Z", "key": "003364d43f16e97bd146ac9f54e373a2b2003289" }], ["path", { "fill": "currentColor", "d": "M8.3 5.467c0-1.622 1.646-2.39 2.885-1.77.546.272 1.012.585 1.35 1.03.346.455.502.976.561 1.566l.004.037v.037c0 .077.026.124.069.16.05.045.145.09.281.09h6.1a2.33 2.33 0 0 1 2.35 2.35v.081l-2.001 9.207a2.328 2.328 0 0 1-2.349 2.262H8.3V5.467Zm1.722-.423c-.12.069-.222.198-.222.423v13.55h7.75a.83.83 0 0 0 .85-.85v-.08l1.998-9.189a.828.828 0 0 0-.848-.78h-6.1c-.905 0-1.825-.629-1.85-1.707-.042-.391-.134-.612-.26-.777-.137-.181-.37-.368-.825-.596a.522.522 0 0 0-.493.006Z", "key": "38450be602b1d286d91ca2d2fbfa1b36ba26356a" }]]);
const LikeVarB = createMeisterIcons("like-var-b", [["path", { "fill": "currentColor", "d": "M2.1 11.067c0-1.214.936-2.15 2.15-2.15H9.8v11.6H4.25a2.117 2.117 0 0 1-2.15-2.15v-7.3Zm2.15-.65c-.386 0-.65.265-.65.65v7.3c0 .386.264.65.65.65H8.3v-8.6H4.25Z", "key": "02b41cc11a0ae9b310b00d82d1b19f641a2aecf9" }], ["path", { "fill": "currentColor", "d": "M21.15 8.967c0-.9-.7-1.6-1.6-1.6h-6.1c-.6 0-1.1-.4-1.1-1-.1-1-.5-1.5-1.5-2-.8-.4-1.8.1-1.8 1.1v14.3h8.5c.9 0 1.6-.7 1.6-1.6l2-9.2Z", "key": "7330a6cf6be16d1001031330614d368ef4de771b" }], ["path", { "fill": "currentColor", "d": "M8.3 5.467c0-1.622 1.646-2.39 2.885-1.77.546.272 1.012.585 1.35 1.03.346.455.502.976.561 1.566l.004.037v.037c0 .077.026.124.069.16.05.045.145.09.281.09h6.1a2.33 2.33 0 0 1 2.35 2.35v.081l-2.001 9.207a2.328 2.328 0 0 1-2.349 2.262H8.3V5.467Zm1.722-.423c-.12.069-.222.198-.222.423v13.55h7.75a.83.83 0 0 0 .85-.85v-.08l1.998-9.189a.828.828 0 0 0-.848-.78h-6.1c-.905 0-1.825-.629-1.85-1.707-.042-.391-.134-.612-.26-.777-.137-.181-.37-.368-.825-.596a.522.522 0 0 0-.493.006Z", "key": "b07af78c481fd4d2b5efe78a1063b9dfadd792e0" }]]);
const LineUp = createMeisterIcons("line-up", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "6b3709fe0b648e696165f9c0778541f998099af0" }], ["path", { "fill": "currentColor", "d": "M7.2 13.15a.75.75 0 0 1 .75.75v2.4a.75.75 0 0 1-1.5 0v-2.4a.75.75 0 0 1 .75-.75Zm3.2-3.2a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Zm3.1-1.6a.75.75 0 0 1 .75.75v1.6a.75.75 0 0 1-1.5 0V9.1a.75.75 0 0 1 .75-.75Zm3.2-2.4a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V6.7a.75.75 0 0 1 .75-.75Z", "key": "bec6fd0233fcf34caab5202f63481cbebf1f01ba" }]]);
const LineUpB = createMeisterIcons("line-up-b", [["path", { "fill": "currentColor", "d": "M7 3h10c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V7c0-2.3 1.7-4 4-4Z", "key": "2dd5084e7ffea63722b2f5fe7a2a0f1635da1d23" }], ["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "ec1c8ef7a51501502efd602d2a9b814465c493f2" }], ["path", { "fill": "#fff", "d": "M7.2 13.15a.75.75 0 0 1 .75.75v2.4a.75.75 0 0 1-1.5 0v-2.4a.75.75 0 0 1 .75-.75Zm3.2-3.2a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Zm3.1-1.6a.75.75 0 0 1 .75.75v1.6a.75.75 0 0 1-1.5 0V9.1a.75.75 0 0 1 .75-.75Zm3.2-2.4a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V6.7a.75.75 0 0 1 .75-.75Z", "key": "ae3f459c84f28d5ee39059dfd88a80987fdc6f1a" }]]);
const Link = createMeisterIcons("link", [["path", { "fill": "currentColor", "d": "M7.53 10.37a.75.75 0 0 1 0 1.06l-2.5 2.5a3.536 3.536 0 0 0 0 5.04 3.536 3.536 0 0 0 5.04 0l2.4-2.4a3.536 3.536 0 0 0 0-5.04.75.75 0 0 1 1.06-1.06 5.036 5.036 0 0 1 0 7.16l-2.4 2.4a5.036 5.036 0 0 1-7.16 0 5.036 5.036 0 0 1 0-7.16l2.5-2.5a.75.75 0 0 1 1.06 0Z", "key": "a8368d458afa0f452f4ceb2fd7d07c262f6e856d" }], ["path", { "fill": "currentColor", "d": "M18.97 5.03a3.536 3.536 0 0 0-5.04 0l-2.4 2.4a3.536 3.536 0 0 0 0 5.04.75.75 0 0 1-1.06 1.06 5.035 5.035 0 0 1 0-7.16l2.4-2.4a5.035 5.035 0 0 1 7.16 0 5.035 5.035 0 0 1 0 7.16l-2.5 2.5a.75.75 0 1 1-1.06-1.06l2.5-2.5a3.536 3.536 0 0 0 0-5.04Z", "key": "f9b50e20bd2eda165ad9f45473b0146d20fd81ca" }]]);
const Lipstick = createMeisterIcons("lipstick", [["path", { "fill": "currentColor", "d": "M14.324 9.323a.228.228 0 0 0-.074.177v10.3a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h4.2c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176V9.5a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-4.2a.27.27 0 0 0-.176.073ZM12.75 9.5c0-1.062.885-1.75 1.75-1.75h4.2c1.062 0 1.75.885 1.75 1.75v10.3c0 .865-.688 1.75-1.75 1.75h-4.2c-1.062 0-1.75-.885-1.75-1.75V9.5Z", "key": "4e0756e4b4093a4bd790cf48985f29cf3a731442" }], ["path", { "fill": "currentColor", "d": "M17.55 3.867V7.75h-1.8V5.7c0-.346.173-.725.492-.992l1.308-.841Zm.738-1.367c.464.245.762.729.762 1.3v5.45h-4.8V5.7c0-.845.417-1.654 1.082-2.186l.03-.024 1.442-.927.01-.006a1.495 1.495 0 0 1 1.474-.057ZM7.1 13.55c-1.168 0-2.05.947-2.05 2.05v4.2a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h3.9a.28.28 0 0 0 .207-.093.604.604 0 0 0 .143-.246V15.6c0-1.168-.947-2.05-2.05-2.05h-.4ZM3.55 15.6c0-1.897 1.518-3.55 3.55-3.55h.4c1.897 0 3.55 1.518 3.55 3.55v4.274l-.015.073c-.143.718-.758 1.603-1.835 1.603H5.3c-1.062 0-1.75-.885-1.75-1.75v-4.2Z", "key": "fbcc383ac7846bbd8545ee81f52202841815d503" }]]);
const LipstickB = createMeisterIcons("lipstick-b", [["path", { "fill": "currentColor", "d": "M18.7 20.8h-4.2c-.6 0-1-.5-1-1V9.5c0-.6.5-1 1-1h4.2c.6 0 1 .5 1 1v10.3c0 .5-.4 1-1 1Z", "key": "962a2003d89001c8b39d8f8e66b395b050ffbd18" }], ["path", { "fill": "currentColor", "d": "M14.324 9.323a.228.228 0 0 0-.074.177v10.3a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h4.2c.08 0 .135-.03.177-.074a.27.27 0 0 0 .073-.176V9.5a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-4.2a.27.27 0 0 0-.176.073ZM12.75 9.5c0-1.062.885-1.75 1.75-1.75h4.2c1.062 0 1.75.885 1.75 1.75v10.3c0 .865-.688 1.75-1.75 1.75h-4.2c-1.062 0-1.75-.885-1.75-1.75V9.5Z", "key": "23770db66ea41d16508c5697ad35f71ffb3d0dd7" }], ["path", { "fill": "currentColor", "d": "M17.55 3.867V7.75h-1.8V5.7c0-.346.173-.725.492-.992l1.308-.841Zm.738-1.367c.464.245.762.729.762 1.3v5.45h-4.8V5.7c0-.845.417-1.654 1.082-2.186l.03-.024 1.442-.927.01-.006a1.495 1.495 0 0 1 1.474-.057ZM9.2 20.8H5.3c-.6 0-1-.5-1-1v-4.2c0-1.5 1.2-2.8 2.8-2.8h.4c1.5 0 2.8 1.2 2.8 2.8v4.2c-.1.5-.5 1-1.1 1Z", "key": "45abb2a1030acdea967e9d551fe4a7e09287a932" }], ["path", { "fill": "currentColor", "d": "M7.1 13.55c-1.168 0-2.05.947-2.05 2.05v4.2a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h3.9a.28.28 0 0 0 .207-.093.604.604 0 0 0 .143-.246V15.6c0-1.168-.947-2.05-2.05-2.05h-.4ZM3.55 15.6c0-1.897 1.518-3.55 3.55-3.55h.4c1.897 0 3.55 1.518 3.55 3.55v4.274l-.015.073c-.143.718-.758 1.603-1.835 1.603H5.3c-1.062 0-1.75-.885-1.75-1.75v-4.2Z", "key": "a39bd57f62d36688412c7f9c6787a60062635312" }]]);
const Lock = createMeisterIcons("lock", [["path", { "fill": "currentColor", "d": "M8.75 7A3.262 3.262 0 0 1 12 3.75c.872 0 1.688.399 2.27.98.581.582.98 1.398.98 2.27v2.082A6.72 6.72 0 0 0 12 8.25a6.72 6.72 0 0 0-3.25.832V7Zm-1.5 3.204V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v3.204a6.75 6.75 0 1 1-9.5 0ZM6.75 15a5.25 5.25 0 1 1 10.5 0 5.25 5.25 0 0 1-10.5 0Z", "key": "858976131546580ad5232045363b56beaf912f03" }]]);
const LockAlt = createMeisterIcons("lock-alt", [["path", { "fill": "currentColor", "d": "M12 3.25A3.262 3.262 0 0 0 8.75 6.5v3.25h6.5V6.5c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98ZM7.25 6.5v3.25H7a4.762 4.762 0 0 0-4.75 4.75v3c0 2.602 2.024 4.75 4.75 4.75h10a4.762 4.762 0 0 0 4.75-4.75v-3A4.762 4.762 0 0 0 17 9.75h-.25V6.5c0-1.328-.601-2.512-1.42-3.33-.818-.819-2.002-1.42-3.33-1.42A4.762 4.762 0 0 0 7.25 6.5ZM7 11.25a3.262 3.262 0 0 0-3.25 3.25v3c0 1.798 1.376 3.25 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-3A3.262 3.262 0 0 0 17 11.25H7Zm.5 2.5a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9Z", "key": "ca6cd8044f53a68be72dfc438190468ed000b034" }]]);
const LockAltB = createMeisterIcons("lock-alt-b", [["path", { "fill": "currentColor", "d": "M3 17.5v-3c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v3c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "440af609f41f9fe39f5c5a60ff92a1ed37c41358" }], ["path", { "fill": "currentColor", "d": "M7 11.25a3.262 3.262 0 0 0-3.25 3.25v3c0 1.798 1.376 3.25 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-3A3.262 3.262 0 0 0 17 11.25H7ZM2.25 14.5A4.762 4.762 0 0 1 7 9.75h10a4.762 4.762 0 0 1 4.75 4.75v3A4.762 4.762 0 0 1 17 22.25H7c-2.726 0-4.75-2.148-4.75-4.75v-3Z", "key": "28a8b01ca9e9f9cb25358907745822f8b2f07ed9" }], ["path", { "fill": "currentColor", "d": "M12 3.25A3.262 3.262 0 0 0 8.75 6.5v4h-1.5v-4A4.762 4.762 0 0 1 12 1.75c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v4h-1.5v-4c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "1932d734f56ca45c07b2170650f299d44893087c" }], ["path", { "fill": "#fff", "d": "M6.75 14.5a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75Z", "key": "0a41e296db7f1a482390ff245178616e6c804666" }]]);
const LockB = createMeisterIcons("lock-b", [["path", { "fill": "currentColor", "d": "M12 3.75A3.262 3.262 0 0 0 8.75 7v3.5h-1.5V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v3.5h-1.5V7c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "be8e4a11876be78d832eb99750e79c32cb7ec22d" }], ["path", { "fill": "currentColor", "d": "M12 21a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z", "key": "a64e3a31e4452426cc070fab658ec13a6433d51c" }], ["path", { "fill": "currentColor", "d": "M12 9.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM5.25 15a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Z", "key": "a559de77c988ed134eb600516bc418a8b8d2148e" }]]);
const LockKeyhole = createMeisterIcons("lock-keyhole", [["path", { "fill": "currentColor", "d": "M12 3.75A3.262 3.262 0 0 0 8.75 7v2.082A6.72 6.72 0 0 1 12 8.25a6.72 6.72 0 0 1 3.25.832V7c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98ZM7.25 7v3.204a6.75 6.75 0 1 0 9.5 0V7c0-1.328-.601-2.512-1.42-3.33-.818-.819-2.002-1.42-3.33-1.42A4.762 4.762 0 0 0 7.25 7ZM12 9.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5Zm.75 6.25a.75.75 0 0 0-1.5 0v1a.75.75 0 0 0 1.5 0v-1Z", "key": "507e2d4d735750e5a9b2cf6312239489c4b79c3d" }]]);
const LockKeyholeB = createMeisterIcons("lock-keyhole-b", [["path", { "fill": "currentColor", "d": "M12 3.75A3.262 3.262 0 0 0 8.75 7v3.5h-1.5V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33v3.5h-1.5V7c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "e58811fa2f490bb19e03fbf43282eb8f1b513140" }], ["path", { "fill": "currentColor", "d": "M12 21a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z", "key": "daa2eebbcaef46357b8b7a5d5d6ecf2dae0b6cb9" }], ["path", { "fill": "currentColor", "d": "M12 9.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM5.25 15a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Z", "key": "b33f7f31bbe1a0dc5d37d9670fce29aaf8ee7243" }], ["path", { "fill": "#fff", "d": "M12 15.25a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Z", "key": "dde9c2b2ce192b03a75d8d27a12b1c000c8ef368" }]]);
const LockOpen = createMeisterIcons("lock-open", [["path", { "fill": "currentColor", "d": "M17 3.75A3.262 3.262 0 0 0 13.75 7v3.204a6.75 6.75 0 1 1-1.5-1.122V7A4.762 4.762 0 0 1 17 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33a.75.75 0 0 1-1.5 0c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Zm-8 6a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM9.75 16a.75.75 0 0 0-1.5 0v1a.75.75 0 0 0 1.5 0v-1Z", "key": "4a42ebed053b50baf472aca1b1bd8cfd35ec124b" }]]);
const LockOpenB = createMeisterIcons("lock-open-b", [["path", { "fill": "currentColor", "d": "M17 3.75A3.262 3.262 0 0 0 13.75 7v3.5a.75.75 0 0 1-1.5 0V7A4.762 4.762 0 0 1 17 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33a.75.75 0 0 1-1.5 0c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "85f6ffb4cf67989a14428137ac9b88d2566262da" }], ["path", { "fill": "currentColor", "d": "M9 21A6 6 0 1 0 9 9a6 6 0 0 0 0 12Z", "key": "f2cbd1f9039cfc44f19c7794fe5928aa965f974f" }], ["path", { "fill": "currentColor", "d": "M9 9.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM2.25 15a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Z", "key": "2fb2560b94495673282bb8e77ed53986f8641d5e" }], ["path", { "fill": "#fff", "d": "M9 15.25a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Z", "key": "fd3a3595837f4eaa08a38403b6473088b993ef3f" }]]);
const LockPartialopen = createMeisterIcons("lock-partialopen", [["path", { "fill": "currentColor", "d": "M12 3.75A3.262 3.262 0 0 0 8.75 7v2.082a6.75 6.75 0 1 1-1.5 1.122V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33a.75.75 0 0 1-1.5 0c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Zm0 6a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5Zm.75 6.25a.75.75 0 0 0-1.5 0v1a.75.75 0 0 0 1.5 0v-1Z", "key": "31d5984d3c198f27d7bea63bfdc7a7a661b90a25" }]]);
const LockPartialopenB = createMeisterIcons("lock-partialopen-b", [["path", { "fill": "currentColor", "d": "M12 3.75A3.262 3.262 0 0 0 8.75 7v3.5a.75.75 0 0 1-1.5 0V7A4.762 4.762 0 0 1 12 2.25c1.328 0 2.512.601 3.33 1.42.819.818 1.42 2.002 1.42 3.33a.75.75 0 0 1-1.5 0c0-.872-.399-1.688-.98-2.27-.582-.581-1.398-.98-2.27-.98Z", "key": "de99ad65664102657937e9ea1f7dab2270c2085d" }], ["path", { "fill": "currentColor", "d": "M12 21a6 6 0 1 0 0-12 6 6 0 0 0 0 12Z", "key": "693209cb0bb42c7f91afe8c272c4765716c5e797" }], ["path", { "fill": "currentColor", "d": "M12 9.75a5.25 5.25 0 1 0 0 10.5 5.25 5.25 0 0 0 0-10.5ZM5.25 15a6.75 6.75 0 1 1 13.5 0 6.75 6.75 0 0 1-13.5 0Z", "key": "123ff3bd0dc21e2ca7e47ae355a0dbde56028506" }], ["path", { "fill": "#fff", "d": "M12 15.25a.75.75 0 0 1 .75.75v1a.75.75 0 0 1-1.5 0v-1a.75.75 0 0 1 .75-.75Z", "key": "e9fb591a20f594f7e8b7b18fb7a542bc8d4278a9" }]]);
const LogIn = createMeisterIcons("log-in", [["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10a.75.75 0 0 1-1.5 0V7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75a.75.75 0 0 1 0-1.5A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9Z", "key": "204bb118061ec1b2450d5d33165615112f551cbb" }], ["path", { "fill": "currentColor", "d": "M15 13c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.2-.1-.3-.1-.4 0-.3.1-.6.2-.8.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .1 0 .3-.1.4-.1.1-.1.2-.2.3-.1.2-.4.4-.6.4Zm-8.65 5.4a.75.75 0 0 1 .75-.75h4.4a.75.75 0 0 1 0 1.5H7.1a.75.75 0 0 1-.75-.75Z", "key": "fe98b1453ba834eaf18052f4f42eef448144a600" }], ["path", { "fill": "currentColor", "d": "M9.47 15.87a.75.75 0 0 1 1.06 0l1.8 1.8a.98.98 0 0 1 .247.43 1.283 1.283 0 0 1 0 .7.991.991 0 0 1-.247.43l-1.8 1.8a.75.75 0 0 1-1.06-1.06l1.52-1.52-1.52-1.52a.75.75 0 0 1 0-1.06Z", "key": "4c4eefff8ea74fd43e494f1576ac1710509a6063" }]]);
const LogOut = createMeisterIcons("log-out", [["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10a.75.75 0 0 1-1.5 0V7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75a.75.75 0 0 1 0-1.5A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9Z", "key": "5057fef4b8443e98cf69844cc457ed7c428b52d6" }], ["path", { "fill": "currentColor", "d": "M15 13c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3-.1-.2-.1-.3-.1-.4 0-.3.1-.6.2-.8.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .1 0 .3-.1.4-.1.1-.1.2-.2.3-.1.2-.4.4-.6.4Zm-8.15 5.4a.75.75 0 0 1 .75-.75H12a.75.75 0 0 1 0 1.5H7.6a.75.75 0 0 1-.75-.75Z", "key": "939c3209c18976a9693c469b117aa69799d14bf3" }], ["path", { "fill": "currentColor", "d": "M9.53 15.87a.75.75 0 0 1 0 1.06l-1.52 1.52 1.52 1.52a.75.75 0 0 1-1.06 1.06l-1.8-1.8a.992.992 0 0 1-.247-.43 1.281 1.281 0 0 1 0-.7.991.991 0 0 1 .247-.43l1.8-1.8a.75.75 0 0 1 1.06 0Z", "key": "78c0c1f8c36b4163369fea9dc212f6be1a9822cf" }]]);
const Magicwand = createMeisterIcons("magicwand", [["path", { "fill": "currentColor", "d": "M18.374 6.543c-.176-.211-.557-.287-.894.05L6.556 17.517l-.026.022c-.21.175-.286.556.05.893l1.573 1.573c.347.27.787.207.967.027L20.044 9.108l.026-.022c.21-.175.286-.556-.05-.893l-1.624-1.624-.022-.026Zm1.128-.99c-.828-.958-2.227-.876-3.082-.02L5.54 16.41c-.959.827-.876 2.227-.021 3.082l1.624 1.624.026.022c.85.708 2.194.77 3.01-.046L21.06 10.214c.959-.827.876-2.227.021-3.082l-1.578-1.578Z", "key": "d5aa02fd954cf50de7718775205a50815de7f066" }], ["path", { "fill": "currentColor", "d": "m15.08 7.932 3.6 3.6-1.06 1.06-3.6-3.6 1.06-1.06ZM7.4 4.662a.75.75 0 0 1 .75-.75h3.3a.75.75 0 0 1 0 1.5h-3.3a.75.75 0 0 1-.75-.75Z", "key": "e15dd41e34e52942e10474afed17bcfcb7161287" }], ["path", { "fill": "currentColor", "d": "M9.75 2.313a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Zm-7.85 8.15a.75.75 0 0 1 .75-.75h3.2a.75.75 0 1 1 0 1.5h-3.2a.75.75 0 0 1-.75-.75Z", "key": "3680378319ccf0079679e12a191f79fd4653e583" }], ["path", { "fill": "currentColor", "d": "M4.25 8.112a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75ZM17.3 18.163a.75.75 0 0 1 .75-.75h3.3a.75.75 0 1 1 0 1.5h-3.3a.75.75 0 0 1-.75-.75Z", "key": "eaf4d400884a3c831d7225bf1410a59a7a191619" }], ["path", { "fill": "currentColor", "d": "M19.65 15.813a.75.75 0 0 1 .75.75v3.3a.75.75 0 0 1-1.5 0v-3.3a.75.75 0 0 1 .75-.75Z", "key": "f331db0b46c31652225fa4e422b7f5052cf5869b" }]]);
const MagicwandB = createMeisterIcons("magicwand-b", [["path", { "fill": "currentColor", "d": "m18.15 12.113-8.4 8.4c-.6.5-1.5.5-2 0l-1.6-1.6c-.5-.6-.5-1.5 0-2l8.4-8.4 3.6 3.6Z", "key": "fcd77c914e1532b61ced19da3386c8b3d4034120" }], ["path", { "fill": "currentColor", "d": "m14.55 7.452 4.66 4.66-8.954 8.955-.026.022c-.85.708-2.194.77-3.01-.046l-1.624-1.624-.022-.026c-.708-.85-.77-2.194.046-3.01l8.93-8.931Zm0 2.121-7.87 7.87c-.18.18-.243.62.028.967l1.572 1.572c.18.18.62.244.967-.027l7.842-7.842-2.539-2.54Z", "key": "4cc29ec97cafadff84d51d6e1b355be78fdd4b3d" }], ["path", { "fill": "currentColor", "d": "M17.358 6.566 15.5 8.502l2.56 2.56 1.964-1.885a.668.668 0 0 0 .214-.49c-.005-.147-.072-.33-.276-.505l-.022-.019-1.62-1.62c-.179-.179-.616-.243-.962.023Zm-.988-1.13c.85-.708 2.194-.77 3.01.046l1.582 1.582c.481.422.755.98.775 1.573.02.599-.222 1.17-.657 1.606l-.005.005-3.036 2.914L13.4 8.523l2.938-3.06.032-.027ZM7.4 4.712a.75.75 0 0 1 .75-.75h3.3a.75.75 0 0 1 0 1.5h-3.3a.75.75 0 0 1-.75-.75Z", "key": "ffdbff816f6ea2bb222270c974f08dca4e7d50b0" }], ["path", { "fill": "currentColor", "d": "M9.75 2.362a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75ZM1.9 10.513a.75.75 0 0 1 .75-.75h3.2a.75.75 0 1 1 0 1.5h-3.2a.75.75 0 0 1-.75-.75Z", "key": "af2f841eaa7160a7d912444af993bde993f5c364" }], ["path", { "fill": "currentColor", "d": "M4.25 8.162a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75ZM17.3 18.213a.75.75 0 0 1 .75-.75h3.3a.75.75 0 1 1 0 1.5h-3.3a.75.75 0 0 1-.75-.75Z", "key": "6e7139d98379fbd557d45bb8f19710da231d3b67" }], ["path", { "fill": "currentColor", "d": "M19.65 15.863a.75.75 0 0 1 .75.75v3.3a.75.75 0 0 1-1.5 0v-3.3a.75.75 0 0 1 .75-.75Z", "key": "b3137440e2a9650576fecede2dc75801a631a39c" }]]);
const Mail = createMeisterIcons("mail", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v8c0 1.186-1.064 2.25-2.25 2.25H6c-1.286 0-2.25-.964-2.25-2.25V8ZM6 4.25C3.886 4.25 2.25 5.886 2.25 8v8c0 2.114 1.636 3.75 3.75 3.75h12c2.014 0 3.75-1.736 3.75-3.75V8c0-2.114-1.636-3.75-3.75-3.75H6Zm.341 4.082a.75.75 0 0 0-.682 1.336l4.7 2.4.005.003c1.023.51 2.16.495 3.24.014a.813.813 0 0 0 .037-.017l4.7-2.4a.75.75 0 0 0-.682-1.336l-4.681 2.39c-.711.311-1.368.294-1.94.008L6.341 8.332Z", "key": "0eb66b36bf2274887f23b230925ad6f9bd630c32" }]]);
const MailAdd = createMeisterIcons("mail-add", [["path", { "fill": "currentColor", "d": "M6 5.75c-1.286 0-2.25.964-2.25 2.25v8c0 1.286.964 2.25 2.25 2.25h6a.75.75 0 0 1 0 1.5H6c-2.114 0-3.75-1.636-3.75-3.75V8c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v5a.75.75 0 0 1-1.5 0V8c0-1.286-.964-2.25-2.25-2.25H6ZM17.75 13a.75.75 0 0 0-1.5 0v2.25H14a.75.75 0 0 0 0 1.5h2.25V19a.75.75 0 0 0 1.5 0v-2.25H20a.75.75 0 0 0 0-1.5h-2.25V13ZM6.341 8.332a.75.75 0 0 0-.682 1.336l4.7 2.4.005.003c1.023.51 2.16.495 3.24.014a.813.813 0 0 0 .037-.017l4.7-2.4a.75.75 0 0 0-.682-1.336l-4.681 2.39c-.711.311-1.368.294-1.94.008L6.341 8.332Z", "key": "28fee4e8047dbaeeee609313abcd67a012d8a34d" }]]);
const MailAlt = createMeisterIcons("mail-alt", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v8c0 .091-.006.182-.018.271l-5.01-5.01 3.119-1.593a.75.75 0 0 0-.682-1.336l-3.756 1.918a.747.747 0 0 0-.613.313l-.312.16c-.711.31-1.368.293-1.94.007l-.505-.257-.003-.003a.747.747 0 0 0-.416-.211L6.341 8.332a.75.75 0 0 0-.682 1.336l3.053 1.559-4.955 4.956A2.524 2.524 0 0 1 3.75 16V8Zm10.067 3.978-.176.09a.764.764 0 0 1-.037.017c-1.08.48-2.217.497-3.24-.014l-.005-.003-.243-.124-5.693 5.693c.4.384.95.613 1.577.613h12c.555 0 1.082-.233 1.487-.602l-5.67-5.67ZM6 19.75c-1.294 0-2.408-.613-3.079-1.572a.764.764 0 0 1-.256-.426A3.823 3.823 0 0 1 2.25 16V8c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v8c0 2.014-1.736 3.75-3.75 3.75H6Z", "key": "51eb6c0116a6ba4392f606b49f5b70d4a0c235db" }]]);
const MailB = createMeisterIcons("mail-b", [["path", { "fill": "currentColor", "d": "M18 19H6c-1.7 0-3-1.3-3-3V8c0-1.7 1.3-3 3-3h12c1.7 0 3 1.3 3 3v8c0 1.6-1.4 3-3 3Z", "key": "8446874f38c4f240f8f5af40d045c53a7c932bdc" }], ["path", { "fill": "currentColor", "d": "M6 5.75c-1.286 0-2.25.964-2.25 2.25v8c0 1.286.964 2.25 2.25 2.25h12c1.186 0 2.25-1.064 2.25-2.25V8c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 8c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v8c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V8Z", "key": "0b9c34f8c065e69b7d8420968a0c4de2ebfd4feb" }], ["path", { "fill": "#fff", "d": "M5.332 8.659a.75.75 0 0 1 1.01-.327l4.696 2.398c.572.286 1.229.303 1.94-.008l4.681-2.39a.75.75 0 1 1 .682 1.336l-4.7 2.4a.764.764 0 0 1-.036.017c-1.082.48-2.218.497-3.24-.014l-.006-.003-4.7-2.4a.75.75 0 0 1-.327-1.01Z", "key": "ae11ad7791ddbbff781a4454a2a6809cc1be6968" }]]);
const MailBranch = createMeisterIcons("mail-branch", [["path", { "fill": "currentColor", "d": "M4.95 6.25C4.95 4.964 5.914 4 7.2 4h9.4c1.286 0 2.25.964 2.25 2.25v6l.001.044c.072 1.227-.94 2.206-2.151 2.206H7.2c-1.286 0-2.25-.964-2.25-2.25v-6ZM16.7 16h-3.95v2.5h3.628a2.251 2.251 0 1 1 0 1.5H7.622a2.25 2.25 0 1 1 0-1.5h3.628V16H7.2c-2.114 0-3.75-1.636-3.75-3.75v-6c0-2.114 1.636-3.75 3.75-3.75h9.4c2.114 0 3.75 1.636 3.75 3.75v5.98c.114 2.16-1.67 3.77-3.65 3.77Zm1.05 3.25a.75.75 0 1 0 1.5 0 .75.75 0 0 0-1.5 0ZM5.5 18.5a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5ZM7.135 5.98a.75.75 0 1 0-.67 1.34l4 2a3.551 3.551 0 0 0 2.87 0l4-2a.75.75 0 0 0-.67-1.34l-3.98 1.989c-.5.208-1.07.208-1.57 0l-3.98-1.99Z", "key": "191d530f4785ee2ec3404271c800549da2218c15" }]]);
const MailBranchAlt = createMeisterIcons("mail-branch-alt", [["path", { "fill": "currentColor", "d": "M5.047 7c0-1.286.965-2.25 2.25-2.25h9.4c1.286 0 2.25.964 2.25 2.25v6c0 .016 0 .031.002.047.071 1.14-.955 2.203-2.152 2.203h-9.5c-1.285 0-2.25-.964-2.25-2.25V7Zm11.75 9.75h-3.95v2.5h4.25a.75.75 0 0 1 0 1.5h-10a.75.75 0 0 1 0-1.5h4.25v-2.5h-4.05c-2.114 0-3.75-1.636-3.75-3.75V7c0-2.114 1.636-3.75 3.75-3.75h9.4c2.115 0 3.75 1.636 3.75 3.75v5.978c.113 2.05-1.654 3.772-3.65 3.772ZM7.233 6.73a.75.75 0 1 0-.671 1.34l4 2a3.551 3.551 0 0 0 2.87 0l4-2a.75.75 0 0 0-.67-1.34l-3.979 1.989c-.5.208-1.07.208-1.572 0l-3.978-1.99Z", "key": "c84ca6bb947fd9793ab79ccb6260c43acb2cc9fa" }]]);
const MailBranchAltB = createMeisterIcons("mail-branch-alt-b", [["path", { "fill": "currentColor", "d": "M16.7 16H7.3c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3h9.4c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "109e82d178f899ed4f5dcd35740ac374115bdded" }], ["path", { "fill": "currentColor", "d": "M7.3 4.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h9.4c1.186 0 2.25-1.064 2.25-2.25V7c0-1.286-.964-2.25-2.25-2.25H7.3ZM3.55 7c0-2.114 1.636-3.75 3.75-3.75h9.4c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H7.3c-2.114 0-3.75-1.636-3.75-3.75V7Z", "key": "8311e7e5d2d294d4c61fd2ed0c9cabd8b71aa038" }], ["path", { "fill": "currentColor", "d": "m6.8 7.4 4 2c.7.3 1.5.3 2.2 0l4-2", "key": "32d6b2c33d82c4128c0deef31711ed229956afa9" }], ["path", { "fill": "#fff", "d": "M6.13 7.065a.75.75 0 0 1 1.005-.336l3.98 1.99c.5.208 1.07.208 1.57 0l3.98-1.99a.75.75 0 0 1 .67 1.342l-4 2a3.551 3.551 0 0 1-2.87 0l-4-2a.75.75 0 0 1-.336-1.006Z", "key": "8ecfc9ec29e11b29af901b6423dfadcfe9110c18" }], ["path", { "fill": "currentColor", "d": "M12 15.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "04612d4125314a19af10547f512f54cbebaeaebd" }], ["path", { "fill": "currentColor", "d": "M6.25 20a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1-.75-.75Z", "key": "e7dbd873bad9734964203e83e12edc6e08c83b5e" }]]);
const MailBranchB = createMeisterIcons("mail-branch-b", [["path", { "fill": "currentColor", "d": "M16.7 15.25H7.2c-1.7 0-3-1.3-3-3v-6c0-1.7 1.3-3 3-3h9.4c1.7 0 3 1.3 3 3v6c.1 1.6-1.3 3-2.9 3Z", "key": "29cf5623d6b2e12d546c17b73865051faf78e4c9" }], ["path", { "fill": "currentColor", "d": "M7.2 4c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h9.5c1.196 0 2.223-1.063 2.151-2.203a.731.731 0 0 1-.001-.047v-6c0-1.286-.964-2.25-2.25-2.25H7.2ZM3.45 6.25c0-2.114 1.636-3.75 3.75-3.75h9.4c2.114 0 3.75 1.636 3.75 3.75v5.978C20.463 14.278 18.695 16 16.7 16H7.2c-2.114 0-3.75-1.636-3.75-3.75v-6Z", "key": "1914d04770fa84bcf17eabde856dcd898a5a330f" }], ["path", { "fill": "currentColor", "d": "m6.8 6.65 4 2c.7.3 1.5.3 2.2 0l4-2", "key": "a9fb9304b774a27a5e9f2da131f4f7202fbb3fd6" }], ["path", { "fill": "#fff", "d": "M6.13 6.315a.75.75 0 0 1 1.005-.336l3.98 1.99c.5.208 1.07.208 1.57 0l3.98-1.99a.75.75 0 0 1 .67 1.342l-4 2a3.551 3.551 0 0 1-2.87 0l-4-2a.75.75 0 0 1-.336-1.006Z", "key": "57493a635807cb90ad4d1ee0f0cfb4181ec55ac4" }], ["path", { "fill": "currentColor", "d": "M12 14.5a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "c80432228fed157c480216bead4e22635b193a57" }], ["path", { "fill": "currentColor", "d": "M6.25 19.25A.75.75 0 0 1 7 18.5h10a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1-.75-.75Z", "key": "ca9b4834a3464125499a5ab106f3c86a20c847d8" }], ["path", { "fill": "currentColor", "d": "M5.5 20.75a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "284ed41364d8aee1d81ea7efc8000ec8c475630e" }], ["path", { "fill": "currentColor", "d": "M5.5 18.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm15.25 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "c3188d3eb7636c81664744d162c7857856957b70" }], ["path", { "fill": "currentColor", "d": "M18.5 18.5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "5aeb8e432c5b26e32eaf81d9a8b2f80d0962c85a" }]]);
const MailCheck = createMeisterIcons("mail-check", [["path", { "fill": "currentColor", "d": "M6 5.212c-1.286 0-2.25.965-2.25 2.25v8c0 1.286.964 2.25 2.25 2.25h6a.75.75 0 0 1 0 1.5H6c-2.114 0-3.75-1.635-3.75-3.75v-8c0-2.114 1.636-3.75 3.75-3.75h12c2.114 0 3.75 1.636 3.75 3.75v5a.75.75 0 0 1-1.5 0v-5c0-1.285-.964-2.25-2.25-2.25H6Zm-.668 2.91a.75.75 0 0 1 1.01-.328l4.696 2.399c.572.285 1.229.303 1.94-.008l4.681-2.39a.75.75 0 1 1 .682 1.335l-4.7 2.4a.764.764 0 0 1-.036.018c-1.082.48-2.218.496-3.24-.015l-.006-.003-4.7-2.4a.75.75 0 0 1-.327-1.009Zm16.192 7.877a.75.75 0 1 0-1.048-1.073l-3.72 3.629-1.156-1.543a.75.75 0 1 0-1.2.9l1.532 2.043.038.038c.222.222.506.294.73.294.222 0 .504-.07.726-.29L21.524 16Z", "key": "d237001fdca547a4f5a608518f0345e94087ad1e" }]]);
const MailCode = createMeisterIcons("mail-code", [["path", { "fill": "currentColor", "d": "M3.537 7.55c0-1.286.965-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v5a.75.75 0 1 0 1.5 0v-5c0-2.114-1.635-3.75-3.75-3.75h-12c-2.114 0-3.75 1.636-3.75 3.75v8c0 2.114 1.636 3.75 3.75 3.75h6a.75.75 0 1 0 0-1.5h-6c-1.285 0-2.25-.964-2.25-2.25v-8Zm2.591.332a.75.75 0 1 0-.682 1.336l4.7 2.4.006.003c1.022.511 2.159.495 3.24.014a.64.64 0 0 0 .036-.017l4.7-2.4a.75.75 0 0 0-.682-1.336l-4.68 2.39c-.712.311-1.368.294-1.94.008L6.127 7.883Zm10.29 7.238a.75.75 0 0 1 0 1.06l-1.37 1.37 1.37 1.37a.75.75 0 0 1-1.06 1.06l-1.4-1.4c-.271-.27-.446-.63-.446-1.03s.175-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Zm3.7-.1a.75.75 0 1 0-1.06 1.06l1.369 1.37-1.37 1.37a.75.75 0 0 0 1.06 1.06l1.4-1.4c.271-.27.445-.63.445-1.03s-.174-.76-.444-1.03l-1.4-1.4Z", "key": "09f9346e524e649f8fcb26c91ef14fff3ba614db" }]]);
const MailCross = createMeisterIcons("mail-cross", [["path", { "fill": "currentColor", "d": "M6 5.2c-1.286 0-2.25.964-2.25 2.25v8c0 1.285.964 2.25 2.25 2.25h6a.75.75 0 0 1 0 1.5H6c-2.114 0-3.75-1.636-3.75-3.75v-8C2.25 5.335 3.886 3.7 6 3.7h12c2.114 0 3.75 1.635 3.75 3.75v5a.75.75 0 0 1-1.5 0v-5c0-1.286-.964-2.25-2.25-2.25H6Zm13.63 10.58a.75.75 0 1 0-1.06-1.06l-1.62 1.62-1.62-1.62a.75.75 0 1 0-1.06 1.06l1.62 1.62-1.62 1.62a.75.75 0 1 0 1.06 1.06l1.62-1.62 1.62 1.62a.75.75 0 1 0 1.06-1.06l-1.62-1.62 1.62-1.62ZM6.341 7.782a.75.75 0 0 0-.682 1.336l4.7 2.4.005.002c1.023.512 2.16.496 3.24.015a.813.813 0 0 0 .037-.017l4.7-2.4a.75.75 0 0 0-.682-1.336l-4.681 2.39c-.711.311-1.368.293-1.94.008L6.341 7.782Z", "key": "4da6ba238535cc614ef01654345a73a05f6fd20b" }]]);
const MailDownright = createMeisterIcons("mail-downright", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v5a.75.75 0 0 0 1.5 0V8c0-2.114-1.636-3.75-3.75-3.75H6C3.886 4.25 2.25 5.886 2.25 8v8c0 2.114 1.636 3.75 3.75 3.75h6a.75.75 0 0 0 0-1.5H6c-1.286 0-2.25-.964-2.25-2.25V8Zm2.591.332a.75.75 0 0 0-.682 1.336l4.7 2.4.005.003c1.023.51 2.16.495 3.24.014a.813.813 0 0 0 .037-.017l4.7-2.4a.75.75 0 0 0-.682-1.336l-4.681 2.39c-.711.311-1.368.294-1.94.008L6.341 8.332Zm8.538 6.03a.75.75 0 0 1 1.06.017l2.011 2.08v-.958a.75.75 0 0 1 1.5 0v2.4c0 .378-.198.653-.394.81-.173.138-.409.24-.656.24H16a.75.75 0 0 1 0-1.5h.822l-1.961-2.03a.75.75 0 0 1 .018-1.06Z", "key": "c4f85f12bbfbc3293779b730213c1c37c8f79413" }]]);
const MailOutline = createMeisterIcons("mail-outline", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v8c0 1.186-1.064 2.25-2.25 2.25H6c-1.286 0-2.25-.964-2.25-2.25V8ZM6 4.25C3.886 4.25 2.25 5.886 2.25 8v8c0 2.114 1.636 3.75 3.75 3.75h12c2.014 0 3.75-1.736 3.75-3.75V8c0-2.114-1.636-3.75-3.75-3.75H6Zm.341 4.082a.75.75 0 0 0-.682 1.336l4.7 2.4.005.003c1.023.51 2.16.495 3.24.014a.813.813 0 0 0 .037-.017l4.7-2.4a.75.75 0 0 0-.682-1.336l-4.681 2.39c-.711.311-1.368.294-1.94.008L6.341 8.332Zm3.283 5.252a.75.75 0 0 1-.208 1.04l-3 2a.75.75 0 1 1-.832-1.248l3-2a.75.75 0 0 1 1.04.208Zm5.792-.208a.75.75 0 0 0-.832 1.248l3 2a.75.75 0 1 0 .832-1.248l-3-2Z", "key": "0977c4b81d5aba62b843d654f865eef26dfd8e16" }]]);
const MailTopleft = createMeisterIcons("mail-topleft", [["path", { "fill": "currentColor", "d": "M3.75 8c0-1.286.964-2.25 2.25-2.25h12c1.286 0 2.25.964 2.25 2.25v5a.75.75 0 0 0 1.5 0V8c0-2.114-1.636-3.75-3.75-3.75H6C3.886 4.25 2.25 5.886 2.25 8v8c0 2.114 1.636 3.75 3.75 3.75h6a.75.75 0 0 0 0-1.5H6c-1.286 0-2.25-.964-2.25-2.25V8Zm2.591.332a.75.75 0 0 0-.682 1.336l4.7 2.4.005.003c1.023.51 2.16.495 3.24.014a.813.813 0 0 0 .037-.017l4.7-2.4a.75.75 0 0 0-.682-1.336l-4.681 2.39c-.711.311-1.368.294-1.94.008L6.341 8.332Zm10.937 7.418h.922a.75.75 0 0 0 0-1.5h-2.5c-.247 0-.483.101-.656.24a1.033 1.033 0 0 0-.394.81v2.4a.75.75 0 0 0 1.5 0v-.959l2.01 2.08a.75.75 0 1 0 1.079-1.042l-1.961-2.029Z", "key": "85a407253138356819edb5cacd53460755f42428" }]]);
const Male = createMeisterIcons("male", [["path", { "fill": "currentColor", "d": "M11 6.45a6.45 6.45 0 1 0 0 12.9 6.45 6.45 0 0 0 0-12.9ZM3.05 12.9a7.95 7.95 0 1 1 15.9 0 7.95 7.95 0 0 1-15.9 0Z", "key": "884c5b83d229aabdfacfb3800ae9f66ebdee40ec" }], ["path", { "fill": "currentColor", "d": "M20.338 3.877a.75.75 0 0 1-.015 1.06l-3.6 3.5a.75.75 0 1 1-1.046-1.075l3.6-3.5a.75.75 0 0 1 1.06.015Z", "key": "9fdc20ea5079009b9f7b1dc62d918d8eeb723ffc" }], ["path", { "fill": "currentColor", "d": "M16.05 3.9a.75.75 0 0 1 .75-.75h3c.344 0 .625.164.805.345.18.18.345.461.345.805v3a.75.75 0 0 1-1.5 0V4.65H16.8a.75.75 0 0 1-.75-.75Z", "key": "1345b35cca811db0058c2ccc908d9cabc483f919" }]]);
const MaleB = createMeisterIcons("male-b", [["path", { "fill": "currentColor", "d": "M11 20.1a7.2 7.2 0 1 0 0-14.4 7.2 7.2 0 0 0 0 14.4Z", "key": "38a00350750d3fcdae5bad5aa78379d458868992" }], ["path", { "fill": "currentColor", "d": "M11 6.45a6.45 6.45 0 1 0 0 12.9 6.45 6.45 0 0 0 0-12.9ZM3.05 12.9a7.95 7.95 0 1 1 15.9 0 7.95 7.95 0 0 1-15.9 0Z", "key": "9e68c06cf8aaf8f174bc11777fbc3b036473b679" }], ["path", { "fill": "currentColor", "d": "M20.338 3.877a.75.75 0 0 1-.015 1.06l-3.6 3.5a.75.75 0 1 1-1.046-1.075l3.6-3.5a.75.75 0 0 1 1.06.015Z", "key": "de0e87798c1ab32c729415b184762d81ecb67a81" }], ["path", { "fill": "currentColor", "d": "M16.05 3.9a.75.75 0 0 1 .75-.75h3c.344 0 .625.164.805.345.18.18.345.461.345.805v3a.75.75 0 0 1-1.5 0V4.65H16.8a.75.75 0 0 1-.75-.75Z", "key": "5e310beea8ae3e7fc86b29f99f10838b1ba14b6c" }]]);
const Mantra = createMeisterIcons("mantra", [["path", { "fill": "currentColor", "d": "M11.446 4.505a.75.75 0 0 1 1.049-.159C14.586 5.887 15.9 8.411 15.9 11.15v.368c2.474 1.256 4.283 3.64 4.576 6.518a.75.75 0 0 1-.347 1.11 8.899 8.899 0 0 1-3.38.654c-1.8 0-3.422-.55-4.774-1.477A8.353 8.353 0 0 1 7.35 19.7c-1.127 0-2.276-.194-3.26-.602l-.017-.002a.75.75 0 0 1-.67-.823c.315-3.037 2.138-5.583 4.797-6.853v-.17c0-2.637 1.218-5.075 3.175-6.628a.83.83 0 0 1 .071-.117Zm-3.092 8.528a6.98 6.98 0 0 0-3.372 4.799c.704.24 1.527.368 2.368.368 1.255 0 2.4-.322 3.398-.885-1.168-1.139-2.033-2.592-2.394-4.282Zm1.411-.611a7.351 7.351 0 0 1 2.185-.322c.835 0 1.654.126 2.355.364-.306 1.535-1.15 2.936-2.312 3.963-1.149-1.043-1.962-2.408-2.228-4.005Zm4.631-1.5a9.165 9.165 0 0 0-2.446-.322c-.782 0-1.52.093-2.24.28a6.982 6.982 0 0 1 2.397-4.917 6.99 6.99 0 0 1 2.29 4.96Zm1.3 2.197a8.739 8.739 0 0 1-2.478 4.219 6.85 6.85 0 0 0 3.532.962c.778 0 1.497-.109 2.208-.329-.28-2.049-1.516-3.797-3.263-4.852Z", "key": "d9c02bc8eb29b5189a013e396f85443c471baa7f" }]]);
const MantraB = createMeisterIcons("mantra-b", [["path", { "fill": "currentColor", "d": "m12.096 4.16.443.321C14.53 5.92 15.95 8.443 15.95 11.29v1.808l-1.028-.412a7.399 7.399 0 0 0-2.822-.546c-1.017 0-2.01.186-2.795.536l-1.055.468V11.29c0-2.739 1.314-5.263 3.405-6.804l.44-.324Zm.007 1.889a6.985 6.985 0 0 0-2.344 4.884 9.22 9.22 0 0 1 2.341-.294c.819 0 1.59.103 2.342.306-.098-1.992-1.035-3.758-2.339-4.896Z", "key": "0a1558217eb282c18ef17283aaacb25ba21657b4" }], ["path", { "fill": "currentColor", "d": "M15.1 11.99c-.2 2.2-1.4 4.2-3.1 5.5-1.7-1.3-2.9-3.3-3.1-5.5 1-.4 2-.6 3.1-.6s2.2.2 3.1.6Z", "key": "633f6f68b3abcb9c30c5eaf672c82536184ea674" }], ["path", { "fill": "currentColor", "d": "M9.724 12.49c.28 1.554 1.114 2.977 2.276 4.025 1.165-1.05 2-2.478 2.278-4.038A7.498 7.498 0 0 0 12 12.14a7.35 7.35 0 0 0-2.276.35Zm-1.102-1.197A8.899 8.899 0 0 1 12 10.639c1.183 0 2.39.214 3.405.665l.49.218-.048.535c-.22 2.426-1.539 4.612-3.391 6.028l-.456.348-.455-.348c-1.853-1.416-3.171-3.602-3.392-6.028l-.05-.557.519-.207Z", "key": "69200dc21407e378cba1ac83096ebc04656b7a6a" }], ["path", { "fill": "currentColor", "d": "m9.654 10.898.093 1.023c.182 1.996 1.179 3.802 2.709 4.972l.777.594-.776.597A8.372 8.372 0 0 1 7.3 19.839a8.899 8.899 0 0 1-3.378-.654l-.524-.21.056-.56c.328-3.285 2.412-5.914 5.254-7.117l.946-.4ZM5.027 17.99a7.35 7.35 0 0 0 2.273.35 6.852 6.852 0 0 0 3.47-.927 8.573 8.573 0 0 1-2.353-4.292 7.086 7.086 0 0 0-3.39 4.869Z", "key": "3162290e0776e9125277a09648f692fa4e2778c9" }], ["path", { "fill": "currentColor", "d": "m14.45 10.763.965.445c2.83 1.306 4.803 3.93 5.131 7.104l.056.541-.497.221c-1.015.451-2.222.665-3.405.665a8.37 8.37 0 0 1-5.157-1.755l-.775-.597.777-.594c1.547-1.183 2.629-2.998 2.808-4.972l.097-1.058Zm1.221 2.287c-.38 1.64-1.258 3.122-2.438 4.265a6.852 6.852 0 0 0 3.467.924c.804 0 1.591-.116 2.274-.337-.37-2.039-1.575-3.763-3.303-4.852Z", "key": "e0dae9fdc944e0c4c66ad5136c6d1ddfc9fca28e" }]]);
const Map$1 = createMeisterIcons("map", [["path", { "fill": "currentColor", "d": "m9.146 2.95 5.7 3 4.705-2.54.062-.022a1.3 1.3 0 0 1 1.102.142c.335.213.585.592.585 1.07v12.3a1.246 1.246 0 0 1-.42.93l-.08.08-5.95 3.138-5.702-3.002-4.624 2.405c-.45.274-.934.163-1.24-.03-.294-.188-.584-.551-.584-1.021V6.79l.161-.162.03-.063c.072-.142.213-.376.511-.53l5.744-3.084Zm.008 1.7L4.2 7.31v11.619l4.952-2.575 5.698 2.998 4.95-2.61V4.98l-4.946 2.67-5.7-3Z", "key": "78cd9413d9af956b865a9e8ecf1ee30d1a193e33" }]]);
const MapAlt = createMeisterIcons("map-alt", [["path", { "fill": "currentColor", "d": "m9.146 2.95 5.7 3 4.705-2.54.062-.022a1.3 1.3 0 0 1 1.102.142c.335.213.585.592.585 1.07v12.3a1.246 1.246 0 0 1-.42.93l-.08.08-5.95 3.138-5.702-3.002-4.624 2.405c-.45.274-.934.163-1.24-.03-.294-.188-.584-.551-.584-1.021V6.79l.161-.162.03-.063c.072-.142.213-.376.511-.53l5.744-3.084Zm.008 1.7L4.2 7.31v11.619l4.952-2.575 5.698 2.998 4.95-2.61V4.98l-4.946 2.67-5.7-3Z", "key": "c8c3055dc14cbeb4729376c8f5588882fb611355" }], ["path", { "fill": "currentColor", "d": "M9.15 3.05a.75.75 0 0 1 .75.75v13.3a.75.75 0 0 1-1.5 0V3.8a.75.75 0 0 1 .75-.75Zm5.7 3a.75.75 0 0 1 .75.75v13.3a.75.75 0 0 1-1.5 0V6.8a.75.75 0 0 1 .75-.75Z", "key": "33fb8638ed364318521cfc604d6e27b1fcf433b8" }]]);
const MapB = createMeisterIcons("map-b", [["path", { "fill": "currentColor", "d": "M20.55 4.6v12.3c0 .2-.1.3-.2.4l-5.5 2.9-5.7-3-5 2.6c-.3.2-.7-.1-.7-.4V7.1c.1-.1.1-.3.3-.4l5.4-2.9 5.7 3 5-2.7c.3-.1.7.1.7.5Z", "key": "168a60e2ea161880f6defd0d8a5d706a2c9ecd28" }], ["path", { "fill": "currentColor", "d": "m9.146 2.95 5.7 3 4.705-2.54.062-.022a1.3 1.3 0 0 1 1.102.142c.335.213.585.592.585 1.07v12.3a1.246 1.246 0 0 1-.42.93l-.08.08-5.95 3.138-5.702-3.002-4.624 2.405c-.45.274-.934.163-1.24-.03-.294-.188-.584-.551-.584-1.021V6.79l.161-.162.03-.063c.072-.142.213-.376.511-.53l5.744-3.084Zm.008 1.7L4.2 7.31v11.619l4.952-2.575 5.698 2.998 4.95-2.61V4.98l-4.946 2.67-5.7-3Z", "key": "ceca85c077a8000817e88ac0aa9cbe3e8fdc96e0" }]]);
const MapPin = createMeisterIcons("map-pin", [["path", { "fill": "currentColor", "d": "M14.37 5.28c-.696-.695-1.489-1.057-2.302-.983l-.034.003H12c-.815 0-1.72.33-2.37.98a3.256 3.256 0 0 0-.98 2.37c0 .814.33 1.72.98 2.37l-1.06 1.06a4.925 4.925 0 0 1-1.42-3.43c0-1.295.476-2.487 1.42-3.43a4.924 4.924 0 0 1 3.396-1.42c1.373-.112 2.567.523 3.464 1.42.95.95 1.42 2.244 1.42 3.43a4.754 4.754 0 0 1-1.42 3.43l-1.06-1.06c.656-.657.98-1.465.98-2.37 0-.814-.33-1.72-.98-2.37Z", "key": "236aedc47e9e6f7c7070e2a7eebb3bc4dc5ff093" }], ["path", { "fill": "currentColor", "d": "M8.57 10.02a.75.75 0 0 1 1.06 0L12 12.39l2.37-2.37a.75.75 0 1 1 1.06 1.06l-2.5 2.5c-.272.273-.631.37-.93.37-.299 0-.658-.097-.93-.37l-2.5-2.5a.75.75 0 0 1 0-1.06Z", "key": "8cbdf53a1a15eedb5a51839293507fbd26e58a89" }], ["path", { "fill": "currentColor", "d": "M6.538 9.17a.35.35 0 0 0-.11.162l-.003.01-2.807 10.127-.006.018c-.01.03-.013.103.05.188a.298.298 0 0 0 .238.125h16.2c.131 0 .21-.053.249-.102.034-.044.065-.118.03-.242l-.002-.006L17.57 9.324l-.005-.027c-.017-.084-.05-.123-.078-.145A.296.296 0 0 0 17.3 9.1h-1.2a.75.75 0 0 1 0-1.5h1.2c.82 0 1.543.514 1.73 1.373l2.791 10.071.001.003c.345 1.213-.561 2.253-1.722 2.253H3.9c-1.172 0-2.072-1.156-1.718-2.266L4.975 8.957C5.148 8.285 5.805 7.6 6.7 7.6h1.2a.75.75 0 1 1 0 1.5H6.7c-.044 0-.1.017-.162.07Z", "key": "f1f6f025e09be016b22b76fccdd300fcc3579ef4" }]]);
const MapPinB = createMeisterIcons("map-pin-b", [["path", { "fill": "currentColor", "d": "M9.104 10.893c-.8-.8-1.204-2.243-1.204-3.243 0-1.1.4-2.1 1.2-2.9.8-.8 1.9-1.2 2.9-1.2 1.1-.1 2.1.4 2.9 1.2.8.8 1.2 1.9 1.2 2.9 0 1.1-.396 2.443-1.196 3.243", "key": "d3d4c34f934957e837076806ff2b206562835b60" }], ["path", { "fill": "currentColor", "d": "M14.37 5.28c-.696-.695-1.489-1.057-2.302-.983l-.034.003H12c-.815 0-1.72.33-2.37.98a3.256 3.256 0 0 0-.98 2.37c0 .814.33 1.72.98 2.37l-1.06 1.06a4.925 4.925 0 0 1-1.42-3.43c0-1.295.476-2.487 1.42-3.43a4.924 4.924 0 0 1 3.396-1.42c1.373-.112 2.567.523 3.464 1.42.95.95 1.42 2.244 1.42 3.43a4.754 4.754 0 0 1-1.42 3.43l-1.06-1.06c.656-.657.98-1.465.98-2.37 0-.814-.33-1.72-.98-2.37Z", "key": "4e070e245cb5d56c5d8160159010ceaac3286440" }], ["path", { "fill": "currentColor", "d": "m9.1 10.55 2.5 2.5c.2.2.6.2.8 0l2.5-2.5", "key": "059e447e18c5a111d56863c6a348d3c2e9baefda" }], ["path", { "fill": "currentColor", "d": "M8.57 10.02a.75.75 0 0 1 1.06 0L12 12.39l2.37-2.37a.75.75 0 1 1 1.06 1.06l-2.5 2.5c-.272.273-.631.37-.93.37-.299 0-.658-.097-.93-.37l-2.5-2.5a.75.75 0 0 1 0-1.06Z", "key": "c977cbb9d2a6273af9d26586a6afd0212aad850e" }], ["path", { "fill": "currentColor", "d": "M6.538 9.17a.35.35 0 0 0-.11.162l-.003.01-2.807 10.127-.006.018c-.01.03-.013.103.05.188a.298.298 0 0 0 .238.125h16.2c.131 0 .21-.053.249-.102.034-.044.065-.118.03-.242l-.002-.006L17.57 9.324l-.005-.027c-.017-.084-.05-.123-.078-.145A.296.296 0 0 0 17.3 9.1h-1.2a.75.75 0 0 1 0-1.5h1.2c.82 0 1.543.514 1.73 1.373l2.791 10.071.001.003c.345 1.213-.561 2.253-1.722 2.253H3.9c-1.172 0-2.072-1.156-1.718-2.266L4.975 8.957C5.148 8.285 5.805 7.6 6.7 7.6h1.2a.75.75 0 1 1 0 1.5H6.7c-.044 0-.1.017-.162.07Z", "key": "d5873f1c04926f9fb64766abf27a686449085bb9" }]]);
const Message = createMeisterIcons("message", [["path", { "fill": "currentColor", "d": "M7 2.405a4.762 4.762 0 0 0-4.75 4.75v7A4.762 4.762 0 0 0 7 18.905h2.15l1.855 2.208c.278.384.698.507 1.057.477.339-.028.651-.187.868-.404l.053-.053 1.485-2.228H17a4.762 4.762 0 0 0 4.75-4.75v-7A4.762 4.762 0 0 0 17 2.405H7Zm6.265 15.601a.75.75 0 0 1 .735-.6h3a3.262 3.262 0 0 0 3.25-3.25v-7A3.262 3.262 0 0 0 17 3.905H7a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.405h2.5a.748.748 0 0 1 .578.271l1.899 2.261 1.288-1.932Z", "key": "c5d344ab4af7389161463db2898dfe03470b3b02" }]]);
const MessageAdd = createMeisterIcons("message-add", [["path", { "fill": "currentColor", "d": "M2.25 7.155A4.762 4.762 0 0 1 7 2.405h5a.75.75 0 0 1 0 1.5H7a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.405h2.501a.748.748 0 0 1 .577.272l1.899 2.261 1.288-1.932a.75.75 0 0 1 .735-.6h3a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 1.5 0v4a4.762 4.762 0 0 1-4.75 4.75h-2.532l-1.485 2.227-.053.053c-.217.217-.53.376-.868.404a1.165 1.165 0 0 1-1.057-.477L9.15 18.905H7a4.762 4.762 0 0 1-4.75-4.75v-7ZM16 3.405a.75.75 0 0 1 .75.75v2.25H19a.75.75 0 0 1 0 1.5h-2.25v2.25a.75.75 0 0 1-1.5 0v-2.25H13a.75.75 0 0 1 0-1.5h2.25v-2.25a.75.75 0 0 1 .75-.75Z", "key": "176b1d60e329bfa78c28634c460eea53755ae041" }]]);
const MessageAlt = createMeisterIcons("message-alt", [["path", { "fill": "currentColor", "d": "M3.75 12A8.213 8.213 0 0 1 12 3.75 8.213 8.213 0 0 1 20.25 12c0 4.486-3.764 8.25-8.25 8.25A8.213 8.213 0 0 1 3.75 12Zm-1.5 0A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75H4c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255v-8Zm4.527 8.25H4c-.13 0-.18-.04-.195-.055-.015-.016-.055-.065-.055-.195v-2.777a9.713 9.713 0 0 0 3.027 3.027Z", "key": "3481ed894c590bbfccc273a08c78db3269dd629e" }]]);
const MessageAltB = createMeisterIcons("message-alt-b", [["path", { "fill": "currentColor", "d": "M6.138 6.122C4.66 7.697 3.75 9.715 3.75 12A8.213 8.213 0 0 0 12 20.25c2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12c0-2.274-1-4.39-2.381-5.87C16.295 4.656 14.28 3.75 12 3.75c-2.297 0-4.403.918-5.862 2.372ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82A9.713 9.713 0 0 1 2.25 12c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008Z", "key": "1554edbbefdd42e9561f54b6eb789dd7a50db3cc" }], ["path", { "fill": "currentColor", "d": "M12 21H4c-.5 0-1-.5-1-1v-8c0 4.9 4 9 9 9Z", "key": "9748f1fe159135615f59ed94778bd7fa4061af66" }], ["path", { "fill": "currentColor", "d": "M3.75 17.178V20c0 .006.01.075.093.157.082.082.15.093.157.093h2.815a9.864 9.864 0 0 1-3.065-3.072ZM2.25 12v8c0 .494.24.925.532 1.218.293.293.724.532 1.218.532h8v-1.5c-4.58 0-8.25-3.759-8.25-8.25h-1.5Z", "key": "6ac296bda8952b162eba2fd63cce61c122f64dcf" }]]);
const MessageB = createMeisterIcons("message-b", [["path", { "fill": "currentColor", "d": "M21 7.18v7c0 2.2-1.8 4-4 4h-3l-1.6 2.4c-.2.3-.6.3-.8.1l-2.1-2.5H7c-2.2 0-4-1.8-4-4v-7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "59a260ae8f53452ab81a88d907b86ef068a2dc5c" }], ["path", { "fill": "currentColor", "d": "M7 3.93a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.43h2.85l2.09 2.489 1.659-2.489H17a3.262 3.262 0 0 0 3.25-3.25v-7c0-1.873-1.452-3.25-3.25-3.25H7ZM2.25 7.18A4.762 4.762 0 0 1 7 2.43h10c2.602 0 4.75 2.024 4.75 4.75v7A4.762 4.762 0 0 1 17 18.93h-2.599l-1.377 2.067a1.278 1.278 0 0 1-1.954.214l-.023-.023L9.15 18.93H7a4.762 4.762 0 0 1-4.75-4.75v-7Z", "key": "6a7350ba363a4333e4200554da7ace0253330b60" }]]);
const MessageCircle = createMeisterIcons("message-circle", [["path", { "fill": "currentColor", "d": "M12 2.481c-4.814 0-8.75 3.936-8.75 8.75 0 2.124.75 4.169 2.1 5.691v3.51c0 .44.24.796.59.97.31.156.684.156.995 0l.021-.01 2.853-1.657a9.526 9.526 0 0 0 2.191.246c4.814 0 8.75-3.936 8.75-8.75s-3.936-8.75-8.75-8.75ZM9.323 18.283 6.85 19.72v-2.613a.75.75 0 0 0-.12-.905c-1.25-1.25-1.98-3.055-1.98-4.97 0-3.986 3.264-7.25 7.25-7.25s7.25 3.264 7.25 7.25-3.264 7.25-7.25 7.25a7.776 7.776 0 0 1-2.094-.27c-.002-.002-.005-.002-.007-.003.183.05.347.17.45.347m-1.026-.272.003-.002-.003.002Z", "key": "7a9a71785c52c48dc04842d597aa6a40f98eeee2" }]]);
const MessageCircleAdd = createMeisterIcons("message-circle-add", [["path", { "fill": "currentColor", "d": "M3.25 11.231c0-4.814 3.936-8.75 8.75-8.75s8.75 3.936 8.75 8.75c0 4.815-3.936 8.75-8.75 8.75a9.273 9.273 0 0 1-2.506-.329.75.75 0 0 1 .412-1.442 7.776 7.776 0 0 0 2.094.271c3.986 0 7.25-3.264 7.25-7.25s-3.264-7.25-7.25-7.25-7.25 3.264-7.25 7.25c0 1.915.73 3.72 1.98 4.97a.75.75 0 0 1-1.06 1.06c-1.55-1.55-2.42-3.744-2.42-6.03Z", "key": "56abb069e995dc92fab9644f93cfcc38f6ca89e3" }], ["path", { "fill": "currentColor", "d": "M6.1 15.981a.75.75 0 0 1 .75.75v2.988l2.473-1.436a.75.75 0 1 1 .754 1.297l-3.12 1.812-.022.01a1.12 1.12 0 0 1-.995 0 1.067 1.067 0 0 1-.59-.97v-3.7a.75.75 0 0 1 .75-.75ZM8.25 10.8a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "5ad00b548fae86430ebe7587ff171a765fed95a6" }], ["path", { "fill": "currentColor", "d": "M12 7.05a.75.75 0 0 1 .75.75v6a.75.75 0 1 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "8e0c82eae3481c62af031b3c87fd21dd2adbf9b2" }]]);
const MessageCircleAddB = createMeisterIcons("message-circle-add-b", [["path", { "fill": "currentColor", "d": "M9.781 19.313c.7.2 1.419-.082 2.219-.082 4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8c0 2.1.881 4.482 2.281 5.882", "key": "afbf0ca10ca1ce0aaa51fc190a62d546ee0cd445" }], ["path", { "fill": "currentColor", "d": "M3.25 11.231c0-4.814 3.936-8.75 8.75-8.75s8.75 3.936 8.75 8.75c0 4.815-3.936 8.75-8.75 8.75a9.273 9.273 0 0 1-2.506-.329.75.75 0 0 1 .412-1.442 7.776 7.776 0 0 0 2.094.271c3.986 0 7.25-3.264 7.25-7.25s-3.264-7.25-7.25-7.25-7.25 3.264-7.25 7.25c0 1.915.73 3.72 1.98 4.97a.75.75 0 0 1-1.06 1.06c-1.55-1.55-2.42-3.744-2.42-6.03Z", "key": "b56d15e7e7e30fb81fc1db266414ae1101e0ca6e" }], ["path", { "fill": "currentColor", "d": "m9.7 18.931-3.1 1.8c-.2.1-.5 0-.5-.3v-3.7", "key": "3861bd9bc0f29cde0a5a7b53ca43ae3e7313f741" }], ["path", { "fill": "currentColor", "d": "M6.1 15.981a.75.75 0 0 1 .75.75v2.988l2.473-1.436a.75.75 0 0 1 .754 1.297l-3.12 1.812-.022.01a1.12 1.12 0 0 1-.995 0 1.067 1.067 0 0 1-.59-.97v-3.7a.75.75 0 0 1 .75-.75Z", "key": "8f3d675354e6cb0cff6f37ce787253ece41ad665" }], ["path", { "fill": "#fff", "d": "M11.986 7.317a.75.75 0 0 1 .75.75v6.08a.75.75 0 0 1-1.5 0v-6.08a.75.75 0 0 1 .75-.75Z", "key": "b671e8cd6295a02fc243f998d42bcf2dcd51fc63" }], ["path", { "fill": "#fff", "d": "M15.777 11.107a.75.75 0 0 1-.75.75H8.945a.75.75 0 0 1 0-1.5h6.082a.75.75 0 0 1 .75.75Z", "key": "66abd2a34788497c16969c76fa914cf561fca7f9" }]]);
const MessageCircleB = createMeisterIcons("message-circle-b", [["path", { "fill": "currentColor", "d": "M9.7 18.931c.7.2 1.5.3 2.3.3 4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8c0 2.1.8 4.1 2.2 5.5", "key": "27b02902397a36678e0a6545b2eab282e5a9f2e0" }], ["path", { "fill": "currentColor", "d": "M3.25 11.231c0-4.814 3.936-8.75 8.75-8.75s8.75 3.936 8.75 8.75c0 4.815-3.936 8.75-8.75 8.75a9.273 9.273 0 0 1-2.506-.329.75.75 0 0 1 .412-1.442 7.776 7.776 0 0 0 2.094.271c3.986 0 7.25-3.264 7.25-7.25s-3.264-7.25-7.25-7.25-7.25 3.264-7.25 7.25c0 1.915.73 3.72 1.98 4.97a.75.75 0 0 1-1.06 1.06c-1.55-1.55-2.42-3.744-2.42-6.03Z", "key": "35bd3e0f787ead89af707c7765b4eb97de50a65f" }], ["path", { "fill": "currentColor", "d": "m9.7 18.931-3.1 1.8c-.2.1-.5 0-.5-.3v-3.7", "key": "e07aa8080d46bc3c09c618b1338e6b30850e221c" }], ["path", { "fill": "currentColor", "d": "M6.1 15.981a.75.75 0 0 1 .75.75v2.988l2.473-1.436a.75.75 0 0 1 .754 1.297l-3.12 1.812-.022.01a1.12 1.12 0 0 1-.995 0 1.067 1.067 0 0 1-.59-.97v-3.7a.75.75 0 0 1 .75-.75Z", "key": "3e960c29f86e4994b921fcfa9bbfc0ccb02f53e1" }]]);
const MessageCircleCross = createMeisterIcons("message-circle-cross", [["path", { "fill": "currentColor", "d": "M3.25 11.231c0-4.814 3.936-8.75 8.75-8.75s8.75 3.936 8.75 8.75c0 4.815-3.936 8.75-8.75 8.75a9.273 9.273 0 0 1-2.506-.329.75.75 0 0 1 .412-1.442 7.776 7.776 0 0 0 2.094.271c3.986 0 7.25-3.264 7.25-7.25s-3.264-7.25-7.25-7.25-7.25 3.264-7.25 7.25c0 1.915.73 3.72 1.98 4.97a.75.75 0 0 1-1.06 1.06c-1.55-1.55-2.42-3.744-2.42-6.03Z", "key": "79922385c23e9437a4c16e148025d588fbb647e4" }], ["path", { "fill": "currentColor", "d": "M6.1 15.981a.75.75 0 0 1 .75.75v2.988l2.473-1.436a.75.75 0 1 1 .754 1.297l-3.12 1.812-.022.01a1.12 1.12 0 0 1-.995 0 1.067 1.067 0 0 1-.59-.97v-3.7a.75.75 0 0 1 .75-.75ZM9.27 8.3a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 1 1-1.06 1.061l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "76a98b5d8989b42109727bc59a4a4d9eca4e81b4" }], ["path", { "fill": "currentColor", "d": "M14.63 8.3a.75.75 0 0 1 0 1.061l-4.3 4.3a.75.75 0 0 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "6a4f8a0ba5700caa2e8225e1ef0dcc5172a8c7d7" }]]);
const MessageCircleCrossB = createMeisterIcons("message-circle-cross-b", [["path", { "fill": "currentColor", "d": "M9.7 18.931c.7.2 1.5.3 2.3.3 4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8c0 2.1.8 4.1 2.2 5.5", "key": "23e836ae0e75ea2c6a33dc82dd4b2b31791f1e00" }], ["path", { "fill": "currentColor", "d": "M3.25 11.231c0-4.814 3.936-8.75 8.75-8.75s8.75 3.936 8.75 8.75c0 4.815-3.936 8.75-8.75 8.75a9.273 9.273 0 0 1-2.506-.329.75.75 0 0 1 .412-1.442 7.776 7.776 0 0 0 2.094.271c3.986 0 7.25-3.264 7.25-7.25s-3.264-7.25-7.25-7.25-7.25 3.264-7.25 7.25c0 1.915.73 3.72 1.98 4.97a.75.75 0 0 1-1.06 1.06c-1.55-1.55-2.42-3.744-2.42-6.03Z", "key": "31ce2a71745214469fecfbb5e183ca9da48a86bf" }], ["path", { "fill": "currentColor", "d": "m9.7 18.931-3.1 1.8c-.2.1-.4 0-.4-.3v-3.7", "key": "a88c47c90955923898d32910f03f23c7aa89bce3" }], ["path", { "fill": "currentColor", "d": "M6.2 15.981a.75.75 0 0 1 .75.75v2.93l2.373-1.378a.75.75 0 1 1 .754 1.297l-3.12 1.812-.022.01c-.273.137-.67.19-1.026-.047-.353-.235-.459-.62-.459-.924v-3.7a.75.75 0 0 1 .75-.75Z", "key": "7b6710b88ece957dc50fc3a52afdb18a17bfa951" }], ["path", { "fill": "#fff", "d": "M9.27 8.301a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 0 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "9fbd7ffa0533f7242bb3881e1e43215fb835e518" }], ["path", { "fill": "#fff", "d": "M14.63 8.301a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 1 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "cabdf96e14fbe63673c8f01fafdd8db0b37a7ba7" }]]);
const MessageCode = createMeisterIcons("message-code", [["path", { "fill": "currentColor", "d": "M2.25 7.155A4.762 4.762 0 0 1 7 2.405h5a.75.75 0 0 1 0 1.5H7a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.405h2.501a.748.748 0 0 1 .577.272l1.899 2.261 1.288-1.932a.75.75 0 0 1 .735-.6h3a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 1.5 0v4a4.762 4.762 0 0 1-4.75 4.75h-2.532l-1.485 2.227-.053.053c-.217.217-.53.376-.868.404a1.165 1.165 0 0 1-1.057-.477L9.15 18.905H7a4.762 4.762 0 0 1-4.75-4.75v-7Zm13.12-1.43a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03 0 .401-.174.76-.445 1.03l-1.4 1.4a.75.75 0 1 1-1.06-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64 1.16a.75.75 0 1 0-1.06-1.06l-1.4 1.4c-.27.27-.445.63-.445 1.03 0 .401.174.76.445 1.03l1.4 1.4a.75.75 0 0 0 1.06-1.06l-1.37-1.37 1.37-1.37Z", "key": "9f74c648cdab1ca68fcbf0697b6ee86ef05e4bbc" }]]);
const MessageCross = createMeisterIcons("message-cross", [["path", { "fill": "currentColor", "d": "M2.25 7.155A4.762 4.762 0 0 1 7 2.405h5a.75.75 0 0 1 0 1.5H7a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.405h2.501a.748.748 0 0 1 .577.272l1.899 2.261 1.288-1.932a.75.75 0 0 1 .735-.6h3a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 1.5 0v4a4.762 4.762 0 0 1-4.75 4.75h-2.532l-1.485 2.227-.053.053c-.217.217-.53.376-.868.404a1.165 1.165 0 0 1-1.057-.477L9.15 18.905H7a4.762 4.762 0 0 1-4.75-4.75v-7Zm16.38-2.73a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 1 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "53e1cfe9795afc8cb4adf26914b249235c76747b" }]]);
const MessageHeart = createMeisterIcons("message-heart", [["path", { "fill": "currentColor", "d": "M10.6 9.481a.907.907 0 0 0-.67.28c-.307.308-.307.933 0 1.24l.194.193 1.924 1.829 1.882-1.883c.244-.334.32-.56.32-.709a.907.907 0 0 0-.28-.67c-.308-.307-.933-.307-1.24 0l-.73.73-.691-.69c-.334-.244-.56-.32-.709-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.295-1.73.72-.893.893-.893 2.468 0 3.36l.206.207 1.96 1.861c.24.308.597.477.976.477.396 0 .753-.18 1.018-.444l2.038-2.038.032-.043c.332-.443.65-1.005.65-1.65 0-.72-.294-1.305-.72-1.73-.796-.797-2.135-.883-3.05-.258Zm-.03 4.675Z", "key": "d6c91f0ece4cf1333a3fa1811af733ef6c847807" }], ["path", { "fill": "currentColor", "d": "M3.25 11.231c0-4.814 3.936-8.75 8.75-8.75s8.75 3.936 8.75 8.75-3.936 8.75-8.75 8.75a9.273 9.273 0 0 1-2.506-.329.75.75 0 0 1 .412-1.442 7.776 7.776 0 0 0 2.094.271c3.986 0 7.25-3.264 7.25-7.25s-3.264-7.25-7.25-7.25-7.25 3.264-7.25 7.25c0 1.915.73 3.72 1.98 4.97a.75.75 0 0 1-1.06 1.06c-1.55-1.55-2.42-3.744-2.42-6.03Z", "key": "be327a39cfc2d58e4746f443a644fc9e97d9e498" }], ["path", { "fill": "currentColor", "d": "M6.1 15.981a.75.75 0 0 1 .75.75v2.988l2.473-1.436a.75.75 0 0 1 .754 1.297l-3.12 1.812-.022.01a1.121 1.121 0 0 1-.995 0 1.067 1.067 0 0 1-.59-.97v-3.7a.75.75 0 0 1 .75-.75Z", "key": "68ae6324a9fa64cf521442422493a2a8170a35e1" }]]);
const MessageMinimal = createMeisterIcons("message-minimal", [["path", { "fill": "currentColor", "d": "M3.75 12c0-2.285.91-4.303 2.388-5.878C7.598 4.668 9.703 3.75 12 3.75c2.285 0 4.303.91 5.878 2.388C19.332 7.598 20.25 9.703 20.25 12c0 2.285-.91 4.303-2.388 5.878-1.46 1.454-3.565 2.372-5.862 2.372H4c-.13 0-.18-.04-.195-.055-.015-.016-.055-.065-.055-.195v-8Zm-1.5 0c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008C6.81 3.329 9.3 2.25 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.008.008.008.008c1.741 1.74 2.82 4.23 2.82 6.93 0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82H4c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255v-8Z", "key": "b1b8ed34c3de8799dc44596447942f3b5b5f79df" }]]);
const MessageMinimalAdd = createMeisterIcons("message-minimal-add", [["path", { "fill": "currentColor", "d": "M6.138 6.122C7.598 4.668 9.703 3.75 12 3.75a.75.75 0 0 0 0-1.5c-2.699 0-5.19 1.079-6.93 2.82l-.008.008-.008.008C3.337 6.91 2.25 9.289 2.25 12v8c0 .47.16.92.495 1.255.334.335.785.495 1.255.495h8c2.698 0 5.19-1.079 6.93-2.82l.008-.008.008-.008C20.663 17.09 21.75 14.711 21.75 12a.75.75 0 0 0-1.5 0c0 2.285-.91 4.303-2.388 5.878-1.46 1.454-3.565 2.372-5.862 2.372H4c-.13 0-.18-.04-.195-.055-.015-.016-.055-.065-.055-.195v-8c0-2.285.91-4.303 2.388-5.878ZM15 5.25a.75.75 0 0 1 .75.75v2.25H18a.75.75 0 0 1 0 1.5h-2.25V12a.75.75 0 0 1-1.5 0V9.75H12a.75.75 0 0 1 0-1.5h2.25V6a.75.75 0 0 1 .75-.75Z", "key": "eeb627917524ef76d3bb5d51b75a89137c53c8d4" }]]);
const MessageMinimalB = createMeisterIcons("message-minimal-b", [["path", { "fill": "currentColor", "d": "M21 12c0 2.5-1 4.7-2.6 6.4C16.8 20 14.5 21 12 21H4c-.5 0-1-.5-1-1v-8c0-2.5 1-4.7 2.6-6.4C7.2 4 9.5 3 12 3c2.5 0 4.7 1 6.4 2.6C19.9 7.2 21 9.5 21 12Z", "key": "c458e58d77fb023188b609a0e1929c421bbb4875" }], ["path", { "fill": "currentColor", "d": "M6.138 6.122C4.66 7.697 3.75 9.715 3.75 12v8c0 .006.01.075.093.157.082.082.15.093.157.093h8c2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12c0-2.274-1-4.39-2.381-5.87C16.295 4.656 14.28 3.75 12 3.75c-2.297 0-4.403.918-5.862 2.372ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82H4c-.494 0-.925-.24-1.218-.532-.293-.293-.532-.724-.532-1.218v-8c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008Z", "key": "16dc392249273bdfe580fba96c9a302d36be0d13" }]]);
const MessageMinimalCheck = createMeisterIcons("message-minimal-check", [["path", { "fill": "currentColor", "d": "M12 3.75c-2.297 0-4.403.918-5.862 2.372C4.66 7.697 3.75 9.715 3.75 12v8c0 .13.04.18.055.195.016.015.065.055.195.055h8c2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12a.75.75 0 0 1 1.5 0c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82H4c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255v-8c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008C6.81 3.329 9.3 2.25 12 2.25a.75.75 0 0 1 0 1.5Zm5.524 4.787a.75.75 0 0 0-1.048-1.074l-3.72 3.63L11.6 9.55a.75.75 0 1 0-1.2.9l1.532 2.043.038.037c.222.223.506.295.73.295.222 0 .504-.071.726-.29l4.098-3.998Z", "key": "54774d0950cd4bfc9d44cf01e100218d515f5f9a" }]]);
const MessageMinimalCross = createMeisterIcons("message-minimal-cross", [["path", { "fill": "currentColor", "d": "M6.138 6.122C7.598 4.668 9.703 3.75 12 3.75a.75.75 0 0 0 0-1.5c-2.699 0-5.19 1.079-6.93 2.82l-.008.008-.008.008C3.337 6.91 2.25 9.289 2.25 12v8c0 .47.16.92.495 1.255.334.335.785.495 1.255.495h8c2.698 0 5.19-1.079 6.93-2.82l.008-.008.008-.008C20.663 17.09 21.75 14.711 21.75 12a.75.75 0 0 0-1.5 0c0 2.285-.91 4.303-2.388 5.878-1.46 1.454-3.565 2.372-5.862 2.372H4c-.13 0-.18-.04-.195-.055-.015-.016-.055-.065-.055-.195v-8c0-2.285.91-4.303 2.388-5.878Zm11.492.148a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 1 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "6aa9c0f9231c052652a870825de9350f369a3eff" }]]);
const MessageMinimalHeart = createMeisterIcons("message-minimal-heart", [["path", { "fill": "currentColor", "d": "M15.95 7.782V9.51l-1.44-1.44c-.335-.244-.56-.32-.71-.32a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l.2.2 1.72 1.72 1.88-1.88c.244-.335.32-.56.32-.71 0-.203-.123-.512-.28-.67-.245-.245-.693-.294-1.02-.148Zm-1 3.505v-.001Zm.048-4.687c.913-.612 2.24-.522 3.032.27a2.59 2.59 0 0 1 .72 1.73c0 .645-.318 1.207-.65 1.65l-.032.043-2.038 2.037a1.45 1.45 0 0 1-1.018.445c-.383 0-.742-.172-.984-.486L12.27 10.53l-.2-.2c-.893-.893-.893-2.467 0-3.36a2.406 2.406 0 0 1 1.73-.72c.442 0 .845.15 1.198.35ZM21 11.25a.75.75 0 0 1 .75.75c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-1.74 1.741-4.232 2.82-6.93 2.82a.75.75 0 0 1 0-1.5c2.297 0 4.403-.918 5.862-2.372C19.34 16.303 20.25 14.285 20.25 12a.75.75 0 0 1 .75-.75ZM6.138 6.122C7.598 4.668 9.703 3.75 12 3.75a.75.75 0 0 0 0-1.5c-2.699 0-5.19 1.079-6.93 2.82l-.008.008-.008.008C3.337 6.91 2.25 9.289 2.25 12a.75.75 0 0 0 1.5 0c0-2.285.91-4.303 2.388-5.878Z", "key": "d43bc718f9c9bfe7c4620040f4de21deb0bf080b" }], ["path", { "fill": "currentColor", "d": "M3 11.25a.75.75 0 0 1 .75.75v8c0 .13.04.18.055.195.016.015.065.055.195.055h8a.75.75 0 0 1 0 1.5H4c-.47 0-.92-.16-1.255-.495-.335-.334-.495-.785-.495-1.255v-8a.75.75 0 0 1 .75-.75Z", "key": "bd594963cf32063df9facc189af79818666a6df0" }]]);
const MessageSearch = createMeisterIcons("message-search", [["path", { "fill": "currentColor", "d": "M2.25 7.155A4.762 4.762 0 0 1 7 2.405h5a.75.75 0 0 1 0 1.5H7a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.405h2.501a.748.748 0 0 1 .577.272l1.899 2.261 1.288-1.932a.75.75 0 0 1 .735-.6h3a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 1.5 0v4a4.762 4.762 0 0 1-4.75 4.75h-2.532l-1.485 2.227-.053.053c-.217.217-.53.376-.868.404a1.165 1.165 0 0 1-1.057-.477L9.15 18.905H7a4.762 4.762 0 0 1-4.75-4.75v-7Zm10.95-.35a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1Zm-4.55 3.05a4.55 4.55 0 1 1 1.922 3.715l-1.024 1.097a.75.75 0 1 1-1.096-1.024l1.055-1.13a4.53 4.53 0 0 1-.857-2.658Z", "key": "ef9b09e93cca6b3e8ba8263dca09ac11aa56678a" }]]);
const MessageSearchB = createMeisterIcons("message-search-b", [["path", { "fill": "currentColor", "d": "M2.25 7.155A4.762 4.762 0 0 1 7 2.405h5a.75.75 0 0 1 0 1.5H7a3.262 3.262 0 0 0-3.25 3.25v7A3.262 3.262 0 0 0 7 17.405h2.5a.75.75 0 0 1 0 1.5H7a4.762 4.762 0 0 1-4.75-4.75v-7ZM21 9.405a.75.75 0 0 1 .75.75v4a4.762 4.762 0 0 1-4.75 4.75h-3a.75.75 0 0 1 0-1.5h3a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 .75-.75Z", "key": "187a9d94239c39045aeaf8ea3d79f8c519123b7f" }], ["path", { "fill": "currentColor", "d": "M9.018 17.581a.75.75 0 0 1 1.056.092l1.903 2.265 1.399-2.099a.75.75 0 1 1 1.248.832l-1.641 2.462-.053.053c-.217.217-.53.376-.868.404a1.165 1.165 0 0 1-1.057-.477l-2.08-2.475a.75.75 0 0 1 .093-1.057Zm4.182-3.926a3.8 3.8 0 1 0 0-7.6 3.8 3.8 0 0 0 0 7.6Z", "key": "9fbff6aa1f46d4814cf80163601b6d6e67e05a41" }], ["path", { "fill": "currentColor", "d": "M13.2 6.805a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1Zm-4.55 3.05a4.55 4.55 0 1 1 9.1 0 4.55 4.55 0 0 1-9.1 0Z", "key": "5831a771499d23da602983d13af9541189b47dbe" }], ["path", { "fill": "currentColor", "d": "M10.912 12.107a.75.75 0 0 1 .036 1.06l-1.4 1.5a.75.75 0 0 1-1.096-1.023l1.4-1.5a.75.75 0 0 1 1.06-.037Z", "key": "c684a1c31d5c252dabbca5d3d23646e5236121f6" }]]);
const MessageUser = createMeisterIcons("message-user", [["path", { "fill": "currentColor", "d": "M7 2.405a4.762 4.762 0 0 0-4.75 4.75v7A4.762 4.762 0 0 0 7 18.905h2.15l1.855 2.208c.278.384.698.507 1.057.477.339-.028.651-.187.868-.404l.053-.053 1.485-2.228H17a4.762 4.762 0 0 0 4.75-4.75v-7A4.762 4.762 0 0 0 17 2.405H7Zm6.265 15.601a.75.75 0 0 1 .735-.6h2.89c-.613-1.872-2.283-3.275-4.273-3.551a3.771 3.771 0 0 1-1.318-.015c-2.04.236-3.764 1.657-4.389 3.564l.09.001h2.501a.748.748 0 0 1 .577.272l1.899 2.261 1.288-1.932Zm-7.805-.992a3.26 3.26 0 0 1-1.71-2.859v-7A3.262 3.262 0 0 1 7 3.905h10a3.262 3.262 0 0 1 3.25 3.25v7a3.263 3.263 0 0 1-1.883 2.947c-.57-1.91-1.98-3.452-3.777-4.235a3.75 3.75 0 1 0-5.241-.059c-1.835.752-3.287 2.288-3.889 4.206Zm5.939-4.69a2.251 2.251 0 1 1 1.154.013 6.714 6.714 0 0 0-1.155-.013Z", "key": "4210f0597c6079c5bc0e1723fcf1326fede57b69" }]]);
const MessageUserB = createMeisterIcons("message-user-b", [["path", { "fill": "currentColor", "d": "M17.8 18.038c-.3.1-.6.1-.9.1h-3l-1.6 2.4c-.2.3-.6.3-.8 0l-2.1-2.5H7c-.3 0-.6 0-.9-.1.5-2.8 3-4.9 5.9-4.9 2.9 0 5.3 2.3 5.8 5Z", "key": "4754455e75773a4315a8b683b1665c7733952fae" }], ["path", { "fill": "currentColor", "d": "M7.044 17.288h2.705l2.128 2.532 1.622-2.433h3.353c-.713-2.024-2.636-3.6-4.852-3.6-2.26 0-4.24 1.46-4.956 3.5Zm-1.682.518c.564-3.161 3.378-5.519 6.638-5.519 3.304 0 5.98 2.602 6.537 5.614l.12.642-.62.206c-.417.139-.823.139-1.105.139h-2.631l-1.377 2.065a1.217 1.217 0 0 1-2.02.041L9.05 18.788H6.969c-.282 0-.688 0-1.105-.139l-.615-.205.114-.638Z", "key": "d7af7aed3035bcd3f9e7516973ad37c3b9b505e1" }], ["path", { "fill": "currentColor", "d": "M7 3.988a3.262 3.262 0 0 0-3.25 3.25v7c0 1.29.734 2.404 1.82 2.927a6.764 6.764 0 0 1 3.859-4.167 3.732 3.732 0 0 1-1.179-2.76c0-2.115 1.636-3.75 3.75-3.75s3.75 1.635 3.75 3.75c0 1.106-.448 2.082-1.179 2.76a6.764 6.764 0 0 1 3.86 4.167 3.231 3.231 0 0 0 1.819-2.927v-7c0-1.874-1.452-3.25-3.25-3.25H7Zm5 8.5c1.286 0 2.25-.965 2.25-2.25 0-1.286-.964-2.25-2.25-2.25s-2.25.964-2.25 2.25c0 1.285.964 2.25 2.25 2.25Zm0 1.5c2.54 0 4.726 1.842 5.162 4.281l.137.77.764-.17a4.721 4.721 0 0 0 3.687-4.631v-7c0-2.727-2.148-4.75-4.75-4.75H7a4.762 4.762 0 0 0-4.75 4.75v7a4.721 4.721 0 0 0 3.687 4.632l.764.17.137-.77c.436-2.44 2.622-4.282 5.162-4.282Z", "key": "30adae83575ef3938f6fbb529847a118c1542307" }], ["path", { "fill": "currentColor", "d": "M12 13.238a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "34e537d964f03374ba8d71af1bbbb507de1b0659" }], ["path", { "fill": "currentColor", "d": "M12 7.988a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "af5ee647868b87a8024aadbf46f7cae3a1cdc665" }]]);
const Meter = createMeisterIcons("meter", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "f7a67693ef6fed3836a3c8a25db8d3d782d63afb" }], ["path", { "fill": "currentColor", "d": "M15.53 8.47a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l3-3a.75.75 0 0 1 1.06 0Z", "key": "ab3455b471d99a2df63893ee87c36c9178ece1ff" }]]);
const MeterB = createMeisterIcons("meter-b", [["path", { "fill": "currentColor", "d": "M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z", "key": "14fd9d230d114ad9ef515eef9bdcf3fa2b0dd3f3" }], ["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "097715b74612afc708436efba1005342039c8ca8" }], ["path", { "fill": "#fff", "d": "M15.53 8.47a.75.75 0 0 1 0 1.06l-3 3a.75.75 0 1 1-1.06-1.06l3-3a.75.75 0 0 1 1.06 0Z", "key": "94f418287541375e9993480bb64195d80b5b5967" }]]);
const Mic = createMeisterIcons("mic", [["path", { "fill": "currentColor", "d": "M9.75 6.5c0-1.286.964-2.25 2.25-2.25s2.25.964 2.25 2.25v4c0 1.186-1.064 2.25-2.25 2.25-1.286 0-2.25-.964-2.25-2.25v-4ZM12 2.75c-2.114 0-3.75 1.636-3.75 3.75v4c0 2.114 1.636 3.75 3.75 3.75 2.014 0 3.75-1.736 3.75-3.75v-4c0-2.114-1.636-3.75-3.75-3.75Zm6.626 8.938a.75.75 0 1 0-1.452-.376c-.623 2.402-2.649 4.138-5.174 4.138a5.265 5.265 0 0 1-5.168-4.113.75.75 0 1 0-1.464.326 6.758 6.758 0 0 0 5.882 5.247v2.84H9a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-2.25v-2.84c2.914-.316 5.16-2.457 5.876-5.222Z", "key": "873e8617fbfdb8ffc728e75ad2dfa8b9c159cb34" }]]);
const MicAlt = createMeisterIcons("mic-alt", [["path", { "fill": "currentColor", "d": "M12 5.75c-1.286 0-2.25.964-2.25 2.25v4c0 1.286.964 2.25 2.25 2.25.927 0 1.78-.65 2.107-1.5H12a.75.75 0 0 1 0-1.5h2.25v-1.5H12a.75.75 0 0 1 0-1.5h2.25V8c0-1.286-.964-2.25-2.25-2.25ZM15.75 12V8c0-2.114-1.636-3.75-3.75-3.75S8.25 5.886 8.25 8v4c0 1.856 1.261 3.344 3 3.68v2.57H9a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-2.25v-2.58c1.677-.365 3-1.911 3-3.67Z", "key": "038ccb37b915c433053d149446443b4d5e3840d7" }]]);
const MicB = createMeisterIcons("mic-b", [["path", { "fill": "currentColor", "d": "M12.1 13.5c-1.7 0-3-1.3-3-3v-4c0-1.7 1.3-3 3-3s3 1.3 3 3v4c0 1.6-1.4 3-3 3Z", "key": "24a6c4b72e0ee3afc3accbab689d5414be2a73ae" }], ["path", { "fill": "currentColor", "d": "M12.1 4.25c-1.286 0-2.25.964-2.25 2.25v4c0 1.286.964 2.25 2.25 2.25 1.186 0 2.25-1.064 2.25-2.25v-4c0-1.286-.964-2.25-2.25-2.25ZM8.35 6.5c0-2.114 1.636-3.75 3.75-3.75s3.75 1.636 3.75 3.75v4c0 2.014-1.736 3.75-3.75 3.75-2.114 0-3.75-1.636-3.75-3.75v-4Z", "key": "e7a95e0e6aabffb338b8df5088dfd014097b8efe" }], ["path", { "fill": "currentColor", "d": "M6.037 10.768a.75.75 0 0 1 .895.57C7.458 13.705 9.563 15.45 12 15.45s4.542-1.744 5.068-4.113a.75.75 0 0 1 1.464.326c-.674 3.031-3.369 5.287-6.532 5.287s-5.858-2.255-6.532-5.287a.75.75 0 0 1 .57-.895Z", "key": "fabaae389c39db5bdeabe4d931b4146e8ffedff4" }], ["path", { "fill": "currentColor", "d": "M12.1 15.75a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "f41e1f45824ca93a2e42abfb74dc4afc1ee31921" }], ["path", { "fill": "currentColor", "d": "M8.35 20.5a.75.75 0 0 1 .75-.75h6a.75.75 0 1 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "ae2ca227d7c1e1abf9efe70d21c14b08b8bdd589" }]]);
const MicCircle = createMeisterIcons("mic-circle", [["path", { "fill": "currentColor", "d": "M3.75 12A8.213 8.213 0 0 1 12 3.75 8.213 8.213 0 0 1 20.25 12 8.213 8.213 0 0 1 12 20.25c-4.58 0-8.25-3.759-8.25-8.25ZM12 2.25A9.713 9.713 0 0 0 2.25 12c0 5.309 4.33 9.75 9.75 9.75A9.713 9.713 0 0 0 21.75 12 9.713 9.713 0 0 0 12 2.25ZM10.85 9.4c0-.66.538-1.15 1.15-1.15.66 0 1.15.538 1.15 1.15V12c0 .586-.564 1.15-1.15 1.15-.66 0-1.15-.538-1.15-1.15V9.4ZM12 6.75c-1.388 0-2.65 1.11-2.65 2.65V12a2.66 2.66 0 0 0 1.9 2.545v1.205H10a.75.75 0 0 0 0 1.5h3.9a.75.75 0 0 0 0-1.5h-1.15v-1.217c1.074-.34 1.9-1.377 1.9-2.533V9.4c0-1.388-1.11-2.65-2.65-2.65Z", "key": "f41f0fb7a79f9df4b7f7499848d31a8fd59d777a" }]]);
const MicCircleB = createMeisterIcons("mic-circle-b", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "d7688ed4568e6fe4c67e54ac43a428e78b01bd23" }], ["path", { "fill": "currentColor", "d": "M12 13.9c-1.1 0-1.9-.9-1.9-1.9V9.4c0-1.1.9-1.9 1.9-1.9 1.1 0 1.9.9 1.9 1.9V12c0 1-.9 1.9-1.9 1.9Z", "key": "9d2a3f39a44e459d3546fc185a7a981aa703d80e" }], ["path", { "fill": "currentColor", "d": "M12 8.25c-.612 0-1.15.49-1.15 1.15V12c0 .612.49 1.15 1.15 1.15.586 0 1.15-.564 1.15-1.15V9.4c0-.612-.49-1.15-1.15-1.15ZM9.35 9.4c0-1.54 1.262-2.65 2.65-2.65 1.54 0 2.65 1.262 2.65 2.65V12c0 1.414-1.236 2.65-2.65 2.65-1.54 0-2.65-1.262-2.65-2.65V9.4Z", "key": "3981dbcad33051b6a1caeaace9cece057b6fe825" }], ["path", { "fill": "currentColor", "d": "M11.9 13.15a.75.75 0 0 1 .75.75v2.6a.75.75 0 0 1-1.5 0v-2.6a.75.75 0 0 1 .75-.75Z", "key": "5912d2c866752f8198fcd5563ce74ec9fbe4e41f" }], ["path", { "fill": "currentColor", "d": "M9.25 16.5a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5H10a.75.75 0 0 1-.75-.75Z", "key": "8e4de84ba8c9b14a12d807d72de8df3ba3961aa3" }]]);
const MicCircleDashed = createMeisterIcons("mic-circle-dashed", [["path", { "fill": "currentColor", "d": "M12 2.25c-.65 0-1.286.064-1.902.186a.75.75 0 1 0 .291 1.471 8.294 8.294 0 0 1 3.222 0 .75.75 0 0 0 .291-1.471A9.794 9.794 0 0 0 12 2.25Zm5.418 1.643a.75.75 0 0 0-.835 1.246 8.3 8.3 0 0 1 2.278 2.278.75.75 0 1 0 1.246-.835 9.8 9.8 0 0 0-2.69-2.69ZM7.417 5.139a.75.75 0 0 0-.835-1.246 9.8 9.8 0 0 0-2.69 2.69.75.75 0 0 0 1.247.834 8.3 8.3 0 0 1 2.278-2.278Zm-3.51 5.25a.75.75 0 1 0-1.471-.291 9.794 9.794 0 0 0 0 3.804.75.75 0 0 0 1.471-.291 8.294 8.294 0 0 1 0-3.222Zm17.657-.291a.75.75 0 1 0-1.471.291 8.298 8.298 0 0 1 0 3.222.75.75 0 1 0 1.471.291 9.788 9.788 0 0 0 0-3.804Zm-1.457 7.32a.75.75 0 1 0-1.246-.835 8.301 8.301 0 0 1-2.278 2.278.75.75 0 1 0 .835 1.246 9.8 9.8 0 0 0 2.69-2.69ZM5.14 16.583a.75.75 0 0 0-1.246.835 9.8 9.8 0 0 0 2.69 2.69.75.75 0 1 0 .834-1.247 8.3 8.3 0 0 1-2.278-2.278Zm5.25 3.51a.75.75 0 1 0-.291 1.471 9.788 9.788 0 0 0 3.804 0 .75.75 0 1 0-.291-1.471 8.298 8.298 0 0 1-3.222 0ZM10.85 9.4c0-.66.538-1.15 1.15-1.15.66 0 1.15.538 1.15 1.15V12c0 .586-.564 1.15-1.15 1.15-.66 0-1.15-.538-1.15-1.15V9.4ZM12 6.75c-1.388 0-2.65 1.11-2.65 2.65V12a2.66 2.66 0 0 0 1.9 2.545v1.205H10a.75.75 0 0 0 0 1.5h3.9a.75.75 0 0 0 0-1.5h-1.15v-1.217c1.074-.34 1.9-1.377 1.9-2.533V9.4c0-1.388-1.11-2.65-2.65-2.65Z", "key": "71d2281601826b464b04fd112caf3e50eb1ba0b7" }]]);
const MicCircleDashedB = createMeisterIcons("mic-circle-dashed-b", [["path", { "fill": "currentColor", "d": "M10.098 2.436a9.794 9.794 0 0 1 3.804 0 .75.75 0 0 1-.291 1.471 8.294 8.294 0 0 0-3.222 0 .75.75 0 1 1-.291-1.471Zm6.28 1.663a.75.75 0 0 1 1.04-.206 9.8 9.8 0 0 1 2.69 2.69.75.75 0 0 1-1.247.834 8.3 8.3 0 0 0-2.278-2.278.75.75 0 0 1-.206-1.04Zm-8.755 0a.75.75 0 0 1-.206 1.04 8.3 8.3 0 0 0-2.278 2.278.75.75 0 0 1-1.246-.835 9.8 9.8 0 0 1 2.69-2.69.75.75 0 0 1 1.04.207ZM3.317 9.508a.75.75 0 0 1 .59.881 8.294 8.294 0 0 0 0 3.222.75.75 0 0 1-1.471.291 9.794 9.794 0 0 1 0-3.804.75.75 0 0 1 .88-.59Zm17.366 0a.75.75 0 0 1 .881.59 9.788 9.788 0 0 1 0 3.804.75.75 0 1 1-1.471-.291 8.298 8.298 0 0 0 0-3.222.75.75 0 0 1 .59-.881Zm-.782 6.87a.75.75 0 0 1 .206 1.04 9.8 9.8 0 0 1-2.69 2.69.75.75 0 0 1-.834-1.247 8.301 8.301 0 0 0 2.278-2.278.75.75 0 0 1 1.04-.206Zm-15.802 0a.75.75 0 0 1 1.04.205 8.3 8.3 0 0 0 2.278 2.278.75.75 0 1 1-.835 1.246 9.8 9.8 0 0 1-2.69-2.69.75.75 0 0 1 .207-1.04Zm5.409 4.305a.75.75 0 0 1 .881-.59 8.298 8.298 0 0 0 3.222 0 .75.75 0 1 1 .291 1.471 9.788 9.788 0 0 1-3.804 0 .75.75 0 0 1-.59-.88ZM12 13.9c-1.1 0-1.9-.9-1.9-1.9V9.4c0-1.1.9-1.9 1.9-1.9 1.1 0 1.9.9 1.9 1.9V12c0 1-.9 1.9-1.9 1.9Z", "key": "73e05637cdcebcf2435745c8cae787fc983a1042" }], ["path", { "fill": "currentColor", "d": "M12 8.25c-.612 0-1.15.49-1.15 1.15V12c0 .612.49 1.15 1.15 1.15.586 0 1.15-.564 1.15-1.15V9.4c0-.612-.49-1.15-1.15-1.15ZM9.35 9.4c0-1.54 1.262-2.65 2.65-2.65 1.54 0 2.65 1.262 2.65 2.65V12c0 1.414-1.236 2.65-2.65 2.65-1.54 0-2.65-1.262-2.65-2.65V9.4Z", "key": "1155aca1c8a20e52913163e1fa2d383324d1b04b" }], ["path", { "fill": "currentColor", "d": "M11.9 13.15a.75.75 0 0 1 .75.75v2.6a.75.75 0 0 1-1.5 0v-2.6a.75.75 0 0 1 .75-.75Z", "key": "dbaefd2554e067f5804c0641e9a6a0bc3255190f" }], ["path", { "fill": "currentColor", "d": "M9.25 16.5a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5H10a.75.75 0 0 1-.75-.75Z", "key": "61986f2e7ad7c7335cccf181e863ee6ece6e5267" }]]);
const MicEmpty = createMeisterIcons("mic-empty", [["path", { "fill": "currentColor", "d": "M12 5.75c-1.286 0-2.25.964-2.25 2.25v4c0 1.286.964 2.25 2.25 2.25 1.186 0 2.25-1.064 2.25-2.25V8c0-1.286-.964-2.25-2.25-2.25ZM15.75 12c0 1.759-1.323 3.305-3 3.67v2.58H15a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1 0-1.5h2.25v-2.57c-1.739-.336-3-1.824-3-3.68V8c0-2.114 1.636-3.75 3.75-3.75S15.75 5.886 15.75 8v4Z", "key": "bb226a2815be75d7b6225d0ddb10f56093bd2808" }]]);
const MicEmptyB = createMeisterIcons("mic-empty-b", [["path", { "fill": "currentColor", "d": "M12 15c-1.7 0-3-1.3-3-3V8c0-1.7 1.3-3 3-3s3 1.3 3 3v4c0 1.6-1.4 3-3 3Z", "key": "edbee5bf0cc772b44c2a2355d8be1141e3771249" }], ["path", { "fill": "currentColor", "d": "M12 5.75c-1.286 0-2.25.964-2.25 2.25v4c0 1.286.964 2.25 2.25 2.25 1.186 0 2.25-1.064 2.25-2.25V8c0-1.286-.964-2.25-2.25-2.25ZM8.25 8c0-2.114 1.636-3.75 3.75-3.75S15.75 5.886 15.75 8v4c0 2.014-1.736 3.75-3.75 3.75-2.114 0-3.75-1.636-3.75-3.75V8Z", "key": "e238386e4d3c2a8d3067150bfc5c3bcbe6d05702" }], ["path", { "fill": "currentColor", "d": "M12 14.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "d13b7751708c5b8be3505f53359168291829df52" }], ["path", { "fill": "currentColor", "d": "M8.25 19a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "e4e491de7f1bbfc7bf64d94084e5a419fd9c251c" }]]);
const Microphone = createMeisterIcons("microphone", [["path", { "fill": "currentColor", "d": "M11.21 8.996a.75.75 0 0 1 .115 1.054l-5.688 7.085a.239.239 0 0 0-.026.154.36.36 0 0 0 .03.111.179.179 0 0 0 .03.05l.853.853a.474.474 0 0 0 .422.032l7.025-5.64a.75.75 0 0 1 .939 1.17l-7.163 5.75-.071.036c-.617.309-1.427.323-2.086-.17l-.042-.033-.938-.937a1.778 1.778 0 0 1-.49-1.065 1.72 1.72 0 0 1 .32-1.216l.008-.01 5.708-7.11a.75.75 0 0 1 1.054-.114Z", "key": "0500c0153bccd2eeaa2964dd8465afc9c2f159f0" }], ["path", { "fill": "currentColor", "d": "M14.94 5.63a3.45 3.45 0 1 0 0 6.9 3.45 3.45 0 0 0 0-6.9ZM9.99 9.08a4.95 4.95 0 1 1 9.9 0 4.95 4.95 0 0 1-9.9 0Z", "key": "30d76fd40d9ba6294847aa79fa9f2e717b0a72c4" }]]);
const MicrophoneB = createMeisterIcons("microphone-b", [["path", { "fill": "currentColor", "d": "M11.21 8.946A.75.75 0 0 1 11.325 10l-5.688 7.085a.239.239 0 0 0-.026.154.36.36 0 0 0 .03.111.18.18 0 0 0 .03.05l.853.853a.474.474 0 0 0 .422.032l7.025-5.64a.75.75 0 0 1 .939 1.17l-7.163 5.75-.071.036c-.617.309-1.427.323-2.086-.17l-.042-.033-.938-.937a1.778 1.778 0 0 1-.49-1.065 1.72 1.72 0 0 1 .32-1.216l.008-.01 5.708-7.11a.75.75 0 0 1 1.054-.114Z", "key": "fa9046c87f697c71fff498bba278100f300c1c70" }], ["path", { "fill": "currentColor", "d": "M17.94 12.03c-1.6 1.6-4.3 1.6-5.9 0-1.6-1.6-1.7-4.3 0-5.9 1.6-1.6 4.3-1.6 5.9 0 1.6 1.6 1.6 4.2 0 5.9Z", "key": "3e73d62da823f8aa56396cafec6ab7f25ba8877f" }], ["path", { "fill": "currentColor", "d": "M17.41 6.66c-1.307-1.306-3.532-1.306-4.84 0l-.007.009-.009.008c-1.364 1.284-1.312 3.495.017 4.823 1.304 1.305 3.523 1.307 4.831.008 1.329-1.42 1.304-3.551.008-4.847Zm-5.892-1.068c1.894-1.885 5.063-1.882 6.953.008 1.901 1.902 1.879 4.965.015 6.944l-.007.009-.008.008c-1.893 1.893-5.068 1.893-6.961 0-1.87-1.87-2.019-5.052.008-6.969Z", "key": "9676f3128f15948c9e5b6dd63c01382019c6ba48" }]]);
const MicSquare = createMeisterIcons("mic-square", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v6c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25V9ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9Zm1.85 7.15c0-.66.538-1.15 1.15-1.15.66 0 1.15.538 1.15 1.15V12c0 .586-.564 1.15-1.15 1.15-.66 0-1.15-.538-1.15-1.15V9.4ZM12 6.75c-1.388 0-2.65 1.11-2.65 2.65V12a2.66 2.66 0 0 0 1.9 2.545v1.205H10a.75.75 0 0 0 0 1.5h3.9a.75.75 0 0 0 0-1.5h-1.15v-1.217c1.074-.34 1.9-1.377 1.9-2.533V9.4c0-1.388-1.11-2.65-2.65-2.65Z", "key": "a0f9adf8a0faffc9397442cea3379c1a4915fda7" }]]);
const MicSquareAlt = createMeisterIcons("mic-square-alt", [["path", { "fill": "currentColor", "d": "M21.75 2.25H2.25v19.5h19.5V2.25Zm-18 18V3.75h16.5v16.5H3.75Zm7.1-10.85c0-.66.538-1.15 1.15-1.15.66 0 1.15.538 1.15 1.15V12c0 .586-.564 1.15-1.15 1.15-.66 0-1.15-.538-1.15-1.15V9.4ZM12 6.75c-1.388 0-2.65 1.11-2.65 2.65V12a2.66 2.66 0 0 0 1.9 2.545v1.205H10a.75.75 0 0 0 0 1.5h3.9a.75.75 0 0 0 0-1.5h-1.15v-1.217c1.074-.34 1.9-1.377 1.9-2.533V9.4c0-1.388-1.11-2.65-2.65-2.65Z", "key": "38c88e28648fcd6eb77f98268ff7e348629cf864" }]]);
const MicSquareAltB = createMeisterIcons("mic-square-alt-b", [["path", { "fill": "currentColor", "d": "M2.25 2.25h19.5v19.5H2.25V2.25Zm1.5 1.5v16.5h16.5V3.75H3.75Z", "key": "1dd4d0e4ea5a5c1a790c5bd879c5cd962560c3e3" }], ["path", { "fill": "currentColor", "d": "M12 13.9c-1.1 0-1.9-.9-1.9-1.9V9.4c0-1.1.9-1.9 1.9-1.9 1.1 0 1.9.9 1.9 1.9V12c0 1-.9 1.9-1.9 1.9Z", "key": "94ec433c83058880fd1add71e21f72f58f9783a9" }], ["path", { "fill": "currentColor", "d": "M12 8.25c-.612 0-1.15.49-1.15 1.15V12c0 .612.49 1.15 1.15 1.15.586 0 1.15-.564 1.15-1.15V9.4c0-.612-.49-1.15-1.15-1.15ZM9.35 9.4c0-1.54 1.262-2.65 2.65-2.65 1.54 0 2.65 1.262 2.65 2.65V12c0 1.414-1.236 2.65-2.65 2.65-1.54 0-2.65-1.262-2.65-2.65V9.4Z", "key": "216bf081677a2d7534ddcf2c56c01a1569c1146d" }], ["path", { "fill": "currentColor", "d": "M11.9 13.15a.75.75 0 0 1 .75.75v2.6a.75.75 0 0 1-1.5 0v-2.6a.75.75 0 0 1 .75-.75Z", "key": "9309717c4c2a85492d14aa0cd301adcec2369f3f" }], ["path", { "fill": "currentColor", "d": "M9.25 16.5a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5H10a.75.75 0 0 1-.75-.75Z", "key": "ed813ee44fcb2dd29348c2aa51b110e5159cde63" }]]);
const MicSquareB = createMeisterIcons("mic-square-b", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "09d8f379637a1ad9593aea99275c7529122f69ad" }], ["path", { "fill": "currentColor", "d": "M12 13.9c-1.1 0-1.9-.9-1.9-1.9V9.4c0-1.1.9-1.9 1.9-1.9 1.1 0 1.9.9 1.9 1.9V12c0 1-.9 1.9-1.9 1.9Z", "key": "4bd7894727c2f16c5a5796301b6911a5ed575cd4" }], ["path", { "fill": "currentColor", "d": "M12 8.25c-.612 0-1.15.49-1.15 1.15V12c0 .612.49 1.15 1.15 1.15.586 0 1.15-.564 1.15-1.15V9.4c0-.612-.49-1.15-1.15-1.15ZM9.35 9.4c0-1.54 1.262-2.65 2.65-2.65 1.54 0 2.65 1.262 2.65 2.65V12c0 1.414-1.236 2.65-2.65 2.65-1.54 0-2.65-1.262-2.65-2.65V9.4Z", "key": "8a141b6e9227018779c81781bade433fd8a72dd7" }], ["path", { "fill": "currentColor", "d": "M11.9 13.15a.75.75 0 0 1 .75.75v2.6a.75.75 0 0 1-1.5 0v-2.6a.75.75 0 0 1 .75-.75Z", "key": "b2dd98d6832cf45935da2914c539720a921c1b51" }], ["path", { "fill": "currentColor", "d": "M9.25 16.5a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5H10a.75.75 0 0 1-.75-.75Z", "key": "6a2d12ffe1f0c5c3c43da5b987812cfc30519e1f" }]]);
const MinusBlock = createMeisterIcons("minus-block", [["path", { "fill": "currentColor", "d": "M4.3 9.75a.575.575 0 0 0-.55.55v3.4c0 .366.24.55.45.55h15.5c.286 0 .55-.264.55-.55v-3.4a.575.575 0 0 0-.55-.55H4.3Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h15.4c1.114 0 2.05.936 2.05 2.05v3.4c0 1.114-.936 2.05-2.05 2.05H4.2c-1.19 0-1.95-1.016-1.95-2.05v-3.4Z", "key": "505b90bc4c6f3abcc06ce1de37b2f56592b58b23" }]]);
const MinusBlockB = createMeisterIcons("minus-block-b", [["path", { "fill": "currentColor", "d": "M3 13.7v-3.4C3 9.6 3.6 9 4.3 9h15.4c.7 0 1.3.6 1.3 1.3v3.4c0 .7-.6 1.3-1.3 1.3H4.2c-.7 0-1.2-.6-1.2-1.3Z", "key": "ff1e473b79d818a28360d92b1553bfb1217ba2b6" }], ["path", { "fill": "currentColor", "d": "M4.3 9.75a.575.575 0 0 0-.55.55v3.4c0 .366.24.55.45.55h15.5c.286 0 .55-.264.55-.55v-3.4a.575.575 0 0 0-.55-.55H4.3Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h15.4c1.114 0 2.05.936 2.05 2.05v3.4c0 1.114-.936 2.05-2.05 2.05H4.2c-1.19 0-1.95-1.016-1.95-2.05v-3.4Z", "key": "945d50bc4a5eb58be7a6068f235abf9b08681135" }]]);
const MinusSquare = createMeisterIcons("minus-square", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "443366a0fb51f0be6a74f8fa45668c1c2f8cad2c" }], ["path", { "fill": "currentColor", "d": "M8.25 12a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "078670e9dd0f7d9786b1df2795f02f3413637936" }]]);
const MinusSquareB = createMeisterIcons("minus-square-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "8f100681ace109fa2ee2c8f497092a78f7599f50" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "2f303f30a5aac198d367c4efcabe2de4ef243a79" }], ["path", { "fill": "#fff", "d": "M8.25 12a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "60a5763195f68bd64e4ed1a60b0cf9365b90a5dd" }]]);
const Money = createMeisterIcons("money", [["path", { "fill": "currentColor", "d": "M6.85 6.1C5.152 6.1 3.7 7.477 3.7 9.25v5.5c0 1.786 1.364 3.15 3.15 3.15h10.3c1.698 0 3.15-1.377 3.15-3.15v-5.5c0-1.698-1.377-3.15-3.15-3.15H6.85ZM2.2 9.25c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v5.5c0 2.627-2.148 4.65-4.65 4.65H6.85c-2.614 0-4.65-2.036-4.65-4.65v-5.5Z", "key": "1029e603ea101ec6b104988e5c7c7bcc77924743" }], ["path", { "fill": "currentColor", "d": "M11.95 10.3a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11.95a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "f743eec9427e9a05e2560648085a810638873120" }]]);
const MoneyAdd = createMeisterIcons("money-add", [["path", { "fill": "currentColor", "d": "M6.85 5.15C5.152 5.15 3.7 6.527 3.7 8.3v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65V8.3c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0V8.3c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "2eab1fefbb76993245f5cb56b3f455819305d540" }], ["path", { "fill": "currentColor", "d": "M11.95 9.35a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm7.75 2.95a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "2e5646881389cacf52c69383e408055f7eca3a13" }], ["path", { "fill": "currentColor", "d": "M13.4 17.1a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "2c97758b5e8b9f942194bc1ed68920f50f5c646f" }]]);
const MoneyAddB = createMeisterIcons("money-add-b", [["path", { "fill": "currentColor", "d": "M6.85 5.15C5.152 5.15 3.7 6.527 3.7 8.3v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65V8.3c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0V8.3c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "13a549f1bda3f649a2e296a245bec582d5cbda63" }], ["path", { "fill": "currentColor", "d": "M11.95 13.4a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "82b0bdd794348ebdfebca28f8f20689c067c6a0d" }], ["path", { "fill": "currentColor", "d": "M11.95 9.35a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm7.75 2.95a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0v-4.9a.75.75 0 0 1 .75-.75Z", "key": "5fdf164f13ddabc0a9ede266581b411b581390aa" }], ["path", { "fill": "currentColor", "d": "M13.4 17.1a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "72bf34ba6ee81a41ab396937e18a4c59b24031d2" }]]);
const MoneyB = createMeisterIcons("money-b", [["path", { "fill": "currentColor", "d": "M2.95 14.75v-5.5c0-2.2 1.8-3.9 3.9-3.9h10.3c2.2 0 3.9 1.8 3.9 3.9v5.5c0 2.2-1.8 3.9-3.9 3.9H6.85c-2.2 0-3.9-1.7-3.9-3.9Z", "key": "d70922c9bc8a73c1fac7ba9dc9628f3804c40e61" }], ["path", { "fill": "currentColor", "d": "M6.85 6.1C5.152 6.1 3.7 7.477 3.7 9.25v5.5c0 1.786 1.364 3.15 3.15 3.15h10.3c1.698 0 3.15-1.377 3.15-3.15v-5.5c0-1.698-1.377-3.15-3.15-3.15H6.85ZM2.2 9.25c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v5.5c0 2.627-2.148 4.65-4.65 4.65H6.85c-2.614 0-4.65-2.036-4.65-4.65v-5.5Z", "key": "8954b976905cbb3d81e944b1b0d1cde45fcfa6b2" }], ["path", { "fill": "#fff", "d": "M11.95 14.35a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "02eb6872d7cecc81729ac0a788264f144f8b67d1" }], ["path", { "fill": "#fff", "d": "M11.95 10.3a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11.95a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "63623b58081470640294efdd9706e15e66e52799" }]]);
const MoneyBlock = createMeisterIcons("money-block", [["path", { "fill": "currentColor", "d": "M6.85 4.862c-1.698 0-3.15 1.377-3.15 3.15v5.5a3.155 3.155 0 0 0 3.15 3.15.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65v-5.5c0-2.626 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.149 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "750b97f431d9bcbf7f70cd5a266a5c1434fa8886" }], ["path", { "fill": "currentColor", "d": "M11.95 9.063a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm9.22 5.53c-.707-.707-1.733-.707-2.44 0-.702.702-.707 1.719-.014 2.425.71.626 1.758.626 2.468 0 .693-.706.688-1.723-.014-2.425Zm-3.5-1.06c1.293-1.294 3.267-1.294 4.56 0 1.293 1.292 1.293 3.267 0 4.56l-.014.014-.014.013a3.356 3.356 0 0 1-4.504 0l-.014-.013-.014-.014c-1.293-1.293-1.293-3.268 0-4.56Z", "key": "f883d5410b8f9245cf3a8472a91df548d025234e" }], ["path", { "fill": "currentColor", "d": "m14.52 18.682 3.5-3.5 1.06 1.06-3.5 3.5-1.06-1.06Z", "key": "b32b6b65f69a23b91f8acad3ba398284bd95af37" }]]);
const MoneyBlockB = createMeisterIcons("money-block-b", [["path", { "fill": "currentColor", "d": "M6.85 4.862c-1.698 0-3.15 1.377-3.15 3.15v5.5a3.155 3.155 0 0 0 3.15 3.15.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65v-5.5c0-2.626 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.149 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "ee47d6288ffb888d373b4051ee03955f0f301af8" }], ["path", { "fill": "currentColor", "d": "M11.95 13.113a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "463a7c0bf31cd512d0abfbc079aea4f959bbecb8" }], ["path", { "fill": "currentColor", "d": "M11.95 9.063a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm9.22 5.53c-.707-.707-1.732-.707-2.44 0-.702.702-.707 1.719-.014 2.425.71.626 1.758.626 2.468 0 .693-.706.688-1.723-.014-2.425Zm-3.5-1.06c1.293-1.294 3.268-1.294 4.56 0 1.293 1.292 1.293 3.267 0 4.56l-.014.014-.014.013a3.356 3.356 0 0 1-4.504 0l-.014-.013-.014-.014c-1.293-1.293-1.293-3.268 0-4.56Z", "key": "83b86b9c7735f3cb186c85c58d96495a94cd1807" }], ["path", { "fill": "currentColor", "d": "m14.52 18.682 3.5-3.5 1.06 1.06-3.5 3.5-1.06-1.06Z", "key": "1ef76c65005a69a5616d63bbee20c410110a9f9c" }]]);
const MoneyCheck = createMeisterIcons("money-check", [["path", { "fill": "currentColor", "d": "M6.85 5.763c-1.698 0-3.15 1.376-3.15 3.15v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.149-4.65-4.65v-5.5c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5a3.155 3.155 0 0 0-3.15-3.15H6.85Z", "key": "663f4d24514e1365519237162e625b43d1401201" }], ["path", { "fill": "currentColor", "d": "M11.95 9.963a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm10.188 3.577a.75.75 0 0 1-.016 1.061l-3.206 3.108a.832.832 0 0 1-.256.248.901.901 0 0 1-.473.13 1.02 1.02 0 0 1-.717-.294l-.038-.038-1.232-1.643a.75.75 0 0 1 1.2-.9l.816 1.088 2.862-2.776a.75.75 0 0 1 1.06.016Z", "key": "e86e874ce49ed567df127555b162743bb4c296b3" }]]);
const MoneyCheckB = createMeisterIcons("money-check-b", [["path", { "fill": "currentColor", "d": "M6.85 5.763c-1.698 0-3.15 1.376-3.15 3.15v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.149-4.65-4.65v-5.5c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5a3.155 3.155 0 0 0-3.15-3.15H6.85Z", "key": "a489417a130982228d2e6a5ac05bf146d592ad20" }], ["path", { "fill": "currentColor", "d": "M11.95 14.013a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "ffa044eac997585fc99f613cc298e912eb6db577" }], ["path", { "fill": "currentColor", "d": "M11.95 9.963a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm10.188 3.577a.75.75 0 0 1-.016 1.061l-3.206 3.108a.832.832 0 0 1-.256.248.901.901 0 0 1-.473.13 1.02 1.02 0 0 1-.717-.294l-.038-.038-1.232-1.643a.75.75 0 0 1 1.2-.9l.816 1.088 2.862-2.776a.75.75 0 0 1 1.06.016Z", "key": "d0e5e14850d44d9b2812dae8e7e607df0cb5848b" }]]);
const MoneyCode = createMeisterIcons("money-code", [["path", { "fill": "currentColor", "d": "M6.85 5.4C5.152 5.4 3.7 6.777 3.7 8.55v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65v-5.5c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "105cd2e34c47d400ae51135cd38d83c95306e38a" }], ["path", { "fill": "currentColor", "d": "M11.95 9.6a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11.25a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm8.52 4.27a.75.75 0 0 1 1.06 0l1.2 1.2c.273.272.37.631.37.93 0 .299-.097.658-.37.93l-1.2 1.2a.75.75 0 1 1-1.06-1.06l1.07-1.07-1.07-1.07a.75.75 0 0 1 0-1.06Zm-2.14.1a.75.75 0 0 1 0 1.06l-1.07 1.07 1.07 1.07a.75.75 0 0 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l1.2-1.2a.75.75 0 0 1 1.06 0Z", "key": "e8cbb90ba4ce46c30404b3a79332ee408744a8c6" }]]);
const MoneyCodeB = createMeisterIcons("money-code-b", [["path", { "fill": "currentColor", "d": "M6.85 5.4C5.152 5.4 3.7 6.777 3.7 8.55v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65v-5.5c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "00203d0073de67eace283219e388a4fbebac9e6f" }], ["path", { "fill": "currentColor", "d": "M11.95 13.65a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "d058504b20bd48394f3d7cb84e016ea1c180131b" }], ["path", { "fill": "currentColor", "d": "M11.95 9.6a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11.25a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm8.52 4.27a.75.75 0 0 1 1.06 0l1.2 1.2c.273.272.37.631.37.93 0 .299-.097.658-.37.93l-1.2 1.2a.75.75 0 1 1-1.06-1.06l1.07-1.07-1.07-1.07a.75.75 0 0 1 0-1.06Zm-2.14.1a.75.75 0 0 1 0 1.06l-1.07 1.07 1.07 1.07a.75.75 0 0 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l1.2-1.2a.75.75 0 0 1 1.06 0Z", "key": "d699e14c61294e51da686202f55a434a7d46e437" }]]);
const MoneyCross = createMeisterIcons("money-cross", [["path", { "fill": "currentColor", "d": "M6.85 5.5C5.152 5.5 3.7 6.877 3.7 8.65v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65v-5.5C2.2 6.023 4.348 4 6.85 4h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "65584f1c18d3cdffd36faa7e851d2ae8f02de909" }], ["path", { "fill": "currentColor", "d": "M11.95 9.7a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11.35a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm9.973 3.862a.75.75 0 0 1 .015 1.06l-3.4 3.5a.75.75 0 0 1-1.076-1.045l3.4-3.5a.75.75 0 0 1 1.06-.015Z", "key": "3c4c1d7215c24983b55e965a0e40d3a0e7d82cf5" }], ["path", { "fill": "currentColor", "d": "M14.327 15.212a.75.75 0 0 1 1.061.015l3.4 3.5a.75.75 0 0 1-1.076 1.046l-3.4-3.5a.75.75 0 0 1 .015-1.061Z", "key": "28f925b4cb8015c1f1476ed273a395338e4891ab" }]]);
const MoneyCrossB = createMeisterIcons("money-cross-b", [["path", { "fill": "currentColor", "d": "M6.85 5.5C5.152 5.5 3.7 6.877 3.7 8.65v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.148-4.65-4.65v-5.5C2.2 6.023 4.348 4 6.85 4h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5c0-1.698-1.377-3.15-3.15-3.15H6.85Z", "key": "60b88b73ecc9b252a7bb32df2bfde3784ded8af2" }], ["path", { "fill": "currentColor", "d": "M11.95 13.75a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "ef73fd69e7ed647eaf63d6347d02124c6a03ad2f" }], ["path", { "fill": "currentColor", "d": "M11.95 9.7a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11.35a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Zm9.973 3.862a.75.75 0 0 1 .015 1.06l-3.4 3.5a.75.75 0 0 1-1.076-1.045l3.4-3.5a.75.75 0 0 1 1.06-.015Z", "key": "fd3820d3c991d3b5d408825a90f7e418d96853df" }], ["path", { "fill": "currentColor", "d": "M14.327 15.212a.75.75 0 0 1 1.061.015l3.4 3.5a.75.75 0 0 1-1.076 1.046l-3.4-3.5a.75.75 0 0 1 .015-1.061Z", "key": "9192e24c342bffa7dca5e80042cbff331059a9d0" }]]);
const MoneyDiag = createMeisterIcons("money-diag", [["path", { "fill": "currentColor", "d": "M15.979 4.102c-1.322-1.23-3.353-1.205-4.549-.01l-7.29 7.292c-1.231 1.321-1.205 3.353-.01 4.548l3.909 3.909.008.008c1.195 1.275 3.206 1.3 4.523-.017l7.29-7.29c1.231-1.322 1.205-3.354.01-4.55l-3.891-3.89Zm-5.61-1.07c1.803-1.802 4.765-1.778 6.644-.017l.009.009 3.908 3.908c1.802 1.802 1.779 4.765.017 6.643l-.008.01-7.309 7.308c-1.88 1.88-4.862 1.908-6.669-.008L3.07 16.993c-1.802-1.802-1.779-4.765-.017-6.643l.008-.01 7.309-7.308Z", "key": "34673629d1ade2d89a119a831db88d4895ce725e" }], ["path", { "fill": "currentColor", "d": "M12 10.413a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "641a7e45cb9ee642011bdbda614000ef88761f03" }]]);
const MoneyDiagB = createMeisterIcons("money-diag-b", [["path", { "fill": "currentColor", "d": "m7.5 20.363-3.9-3.9c-1.5-1.5-1.5-4 0-5.6l7.3-7.3c1.5-1.5 4-1.5 5.6 0l3.9 3.9c1.5 1.5 1.5 4 0 5.6l-7.3 7.3c-1.6 1.6-4.1 1.6-5.6 0Z", "key": "717e238c39dcb0a826bf35b5a9778831adc0e289" }], ["path", { "fill": "currentColor", "d": "M15.979 4.102c-1.322-1.23-3.353-1.205-4.549-.01l-7.29 7.292c-1.231 1.321-1.205 3.353-.01 4.548l3.909 3.909.008.008c1.195 1.275 3.206 1.3 4.523-.017l7.29-7.29c1.231-1.322 1.205-3.354.01-4.55l-3.891-3.89Zm-5.61-1.07c1.803-1.802 4.765-1.778 6.644-.017l.009.009 3.908 3.908c1.802 1.802 1.779 4.765.017 6.643l-.008.01-7.309 7.308c-1.88 1.88-4.862 1.908-6.669-.008L3.07 16.993c-1.802-1.802-1.779-4.765-.017-6.643l.008-.01 7.309-7.308Z", "key": "eafb0afc1f5b40fce7eb01ebca49137ad23d1252" }], ["path", { "fill": "#fff", "d": "M12 14.463a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "c4a9ad6fd0fc7b18cbe24fe314f0da8f342a0156" }], ["path", { "fill": "#fff", "d": "M12 10.413a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "0b10a8eb85cbffc04d90168977749a17ad02e2d2" }]]);
const MoneyDiagVarB = createMeisterIcons("money-diag-var-b", [["path", { "fill": "currentColor", "d": "M15.979 4.102c-1.322-1.23-3.353-1.205-4.549-.01l-7.29 7.292c-1.231 1.321-1.205 3.353-.01 4.548l3.909 3.909.008.008c1.195 1.275 3.206 1.3 4.523-.017l7.29-7.29c1.231-1.322 1.205-3.354.01-4.55l-3.891-3.89Zm-5.61-1.07c1.803-1.802 4.765-1.778 6.644-.017l.009.009 3.908 3.908c1.802 1.802 1.779 4.765.017 6.643l-.008.01-7.309 7.308c-1.88 1.88-4.862 1.908-6.669-.008L3.07 16.993c-1.802-1.802-1.779-4.765-.017-6.643l.008-.01 7.309-7.308Z", "key": "15c30c17edc6d52ad90bec3f2030a045b6d78da9" }], ["path", { "fill": "currentColor", "d": "M12 14.463a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "cfa459c808ac4dfc3980ba5617dadfd44099eff0" }], ["path", { "fill": "currentColor", "d": "M12 10.413a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "b8cbbf85046f344921ffaf4a3a67491f504e3dac" }]]);
const MoneyHeart = createMeisterIcons("money-heart", [["path", { "fill": "currentColor", "d": "M16.15 15.638a.907.907 0 0 0-.67.28c-.307.307-.307.932 0 1.24l.193.192 1.825 1.729 1.882-1.882c.244-.335.32-.56.32-.71 0-.284-.07-.46-.18-.57-.307-.306-.933-.306-1.24 0l-.73.731-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.039c-.393-.254-.86-.462-1.38-.462-.72 0-1.305.295-1.73.72-.893.893-.893 2.468 0 3.36l.207.208 1.859 1.76c.241.309.597.478.976.478.396 0 .753-.18 1.018-.445l1.8-1.8.238-.238.032-.043c.332-.443.65-1.005.65-1.65 0-.515-.13-1.14-.62-1.63-.796-.796-2.135-.882-3.05-.258Zm-.13 4.575Z", "key": "7c9128f530614e54545a9a9727d1c5aecc48aa7f" }], ["path", { "fill": "currentColor", "d": "M6.85 4.838c-1.698 0-3.15 1.376-3.15 3.15v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.149-4.65-4.65v-5.5c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5a3.155 3.155 0 0 0-3.15-3.15H6.85Z", "key": "bddb7fd81e456a0419e87fb3661d9356bef296cd" }], ["path", { "fill": "currentColor", "d": "M11.95 9.038a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "a9969f9f1725c0aa141ebeecf27c3e378727bb67" }]]);
const MoneyHeartB = createMeisterIcons("money-heart-b", [["path", { "fill": "currentColor", "d": "M16.15 15.638a.907.907 0 0 0-.67.28c-.307.307-.307.932 0 1.24l.193.192 1.825 1.729 1.882-1.882c.244-.335.32-.56.32-.71 0-.284-.07-.46-.18-.57-.307-.306-.933-.306-1.24 0l-.73.731-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.039c-.393-.254-.86-.462-1.38-.462-.72 0-1.305.295-1.73.72-.893.893-.893 2.468 0 3.36l.207.208 1.859 1.76c.241.309.597.478.976.478.396 0 .753-.18 1.018-.445l1.8-1.8.238-.238.032-.043c.332-.443.65-1.005.65-1.65 0-.515-.13-1.14-.62-1.63-.796-.796-2.135-.882-3.05-.258Zm-.13 4.575Z", "key": "5b3c77780b5499df0a51e22acc5982e4b86c00fd" }], ["path", { "fill": "currentColor", "d": "M6.85 4.838c-1.698 0-3.15 1.376-3.15 3.15v5.5c0 1.698 1.377 3.15 3.15 3.15a.75.75 0 0 1 0 1.5c-2.627 0-4.65-2.149-4.65-4.65v-5.5c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v2.5a.75.75 0 0 1-1.5 0v-2.5a3.155 3.155 0 0 0-3.15-3.15H6.85Z", "key": "9164c32c97750a1730281227decf81e7d1002327" }], ["path", { "fill": "currentColor", "d": "M11.95 13.088a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "9cea522417edbd1243a2db871fa12a7aa09ccef4" }], ["path", { "fill": "currentColor", "d": "M11.95 9.038a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3Zm-3.15 1.65a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "cbdc89d22e90cd949fac88c7773a0cb2bb925444" }]]);
const MoneyStack = createMeisterIcons("money-stack", [["path", { "fill": "currentColor", "d": "M1.9 8.35c0-2.502 2.023-4.65 4.65-4.65h7.8c2.495 0 4.53 1.91 4.65 4.414v.036h-.75.75v.025a.838.838 0 0 1-.01.098 1.014 1.014 0 0 1-.09.298v3.379c0 2.502-2.023 4.65-4.65 4.65h-7.7c-2.502 0-4.65-2.023-4.65-4.65v-3.6Zm15.582-.393C17.295 6.377 15.977 5.2 14.35 5.2h-7.8C4.777 5.2 3.4 6.652 3.4 8.35v3.6c0 1.773 1.452 3.15 3.15 3.15h7.7c1.773 0 3.15-1.452 3.15-3.15V8.04l.082-.083ZM10.45 8.8c-.786 0-1.35.564-1.35 1.35 0 .71.587 1.35 1.35 1.35.71 0 1.35-.587 1.35-1.35 0-.786-.564-1.35-1.35-1.35ZM7.6 10.15c0-1.614 1.236-2.85 2.85-2.85s2.85 1.236 2.85 2.85c0 1.637-1.36 2.85-2.85 2.85-1.637 0-2.85-1.36-2.85-2.85Z", "key": "dac67e2354320e81d21ede51734af878642f835c" }], ["path", { "fill": "currentColor", "d": "M18.373 7.41c2.163.36 3.727 2.174 3.727 4.44v3.9a4.548 4.548 0 0 1-4.55 4.55h-8C7.062 20.3 5 18.39 5 15.85h1.5c0 1.66 1.338 2.95 3.05 2.95h8a3.048 3.048 0 0 0 3.05-3.05v-3.9c0-1.534-1.036-2.72-2.473-2.96l.246-1.48Z", "key": "30cde30c59d16bc2d3b220cd1bf7534bc4d11a52" }], ["path", { "fill": "currentColor", "d": "M10.45 8.8c-.786 0-1.35.564-1.35 1.35 0 .71.587 1.35 1.35 1.35.786 0 1.35-.564 1.35-1.35 0-.763-.64-1.35-1.35-1.35ZM7.6 10.15c0-1.614 1.236-2.85 2.85-2.85 1.49 0 2.85 1.213 2.85 2.85 0 1.614-1.236 2.85-2.85 2.85-1.637 0-2.85-1.36-2.85-2.85Z", "key": "3f7f489252643c8c6ffd81dbad782fe0deeaccdc" }]]);
const MoneyStackB = createMeisterIcons("money-stack-b", [["path", { "fill": "currentColor", "d": "M18.25 8.15c-.1-2.1-1.8-3.7-3.9-3.7h-7.8c-2.2 0-3.9 1.8-3.9 3.9v3.6c0 2.2 1.8 3.9 3.9 3.9h7.7c2.2 0 3.9-1.8 3.9-3.9v-3.6c.1-.1.1-.2.1-.2Zm-7.8 4.1c-1.2 0-2.1-1-2.1-2.1 0-1.2.9-2.1 2.1-2.1 1.2 0 2.1.9 2.1 2.1 0 1.2-1 2.1-2.1 2.1Z", "key": "591488423dd749e616455896983280013e5f7ec7" }], ["path", { "fill": "currentColor", "d": "M1.9 8.35c0-2.502 2.023-4.65 4.65-4.65h7.8c2.495 0 4.53 1.91 4.65 4.414v.036h-.75.75v.025a.838.838 0 0 1-.01.098 1.014 1.014 0 0 1-.09.298v3.379c0 2.502-2.023 4.65-4.65 4.65h-7.7c-2.502 0-4.65-2.023-4.65-4.65v-3.6Zm15.582-.393C17.295 6.377 15.977 5.2 14.35 5.2h-7.8C4.777 5.2 3.4 6.652 3.4 8.35v3.6c0 1.773 1.452 3.15 3.15 3.15h7.7c1.773 0 3.15-1.452 3.15-3.15V8.04l.082-.083ZM10.45 8.8c-.786 0-1.35.564-1.35 1.35 0 .71.587 1.35 1.35 1.35.71 0 1.35-.587 1.35-1.35 0-.786-.564-1.35-1.35-1.35ZM7.6 10.15c0-1.614 1.236-2.85 2.85-2.85s2.85 1.236 2.85 2.85c0 1.637-1.36 2.85-2.85 2.85-1.637 0-2.85-1.36-2.85-2.85Z", "key": "a71d91c805df2553b3520729d13f181baada7ab9" }], ["path", { "fill": "currentColor", "d": "M18.373 7.41c2.163.36 3.727 2.174 3.727 4.44v3.9a4.548 4.548 0 0 1-4.55 4.55h-8C7.062 20.3 5 18.39 5 15.85h1.5c0 1.66 1.338 2.95 3.05 2.95h8a3.048 3.048 0 0 0 3.05-3.05v-3.9c0-1.534-1.036-2.72-2.473-2.96l.246-1.48Z", "key": "e4274601fc2788530ac6dbef23c0fdf041b86cd0" }], ["path", { "fill": "#fff", "d": "M12.55 10.15c0 1.2-.9 2.1-2.1 2.1-1.2 0-2.1-1-2.1-2.1 0-1.2.9-2.1 2.1-2.1 1.1 0 2.1.9 2.1 2.1Z", "key": "d621913f43827f51d144ad787216898598ef0ce7" }], ["path", { "fill": "#fff", "d": "M10.45 8.8c-.786 0-1.35.564-1.35 1.35 0 .71.587 1.35 1.35 1.35.786 0 1.35-.564 1.35-1.35 0-.763-.64-1.35-1.35-1.35ZM7.6 10.15c0-1.614 1.236-2.85 2.85-2.85 1.49 0 2.85 1.213 2.85 2.85 0 1.614-1.236 2.85-2.85 2.85-1.637 0-2.85-1.36-2.85-2.85Z", "key": "e79b4e4bbdddda4f8e1ce77bc137e667c15e6e50" }]]);
const MoneyStackVarB = createMeisterIcons("money-stack-var-b", [["path", { "fill": "currentColor", "d": "M1.9 8.35c0-2.502 2.023-4.65 4.65-4.65h7.8c2.495 0 4.53 1.91 4.65 4.414v.036h-.75.75v.025a.838.838 0 0 1-.01.098 1.014 1.014 0 0 1-.09.298v3.379c0 2.502-2.023 4.65-4.65 4.65h-7.7c-2.502 0-4.65-2.023-4.65-4.65v-3.6Zm15.582-.393C17.295 6.377 15.977 5.2 14.35 5.2h-7.8C4.777 5.2 3.4 6.652 3.4 8.35v3.6c0 1.773 1.452 3.15 3.15 3.15h7.7c1.773 0 3.15-1.452 3.15-3.15V8.04l.082-.083ZM10.45 8.8c-.786 0-1.35.564-1.35 1.35 0 .71.587 1.35 1.35 1.35.71 0 1.35-.587 1.35-1.35 0-.786-.564-1.35-1.35-1.35ZM7.6 10.15c0-1.614 1.236-2.85 2.85-2.85s2.85 1.236 2.85 2.85c0 1.637-1.36 2.85-2.85 2.85-1.637 0-2.85-1.36-2.85-2.85Z", "key": "c970fbc10bffa134d51923360eebae56f058de39" }], ["path", { "fill": "currentColor", "d": "M18.373 7.41c2.163.36 3.727 2.174 3.727 4.44v3.9a4.548 4.548 0 0 1-4.55 4.55h-8C7.062 20.3 5 18.39 5 15.85h1.5c0 1.66 1.338 2.95 3.05 2.95h8a3.048 3.048 0 0 0 3.05-3.05v-3.9c0-1.534-1.036-2.72-2.473-2.96l.246-1.48Z", "key": "53fabe6cf5e58d6b5091a982d66c1161fd58d39e" }], ["path", { "fill": "currentColor", "d": "M12.55 10.15c0 1.2-.9 2.1-2.1 2.1-1.2 0-2.1-1-2.1-2.1 0-1.2.9-2.1 2.1-2.1 1.1 0 2.1.9 2.1 2.1Z", "key": "b2ac23f3ffd9de1ca9e3901c2eadb61c1ca8d708" }], ["path", { "fill": "currentColor", "d": "M10.45 8.8c-.786 0-1.35.564-1.35 1.35 0 .71.587 1.35 1.35 1.35.786 0 1.35-.564 1.35-1.35 0-.763-.64-1.35-1.35-1.35ZM7.6 10.15c0-1.614 1.236-2.85 2.85-2.85 1.49 0 2.85 1.213 2.85 2.85 0 1.614-1.236 2.85-2.85 2.85-1.637 0-2.85-1.36-2.85-2.85Z", "key": "d94ab913eaa95e37d4ede8a12f1c505aa813c3c3" }]]);
const MoneyVarB = createMeisterIcons("money-var-b", [["path", { "fill": "currentColor", "d": "M6.85 6.1C5.152 6.1 3.7 7.477 3.7 9.25v5.5c0 1.786 1.364 3.15 3.15 3.15h10.3c1.698 0 3.15-1.377 3.15-3.15v-5.5c0-1.698-1.377-3.15-3.15-3.15H6.85ZM2.2 9.25c0-2.627 2.148-4.65 4.65-4.65h10.3c2.627 0 4.65 2.148 4.65 4.65v5.5c0 2.627-2.148 4.65-4.65 4.65H6.85c-2.614 0-4.65-2.036-4.65-4.65v-5.5Z", "key": "db6655049b19fa1a010739977c10a1af30786755" }], ["path", { "fill": "currentColor", "d": "M11.95 14.35a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Z", "key": "f7195be0057ae3a14d64f37de1cf7ac6983a3a2d" }], ["path", { "fill": "currentColor", "d": "M11.95 10.3a1.65 1.65 0 1 0 0 3.3 1.65 1.65 0 0 0 0-3.3ZM8.8 11.95a3.15 3.15 0 1 1 6.3 0 3.15 3.15 0 0 1-6.3 0Z", "key": "4cf39dc3abfc51d16250938b24357a4aa66d7174" }]]);
const Monitor = createMeisterIcons("monitor", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6A3.262 3.262 0 0 0 7 16.25h10A3.262 3.262 0 0 0 20.25 13V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v6A4.762 4.762 0 0 1 17 17.75h-4.25v2.5h3.75a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1 0-1.5h3.75v-2.5H7A4.762 4.762 0 0 1 2.25 13V7Z", "key": "5785985572f8f2d81af6584bf9a9af6a490929d7" }]]);
const MonitorAlt = createMeisterIcons("monitor-alt", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h10A3.262 3.262 0 0 1 20.25 7v5.25H3.75V7Zm-1.5 6V7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v6A4.762 4.762 0 0 1 17 17.75h-4.25v2.5h3.75a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1 0-1.5h3.75v-2.5H7A4.762 4.762 0 0 1 2.25 13Zm17.912.75A3.266 3.266 0 0 1 17 16.25H7a3.266 3.266 0 0 1-3.162-2.5h16.324Z", "key": "dca50fb930fd959f08de7a0c33b8956c772f400d" }]]);
const MonitorAltB = createMeisterIcons("monitor-alt-b", [["path", { "fill": "currentColor", "d": "M21 13c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4h18Z", "key": "5d2d1293e28374de7994b7f8b7eb3c408d86e108" }], ["path", { "fill": "currentColor", "d": "M2.25 12.25h19.5V13A4.762 4.762 0 0 1 17 17.75H7A4.762 4.762 0 0 1 2.25 13v-.75Zm1.588 1.5A3.266 3.266 0 0 0 7 16.25h10a3.266 3.266 0 0 0 3.162-2.5H3.838Z", "key": "744dc8cf5b8d1b77e0cfa0d8647c116bc9857af2" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v5.25h16.5V7c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.602 0 4.75 2.024 4.75 4.75v6.75H2.25V7Zm9 14v-4h1.5v4h-1.5Z", "key": "7fc9c01bdaefd5106594fe7735e6897295fcec21" }], ["path", { "fill": "currentColor", "d": "M6.75 21a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75Z", "key": "df8cb813597d5643c01b0a457df9c6b62ac14f43" }]]);
const MonitorB = createMeisterIcons("monitor-b", [["path", { "fill": "currentColor", "d": "M17 17H7c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v6c0 2.2-1.8 4-4 4Z", "key": "a21a7d677f0277510b7960266a763a77e877762a" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6A3.262 3.262 0 0 0 7 16.25h10A3.262 3.262 0 0 0 20.25 13V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v6A4.762 4.762 0 0 1 17 17.75H7A4.762 4.762 0 0 1 2.25 13V7Z", "key": "1e9fcbb02a48671baa9e4c2d5010633e3f8c3541" }], ["path", { "fill": "currentColor", "d": "M11.25 21v-4h1.5v4h-1.5Z", "key": "8e10975d851b429268d1f55d3b2703e7876af7fe" }], ["path", { "fill": "currentColor", "d": "M6.75 21a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75Z", "key": "2bcc149d597b682951bb12ce7cb961ee4ed58bb1" }]]);
const MonitorBack = createMeisterIcons("monitor-back", [["path", { "fill": "currentColor", "d": "M4.7 2.75c-1.314 0-2.45 1.136-2.45 2.45v9.6c0 1.443 1.165 2.45 2.45 2.45h3.367l-.306 2.318c-.101.485.097.914.349 1.189.257.28.65.493 1.09.493h5.4c.974 0 1.55-.799 1.55-1.55v-.05l-.317-2.4H19.3c1.314 0 2.45-1.136 2.45-2.45V5.2c0-1.443-1.165-2.45-2.45-2.45H4.7Zm10.935 13H19.3c.486 0 .95-.464.95-.95V5.2a.936.936 0 0 0-.95-.95H4.7c-.486 0-.95.464-.95.95v9.6c0 .557.435.95.95.95h3.565l.19-1.434c.148-1.53 1.516-2.566 2.945-2.566h1.1c1.49 0 2.678 1.087 2.938 2.516l.003.018.194 1.466Zm-5.688-1.282c.06-.662.687-1.218 1.453-1.218h1.1c.705 0 1.313.506 1.459 1.268l.687 5.204-.001.003a.056.056 0 0 1-.01.018l-.004.003h-.001a.118.118 0 0 1-.03.003H9.25l.695-5.266.002-.015Z", "key": "8f1bd4b024246798abde5d3cd6ab0d755c4ffb94" }]]);
const MonitorBackB = createMeisterIcons("monitor-back-b", [["path", { "fill": "currentColor", "d": "M11.4 13.25c-.766 0-1.393.556-1.453 1.218v.003l-.201 2.111-.396 3.168h5.287a.13.13 0 0 0 .01-.028l-.39-3.122-.297-2.079c-.145-.763-.753-1.271-1.46-1.271h-1.1Zm-2.947 1.08c.141-1.537 1.514-2.58 2.947-2.58h1.1c1.49 0 2.678 1.087 2.938 2.516l.002.014.304 2.127.406 3.246v.047c0 .38-.14.749-.374 1.03a1.4 1.4 0 0 1-1.076.52H9.3a1.5 1.5 0 0 1-1.09-.493c-.252-.274-.45-.702-.35-1.186l.395-3.153.198-2.088Z", "key": "90cce6740cf2548f82ba439475df6aa021cfb49d" }], ["path", { "fill": "currentColor", "d": "M21 5.2v9.5c0 1-.8 1.7-1.7 1.7H15l-.3-2.1c-.1-1.1-1.1-1.9-2.2-1.9h-1.1c-1.1 0-2 .8-2.2 1.9l-.3 2.1H4.7c-1 0-1.7-.8-1.7-1.7V5.2c0-.9.8-1.7 1.7-1.7h14.5c1 0 1.8.7 1.8 1.7Z", "key": "6f908f70554ce8c36ac0d7511d7eee5095a01a7d" }], ["path", { "fill": "currentColor", "d": "M4.7 4.25c-.486 0-.95.464-.95.95v9.5c0 .515.393.95.95.95h3.55l.21-1.47.002-.014c.26-1.43 1.448-2.516 2.938-2.516h1.1c1.427 0 2.795 1.035 2.945 2.561l.205 1.439h3.65c.515 0 .95-.393.95-.95V5.2c0-.53-.407-.95-1.05-.95H4.7Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h14.5c1.357 0 2.55.98 2.55 2.45v9.5c0 1.443-1.165 2.45-2.45 2.45h-4.95l-.395-2.763-.002-.02c-.06-.661-.687-1.217-1.453-1.217h-1.1c-.707 0-1.315.508-1.46 1.271l-.39 2.729H4.7c-1.443 0-2.45-1.165-2.45-2.45V5.2Z", "key": "1f9e91f88c610d960cd86b7cfc88ca8ea14f4296" }]]);
const MonitorBackVarB = createMeisterIcons("monitor-back-var-b", [["path", { "fill": "currentColor", "d": "M15.4 19.7c0 .4-.3.8-.7.8H9.3c-.4 0-.8-.4-.7-.8l.4-3.2.2-2.1c.1-1.1 1.1-1.9 2.2-1.9h1.1c1.1 0 2 .8 2.2 1.9l.3 2.1.4 3.2Z", "key": "f91365ed3511316449c05d48a09fb6e4f9bae51d" }], ["path", { "fill": "currentColor", "d": "M11.4 13.25c-.766 0-1.393.556-1.453 1.218v.003l-.201 2.111-.396 3.168h5.287a.13.13 0 0 0 .01-.028l-.39-3.122-.297-2.079c-.145-.763-.753-1.271-1.46-1.271h-1.1Zm-2.947 1.08c.141-1.537 1.514-2.58 2.947-2.58h1.1c1.49 0 2.678 1.087 2.938 2.516l.002.014.304 2.127.406 3.246v.047c0 .38-.14.749-.374 1.03a1.4 1.4 0 0 1-1.076.52H9.3a1.5 1.5 0 0 1-1.09-.493c-.252-.274-.45-.702-.35-1.186l.395-3.153.198-2.088Z", "key": "2e6a3412c9a9ac6862a4268263edf3c4c6fd0f98" }], ["path", { "fill": "currentColor", "d": "M4.7 4.25c-.486 0-.95.464-.95.95v9.5c0 .515.393.95.95.95h3.55l.21-1.47.002-.014c.26-1.43 1.448-2.516 2.938-2.516h1.1c1.427 0 2.795 1.035 2.945 2.561l.205 1.439h3.65c.515 0 .95-.393.95-.95V5.2c0-.53-.407-.95-1.05-.95H4.7Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h14.5c1.357 0 2.55.98 2.55 2.45v9.5c0 1.443-1.165 2.45-2.45 2.45h-4.95l-.395-2.763-.002-.02c-.06-.661-.687-1.217-1.453-1.217h-1.1c-.707 0-1.315.508-1.46 1.271l-.39 2.729H4.7c-1.443 0-2.45-1.165-2.45-2.45V5.2Z", "key": "46ff63159e4e9be39f455ef27d7953ab79cde75d" }]]);
const MonitorDownload = createMeisterIcons("monitor-download", [["path", { "fill": "currentColor", "d": "M11.25 21v-4h1.5v4h-1.5Z", "key": "65f7085e8c12908c761444eb89a4f95dc354b51b" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6A3.262 3.262 0 0 0 7 16.25h10A3.262 3.262 0 0 0 20.25 13V7a.75.75 0 0 1 1.5 0v6A4.762 4.762 0 0 1 17 17.75H7A4.762 4.762 0 0 1 2.25 13V7A4.762 4.762 0 0 1 7 2.25a.75.75 0 0 1 0 1.5Zm6-1.5a.75.75 0 0 1 .75.75v4.99l1.52-1.52a.75.75 0 0 1 1.06 1.06l-2.5 2.5a1.27 1.27 0 0 1-.293.22H17a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1 0-1.5h3.363a1.28 1.28 0 0 1-.293-.22l-2.5-2.5a.75.75 0 1 1 1.06-1.06l1.62 1.62V3a.75.75 0 0 1 .75-.75Zm-5.5 18a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-9Z", "key": "eabf563937c6c8fc54ee957d356a9f2611245310" }]]);
const MonitorMac = createMeisterIcons("monitor-mac", [["path", { "fill": "currentColor", "d": "M2.25 5.2c0-1.314 1.136-2.45 2.45-2.45h14.6c1.285 0 2.45 1.007 2.45 2.45v9.6c0 1.314-1.136 2.45-2.45 2.45h-3.45l.29 2.321c.1.484-.098.912-.35 1.186a1.5 1.5 0 0 1-1.09.493H9.3a1.5 1.5 0 0 1-1.09-.493c-.252-.274-.45-.702-.35-1.186l.29-2.321H4.7c-1.285 0-2.45-1.007-2.45-2.45V5.2Zm7.412 12.05h4.676l.312 2.5h-5.3l.312-2.5ZM4.7 4.25c-.486 0-.95.464-.95.95v7.35h16.5V5.2a.936.936 0 0 0-.95-.95H4.7Zm15.55 9.8v.75c0 .486-.464.95-.95.95H4.7a.936.936 0 0 1-.95-.95v-.75h16.5Z", "key": "871a69a4d97fe5190d43a0a644b3985d211d5220" }]]);
const MonitorMacAlt = createMeisterIcons("monitor-mac-alt", [["path", { "fill": "currentColor", "d": "M4.7 2.75c-1.314 0-2.45 1.136-2.45 2.45v9.6c0 1.443 1.165 2.45 2.45 2.45h3.45l-.29 2.321c-.1.484.098.912.35 1.186.257.28.65.493 1.09.493h5.4a1.5 1.5 0 0 0 1.09-.493c.252-.274.45-.702.35-1.186l-.29-2.321h3.45c1.314 0 2.45-1.136 2.45-2.45V5.2c0-1.443-1.165-2.45-2.45-2.45H4.7Zm9.638 14.5H9.662l-.312 2.5h5.3l-.312-2.5ZM3.75 5.2c0-.486.464-.95.95-.95h14.6c.515 0 .95.393.95.95v9.6c0 .486-.464.95-.95.95H4.7a.936.936 0 0 1-.95-.95V5.2Z", "key": "34c7e278df42696b75bf398338af77bcdf054667" }]]);
const MonitorMacAltB = createMeisterIcons("monitor-mac-alt-b", [["path", { "fill": "currentColor", "d": "M8.338 15.75h7.324l.488 3.903v.047c0 .38-.14.749-.374 1.03a1.4 1.4 0 0 1-1.076.52H9.3a1.5 1.5 0 0 1-1.09-.493c-.252-.274-.45-.702-.35-1.186l.478-3.821Zm1.324 1.5-.312 2.5h5.287a.13.13 0 0 0 .01-.028l-.309-2.472H9.662Z", "key": "840391c9014388f77c418e55092f06d91997138f" }], ["path", { "fill": "currentColor", "d": "M21 5.2v9.5c0 1-.8 1.7-1.7 1.7H4.7c-1 0-1.7-.8-1.7-1.7V5.2c0-.9.8-1.7 1.7-1.7h14.5c1 0 1.8.7 1.8 1.7Z", "key": "a84e911e4fd64af34ddd702069de0199b156cfcc" }], ["path", { "fill": "currentColor", "d": "M4.7 4.25c-.486 0-.95.464-.95.95v9.5c0 .515.393.95.95.95h14.6c.515 0 .95-.393.95-.95V5.2c0-.53-.407-.95-1.05-.95H4.7Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h14.5c1.357 0 2.55.98 2.55 2.45v9.5c0 1.443-1.165 2.45-2.45 2.45H4.7c-1.443 0-2.45-1.165-2.45-2.45V5.2Z", "key": "827db22cf422b945b4ab56f3d2509d4a5b9c0249" }]]);
const MonitorMacAltVarB = createMeisterIcons("monitor-mac-alt-var-b", [["path", { "fill": "currentColor", "d": "M15.4 19.7c0 .4-.3.8-.7.8H9.3c-.4 0-.8-.4-.7-.8l.4-3.2h6l.4 3.2Z", "key": "751afc15b340b77278561373cf469c36d85b64b1" }], ["path", { "fill": "currentColor", "d": "M8.338 15.75h7.324l.488 3.903v.047c0 .38-.14.749-.374 1.03a1.4 1.4 0 0 1-1.076.52H9.3a1.5 1.5 0 0 1-1.09-.493c-.252-.274-.45-.702-.35-1.186l.478-3.821Zm1.324 1.5-.312 2.5h5.287a.13.13 0 0 0 .01-.028l-.309-2.472H9.662Z", "key": "5d1b78187c3c32503523404c1ab9e06574fd4b99" }], ["path", { "fill": "currentColor", "d": "M4.7 4.25c-.486 0-.95.464-.95.95v9.5c0 .515.393.95.95.95h14.6c.515 0 .95-.393.95-.95V5.2c0-.53-.407-.95-1.05-.95H4.7Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h14.5c1.357 0 2.55.98 2.55 2.45v9.5c0 1.443-1.165 2.45-2.45 2.45H4.7c-1.443 0-2.45-1.165-2.45-2.45V5.2Z", "key": "84ac7602101d6f10b9ea7928755daad2dcb74d7c" }]]);
const MonitorMacB = createMeisterIcons("monitor-mac-b", [["path", { "fill": "currentColor", "d": "M15.4 19.7c0 .4-.3.8-.7.8H9.3c-.4 0-.8-.4-.7-.8l.4-3.2h6l.4 3.2Z", "key": "9ac4c240e268c54e99dac4be044a50c71fa0744d" }], ["path", { "fill": "currentColor", "d": "M8.338 15.75h7.324l.488 3.903v.047c0 .38-.14.749-.374 1.03-.238.285-.61.52-1.076.52H9.3a1.5 1.5 0 0 1-1.09-.493c-.252-.274-.45-.702-.35-1.186l.478-3.821Zm1.324 1.5-.312 2.5h5.287a.152.152 0 0 0 .01-.028l-.31-2.472H9.663Z", "key": "61c7906f717ca109982f4b47d0dae7b8e420012f" }], ["path", { "fill": "currentColor", "d": "M2.25 12.55h19.5v2.15c0 1.443-1.165 2.45-2.45 2.45H4.7c-1.443 0-2.45-1.165-2.45-2.45v-2.15Zm1.5 1.5v.65c0 .515.393.95.95.95h14.6c.515 0 .95-.393.95-.95v-.65H3.75Z", "key": "dcd8e48c8a0789e6bf18b16f1ad46028c6c12e19" }], ["path", { "fill": "currentColor", "d": "M21 5.2v8.1H3V5.2c0-.9.8-1.7 1.7-1.7h14.5c1 0 1.8.7 1.8 1.7Z", "key": "a97545af173494229d027e668f4f4e061107a718" }], ["path", { "fill": "currentColor", "d": "M4.7 4.25c-.486 0-.95.464-.95.95v7.35h16.5V5.2c0-.53-.407-.95-1.05-.95H4.7Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h14.5c1.357 0 2.55.98 2.55 2.45v8.85H2.25V5.2Z", "key": "b5f325a4cf042bf1d581d56da8907564d5b4f777" }]]);
const MonitorMacVarB = createMeisterIcons("monitor-mac-var-b", [["path", { "fill": "currentColor", "d": "M8.338 15.75h7.324l.488 3.903v.047c0 .38-.14.749-.374 1.03a1.4 1.4 0 0 1-1.076.52H9.3a1.5 1.5 0 0 1-1.09-.493c-.252-.274-.45-.702-.35-1.186l.478-3.821Zm1.324 1.5-.312 2.5h5.287a.13.13 0 0 0 .01-.028l-.309-2.472H9.662Z", "key": "dffed0f7194db8213924692bc01b1c53395deb39" }], ["path", { "fill": "currentColor", "d": "M21 13.3v1.4c0 1-.8 1.7-1.7 1.7H4.7c-1 0-1.7-.8-1.7-1.7v-1.4h18Z", "key": "4b4206949c67c006026aa8556de2ede0669d1480" }], ["path", { "fill": "currentColor", "d": "M2.25 12.55h19.5v2.15c0 1.443-1.165 2.45-2.45 2.45H4.7c-1.443 0-2.45-1.165-2.45-2.45v-2.15Zm1.5 1.5v.65c0 .515.393.95.95.95h14.6c.515 0 .95-.393.95-.95v-.65H3.75Z", "key": "151416b4047774a9f0f03a13caad9b72c09c13fd" }], ["path", { "fill": "currentColor", "d": "M4.7 4.25c-.486 0-.95.464-.95.95v7.35h16.5V5.2c0-.53-.407-.95-1.05-.95H4.7Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h14.5c1.357 0 2.55.98 2.55 2.45v8.85H2.25V5.2Z", "key": "e69687ff611187d9f7aba285ad5af9455005e9b0" }]]);
const MonitorReception = createMeisterIcons("monitor-reception", [["path", { "fill": "currentColor", "d": "M5.15 15.1a.83.83 0 0 0-.85.85v3.2c0 .486.364.85.85.85h13.7a.83.83 0 0 0 .85-.85v-3.2a.83.83 0 0 0-.85-.85H5.15Zm-2.35.85a2.33 2.33 0 0 1 2.35-2.35h13.7a2.33 2.33 0 0 1 2.35 2.35v3.2a2.33 2.33 0 0 1-2.35 2.35H5.15a2.33 2.33 0 0 1-2.35-2.35v-3.2Z", "key": "1c761ef947b775cf23b1e3b2a86f8b20e05a4b9e" }], ["path", { "fill": "currentColor", "d": "M9.408 10.544A2.264 2.264 0 0 1 11.65 8.6h.7c1.2 0 2.094.902 2.242 1.944v.003l.508 3.651v.152h-1.47l-.023.003v-.003H13.6v-.048l-.492-3.546v-.001a.764.764 0 0 0-.758-.655h-.7a.764.764 0 0 0-.754.633l-.1 1.493L10.5 14.4v.049h-.007v.001l-.01-.001H9v-.15l.303-2.226.1-1.502.005-.028Z", "key": "dd0a16bd8948184fae94aafdac9420d3da1a228d" }], ["path", { "fill": "currentColor", "d": "M5.1 4.45c0-1.154.977-1.95 1.95-1.95h9.9c1.154 0 1.95.977 1.95 1.95v6.4c0 1.154-.977 1.95-1.95 1.95h-2.9v-1.5h2.9a.47.47 0 0 0 .31-.133.427.427 0 0 0 .14-.317v-6.4a.47.47 0 0 0-.133-.31.427.427 0 0 0-.317-.14h-9.9a.47.47 0 0 0-.31.133.427.427 0 0 0-.14.317v6.5a.47.47 0 0 0 .133.31c.084.089.192.14.317.14h2.9v1.5h-2.9c-1.154 0-1.95-.977-1.95-1.95v-6.5Z", "key": "812e1868717eaa5339f7d273d637973d4061806f" }]]);
const MonitorReceptionB = createMeisterIcons("monitor-reception-b", [["path", { "fill": "currentColor", "d": "M20.45 15.95v3.2c0 .9-.7 1.6-1.6 1.6H5.15c-.9 0-1.6-.7-1.6-1.6v-3.2c0-.9.7-1.6 1.6-1.6h13.7c.9 0 1.6.7 1.6 1.6Z", "key": "12c4f8b24e68f9d924c4593d5f6a44bf9f53d935" }], ["path", { "fill": "currentColor", "d": "M5.15 15.1a.83.83 0 0 0-.85.85v3.2c0 .486.364.85.85.85h13.7a.83.83 0 0 0 .85-.85v-3.2a.83.83 0 0 0-.85-.85H5.15Zm-2.35.85a2.33 2.33 0 0 1 2.35-2.35h13.7a2.33 2.33 0 0 1 2.35 2.35v3.2a2.33 2.33 0 0 1-2.35 2.35H5.15a2.33 2.33 0 0 1-2.35-2.35v-3.2Z", "key": "1c7eb5f0073d3af0328ae2036e018ea277786847" }], ["path", { "fill": "currentColor", "d": "M11.65 10.1c-.423 0-.65.3-.65.55v.053l-.207 1.45-.197 1.447h2.908l-.197-1.446-.201-1.411c-.051-.405-.315-.643-.756-.643h-.7Zm-2.15.49c.034-1.12.993-1.99 2.15-1.99h.7c1.156 0 2.091.76 2.243 1.95l.2 1.399.307 2.25v.901H9v-.9l.308-2.256.193-1.353Z", "key": "31d065e3c66d88a2a4aeb3ca793b5a208322aa85" }], ["path", { "fill": "currentColor", "d": "M5.1 4.45c0-1.154.977-1.95 1.95-1.95h9.9c1.154 0 1.95.977 1.95 1.95v6.4c0 1.154-.977 1.95-1.95 1.95h-2.9v-1.5h2.9a.47.47 0 0 0 .31-.133.427.427 0 0 0 .14-.317v-6.4a.47.47 0 0 0-.133-.31.427.427 0 0 0-.317-.14h-9.9a.47.47 0 0 0-.31.133.427.427 0 0 0-.14.317v6.5a.47.47 0 0 0 .133.31c.084.089.192.14.317.14h2.9v1.5h-2.9c-1.154 0-1.95-.977-1.95-1.95v-6.5Z", "key": "9569703261ca308f09f03eaccbba064b361a77b3" }]]);
const MonitorTriangle = createMeisterIcons("monitor-triangle", [["path", { "fill": "currentColor", "d": "M3.75 7.35A3.262 3.262 0 0 1 7 4.1h10a3.262 3.262 0 0 1 3.25 3.25v6A3.262 3.262 0 0 1 17 16.6a.75.75 0 0 0 0 1.5 4.762 4.762 0 0 0 4.75-4.75v-6A4.762 4.762 0 0 0 17 2.6H7a4.762 4.762 0 0 0-4.75 4.75v6A4.762 4.762 0 0 0 7 18.1a.75.75 0 0 0 0-1.5 3.262 3.262 0 0 1-3.25-3.25v-6Zm8.188 7.8c.57 0 1.056.33 1.32.84l1.788 3.08c.311.523.238 1.115-.01 1.543a1.55 1.55 0 0 1-1.336.787h-3.6a1.55 1.55 0 0 1-1.337-.787c-.247-.428-.32-1.02-.01-1.543l1.81-3.117.013-.02c.31-.465.8-.783 1.361-.783Zm-1.89 4.677 1.787-3.076a.355.355 0 0 1 .082-.087.307.307 0 0 1 .012.021l.01.021 1.813 3.121a.103.103 0 0 1-.014.035.106.106 0 0 1-.032.035.019.019 0 0 1-.005.003H10.1l-.006-.003a.106.106 0 0 1-.032-.035.103.103 0 0 1-.013-.035Z", "key": "4201f8d98cfdc09bf77aa7a57fb6ece7ab120872" }]]);
const MonitorTriangleB = createMeisterIcons("monitor-triangle-b", [["path", { "fill": "currentColor", "d": "M7 4.1a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 16.6a.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 2.6h10a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 18.1a.75.75 0 0 1 0-1.5 3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 4.1H7Z", "key": "0a4c7b26bcff3a1134cac1eda237a4280d1181c8" }], ["path", { "fill": "currentColor", "d": "m11.2 16.35-1.8 3.1c-.2.5.1 1.2.8 1.2h3.6c.6 0 1-.7.7-1.2l-1.8-3.1c-.4-.6-1.1-.6-1.5 0Z", "key": "9245222760613cf87028419fbd5017c7e51c666b" }], ["path", { "fill": "currentColor", "d": "M11.95 15.15c.568 0 1.06.313 1.374.784l.013.02 1.81 3.116c.31.523.237 1.115-.01 1.543a1.55 1.55 0 0 1-1.337.787h-3.6a1.57 1.57 0 0 1-1.387-.787 1.67 1.67 0 0 1-.11-1.441l.02-.051 1.84-3.168.013-.019c.314-.471.806-.784 1.374-.784Zm-.115 1.6-1.745 3.005a.18.18 0 0 0 .021.107.07.07 0 0 0 .024.026c.003.002.02.012.065.012h3.6l.006-.003a.105.105 0 0 0 .032-.035.101.101 0 0 0 .014-.035l-1.787-3.076a.315.315 0 0 0-.09-.091.088.088 0 0 0-.02-.01h-.01a.09.09 0 0 0-.02.01.315.315 0 0 0-.09.09Z", "key": "9d46dbab87b0d7907ec2af28348768ed976824d3" }]]);
const MonitorUpload = createMeisterIcons("monitor-upload", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75a.75.75 0 0 0 0-1.5A4.762 4.762 0 0 0 2.25 7v6A4.762 4.762 0 0 0 7 17.75h4.25v2.5H7.5a.75.75 0 0 0 0 1.5h9a.75.75 0 0 0 0-1.5h-3.75v-2.5H17A4.762 4.762 0 0 0 21.75 13V7a.75.75 0 0 0-1.5 0v6A3.262 3.262 0 0 1 17 16.25H7A3.262 3.262 0 0 1 3.75 13V7Zm6.5-4a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5h-3.463c.105.057.204.13.293.22l2.5 2.5a.75.75 0 1 1-1.06 1.06l-1.52-1.52V11a.75.75 0 0 1-1.5 0V5.91l-1.62 1.62a.75.75 0 0 1-1.06-1.06l2.5-2.5c.09-.09.188-.163.293-.22H11a.75.75 0 0 1-.75-.75Z", "key": "261df08f45660af70605d166f70bc7fa89a695e3" }]]);
const Moon = createMeisterIcons("moon", [["path", { "fill": "currentColor", "d": "M6.138 6.122C7.598 4.668 9.703 3.75 12 3.75c.524 0 1.066.088 1.553.185a.75.75 0 1 0 .294-1.47c-.513-.103-1.171-.215-1.847-.215-2.699 0-5.19 1.079-6.93 2.82l-.008.008-.008.008C3.337 6.91 2.25 9.289 2.25 12A9.713 9.713 0 0 0 12 21.75c2.698 0 5.19-1.079 6.93-2.82l.008-.008.008-.008C20.663 17.09 21.75 14.711 21.75 12c0-1.634-.435-3.148-1.08-4.435a.75.75 0 1 0-1.34.67c.555 1.113.92 2.399.92 3.765 0 2.285-.91 4.303-2.388 5.878-1.46 1.454-3.565 2.372-5.862 2.372A8.213 8.213 0 0 1 3.75 12c0-2.285.91-4.303 2.388-5.878Z", "key": "ed9c7b95c61cedf008a352205253ed71ad195479" }], ["path", { "fill": "currentColor", "d": "M14.43 3.027a.75.75 0 0 1-.556.903C12.119 4.348 10.75 6.04 10.75 8c0 2.386 1.864 4.25 4.25 4.25s4.25-1.864 4.25-4.25v-.1a.75.75 0 0 1 1.5 0V8c0 3.214-2.536 5.75-5.75 5.75S9.25 11.214 9.25 8c0-2.639 1.83-4.947 4.276-5.53a.75.75 0 0 1 .904.557Z", "key": "657899bd0b63411a82d634c90b53e2cbdba0d0c4" }]]);
const Mountains = createMeisterIcons("mountains", [["path", { "fill": "currentColor", "d": "M16.902 5.5a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5ZM3.687 19.201l5.5-9.902a.314.314 0 0 1 .244-.112.333.333 0 0 1 .198.05l2.184 4.548-4.248 5.965H3.952c-.297 0-.431-.316-.29-.514l.025-.035Zm9.576-4.866a.749.749 0 0 0 .12-.266l1.185-1.641.008-.012a.278.278 0 0 1 .452 0l.015.023 5.305 6.806c.066.1.072.224.015.342-.06.126-.149.163-.211.163H9.407l3.856-5.415ZM10.89 8.398l1.891 3.94.555-.767c.695-1.024 2.219-1.028 2.921-.013l5.295 6.793.01.013c.82 1.149.056 2.886-1.411 2.886h-16.2c-1.487 0-2.35-1.648-1.538-2.847L7.911 8.51l.017-.025c.686-1.03 2.198-1.042 2.91-.152l.053.066Z", "key": "5a711ddff216ac3bc7a8ba135272655ad6cb94eb" }]]);
const MountainsB = createMeisterIcons("mountains-b", [["path", { "fill": "currentColor", "d": "M15.106 12.516a.278.278 0 0 0-.452 0l-.008.012-1.306 1.809-3.855 5.413H20.03c.118 0 .245-.07.332-.227a.424.424 0 0 0 .058-.186l-5.299-6.798-.015-.023Zm5.313 6.804v.002-.002Zm-4.082-7.662c-.703-1.015-2.227-1.01-2.922.013l-1.293 1.79-5.547 7.789H20.03c.782 0 1.355-.48 1.643-.998.265-.477.409-1.234-.054-1.816l-5.282-6.778Z", "key": "c70e5b08f7a2886aec4556a7042a14d1391028c1" }], ["path", { "fill": "currentColor", "d": "m12.63 13.8-4.7 6.6h-4c-.9 0-1.4-1-.9-1.7l5.5-9.9c.4-.6 1.3-.6 1.7-.1l2.4 5.1Z", "key": "98da29fc7e4e9ce2812761200fe50043190bbc59" }], ["path", { "fill": "currentColor", "d": "m9.166 9.2-5.5 9.901-.026.035c-.141.198-.007.514.29.514h3.613l4.222-5.928-2.16-4.587a.334.334 0 0 0-.196-.048.314.314 0 0 0-.243.112Zm-1.26-.816c.686-1.03 2.198-1.042 2.91-.153l.055.07 2.625 5.577-5.18 7.272H3.93c-1.487 0-2.35-1.648-1.537-2.847L7.889 8.41l.017-.025ZM18.13 7.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "80501ce2f2820c19acbd816b4189303366c0e8e4" }], ["path", { "fill": "currentColor", "d": "M18.13 4.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM15.38 5.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "c9abee12d82bd792bf1db472deae8c398bba4b8f" }]]);
const Mouse = createMeisterIcons("mouse", [["path", { "fill": "currentColor", "d": "M6.299 9.45a5.63 5.63 0 0 1 5.65-5.65h.1a5.63 5.63 0 0 1 5.65 5.65v5.121c.087 3.058-2.452 5.63-5.65 5.63h-.1a5.63 5.63 0 0 1-5.65-5.651v-5.1Zm5.65-7.15a7.13 7.13 0 0 0-7.15 7.15v5.1a7.13 7.13 0 0 0 7.15 7.15h.1c3.998 0 7.256-3.223 7.15-7.16V9.45a7.13 7.13 0 0 0-7.15-7.15h-.1Zm.85 5.65a.75.75 0 0 0-1.5 0v2a.75.75 0 1 0 1.5 0v-2Z", "key": "c99917bad25066e46f17edc9628a6b810037c52c" }]]);
const MouseAlt = createMeisterIcons("mouse-alt", [["path", { "fill": "currentColor", "d": "M6.23 6.137c2.207-2.208 5.833-2.208 8.04 0l3.6 3.6c2.207 2.207 2.207 5.832 0 8.039-2.315 2.314-5.94 2.3-8.14.1l-3.6-3.6c-2.207-2.207-2.207-5.832 0-8.04l.1-.1Zm9.1-1.061c-2.793-2.793-7.367-2.793-10.16 0l-.1.1c-2.793 2.793-2.793 7.368 0 10.16l3.6 3.6c2.8 2.8 7.375 2.786 10.26-.1 2.793-2.792 2.793-7.367 0-10.16l-3.6-3.6Zm-5.7 3.5a.75.75 0 0 0-1.06 1.06l1.4 1.4a.75.75 0 1 0 1.06-1.06l-1.4-1.4Z", "key": "44308e71ec5ac37ccb5fc8c82aa08fe695bd7620" }]]);
const MouseAltB = createMeisterIcons("mouse-alt-b", [["path", { "fill": "currentColor", "d": "M18.306 18.363c-2.6 2.6-6.6 2.6-9.1 0l-3.6-3.6c-2.5-2.5-2.5-6.6 0-9.1l.1-.1c2.5-2.5 6.6-2.5 9.1 0l3.6 3.6c2.5 2.6 2.5 6.6-.1 9.2Z", "key": "4c9a5467db66506c337f118744a002aad4d4be81" }], ["path", { "fill": "currentColor", "d": "M14.276 6.093c-2.207-2.207-5.832-2.207-8.04 0l-.1.1c-2.207 2.207-2.207 5.832 0 8.04l3.606 3.604.005.006c2.2 2.287 5.716 2.302 8.029-.01 2.307-2.308 2.309-5.838.095-8.146l-3.595-3.594Zm-9.1-1.06c2.793-2.794 7.368-2.794 10.16 0l3.606 3.604.005.006c2.78 2.892 2.78 7.359-.11 10.25-2.886 2.885-7.365 2.902-10.166-.005l-3.595-3.595c-2.793-2.793-2.793-7.368 0-10.16l.1-.1Z", "key": "503e170fefce91789bd29313ebf17fb7044363e4" }], ["path", { "fill": "#fff", "d": "M8.576 8.632a.75.75 0 0 1 1.06 0l1.4 1.4a.75.75 0 0 1-1.06 1.06l-1.4-1.4a.75.75 0 0 1 0-1.06Z", "key": "fa28a0ae62b59116986a19c29876d973fbe7507b" }]]);
const MouseApple = createMeisterIcons("mouse-apple", [["path", { "fill": "currentColor", "d": "M9.1 3.65A3.518 3.518 0 0 0 5.55 7.2v9.6a3.518 3.518 0 0 0 3.55 3.55h5.8c1.886 0 3.55-1.664 3.55-3.55V7.2a3.518 3.518 0 0 0-3.55-3.55H9.1ZM4.05 7.2A5.018 5.018 0 0 1 9.1 2.15h5.8a5.018 5.018 0 0 1 5.05 5.05v9.6c0 2.714-2.336 5.05-5.05 5.05H9.1a5.018 5.018 0 0 1-5.05-5.05V7.2Z", "key": "1615117983ab156697c71903afb762c6265b0f9c" }], ["path", { "fill": "currentColor", "d": "M8.57 6.37a.75.75 0 0 1 1.06 0c1.307 1.307 3.333 1.307 4.64 0a.75.75 0 1 1 1.06 1.06c-1.892 1.893-4.867 1.893-6.76 0a.75.75 0 0 1 0-1.06Z", "key": "71cb615ce10e010b67e94658bde3f59a927025c3" }]]);
const MouseB = createMeisterIcons("mouse-b", [["path", { "fill": "currentColor", "d": "M12.049 21h-.1c-3.6 0-6.4-2.9-6.4-6.4V9.4c0-3.6 2.9-6.4 6.4-6.4h.1c3.6 0 6.4 2.9 6.4 6.4v5.1c.1 3.6-2.8 6.5-6.4 6.5Z", "key": "c3d8d62e021d4a2325f52baf24a97f7af887b9a1" }], ["path", { "fill": "currentColor", "d": "M11.949 3.75a5.63 5.63 0 0 0-5.65 5.65v5.2a5.63 5.63 0 0 0 5.65 5.65h.1c3.19 0 5.738-2.564 5.65-5.73V9.4a5.63 5.63 0 0 0-5.65-5.65h-.1ZM4.799 9.4a7.13 7.13 0 0 1 7.15-7.15h.1a7.13 7.13 0 0 1 7.15 7.15v5.09c.106 4.03-3.144 7.26-7.15 7.26h-.1a7.13 7.13 0 0 1-7.15-7.15V9.4Z", "key": "a778e7959803791ca32ed952c7265bf3d36086b9" }], ["path", { "fill": "#fff", "d": "M12.049 7.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0V8a.75.75 0 0 1 .75-.75Z", "key": "8dc7af2cac072eaac593335555f6a979ead090a6" }]]);
const Movie = createMeisterIcons("movie", [["path", { "fill": "currentColor", "d": "M3.9 9c0-1.286.964-2.25 2.25-2.25h7c1.286 0 2.25.964 2.25 2.25v6c0 1.186-1.064 2.25-2.25 2.25h-7c-1.286 0-2.25-.964-2.25-2.25V9Zm13 5.045V15c0 2.014-1.736 3.75-3.75 3.75h-7c-2.114 0-3.75-1.636-3.75-3.75V9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v.855l2.078-1.206c1.236-.707 2.622.217 2.622 1.551v3.5c0 1.334-1.386 2.258-2.622 1.551l-.005-.002-2.073-1.204Zm0-2.455 2.824-1.64c.108-.06.19-.045.249-.01.063.04.127.121.127.26v3.5c0 .139-.064.22-.127.26-.059.035-.141.05-.25-.01L16.9 12.31v-.72Z", "key": "87d40e1351b448ecf8a752b77a6f1f05117983cc" }]]);
const MovieAdd = createMeisterIcons("movie-add", [["path", { "fill": "currentColor", "d": "M3.75 9c0-1.286.964-2.25 2.25-2.25h7c1.286 0 2.25.964 2.25 2.25v6c0 1.186-1.064 2.25-2.25 2.25H6c-1.286 0-2.25-.964-2.25-2.25V9ZM6 5.25C3.886 5.25 2.25 6.886 2.25 9v6c0 2.114 1.636 3.75 3.75 3.75h7c2.014 0 3.75-1.736 3.75-3.75v-1.13l2.374 1.379.004.002c1.236.707 2.622-.217 2.622-1.551v-3.6c0-1.334-1.386-2.257-2.622-1.551l-2.378 1.38V9c0-2.114-1.636-3.75-3.75-3.75H6Zm10.75 6.45a.757.757 0 0 0 .108-.098l3.016-1.752c.108-.06.19-.045.249-.01.063.04.127.121.127.26v3.6c0 .139-.064.22-.127.26-.059.035-.141.05-.25-.01l-3.012-1.75-.03-.03a.764.764 0 0 0-.081-.07v-.4ZM9.5 8.75a.75.75 0 0 1 .75.75v1.75h1.65a.75.75 0 0 1 0 1.5h-1.65v1.65a.75.75 0 0 1-1.5 0v-1.65H7a.75.75 0 0 1 0-1.5h1.75V9.5a.75.75 0 0 1 .75-.75Z", "key": "b518e2863767a7658963f99fe6907a071a551150" }]]);
const MovieAddB = createMeisterIcons("movie-add-b", [["path", { "fill": "currentColor", "d": "M13 18H6c-1.7 0-3-1.3-3-3V9c0-1.7 1.3-3 3-3h7c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "4f3e50138c8a4fe3d5896ad280b73ed97b70f72b" }], ["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h7c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "ba7a901faab49424f3937d88dbd95b4e798ac9ff" }], ["path", { "fill": "currentColor", "d": "M19.128 8.649c1.236-.706 2.622.217 2.622 1.551v3.5c0 1.334-1.386 2.258-2.622 1.551l-.005-.002-3.184-1.85-.17-.169a.75.75 0 1 1 1.061-1.06l.031.03 3.013 1.75c.108.06.19.045.248.01.064-.04.128-.121.128-.26v-3.5c0-.139-.064-.22-.128-.26-.058-.035-.14-.05-.248.01l-3.016 1.752a.75.75 0 0 1-1.308-.502h.75-.75v-.026a.828.828 0 0 1 .012-.113.837.837 0 0 1 .556-.664l3.01-1.748Z", "key": "ec7270de222a733f445873b6ffbdb3631163d598" }], ["path", { "fill": "#fff", "d": "M9.5 8.75a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V9.5a.75.75 0 0 1 .75-.75Z", "key": "12f7ed515f02fe9b5b7c6392d602a4be5f4953be" }], ["path", { "fill": "#fff", "d": "M6.25 12a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1-.75-.75Z", "key": "a687a39d0be1f43a49562f9efe9e48b76d6c2105" }]]);
const MovieB = createMeisterIcons("movie-b", [["path", { "fill": "currentColor", "d": "M13.15 18h-7c-1.7 0-3-1.3-3-3V9c0-1.7 1.3-3 3-3h7c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "7ccf9db90d9e875bad9644340a3ccf0e16d1dc6d" }], ["path", { "fill": "currentColor", "d": "M6.15 6.75C4.864 6.75 3.9 7.714 3.9 9v6c0 1.286.964 2.25 2.25 2.25h7c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25h-7ZM2.4 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-7c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "fb9830865f8d18bed3b483327c2017ceb354a0f5" }], ["path", { "fill": "currentColor", "d": "M18.978 8.649c1.236-.706 2.622.217 2.622 1.551v3.5c0 1.334-1.386 2.258-2.622 1.551l-.007-.004-2.902-1.74a1.068 1.068 0 0 1-.39-.222 1.151 1.151 0 0 1-.036-.032l-.013-.013-.006-.005-.002-.002-.001-.002h-.001l.53-.531-.53.53a.75.75 0 0 1 .905-1.18h.033l3.17 1.902c.105.059.187.042.244.007.064-.038.128-.12.128-.259v-3.5c0-.139-.064-.22-.128-.26-.058-.035-.14-.05-.248.01l-3.185 1.85a.824.824 0 0 1-.254.118.87.87 0 0 1-.235.032.75.75 0 0 1-.315-1.43.915.915 0 0 1 .233-.123l3.01-1.748Z", "key": "e3b210c0e8338e969adba5e3956b75db154ab2f0" }]]);
const MovieBlock = createMeisterIcons("movie-block", [["path", { "fill": "currentColor", "d": "M3.6 9c0-1.286.964-2.25 2.25-2.25h7c1.286 0 2.25.964 2.25 2.25v6c0 1.202-.98 2.25-2.25 2.25h-7c-1.286 0-2.25-.964-2.25-2.25V9Zm2.25-3.75C3.736 5.25 2.1 6.886 2.1 9v6c0 2.114 1.636 3.75 3.75 3.75h7c2.13 0 3.75-1.752 3.75-3.75v-1.304l2.673 1.553.005.002c1.236.706 2.622-.217 2.622-1.551v-3.6c0-1.334-1.386-2.258-2.622-1.551L16.6 10.104V9c0-2.114-1.636-3.75-3.75-3.75h-7Zm10.75 6.564v.179a.744.744 0 0 1 .124.057h.028l3.272 1.9c.108.06.19.045.248.01.064-.04.128-.121.128-.26v-3.6c0-.139-.064-.22-.127-.26-.059-.035-.141-.05-.25.01L16.84 11.7a.894.894 0 0 1-.239.114Zm-6.338-1.872c-.78-.362-1.774-.219-2.482.488l-.011.012-.012.01c-.684.627-.847 1.641-.427 2.493l2.932-3.003Zm1.074 1.048c.462.864.309 1.914-.393 2.557a2.4 2.4 0 0 1-2.538.444l2.931-3.001Zm.656-1.609c-1.408-1.521-3.784-1.487-5.26-.023-1.526 1.411-1.488 3.797-.012 5.272 1.405 1.405 3.763 1.374 5.237.023 1.534-1.406 1.503-3.792.035-5.272Z", "key": "3fb190be5f911fdc4b0eaaf56b505153c3931cc4" }]]);
const MovieCheck = createMeisterIcons("movie-check", [["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h7c1.27 0 2.25-1.048 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v.93l2.378-1.381c1.236-.707 2.622.217 2.622 1.55v3.6c0 1.335-1.386 2.258-2.622 1.552l-.005-.002-2.373-1.379V15c0 1.998-1.62 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Zm14.608 2.601a.757.757 0 0 1-.108.099v.4a.774.774 0 0 1 .08.07l.031.03 3.013 1.75c.108.06.19.045.249.01.063-.04.127-.121.127-.26v-3.6c0-.139-.064-.22-.127-.26-.059-.035-.141-.05-.25.01l-3.015 1.751Zm-4.636-.463a.75.75 0 1 0-1.044-1.076l-2.863 2.775L7.5 11.75a.75.75 0 0 0-1.2.9l1.232 1.643.038.037c.212.212.488.295.718.295.115 0 .295-.02.472-.13a.833.833 0 0 0 .256-.248l3.206-3.108Z", "key": "fe8398f951f3519fdcc3498d959a436ab7e78a75" }]]);
const MovieCheckB = createMeisterIcons("movie-check-b", [["path", { "fill": "currentColor", "d": "M13 18H6c-1.7 0-3-1.3-3-3V9c0-1.7 1.3-3 3-3h7c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "7ce4e3d6d7617f556d6241cd6394f52cdd683b26" }], ["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h7c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "3bac8ab6203e0a8c3e9bee79321b023d9fc1c08c" }], ["path", { "fill": "currentColor", "d": "M19.128 8.649c1.236-.706 2.622.217 2.622 1.551v3.5c0 1.334-1.386 2.258-2.622 1.551l-.005-.002-3.184-1.85-.17-.169a.75.75 0 1 1 1.061-1.06l.031.03 3.013 1.75c.108.06.19.045.248.01.064-.04.128-.121.128-.26v-3.5c0-.139-.064-.22-.128-.26-.058-.035-.14-.05-.248.01l-3.016 1.752a.75.75 0 0 1-1.308-.502h.75-.75v-.026a.828.828 0 0 1 .012-.113.837.837 0 0 1 .556-.664l3.01-1.748Z", "key": "affe33e42c76633ccc1e9031a21131b3c8f39153" }], ["path", { "fill": "#fff", "d": "M12.238 10.078a.75.75 0 0 1-.016 1.06l-3.206 3.109a.834.834 0 0 1-.256.248.902.902 0 0 1-.472.13c-.23 0-.506-.083-.718-.295l-.038-.037L6.3 12.65a.75.75 0 1 1 1.2-.9l.815 1.087 2.863-2.775a.75.75 0 0 1 1.06.016Z", "key": "acee61b5ccf9648787dd4d6e6ef473daf42eac88" }]]);
const MovieCross = createMeisterIcons("movie-cross", [["path", { "fill": "currentColor", "d": "M3.75 9c0-1.286.964-2.25 2.25-2.25h7c1.286 0 2.25.964 2.25 2.25v6c0 1.202-.98 2.25-2.25 2.25H6c-1.286 0-2.25-.964-2.25-2.25V9ZM6 5.25C3.886 5.25 2.25 6.886 2.25 9v6c0 2.114 1.636 3.75 3.75 3.75h7c2.13 0 3.75-1.752 3.75-3.75v-1.13l2.374 1.379.004.002c1.236.706 2.622-.217 2.622-1.551v-3.6c0-1.334-1.386-2.258-2.622-1.551l-2.378 1.38V9c0-2.114-1.636-3.75-3.75-3.75H6Zm10.75 6.45a.757.757 0 0 0 .108-.099l3.016-1.75c.108-.062.19-.046.249-.01.063.038.127.12.127.259v3.6c0 .139-.064.22-.127.26-.059.035-.141.05-.25-.01l-3.012-1.75-.03-.03a.774.774 0 0 0-.081-.07v-.4Zm-5.027-2.038a.75.75 0 0 1 .015 1.06l-1.192 1.228 1.192 1.227a.75.75 0 1 1-1.076 1.046L9.5 13.026l-1.162 1.197a.75.75 0 0 1-1.076-1.046l1.192-1.227-1.192-1.227a.75.75 0 1 1 1.076-1.046L9.5 10.874l1.162-1.197a.75.75 0 0 1 1.06-.015Z", "key": "f9d1267db3d8f8e1d1ef458c3baaade4866733e7" }]]);
const MovieCrossB = createMeisterIcons("movie-cross-b", [["path", { "fill": "currentColor", "d": "M13 18H6c-1.7 0-3-1.3-3-3V9c0-1.7 1.3-3 3-3h7c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "74619f5f6552223facc7468688528c6788ab1a0a" }], ["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h7c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "ca931e53fd5164e8e27ee639abfa5ec1e4654290" }], ["path", { "fill": "currentColor", "d": "M19.128 8.649c1.236-.706 2.622.217 2.622 1.551v3.5c0 1.334-1.386 2.258-2.622 1.551l-.005-.002-3.184-1.85-.17-.169a.75.75 0 1 1 1.061-1.06l.031.03 3.013 1.75c.108.06.19.045.248.01.064-.04.128-.121.128-.26v-3.5c0-.139-.064-.22-.128-.26-.058-.035-.14-.05-.248.01l-3.016 1.752a.75.75 0 0 1-1.308-.502h.75-.75v-.026a.828.828 0 0 1 .012-.113.837.837 0 0 1 .556-.664l3.01-1.748Z", "key": "51796e1ef801c3579cfb7964edc78b7a13425550" }], ["path", { "fill": "#fff", "d": "M11.73 9.67a.75.75 0 0 1 0 1.06l-3.5 3.5a.75.75 0 0 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0Z", "key": "f72c814ca624eae99265701c6bd23e14dfd52eaa" }], ["path", { "fill": "#fff", "d": "M7.17 9.67a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 1 1-1.06 1.06l-3.5-3.5a.75.75 0 0 1 0-1.06Z", "key": "d951244847bbed24261c4dc929813a5eccaabfa9" }]]);
const MovieHeart = createMeisterIcons("movie-heart", [["path", { "fill": "currentColor", "d": "M8.1 10.15a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l.2.2 1.82 1.82 1.906-1.906.142-.072c.19-.281.252-.478.252-.612a.907.907 0 0 0-.28-.67c-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.2.2 1.9 1.9c.297.298.705.37.98.37s.683-.072.98-.37l1.814-1.814.25-.124.106-.142c.332-.443.65-1.005.65-1.65 0-.72-.294-1.305-.72-1.73-.796-.797-2.135-.883-3.05-.258Z", "key": "a2c136135af06bfe82594185cbbf2c771d221858" }], ["path", { "fill": "currentColor", "d": "M6 6.75c-1.286 0-2.25.964-2.25 2.25v6c0 1.286.964 2.25 2.25 2.25h7c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25H6ZM2.25 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75H6c-2.114 0-3.75-1.636-3.75-3.75V9Z", "key": "793fbc81cb66fa97c2f6bc43da880265537e2fa8" }], ["path", { "fill": "currentColor", "d": "M19.128 8.649c1.236-.706 2.622.217 2.622 1.551v3.5c0 1.334-1.386 2.258-2.622 1.551l-.005-.002-3.184-1.85-.17-.169a.75.75 0 1 1 1.061-1.06l.031.03 3.013 1.75c.108.06.19.045.248.01.064-.04.128-.121.128-.26v-3.5c0-.139-.064-.22-.128-.26-.058-.035-.14-.05-.248.01l-3.016 1.752a.75.75 0 0 1-1.308-.502h.75-.75v-.026a.828.828 0 0 1 .012-.113.837.837 0 0 1 .556-.664l3.01-1.748Z", "key": "b4e9c179db6bc7d50fc68bff19f7e7ee3b6ef5ac" }]]);
const MoviePause = createMeisterIcons("movie-pause", [["path", { "fill": "currentColor", "d": "M5.75 6.75C4.464 6.75 3.5 7.714 3.5 9v6c0 1.286.964 2.25 2.25 2.25h7c1.27 0 2.25-1.048 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25h-7ZM2 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v6c0 1.998-1.62 3.75-3.75 3.75h-7C3.636 18.75 2 17.114 2 15V9Z", "key": "abb193f1e8434490fe5ac14b9549d0bb9eb8ff0f" }], ["path", { "fill": "currentColor", "d": "M19.378 8.549c1.236-.707 2.622.217 2.622 1.55v3.6c0 1.335-1.386 2.258-2.622 1.552l-.005-.002-2.997-1.74a1.072 1.072 0 0 1-.397-.224 1.176 1.176 0 0 1-.036-.033l-.013-.012-.006-.005-.002-.003h-.001l-.001-.002.51-.511-.51.511a.75.75 0 0 1 .905-1.18h.027l3.272 1.9c.108.06.19.045.248.01.064-.04.128-.121.128-.26v-3.6c0-.14-.064-.221-.128-.26-.058-.035-.14-.051-.248.01l-3.185 1.85a.894.894 0 0 1-.254.118.875.875 0 0 1-.235.032.75.75 0 0 1-.315-1.43.886.886 0 0 1 .233-.123l3.01-1.748Zm-2.398 3.62ZM7.25 9.25A.75.75 0 0 1 8 10v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm4 0A.75.75 0 0 1 12 10v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "6ad8bd1e7ad4b7cdb28684ff900bbbbdf3c2fb5d" }]]);
const MoviePauseB = createMeisterIcons("movie-pause-b", [["path", { "fill": "currentColor", "d": "M12.75 18h-7c-1.7 0-3-1.3-3-3V9c0-1.7 1.3-3 3-3h7c1.7 0 3 1.3 3 3v6c0 1.6-1.4 3-3 3Z", "key": "3d29523acff287ca129ec6ffa96407d111adbd76" }], ["path", { "fill": "currentColor", "d": "M5.75 6.75C4.464 6.75 3.5 7.714 3.5 9v6c0 1.286.964 2.25 2.25 2.25h7c1.186 0 2.25-1.064 2.25-2.25V9c0-1.286-.964-2.25-2.25-2.25h-7ZM2 9c0-2.114 1.636-3.75 3.75-3.75h7c2.114 0 3.75 1.636 3.75 3.75v6c0 2.014-1.736 3.75-3.75 3.75h-7C3.636 18.75 2 17.114 2 15V9Z", "key": "5d029f04748ef9b0d7d90833275d72175d69e336" }], ["path", { "fill": "currentColor", "d": "M19.378 8.649C20.614 7.943 22 8.866 22 10.2v3.5c0 1.334-1.386 2.258-2.622 1.551l-.005-.002-2.997-1.74a1.067 1.067 0 0 1-.397-.224 1.136 1.136 0 0 1-.036-.032l-.013-.013-.006-.005-.002-.002-.001-.002h-.001l.53-.531-.53.53a.75.75 0 0 1 .905-1.18h.027l3.272 1.9c.108.06.19.045.249.01.063-.04.127-.121.127-.26v-3.5c0-.139-.064-.22-.127-.26-.059-.035-.141-.05-.25.01L16.94 11.8a.863.863 0 0 1-.489.15.75.75 0 0 1-.315-1.43.9.9 0 0 1 .233-.123l3.01-1.748Z", "key": "758e30e12692bf9207f7447ed1ee620c10b2398d" }], ["path", { "fill": "#fff", "d": "M7.25 9.25A.75.75 0 0 1 8 10v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Zm4 0A.75.75 0 0 1 12 10v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "6f8e37e36d217f783993585ad3030a4e6771c4f1" }]]);
const Nav = createMeisterIcons("nav", [["g", { "clip-path": "url(#prefix__a)", "key": "0d8a11c3332a4fa56885f683a3a968302d3a39a1" }], ["defs", { "key": "3875ccc2ce4c6427b25987db29701baca68a2647" }]]);
const NavAlt = createMeisterIcons("nav-alt", [["path", { "fill": "currentColor", "d": "M4.045 4.227A1.327 1.327 0 0 1 5.7 3.879l.002.001 13.898 7h.002c.516.259.713.79.713 1.195 0 .213-.052.474-.219.704a1.015 1.015 0 0 1-.605.397L5.702 20.12H5.7a1.383 1.383 0 0 1-1.674-.326c-.368-.42-.51-1.117-.06-1.696L8.393 12 3.94 5.864l-.017-.028a1.407 1.407 0 0 1 .123-1.609Zm1.45 1.229 4.15 5.715a1.233 1.233 0 0 1 0 1.658l-4.15 5.715L18.492 12 5.496 5.456ZM18.93 12.22l-.002-.001h.002Z", "key": "8207f1c94427d26cb8c38ec6a440fd9ca78f2eae" }], ["path", { "fill": "currentColor", "d": "M7.98 11.572a.75.75 0 0 1 .75-.75h10.4a.75.75 0 0 1 0 1.5H8.73a.75.75 0 0 1-.75-.75Z", "key": "9f18bc9c86eac4939bcbcc1e0a0cf6702cc3bd8c" }]]);
const NavAltB = createMeisterIcons("nav-alt-b", [["path", { "fill": "currentColor", "d": "M19.55 11.95H9.05c0-.1 0-.3-.1-.3l-4.4-6.3c-.4-.5.2-1.2.7-.9l13.9 7c.3.1.4.3.4.5Z", "key": "491ec50ebbabb179d30bcf582cd0ada988a8c112" }], ["path", { "fill": "currentColor", "d": "m5.516 5.424 3.96 5.668c.04.034.075.07.106.108h7.404L5.516 5.424Zm13.93 5.335c.248.094.468.246.627.468.17.237.227.497.227.723v.75h-12v-.67L3.947 5.795c-.443-.575-.3-1.258.033-1.669.324-.398.98-.705 1.628-.337l13.838 6.97Z", "key": "c40cb12351b2c68634366a8adce50f3ac9cf4530" }], ["path", { "fill": "currentColor", "d": "M8.4 11.3h11.15v.65h.75v.85h-.283a2.11 2.11 0 0 1-.237.28l-.085.086L5.687 20.22h-.002a1.383 1.383 0 0 1-1.674-.326c-.368-.42-.51-1.117-.06-1.696l4.449-6.13V11.3Zm8.686 1.5L5.481 18.644l4.15-5.719a.897.897 0 0 0 .095-.125h7.36Z", "key": "1bb3ef466f40d057f4ca2a44c3b5fc4da89d0b93" }]]);
const NavAltVarB = createMeisterIcons("nav-alt-var-b", [["path", { "fill": "currentColor", "d": "m5.516 5.424 3.96 5.668c.04.034.075.07.106.108h7.404L5.516 5.424Zm13.93 5.335c.248.094.468.246.627.468.17.237.227.497.227.723v.75h-12v-.67L3.947 5.795c-.443-.575-.3-1.258.033-1.669.324-.398.98-.705 1.628-.337l13.838 6.97Z", "key": "5cc742efe0f4e1343002f6b232722421129b1725" }], ["path", { "fill": "currentColor", "d": "M19.55 11.95c0 .2-.1.4-.3.6l-13.9 7c-.6.3-1.2-.4-.8-.9l4.5-6.2c.1-.1.1-.2.1-.4h10.4v-.1Z", "key": "1c2054543a351bde6f300ed272b4e2af76a5596d" }], ["path", { "fill": "currentColor", "d": "M8.4 11.3h11.15v.65h.75v.85h-.283a2.11 2.11 0 0 1-.237.28l-.085.086L5.687 20.22h-.002a1.383 1.383 0 0 1-1.674-.326c-.368-.42-.51-1.117-.06-1.696l4.449-6.13V11.3Zm8.686 1.5L5.481 18.644l4.15-5.719a.897.897 0 0 0 .095-.125h7.36Z", "key": "e52d54c194002232fc8d1e6a424e6b765c3a3307" }]]);
const NavB = createMeisterIcons("nav-b", [["path", { "fill": "currentColor", "d": "m11.45 4.75-7 13.9c-.3.6.4 1.1.9.8l6.3-4.5c.2-.2.5-.2.7 0l6.2 4.5c.5.4 1.2-.2.9-.8l-7-13.9c-.1-.5-.8-.5-1 0Z", "key": "54d7a60fe692437bdedd0a17c18739e1f1c9f99d" }]]);
const NavDiag = createMeisterIcons("nav-diag", [["path", { "fill": "currentColor", "d": "M19.046 3.271a1.411 1.411 0 0 1 1.683 1.683l-.01.045-4.914 14.843v.002c-.232.695-.882.96-1.42.91-.526-.051-1.113-.42-1.231-1.122v-.002l-1.283-7.5-7.5-1.284h-.003c-.702-.118-1.071-.705-1.121-1.23-.051-.539.214-1.19.91-1.421L19.002 3.28l.045-.009Zm.162 1.52L5.126 9.455l7.043 1.205c.296.016.59.127.817.355.228.227.34.521.355.817l1.205 7.043 4.662-14.082Z", "key": "8bdfca7b0a597ec3577455e9e49dfca225cf53a9" }]]);
const NavDiagB = createMeisterIcons("nav-diag-b", [["path", { "fill": "currentColor", "d": "m19.15 4.05-14.7 4.9c-.6.2-.6 1.1.1 1.2l7.6 1.3c.3 0 .5.2.5.5l1.3 7.6c.1.6 1 .7 1.2.1l4.9-14.8c.1-.5-.4-1-.9-.8Z", "key": "3d06707999c8c801e379f497890d17ce346f30d9" }], ["path", { "fill": "currentColor", "d": "M20.335 3.638c.34.316.558.821.45 1.36l-.009.044-4.914 14.844v.001c-.232.696-.883.96-1.42.91-.527-.05-1.114-.42-1.232-1.122v-.002l-1.283-7.5-7.495-1.282a1.335 1.335 0 0 1-1.169-1.268 1.385 1.385 0 0 1 .95-1.385l14.683-4.894a1.382 1.382 0 0 1 1.44.294Zm-1.058 1.16L5.181 9.497l7.045 1.205c.295.016.59.127.817.355.228.228.339.522.355.817l1.205 7.043 4.674-14.119Z", "key": "3890ed1523aac4233657d6702b4cc7679ba84f20" }]]);
const NineKey = createMeisterIcons("nine-key", [["path", { "fill": "currentColor", "d": "M5 3.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM2.25 5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM12 3.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM19 2.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm-14 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM2.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 9.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm7 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM16.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm-12.5 7a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM5 16.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm7 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 19a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM19 16.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "d4f0fa0c7d57c5f185a96a1c95e8f75340eb3327" }]]);
const NineKeyB = createMeisterIcons("nine-key-b", [["path", { "fill": "currentColor", "d": "M17.9 7a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "5ab905a2022bbcf41088ddf284c6e3862a86afa0" }], ["path", { "fill": "currentColor", "d": "M17.9 4.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 7a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "7a0f462965cf5203f5c437aa25a0121d7f29693e" }], ["path", { "fill": "currentColor", "d": "M12 4.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM6.1 7a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "9512b2deefe7bbb331a7142486a669e73ab786f7" }], ["path", { "fill": "currentColor", "d": "M6.1 4.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm13.8 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "b933d06f57b43a07fcd814f2fb7ec5b21c50d1be" }], ["path", { "fill": "currentColor", "d": "M17.9 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "218116ac202747eec1f3cc08ca3b1e64aa2c6b18" }], ["path", { "fill": "currentColor", "d": "M12 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-3.9 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "f34cd09e9e58fb1b1269d41aa50e8b69b87ecd44" }], ["path", { "fill": "currentColor", "d": "M6.1 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm13.8 8a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "eea9e13acc072719a9adfcf8d79c93f7a9e44fb2" }], ["path", { "fill": "currentColor", "d": "M17.9 17.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 20a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "03cab3eb3a7792a8793e76829b6f9e04b1ebe88b" }], ["path", { "fill": "currentColor", "d": "M12 17.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM6.1 20a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "fbc36ea03a1fb91969df67b869699ff73c4b1ca4" }], ["path", { "fill": "currentColor", "d": "M6.1 17.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z", "key": "3fdce3b163c575e13c4a2c1b8971c98f323f1c47" }]]);
const NoEntry = createMeisterIcons("no-entry", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "81de63cffff00a80c9f1eb16b6d165d037082b20" }], ["path", { "fill": "currentColor", "d": "m5.57 18.27 12.7-12.7 1.06 1.06-12.7 12.7-1.06-1.06Z", "key": "1391249e2d948c2d350565a016b1437ae88c9362" }]]);
const NoEntryB = createMeisterIcons("no-entry-b", [["path", { "fill": "currentColor", "d": "m18.856 4.98.526.647C20.768 7.333 21.75 9.495 21.75 12A9.713 9.713 0 0 1 12 21.75c-2.376 0-4.663-.863-6.312-2.402l-.565-.527L18.856 4.979ZM7.308 18.747c1.29.956 2.95 1.502 4.692 1.502A8.213 8.213 0 0 0 20.25 12c0-1.79-.598-3.393-1.53-4.755L7.308 18.748Z", "key": "63ddd8c18947045e13bcd5d31d26c90a266c919d" }], ["path", { "fill": "currentColor", "d": "M18.8 6.1 6.1 18.8C4.2 17.1 3 14.7 3 12c0-5 4-9 9-9 2.7 0 5.1 1.2 6.8 3.1Z", "key": "85eedcdc1aeff4ed89df3ceab7da19386cfa08da" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 2.22.886 4.225 2.341 5.748L17.748 6.091C16.225 4.636 14.22 3.75 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25c2.931 0 5.53 1.305 7.359 3.35l.473.529L6.129 19.832l-.53-.473C3.556 17.529 2.25 14.93 2.25 12Z", "key": "86488c49d4983d0063d68a8981565eb2bca980dc" }]]);
const NoEntryVarB = createMeisterIcons("no-entry-var-b", [["path", { "fill": "currentColor", "d": "M21 12c0 5-4 9-9 9-2.2 0-4.3-.8-5.8-2.2L18.8 6.1C20.1 7.7 21 9.7 21 12Z", "key": "aa7a8ba540fa241c33652f401032b22fdc47f237" }], ["path", { "fill": "currentColor", "d": "m18.856 4.98.526.647C20.768 7.333 21.75 9.495 21.75 12A9.713 9.713 0 0 1 12 21.75c-2.376 0-4.663-.863-6.312-2.402l-.565-.527L18.856 4.979ZM7.308 18.747c1.29.956 2.95 1.502 4.692 1.502A8.213 8.213 0 0 0 20.25 12c0-1.79-.598-3.393-1.53-4.755L7.308 18.748Z", "key": "a94f72de878d5335e8b03fbc19a79333465943da" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 2.22.886 4.225 2.341 5.748L17.748 6.091C16.225 4.636 14.22 3.75 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25c2.931 0 5.53 1.305 7.359 3.35l.473.529L6.129 19.832l-.53-.473C3.556 17.529 2.25 14.93 2.25 12Z", "key": "3ca6c930e3009f8efa3f6f108be78578e7bcbbdd" }]]);
const Notebook = createMeisterIcons("notebook", [["path", { "fill": "currentColor", "d": "M5.75 6c0-1.286.964-2.25 2.25-2.25h8c1.286 0 2.25.964 2.25 2.25v12c0 1.286-.964 2.25-2.25 2.25H8c-1.286 0-2.25-.964-2.25-2.25V6ZM8 2.25C5.886 2.25 4.25 3.886 4.25 6v12c0 2.114 1.636 3.75 3.75 3.75h8c2.114 0 3.75-1.636 3.75-3.75V6c0-2.114-1.636-3.75-3.75-3.75H8ZM8.75 7c0-.13.04-.18.055-.195.016-.015.065-.055.195-.055h6c.13 0 .18.04.195.055.015.016.055.065.055.195v3c0 .006-.01.075-.093.157-.082.082-.15.093-.157.093H9c-.13 0-.18-.04-.195-.055-.015-.016-.055-.065-.055-.195V7ZM9 5.25c-.47 0-.92.16-1.255.495C7.41 6.079 7.25 6.53 7.25 7v3c0 .47.16.92.495 1.255.334.335.785.495 1.255.495h6c.494 0 .925-.24 1.218-.532.293-.293.532-.724.532-1.218V7c0-.47-.16-.92-.495-1.255-.334-.335-.785-.495-1.255-.495H9Z", "key": "bf5597ae22264e282fe4303a080278cf1ebc2d73" }]]);
const NotebookOpen = createMeisterIcons("notebook-open", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h4.25V3.75H7Zm10 16.5h-4.25V3.75H17A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Zm4.05.25a.75.75 0 0 0 0 1.5h2a.75.75 0 1 0 0-1.5h-2ZM5.55 12a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5h-2Z", "key": "9552e91fde5d856d5bddd16cad659af3d4e85694" }]]);
const NotebookOpenB = createMeisterIcons("notebook-open-b", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h4.25V3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h5.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "17d00b9c18c4c9a398e410b0bfb4de29e50c0dfb" }], ["path", { "fill": "currentColor", "d": "M21 7v10c0 2.2-1.8 4-4 4h-5V3h5c2.2 0 4 1.7 4 4Z", "key": "a779a31dbcd8e92da90757894872ccdf7d778f46" }], ["path", { "fill": "currentColor", "d": "M11.25 2.25H17c2.602 0 4.75 2.024 4.75 4.75v10A4.762 4.762 0 0 1 17 21.75h-5.75V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7c0-1.874-1.452-3.25-3.25-3.25h-4.25ZM5.55 8a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2A.75.75 0 0 1 5.55 8Zm0 4a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Z", "key": "1900b0329c62d773128a0325a3420741bd75d55f" }]]);
const NoteLocate = createMeisterIcons("note-locate", [["path", { "fill": "currentColor", "d": "M4.471 6.39a3.262 3.262 0 0 1 3.25-3.25h8a3.262 3.262 0 0 1 3.25 3.25v4a.75.75 0 0 0 1.5 0v-4a4.762 4.762 0 0 0-4.75-4.75h-8a4.762 4.762 0 0 0-4.75 4.75v8a4.762 4.762 0 0 0 4.75 4.75.75.75 0 0 0 0-1.5 3.262 3.262 0 0 1-3.25-3.25v-8ZM20.6 17.609l-6.558-6.16a1.13 1.13 0 0 0-1.11-.265c-.358.107-.735.433-.758.954l-1.002 9.01v.042c0 .438.231.923.732 1.105.54.196 1.037-.08 1.318-.455l.011-.015 2.329-3.445 4.069 1.135.01.002c1.135.284 1.915-1.19.959-1.908Zm-7.76 2.12.739-6.657 4.841 4.548-2.643-.738a1.007 1.007 0 0 0-.77-.013c-.216.086-.367.242-.408.283l-.007.008-.05.05-1.703 2.52Z", "key": "39b1c5d375d45c104c9e1116644b0e02a1d6a346" }]]);
const NoteLocateB = createMeisterIcons("note-locate-b", [["path", { "fill": "currentColor", "d": "m12.25 12.2-1 9c0 .4.4.6.7.2l2.5-3.7c.1-.1.2-.2.4-.1l4.3 1.2c.4.1.6-.4.3-.6l-6.6-6.2c-.2-.2-.6-.1-.6.2Z", "key": "14c7813e3b2ed10e0ee588a4c03bbc2e0f10002c" }], ["path", { "fill": "currentColor", "d": "m13.37 11.46 6.557 6.16c.957.717.177 2.191-.959 1.908l-.01-.003-4.069-1.135-2.328 3.445-.011.015c-.282.375-.778.652-1.319.455-.5-.182-.731-.667-.731-1.105v-.041l1.001-9.011c.024-.52.4-.846.758-.954a1.13 1.13 0 0 1 1.11.265Zm-.463 1.622-.74 6.657 1.702-2.518.05-.051.008-.008c.04-.041.192-.197.407-.283.268-.107.536-.083.771.013l2.643.738-4.841-4.548Z", "key": "b3ff2702aafb1141775bc2c10913ce31850ca8e7" }], ["path", { "fill": "currentColor", "d": "M8.05 3.15A3.262 3.262 0 0 0 4.8 6.4v8a3.262 3.262 0 0 0 3.25 3.25.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 3.3 14.4v-8a4.762 4.762 0 0 1 4.75-4.75h8A4.762 4.762 0 0 1 20.8 6.4v4a.75.75 0 1 1-1.5 0v-4a3.262 3.262 0 0 0-3.25-3.25h-8Z", "key": "fdba261ce98f378223226b0fb80989422d2961cf" }]]);
const NotePinned = createMeisterIcons("note-pinned", [["path", { "fill": "currentColor", "d": "M12 3.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm.75 2.872a2.25 2.25 0 1 0-1.5 0V7.5a.75.75 0 0 0 1.5 0V6.122ZM8 6.25A3.262 3.262 0 0 0 4.75 9.5v8A3.262 3.262 0 0 0 8 20.75h8a3.262 3.262 0 0 0 3.25-3.25v-8A3.262 3.262 0 0 0 16 6.25a.75.75 0 0 1 0-1.5 4.762 4.762 0 0 1 4.75 4.75v8A4.762 4.762 0 0 1 16 22.25H8a4.762 4.762 0 0 1-4.75-4.75v-8A4.762 4.762 0 0 1 8 4.75a.75.75 0 0 1 0 1.5Z", "key": "17d2a3b7bb073437ae66e8cec15d71285a46d281" }]]);
const NotePinnedB = createMeisterIcons("note-pinned-b", [["path", { "fill": "currentColor", "d": "M8 6.25A3.262 3.262 0 0 0 4.75 9.5v8A3.262 3.262 0 0 0 8 20.75h8a3.262 3.262 0 0 0 3.25-3.25v-8A3.262 3.262 0 0 0 16 6.25a.75.75 0 0 1 0-1.5 4.762 4.762 0 0 1 4.75 4.75v8A4.762 4.762 0 0 1 16 22.25H8a4.762 4.762 0 0 1-4.75-4.75v-8A4.762 4.762 0 0 1 8 4.75a.75.75 0 0 1 0 1.5Z", "key": "3556486510b5952ab427b850b55f523ac582569c" }], ["path", { "fill": "currentColor", "d": "M12 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "69d2ddfee2d1c157d4bfeba51a5bd915d2242c2b" }], ["path", { "fill": "currentColor", "d": "M12 3.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM9.75 4a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "cefc7ba3f6431f275b8033cd6362d95049eee909" }], ["path", { "fill": "currentColor", "d": "M12 4.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75Z", "key": "c43d5643c65f7619c562f1ab82163e85a83cf3f7" }]]);
const NotePinnedFilled = createMeisterIcons("note-pinned-filled", [["path", { "fill": "currentColor", "d": "M12 3.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm.75 2.872a2.25 2.25 0 1 0-1.5 0V7.5a.75.75 0 0 0 1.5 0V6.122ZM8 6.25A3.262 3.262 0 0 0 4.75 9.5v8A3.262 3.262 0 0 0 8 20.75h8a3.262 3.262 0 0 0 3.25-3.25v-8A3.262 3.262 0 0 0 16 6.25a.75.75 0 0 1 0-1.5 4.762 4.762 0 0 1 4.75 4.75v8A4.762 4.762 0 0 1 16 22.25H8a4.762 4.762 0 0 1-4.75-4.75v-8A4.762 4.762 0 0 1 8 4.75a.75.75 0 0 1 0 1.5ZM7.25 12a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75ZM8 15.25a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5H8Z", "key": "06e8c8d9a4a9354030ec4a2c181b2c221829d9e5" }]]);
const NotePinnedFilledB = createMeisterIcons("note-pinned-filled-b", [["path", { "fill": "currentColor", "d": "M8 6.25A3.262 3.262 0 0 0 4.75 9.5v8A3.262 3.262 0 0 0 8 20.75h8a3.262 3.262 0 0 0 3.25-3.25v-8A3.262 3.262 0 0 0 16 6.25a.75.75 0 0 1 0-1.5 4.762 4.762 0 0 1 4.75 4.75v8A4.762 4.762 0 0 1 16 22.25H8a4.762 4.762 0 0 1-4.75-4.75v-8A4.762 4.762 0 0 1 8 4.75a.75.75 0 0 1 0 1.5Z", "key": "7f7ce1c4444cb3df5052754d41315486311e75d5" }], ["path", { "fill": "currentColor", "d": "M12 5.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "dede170872d47a7f226e8f89c36194e4e888ea95" }], ["path", { "fill": "currentColor", "d": "M12 3.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5ZM9.75 4a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "bd743747959ead49e1ab570360238716a095fbd5" }], ["path", { "fill": "currentColor", "d": "M12 4.75a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75ZM7.25 12a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75Z", "key": "116daafc29df1837d222b07c8616a4690e62eb1a" }]]);
const Notes = createMeisterIcons("notes", [["path", { "fill": "currentColor", "d": "m18.988 3.317-6.806-1.602c-1.923-.477-3.825.65-4.426 2.48h-1.85c-2.114 0-3.75 1.635-3.75 3.75v10.7c0 2.114 1.636 3.75 3.75 3.75h7c1.077 0 2.182-.47 2.878-1.298 1.614-.085 2.997-1.285 3.443-2.847l.004-.015 2.503-10.412c.502-2.016-.761-4.01-2.746-4.506Zm-3.23 16.277c.895-.074 1.735-.758 2.023-1.741l2.497-10.39c.295-1.182-.439-2.385-1.65-2.69l-6.804-1.601c-1.183-.296-2.387.44-2.69 1.654l-.1.4-.118-.029-2.383 9.93c-.295 1.18.44 2.383 1.65 2.689l7.002 1.647.13.13a.86.86 0 0 0 .09.001h.353ZM3.656 7.944c0-1.285.964-2.25 2.25-2.25h1.348l-2.177 9.072c-.502 2.016.762 4.01 2.747 4.506l6.039 1.42a2.404 2.404 0 0 1-.957.202h-7c-1.286 0-2.25-.964-2.25-2.25v-10.7Z", "key": "44ced04a2b2de428b80a11a35a4cf5265c56cfb6" }]]);
const NotesB = createMeisterIcons("notes-b", [["path", { "fill": "currentColor", "d": "M5.956 5.694c-1.286 0-2.25.965-2.25 2.25v10.7c0 1.286.964 2.25 2.25 2.25h7c.369 0 .7-.07.983-.195l-6.065-1.427c-1.986-.496-3.249-2.49-2.747-4.506l2.177-9.072H5.956Zm-3.75 2.25c0-2.114 1.635-3.75 3.75-3.75h3.25L6.584 15.126c-.295 1.182.439 2.384 1.65 2.69l7.002 1.647.13.13a1.693 1.693 0 0 0 .027.001h1.417l-.717 1.148c-.649 1.037-1.8 1.652-3.136 1.652h-7c-2.115 0-3.75-1.635-3.75-3.75v-10.7Z", "key": "7475651c11e812d1b82b32107dff7167770b32cd" }], ["path", { "fill": "currentColor", "d": "m20.956 7.644-2.5 10.4c-.4 1.4-1.7 2.4-3.1 2.3-.2 0-.4 0-.6-.1l-6.8-1.6c-1.6-.4-2.6-2-2.2-3.6l2.4-10 .1-.4c.4-1.6 2-2.6 3.6-2.2l6.8 1.6c1.7.4 2.7 2 2.3 3.6Z", "key": "85b15a122a859e53ecff48f2bbcf7a22f31eac28" }], ["path", { "fill": "currentColor", "d": "M11.674 3.172c-1.183-.296-2.387.44-2.69 1.654l-.1.397-2.4 10.003c-.296 1.181.438 2.384 1.649 2.69l6.88 1.618.078.04a.17.17 0 0 0 .058.014 2 2 0 0 0 .207.006h.026l.027.002c1 .072 2.002-.651 2.321-1.743l2.498-10.39c.292-1.17-.426-2.378-1.744-2.689l-6.81-1.602Zm.358-1.457c-2.015-.5-4.008.763-4.504 2.747l-.1.4-2.401 10.004c-.502 2.016.761 4.01 2.747 4.506l6.739 1.586c.328.138.64.137.814.136h.004c1.784.113 3.363-1.153 3.846-2.844l.004-.015 2.503-10.412c.505-2.03-.776-4.02-2.857-4.509l-6.795-1.599Z", "key": "f67c6a8344453880d73e635adc8f1361b661bf3b" }]]);
const NoteSearch = createMeisterIcons("note-search", [["path", { "fill": "currentColor", "d": "M8 3.75A3.262 3.262 0 0 0 4.75 7v8A3.262 3.262 0 0 0 8 18.25a.75.75 0 1 1 0 1.5A4.762 4.762 0 0 1 3.25 15V7A4.762 4.762 0 0 1 8 2.25h8A4.762 4.762 0 0 1 20.75 7v5a.75.75 0 0 1-1.5 0V7A3.262 3.262 0 0 0 16 3.75H8Zm6.7 9.9a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1Zm-4.55 3.05a4.55 4.55 0 1 1 8.254 2.643l1.126 1.127a.75.75 0 0 1-1.06 1.06l-1.127-1.126A4.55 4.55 0 0 1 10.15 16.7Z", "key": "087822e9910e3b9d239706abb16b2a92ff8333d5" }]]);
const NoteSearchB = createMeisterIcons("note-search-b", [["path", { "fill": "currentColor", "d": "M8.05 3.8A3.262 3.262 0 0 0 4.8 7.05v8a3.262 3.262 0 0 0 3.25 3.25.75.75 0 0 1 0 1.5 4.762 4.762 0 0 1-4.75-4.75v-8A4.762 4.762 0 0 1 8.05 2.3h8a4.762 4.762 0 0 1 4.75 4.75v5a.75.75 0 1 1-1.5 0v-5a3.262 3.262 0 0 0-3.25-3.25h-8Z", "key": "f5e3969ac9c2acf0c23dfe7ac91c0983c7738369" }], ["path", { "fill": "currentColor", "d": "M14.75 20.55a3.8 3.8 0 1 0 0-7.6 3.8 3.8 0 0 0 0 7.6Z", "key": "d9383b2fc19acfe06480347276cecbbde606e3c5" }], ["path", { "fill": "currentColor", "d": "M14.75 13.7a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1Zm-4.55 3.05a4.55 4.55 0 1 1 9.1 0 4.55 4.55 0 0 1-9.1 0Z", "key": "67ff8f42c6d76be6d37c7caae085c6be165c0e08" }], ["path", { "fill": "currentColor", "d": "M17.02 19.02a.75.75 0 0 1 1.06 0l1.5 1.5a.75.75 0 1 1-1.06 1.06l-1.5-1.5a.75.75 0 0 1 0-1.06Z", "key": "7e93c4610990d374abee09691af228e5d2259abf" }]]);
const NotesPaper = createMeisterIcons("notes-paper", [["path", { "fill": "currentColor", "d": "M6.514 3.362a3.048 3.048 0 0 0-3.05 3.05v7a3.048 3.048 0 0 0 3.05 3.05h7a3.048 3.048 0 0 0 3.05-3.05v-7a3.048 3.048 0 0 0-3.05-3.05h-7Zm-4.55 3.05a4.548 4.548 0 0 1 4.55-4.55h7a4.548 4.548 0 0 1 4.55 4.55v7a4.548 4.548 0 0 1-4.55 4.55h-7a4.548 4.548 0 0 1-4.55-4.55v-7Z", "key": "68bb9b34ea0118930bd82705730611e2d1717a0b" }], ["path", { "fill": "currentColor", "d": "M16.578 6.665a.75.75 0 0 1 .883-.589l1.018.204.017.004c2.388.597 3.928 2.98 3.455 5.468l-.002.01-1.505 6.824c-.6 2.514-3.002 3.933-5.47 3.463l-.011-.002-6.806-1.502h-.003c-1.703-.366-2.884-1.692-3.352-3.096a.75.75 0 0 1 1.423-.474c.332.995 1.151 1.869 2.246 2.104h.004l6.79 1.498c1.725.324 3.315-.655 3.718-2.333l1.496-6.783c.319-1.702-.732-3.308-2.33-3.717l-.982-.197a.75.75 0 0 1-.589-.882Z", "key": "1b6b499d9fff4c47ea5ec6a6506a9f691e27ae04" }]]);
const NotesPaperB = createMeisterIcons("notes-paper-b", [["path", { "fill": "currentColor", "d": "M17.312 6.464v7c0 2.1-1.7 3.8-3.8 3.8h-7c-2.1 0-3.8-1.7-3.8-3.8v-7c0-2.1 1.7-3.8 3.8-3.8h7c2.1 0 3.8 1.7 3.8 3.8Z", "key": "b85cd4146a3de4165fc6bf549a4041eadce675ea" }], ["path", { "fill": "currentColor", "d": "M6.512 3.414a3.048 3.048 0 0 0-3.05 3.05v7a3.048 3.048 0 0 0 3.05 3.05h7a3.048 3.048 0 0 0 3.05-3.05v-7a3.048 3.048 0 0 0-3.05-3.05h-7Zm-4.55 3.05a4.548 4.548 0 0 1 4.55-4.55h7a4.548 4.548 0 0 1 4.55 4.55v7a4.548 4.548 0 0 1-4.55 4.55h-7a4.548 4.548 0 0 1-4.55-4.55v-7Z", "key": "95b2aa8f7d67f43c44de805f80ad7e02502eb27f" }], ["path", { "fill": "currentColor", "d": "M16.577 6.617a.75.75 0 0 1 .882-.589l1.013.203.014.003c2.514.599 3.933 3.002 3.463 5.47l-.002.01-1.505 6.822-.003.01c-.597 2.388-2.98 3.928-5.467 3.455l-.011-.003-6.806-1.5-.003-.001C6.45 20.13 5.268 18.805 4.8 17.4a.75.75 0 0 1 1.423-.474c.332.995 1.151 1.869 2.246 2.104h.004l6.79 1.498c1.704.32 3.313-.735 3.719-2.337l1.495-6.779c.323-1.723-.652-3.311-2.326-3.717l-.986-.197a.75.75 0 0 1-.588-.882Z", "key": "86c7a7757259608346d4dc137112ecce693c7a21" }]]);
const NotesVarB = createMeisterIcons("notes-var-b", [["path", { "fill": "currentColor", "d": "M15.456 20.344c-.5.8-1.4 1.3-2.5 1.3h-7c-1.7 0-3-1.3-3-3v-10.7c0-1.7 1.3-3 3-3h2.3l-2.4 10c-.4 1.6.6 3.2 2.2 3.6l6.8 1.6c.2.2.4.2.6.2Z", "key": "d495fff0cf7f1c5c7707269d4d14ce1a72bb95ee" }], ["path", { "fill": "currentColor", "d": "M5.956 5.694c-1.286 0-2.25.965-2.25 2.25v10.7c0 1.286.964 2.25 2.25 2.25h7c.369 0 .7-.07.983-.195l-6.065-1.427c-1.986-.496-3.249-2.49-2.747-4.506l2.177-9.072H5.956Zm-3.75 2.25c0-2.114 1.635-3.75 3.75-3.75h3.25L6.584 15.126c-.295 1.182.439 2.384 1.65 2.69l7.002 1.647.13.13a1.693 1.693 0 0 0 .027.001h1.417l-.717 1.148c-.649 1.037-1.8 1.652-3.136 1.652h-7c-2.115 0-3.75-1.635-3.75-3.75v-10.7Z", "key": "80a41ba31735470e8c7de1b11ccf1842a5372d54" }], ["path", { "fill": "currentColor", "d": "M11.674 3.172c-1.183-.296-2.387.44-2.69 1.654l-.1.397-2.4 10.003c-.296 1.181.438 2.384 1.649 2.69l6.88 1.618.078.04a.17.17 0 0 0 .058.014 2 2 0 0 0 .207.006h.026l.027.002c1 .072 2.002-.651 2.321-1.743l2.498-10.39c.292-1.17-.426-2.378-1.744-2.689l-6.81-1.602Zm.358-1.457c-2.015-.5-4.008.763-4.504 2.747l-.1.4-2.401 10.004c-.502 2.016.761 4.01 2.747 4.506l6.739 1.586c.328.138.64.137.814.136h.004c1.784.113 3.363-1.153 3.846-2.844l.004-.015 2.503-10.412c.505-2.03-.776-4.02-2.857-4.509l-6.795-1.599Z", "key": "d7801f1cdaef2c085135aa1b0c21ab23b555d0c2" }]]);
const Notification = createMeisterIcons("notification", [["path", { "fill": "currentColor", "d": "M12.05 3.6C8.564 3.6 5.7 6.464 5.7 9.95v3.6c0 .287.071.591.173 1a.75.75 0 0 1-.399.876c-.099.05-.176.089-.24.125a.85.85 0 0 0-.064.04c-.222.23-.37.615-.37 1.059 0 .786.664 1.45 1.45 1.45h11.5c.451 0 .842-.153 1.07-.38.227-.228.38-.619.38-1.07 0-.529-.253-.975-.709-1.241a.75.75 0 0 1-.365-.854c.04-.159.1-.34.147-.482.02-.056.036-.107.049-.147a1.36 1.36 0 0 0 .078-.376v-3.6c0-1.69-.713-3.302-1.88-4.47-1.172-1.171-2.686-1.88-4.47-1.88Zm7.676 10.86.027-.086c.068-.218.147-.507.147-.824v-3.6c0-2.11-.887-4.098-2.32-5.53-1.428-1.429-3.314-2.32-5.53-2.32-4.314 0-7.85 3.536-7.85 7.85v3.6c0 .286.04.566.092.825-.058.041-.117.09-.172.145-.573.572-.82 1.381-.82 2.13a2.97 2.97 0 0 0 2.95 2.95h2.724c.3 1.308 1.485 2.3 2.876 2.3 1.391 0 2.576-.992 2.876-2.3h3.024c.749 0 1.558-.247 2.13-.82.573-.572.82-1.381.82-2.13 0-.857-.35-1.64-.974-2.19ZM13.14 19.6h-2.58c.243.47.736.8 1.29.8a1.47 1.47 0 0 0 1.29-.8Z", "key": "ab0cbcb9fd85da050d6af50fac6f2a32a9a51f0f" }]]);
const NotificationAlert = createMeisterIcons("notification-alert", [["path", { "fill": "currentColor", "d": "M12.05 3.6C8.564 3.6 5.7 6.464 5.7 9.95v3.6c0 .291.073.6.178 1.018a.75.75 0 0 1 .02.231.75.75 0 0 1-.413.722 5.447 5.447 0 0 0-.25.13.85.85 0 0 0-.065.04c-.222.23-.37.615-.37 1.059 0 .786.664 1.45 1.45 1.45h11.5c.451 0 .842-.153 1.07-.38.227-.228.38-.619.38-1.07 0-.504-.234-.883-.653-1.167a.752.752 0 0 1-.32-.83c.101-.41.173-.715.173-1.003v-3.6a.75.75 0 1 1 1.5 0v3.6c0 .318-.05.629-.11.91.546.51.91 1.211.91 2.09 0 .749-.247 1.558-.82 2.13-.572.573-1.381.82-2.13.82h-3.049c-.336 1.258-1.495 2.2-2.851 2.2-1.356 0-2.515-.942-2.852-2.2H6.25a2.97 2.97 0 0 1-2.95-2.95c0-.749.247-1.558.82-2.13.06-.061.127-.113.19-.158a4.37 4.37 0 0 1-.11-.912v-3.6c0-4.314 3.536-7.85 7.85-7.85a.75.75 0 0 1 0 1.5Zm-1.434 16.1c.258.416.72.7 1.234.7s.975-.284 1.234-.7h-2.468ZM14.3 5.05a2.756 2.756 0 0 1 2.75-2.75 2.756 2.756 0 0 1 2.75 2.75 2.756 2.756 0 0 1-2.75 2.75c-1.639 0-2.75-1.26-2.75-2.75Zm2.75-1.25c-.686 0-1.25.564-1.25 1.25 0 .71.489 1.25 1.25 1.25.686 0 1.25-.564 1.25-1.25s-.564-1.25-1.25-1.25Z", "key": "0e263cb4c8022d6b94dc9d7094036cc9f22f13ec" }]]);
const NotificationAlertA = createMeisterIcons("notification-alert-a", [["path", { "fill": "currentColor", "d": "M12.05 3.65C8.564 3.65 5.7 6.514 5.7 10v3.6c0 .287.071.592.173 1a.75.75 0 0 1-.399.876c-.099.05-.176.089-.24.125a.885.885 0 0 0-.064.04c-.222.23-.37.615-.37 1.059 0 .786.664 1.45 1.45 1.45h11.5c.451 0 .842-.153 1.07-.38.227-.228.38-.619.38-1.07 0-.529-.254-.976-.71-1.242a.751.751 0 0 1-.364-.855l.056-.217c.077-.297.118-.457.118-.686v-3.6a6.13 6.13 0 0 0-.464-2.365c-.25.075-.513.115-.786.115-1.639 0-2.75-1.26-2.75-2.75 0-.337.061-.661.174-.96a6.098 6.098 0 0 0-2.424-.49Zm7.653 10.839c.053-.234.097-.496.097-.789v-3.6a7.56 7.56 0 0 0-.687-3.185c.427-.485.687-1.12.687-1.815a2.756 2.756 0 0 0-2.75-2.75c-.623 0-1.2.21-1.662.562a7.52 7.52 0 0 0-3.338-.762C7.736 2.15 4.2 5.686 4.2 10v3.6c0 .286.04.566.092.825-.058.041-.117.09-.172.145-.573.572-.82 1.381-.82 2.13a2.97 2.97 0 0 0 2.95 2.95h2.748c.337 1.258 1.496 2.2 2.852 2.2 1.356 0 2.515-.942 2.851-2.2h3.049c.749 0 1.558-.247 2.13-.82.573-.572.82-1.381.82-2.13a2.89 2.89 0 0 0-.997-2.211Zm-6.62 5.161h-2.467c.258.416.72.7 1.234.7s.975-.284 1.234-.7Zm4.85-13.668a.752.752 0 0 0-.377.26c-.155.07-.326.108-.506.108-.761 0-1.25-.54-1.25-1.25 0-.686.564-1.25 1.25-1.25s1.25.564 1.25 1.25c0 .343-.141.655-.368.882Z", "key": "f012d792d702d2ff5d9a889928b4852d1ce5abfb" }]]);
const NotificationAlertAb = createMeisterIcons("notification-alert-ab", [["path", { "fill": "currentColor", "d": "M19.05 4.9c0 .7-.3 1.3-.8 1.6-.3.3-.7.4-1.2.4-1.1 0-2-.9-2-2 0-.4.1-.8.4-1.2.4-.5 1-.8 1.6-.8 1 0 2 .8 2 2Z", "key": "58aa158563ed4afa4f8310e2f28f3a788fdc1502" }], ["path", { "fill": "currentColor", "d": "M16.043 4.16a1.171 1.171 0 0 0-.243.74c0 .686.564 1.25 1.25 1.25.409 0 .572-.082.67-.18l.065-.066.08-.047c.225-.135.435-.459.435-.957 0-.738-.615-1.25-1.25-1.25-.352 0-.739.18-1.007.51Zm-1.179-.929c.532-.664 1.341-1.081 2.186-1.081 1.365 0 2.75 1.088 2.75 2.75 0 .871-.364 1.72-1.087 2.195-.49.447-1.098.555-1.663.555A2.756 2.756 0 0 1 14.3 4.9c0-.542.141-1.105.55-1.65l.007-.01.007-.009ZM14.25 18.9c0 1.2-1 2.2-2.2 2.2-1.2 0-2.2-1-2.2-2.2h4.4Z", "key": "59ea45f62a2cb9a98f7364cce80c4ab8b863be00" }], ["path", { "fill": "currentColor", "d": "M9.1 18.15H15v.75a2.97 2.97 0 0 1-2.95 2.95A2.97 2.97 0 0 1 9.1 18.9v-.75Zm1.716 1.5c.259.416.72.7 1.234.7s.975-.284 1.234-.7h-2.468Z", "key": "d6185ac7898e8729c1fdb72271c674f82babd528" }], ["path", { "fill": "currentColor", "d": "M9.1 18.4h1.5v.4H9.1v-.4Zm5.9.5h-1.5v-.4H15v.4Zm2.764-13.043a.75.75 0 0 1 1.03.257C19.473 7.248 19.8 8.586 19.8 10v3.6c0 .493-.12.97-.214 1.348l-.008.034a.75.75 0 1 1-1.456-.364c.105-.418.178-.726.178-1.018V10c0-1.186-.273-2.248-.793-3.114a.75.75 0 0 1 .257-1.03ZM12.05 3.65C8.564 3.65 5.7 6.514 5.7 10v3.5c0 .292.073.6.178 1.018a.75.75 0 1 1-1.456.364l-.008-.034c-.095-.378-.214-.855-.214-1.348V10c0-4.314 3.536-7.85 7.85-7.85 1.32 0 2.656.33 3.786 1.007a.75.75 0 0 1-.772 1.286c-.87-.522-1.934-.793-3.014-.793Z", "key": "652ff96663fdfb6240a4b13c0cf1532ef73ace90" }], ["path", { "fill": "currentColor", "d": "M5.82 14.365a.75.75 0 0 1-.335 1.006 1.497 1.497 0 0 0-.169.103l-.006.004a3.47 3.47 0 0 1-.192.122c-.193.233-.318.592-.318 1 0 .786.664 1.45 1.45 1.45h3.6a.75.75 0 0 1 0 1.5h-3.6A2.97 2.97 0 0 1 3.3 16.6c0-.749.247-1.558.82-2.13l.086-.086.109-.055c.053-.027.094-.053.169-.103l.006-.004c.075-.05.183-.122.325-.193a.75.75 0 0 1 1.006.336Zm12.379-.037a.75.75 0 0 1 1.023-.28A2.894 2.894 0 0 1 20.7 16.6c0 .825-.399 1.582-.75 2.05l-.032.043-.038.037c-.572.573-1.381.82-2.13.82h-3.5a.75.75 0 0 1 0-1.5h3.5c.428 0 .803-.138 1.034-.346.233-.326.416-.747.416-1.104 0-.534-.258-.984-.722-1.249a.75.75 0 0 1-.28-1.023Z", "key": "30e6e2abc5330a77925f46c5a0fc706b0f0b434f" }]]);
const NotificationAlertB = createMeisterIcons("notification-alert-b", [["path", { "fill": "currentColor", "d": "M17.05 6.9a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "2bb3cce6102445d677f164fd2900b74cd6387192" }], ["path", { "fill": "currentColor", "d": "M17.05 3.65a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM14.3 4.9a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM9.1 18.4h1.5v.4H9.1v-.4Zm5.9.5h-1.5v-.4H15v.4Zm4.15-9.65a.75.75 0 0 1 .75.75v3.6c0 .493-.12.97-.214 1.348l-.008.034a.75.75 0 1 1-1.456-.364c.105-.418.178-.726.178-1.018V10a.75.75 0 0 1 .75-.75Zm-7.1-5.6C8.564 3.65 5.7 6.514 5.7 10v3.5c0 .292.073.6.178 1.018a.75.75 0 1 1-1.456.364l-.008-.034c-.095-.378-.214-.855-.214-1.348V10c0-4.314 3.536-7.85 7.85-7.85a.75.75 0 0 1 0 1.5Zm2.2 15.25c0 1.2-1 2.2-2.2 2.2-1.2 0-2.2-1-2.2-2.2h4.4Z", "key": "5b9a55dc607c3bf4eb3f20c4873ad89a05cc09f1" }], ["path", { "fill": "currentColor", "d": "M9.1 18.15H15v.75a2.97 2.97 0 0 1-2.95 2.95A2.97 2.97 0 0 1 9.1 18.9v-.75Zm1.716 1.5c.259.416.72.7 1.234.7s.975-.284 1.234-.7h-2.468Z", "key": "a7647c8387add1c37634573508ea0ca284a65215" }], ["path", { "fill": "currentColor", "d": "M5.82 14.365a.75.75 0 0 1-.335 1.006 1.497 1.497 0 0 0-.169.103l-.006.004a3.47 3.47 0 0 1-.192.122c-.193.233-.318.592-.318 1 0 .786.664 1.45 1.45 1.45h3.6a.75.75 0 0 1 0 1.5h-3.6A2.97 2.97 0 0 1 3.3 16.6c0-.749.247-1.558.82-2.13l.086-.086.109-.055c.053-.027.094-.053.169-.103l.006-.004c.075-.05.183-.122.325-.193a.75.75 0 0 1 1.006.336Zm12.379-.037a.75.75 0 0 1 1.023-.28A2.894 2.894 0 0 1 20.7 16.6c0 .825-.399 1.582-.75 2.05l-.032.043-.038.037c-.572.573-1.381.82-2.13.82h-3.5a.75.75 0 0 1 0-1.5h3.5c.428 0 .803-.138 1.034-.346.233-.326.416-.747.416-1.104 0-.534-.258-.984-.722-1.249a.75.75 0 0 1-.28-1.023Z", "key": "447d41469156fe015dc73b4dfe9cdaf01615024f" }]]);
const NotificationB = createMeisterIcons("notification-b", [["path", { "fill": "currentColor", "d": "M13.35 18.4h1.5v.373A2.854 2.854 0 0 1 12 21.85a2.97 2.97 0 0 1-2.95-2.95v-.4h1.5v.4c0 .786.664 1.45 1.45 1.45.774 0 1.418-.639 1.352-1.492l-.002-.03V18.4Z", "key": "de9b15c22b3a7250d8e847eafdad2de66190127d" }], ["path", { "fill": "currentColor", "d": "M20 16.6c0 .6-.3 1.2-.7 1.6-.4.4-1 .7-1.6.7H6.2c-1.2 0-2.2-1-2.2-2.2 0-.6.3-1.2.7-1.6.1-.1.3-.2.4-.3-.1-.4-.2-.8-.2-1.2V10c0-3.9 3.2-7.1 7.1-7.1 2 0 3.7.8 5 2.1 1.3 1.3 2.1 3.1 2.1 5v3.6c0 .4-.1.8-.2 1.2.6.3 1.1 1 1.1 1.8Z", "key": "cd73140ee12c56723735836edf3376374b2ce927" }], ["path", { "fill": "currentColor", "d": "M12 3.65c-3.486 0-6.35 2.864-6.35 6.35v3.6c0 .292.073.6.178 1.018l.103.412-.3.3a1.519 1.519 0 0 1-.18.152 4.045 4.045 0 0 1-.13.09l-.005.002a2.507 2.507 0 0 0-.094.065c-.282.286-.472.699-.472 1.061 0 .786.664 1.45 1.45 1.45h11.5c.366 0 .783-.194 1.07-.48.286-.287.48-.704.48-1.07 0-.498-.323-.948-.685-1.13l-.539-.268.146-.584c.105-.418.178-.726.178-1.018V10c0-1.69-.713-3.302-1.88-4.47-1.172-1.17-2.686-1.88-4.47-1.88ZM4.15 10c0-4.314 3.536-7.85 7.85-7.85 2.216 0 4.102.891 5.53 2.32 1.433 1.432 2.32 3.42 2.32 5.53v3.6c0 .302-.045.599-.101.87a2.817 2.817 0 0 1 1.001 2.13c0 .834-.406 1.617-.92 2.13-.513.514-1.296.92-2.13.92H6.2a2.97 2.97 0 0 1-2.95-2.95c0-.834.406-1.617.92-2.13.029-.03.058-.056.086-.079a4.329 4.329 0 0 1-.106-.891V10Z", "key": "15df97ce4ae2ec7c51cd139ea548f7b752c00d95" }]]);
const NotificationMinimal = createMeisterIcons("notification-minimal", [["path", { "fill": "currentColor", "d": "M4.75 10.5c0-3.986 3.264-7.25 7.25-7.25s7.25 3.264 7.25 7.25v4A3.262 3.262 0 0 1 16 17.75H8a3.262 3.262 0 0 1-3.25-3.25v-4ZM12 1.75c-4.814 0-8.75 3.936-8.75 8.75v4A4.762 4.762 0 0 0 8 19.25h.76c.124 1.694 1.51 3 3.24 3a3.223 3.223 0 0 0 3.24-3H16a4.762 4.762 0 0 0 4.75-4.75v-4c0-4.814-3.936-8.75-8.75-8.75Zm1.733 17.5h-3.466c.117.862.832 1.5 1.733 1.5.9 0 1.616-.638 1.733-1.5Z", "key": "330a7772dcee3f7dd19aa1d9a6584f5fa5e24552" }]]);
const NotificationMinimalAlert = createMeisterIcons("notification-minimal-alert", [["path", { "fill": "currentColor", "d": "M3.25 10.5c0-4.814 3.936-8.75 8.75-8.75a.75.75 0 0 1 0 1.5c-3.986 0-7.25 3.264-7.25 7.25v4A3.262 3.262 0 0 0 8 17.75h8a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 1.5 0v4A4.762 4.762 0 0 1 16 19.25h-.86a3.223 3.223 0 0 1-3.24 3 3.223 3.223 0 0 1-3.24-3H8a4.762 4.762 0 0 1-4.75-4.75v-4Zm8.65 10.25c-.9 0-1.616-.638-1.733-1.5h3.466a1.722 1.722 0 0 1-1.733 1.5ZM16.75 4.5a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM18 1.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "cbcfc6372d88e29a66608274cfb97b91e4dd59c2" }]]);
const NotificationMinimalAlertA = createMeisterIcons("notification-minimal-alert-a", [["path", { "fill": "currentColor", "d": "M3.2 10.65c0-4.814 3.936-8.75 8.75-8.75 1.21 0 2.416.276 3.458.747A2.734 2.734 0 0 1 17.05 2.1a2.756 2.756 0 0 1 2.75 2.75c0 .436-.102.849-.284 1.215A8.895 8.895 0 0 1 20.8 10.65v4a4.762 4.762 0 0 1-4.75 4.75h-.895a3.222 3.222 0 0 1-3.205 2.7 3.222 3.222 0 0 1-3.205-2.7H7.95a4.762 4.762 0 0 1-4.75-4.75v-4Zm15.244-3.431a2.73 2.73 0 0 1-1.394.381c-1.639 0-2.75-1.26-2.75-2.75 0-.34.063-.667.177-.968A7.013 7.013 0 0 0 11.95 3.4c-3.986 0-7.25 3.264-7.25 7.25v4a3.262 3.262 0 0 0 3.25 3.25h8.1a3.262 3.262 0 0 0 3.25-3.25v-4c0-1.262-.326-2.42-.856-3.431ZM11.95 20.6a1.722 1.722 0 0 1-1.666-1.2h3.332a1.722 1.722 0 0 1-1.666 1.2ZM15.8 4.85c0-.686.564-1.25 1.25-1.25s1.25.564 1.25 1.25-.564 1.25-1.25 1.25c-.761 0-1.25-.54-1.25-1.25Z", "key": "e39866f27aed142ac07159f98dc5c3d996d40ba8" }]]);
const NotificationMinimalAlertAb = createMeisterIcons("notification-minimal-alert-ab", [["path", { "fill": "currentColor", "d": "M19.2 10.5c0-1.657-.458-3.09-1.344-4.243l1.188-.914C20.159 6.79 20.7 8.557 20.7 10.5v4a4.762 4.762 0 0 1-4.75 4.75h-1.6v-1.5h1.6a3.262 3.262 0 0 0 3.25-3.25v-4Zm-7.15-7.25c-3.986 0-7.25 3.264-7.25 7.25v4a3.262 3.262 0 0 0 3.25 3.25h1.5v1.5h-1.5A4.762 4.762 0 0 1 3.3 14.5v-4c0-4.814 3.936-8.75 8.75-8.75 1.32 0 2.634.328 3.735.88l-.67 1.34a6.985 6.985 0 0 0-3.065-.72Z", "key": "8f8efe9a6ca040cdb2c5ae2364160dc7c43f1075" }], ["path", { "fill": "currentColor", "d": "M14.55 19c0 1.4-1.1 2.5-2.5 2.5s-2.5-1.1-2.5-2.5v-.5h4.9c0 .1.1.3.1.5Z", "key": "45a4cab61c882c62d7fc3819b6403104da0ce025" }], ["path", { "fill": "currentColor", "d": "M8.8 17.75h6.4v.684l.003.01.018.063c.027.094.079.28.079.493a3.226 3.226 0 0 1-3.25 3.25A3.226 3.226 0 0 1 8.8 19v-1.25Zm1.517 1.5c.117.862.832 1.5 1.733 1.5.9 0 1.616-.638 1.733-1.5h-3.466ZM17.05 6.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "2333d22ceabaa74c67521c2e38fa990a66459b53" }], ["path", { "fill": "currentColor", "d": "M17.05 3.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM14.3 4.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "6b912b663701f11a7927245712b207aeaf38e4ba" }]]);
const NotificationMinimalAlertB = createMeisterIcons("notification-minimal-alert-b", [["path", { "fill": "currentColor", "d": "M20 9.75a.75.75 0 0 1 .75.75v4A4.762 4.762 0 0 1 16 19.25h-1.6a.75.75 0 0 1 0-1.5H16a3.262 3.262 0 0 0 3.25-3.25v-4a.75.75 0 0 1 .75-.75Zm-16.75.75c0-4.814 3.936-8.75 8.75-8.75a.75.75 0 0 1 0 1.5c-3.986 0-7.25 3.264-7.25 7.25v4A3.262 3.262 0 0 0 8 17.75h1.6a.75.75 0 0 1 0 1.5H8a4.762 4.762 0 0 1-4.75-4.75v-4Z", "key": "431ee307774383bc97ca3654608d1ab3004ef19d" }], ["path", { "fill": "currentColor", "d": "M14.5 19c0 1.4-1.1 2.5-2.5 2.5S9.5 20.4 9.5 19v-.5h4.9c0 .1.1.3.1.5Z", "key": "72e904c5a72542e74bea14da7abed143d0dd9c02" }], ["path", { "fill": "currentColor", "d": "M8.75 17.75h6.4v.684l.003.01.018.063c.027.094.079.28.079.493A3.226 3.226 0 0 1 12 22.25 3.226 3.226 0 0 1 8.75 19v-1.25Zm1.517 1.5c.117.862.832 1.5 1.733 1.5.9 0 1.616-.638 1.733-1.5h-3.466ZM18 6.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "e6a2ef7b7bf957f1560ff7826c1f12f139dbdb2e" }], ["path", { "fill": "currentColor", "d": "M18 3.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM15.25 4.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "89e47ea34d6cc52f5a04d332bf92cf47f1c5e55a" }]]);
const NotificationMinimalB = createMeisterIcons("notification-minimal-b", [["path", { "fill": "currentColor", "d": "M16 18.5H8c-2.2 0-4-1.8-4-4v-4c0-4.4 3.6-8 8-8s8 3.6 8 8v4c0 2.2-1.8 4-4 4Z", "key": "78421dd77ee298910aea7b6a68b41c43db3b354b" }], ["path", { "fill": "currentColor", "d": "M12 3.25c-3.986 0-7.25 3.264-7.25 7.25v4A3.262 3.262 0 0 0 8 17.75h8a3.262 3.262 0 0 0 3.25-3.25v-4c0-3.986-3.264-7.25-7.25-7.25ZM3.25 10.5c0-4.814 3.936-8.75 8.75-8.75s8.75 3.936 8.75 8.75v4A4.762 4.762 0 0 1 16 19.25H8a4.762 4.762 0 0 1-4.75-4.75v-4Z", "key": "4765b26c722c42fdbbfefd1e0e09195fe0e54f63" }], ["path", { "fill": "currentColor", "d": "M10.251 18.894 10.25 19c0 .986.764 1.75 1.75 1.75.978 0 1.738-.753 1.75-1.728l-.011-.035-.004-.01c-.027-.081-.085-.254-.085-.477h1.5c0-.018-.004-.035-.004-.035l.015.048.004.01c.027.08.085.253.085.477A3.226 3.226 0 0 1 12 22.25 3.226 3.226 0 0 1 8.75 19v-.017c0-.087 0-.218.023-.356a1.6 1.6 0 0 1 .156-.462l1.342.67a.483.483 0 0 0-.019.042l-.001.017Z", "key": "6a8bee0ffc9101d2e1ea5830da495fe31046f92e" }]]);
const Octagon = createMeisterIcons("octagon", [["path", { "fill": "currentColor", "d": "M6.847 3.392C7.521 2.604 8.542 2.25 9.5 2.25h5c.959 0 1.979.354 2.653 1.142l3.455 3.455c.788.674 1.142 1.695 1.142 2.653v5c0 1.012-.389 1.9-1.12 2.63l-3.477 3.478c-.674.788-1.694 1.142-2.653 1.142h-5c-1.012 0-1.9-.389-2.63-1.12l-3.478-3.477c-.788-.674-1.142-1.695-1.142-2.653v-5c0-1.012.388-1.9 1.12-2.63l3.477-3.478ZM9.5 3.75c-.63 0-1.197.238-1.524.63l-.022.026L4.43 7.93c-.468.47-.68.982-.68 1.57v5c0 .63.238 1.197.63 1.524l.026.022L7.93 19.57c.47.468.982.68 1.57.68h5c.63 0 1.197-.238 1.524-.63l.022-.026 3.524-3.524c.468-.47.68-.982.68-1.57v-5c0-.63-.238-1.197-.63-1.524l-.026-.022-3.548-3.548-.022-.026c-.327-.392-.894-.63-1.524-.63h-5Z", "key": "71d0fe8a25770d6011b918fc1d0cedc636e4028f" }]]);
const OctagonB = createMeisterIcons("octagon-b", [["path", { "fill": "currentColor", "d": "M14.4 3h-5c-.8 0-1.6.3-2.1.9L3.8 7.3c-.5.6-.8 1.4-.8 2.2v5c0 .8.3 1.6.9 2.1l3.5 3.5c.6.6 1.3.9 2.1.9h5c.8 0 1.6-.3 2.1-.9l3.5-3.5c.6-.6.9-1.3.9-2.1v-5c0-.8-.3-1.6-.9-2.1l-3.5-3.5c-.6-.6-1.4-.9-2.2-.9Z", "key": "2fa78dde887ab2a4f32ea0e878afd7fdd46c5dea" }], ["path", { "fill": "currentColor", "d": "M6.751 3.388C7.425 2.602 8.443 2.25 9.4 2.25h5c.986 0 1.98.37 2.73 1.12l3.478 3.477c.788.674 1.142 1.695 1.142 2.653v5c0 1.012-.389 1.9-1.12 2.63l-3.477 3.478c-.674.788-1.694 1.142-2.653 1.142h-5c-1.012 0-1.9-.389-2.63-1.12l-3.478-3.477c-.788-.674-1.142-1.694-1.142-2.653v-5c0-.98.364-1.949.974-2.68l.025-.03 3.502-3.402ZM9.4 3.75c-.63 0-1.197.238-1.524.63l-.025.03-3.498 3.4A2.746 2.746 0 0 0 3.75 9.5v5c0 .63.238 1.197.63 1.524l.026.022L7.93 19.57c.47.468.982.68 1.57.68h5c.63 0 1.197-.238 1.524-.63l.022-.026 3.524-3.524c.468-.47.68-.982.68-1.57v-5c0-.63-.238-1.197-.63-1.524l-.026-.022L16.07 4.43a2.352 2.352 0 0 0-1.67-.68h-5Z", "key": "21a1280d46bee64c5498291e01f28a88f02cc32e" }]]);
const Omlette = createMeisterIcons("omlette", [["path", { "fill": "currentColor", "d": "M5.886 5.411C4.42 6.78 3.453 8.911 3.5 11.99V12c0 2.25 1.155 4.515 2.907 6.197 1.751 1.68 4 2.684 6.083 2.555 1.215-.118 2.016-.392 2.606-.774.588-.38 1.028-.908 1.456-1.643.332-.57.635-1.222.994-1.997.117-.252.24-.517.373-.797.528-1.12 1.175-2.408 2.1-3.847.545-.846.619-1.735.35-2.635-.276-.925-.922-1.873-1.835-2.74-1.84-1.745-4.563-2.969-6.784-2.969-2.308 0-4.384.683-5.864 2.061ZM4.864 4.314C6.684 2.618 9.158 1.85 11.75 1.85c2.679 0 5.756 1.427 7.816 3.381 1.037.984 1.866 2.147 2.24 3.398.381 1.275.28 2.624-.525 3.877-.875 1.361-1.49 2.585-2.006 3.675-.118.25-.233.497-.345.74-.368.792-.711 1.532-1.082 2.17-.497.852-1.082 1.593-1.937 2.147-.853.551-1.91.876-3.29 1.009h-.011l-.012.002c-2.614.166-5.26-1.08-7.23-2.97C3.397 17.387 2.002 14.754 2 12.006c-.051-3.42 1.032-5.986 2.864-7.692Z", "key": "90d5bd52a15183cf11bc5dfed02013cc1e671149" }], ["path", { "fill": "currentColor", "d": "M11.55 10.15a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1ZM8.5 11.7a3.05 3.05 0 1 1 6.1 0 3.05 3.05 0 0 1-6.1 0Z", "key": "6584b6dac1288fbe51415db9a1e811fe1d96b974" }]]);
const OmletteB = createMeisterIcons("omlette-b", [["path", { "fill": "currentColor", "d": "M5.886 5.411C4.42 6.78 3.453 8.911 3.5 11.99V12c0 2.25 1.155 4.515 2.907 6.197 1.751 1.68 4 2.684 6.083 2.555 1.215-.118 2.016-.392 2.606-.774.588-.38 1.028-.908 1.456-1.643.332-.57.635-1.222.994-1.997.117-.252.24-.517.373-.797.528-1.12 1.175-2.408 2.1-3.847.545-.846.619-1.735.35-2.635-.276-.925-.922-1.873-1.835-2.74-1.84-1.745-4.563-2.969-6.784-2.969-2.308 0-4.384.683-5.864 2.061ZM4.864 4.314C6.684 2.618 9.158 1.85 11.75 1.85c2.679 0 5.756 1.427 7.816 3.381 1.037.984 1.866 2.147 2.24 3.398.381 1.275.28 2.624-.525 3.877-.875 1.361-1.49 2.585-2.006 3.675-.118.25-.233.497-.345.74-.368.792-.711 1.532-1.082 2.17-.497.852-1.082 1.593-1.937 2.147-.853.551-1.91.876-3.29 1.009h-.011l-.012.002c-2.614.166-5.26-1.08-7.23-2.97C3.397 17.387 2.002 14.754 2 12.006c-.051-3.42 1.032-5.986 2.864-7.692Z", "key": "424c5324e8cc77c12be3ed51899fc9215cb7d748" }], ["path", { "fill": "currentColor", "d": "M11.55 14a2.3 2.3 0 1 0 0-4.6 2.3 2.3 0 0 0 0 4.6Z", "key": "c5fc73217f2925352b0ab7a14570736692f5ff32" }], ["path", { "fill": "currentColor", "d": "M11.55 10.15a1.55 1.55 0 1 0 0 3.1 1.55 1.55 0 0 0 0-3.1ZM8.5 11.7a3.05 3.05 0 1 1 6.1 0 3.05 3.05 0 0 1-6.1 0Z", "key": "4f5c2ae0cf260a6b20ced3712e82d32d502b13e1" }]]);
const Paintbrush = createMeisterIcons("paintbrush", [["path", { "fill": "currentColor", "d": "M4.998 3.2c-.586 0-1.05.464-1.05 1.05v9.2c0 1.37 1.149 2.45 2.45 2.45h11.3c1.31 0 2.425-1.078 2.35-2.408V4.25c0-.586-.465-1.05-1.05-1.05h-14Zm-2.55 1.05a2.543 2.543 0 0 1 2.55-2.55h14a2.543 2.543 0 0 1 2.55 2.55v9.18c.112 2.26-1.767 3.97-3.85 3.97h-11.3c-2.1 0-3.95-1.72-3.95-3.95v-9.2Z", "key": "56d87fa4e46faf53361388ebd98735be52ba6e2c" }], ["path", { "fill": "currentColor", "d": "M3.298 11.6h17.6v1.5h-17.6v-1.5Zm7.65 5.05v3.1c0 .534.51 1.05 1.15 1.05.585 0 1.05-.464 1.05-1.05v-3.1h1.5v3.1a2.543 2.543 0 0 1-2.55 2.55c-1.361 0-2.65-1.084-2.65-2.55v-3.1h1.5Z", "key": "63ecfa4c4e19d10660e143d9d6ac224c7be2b143" }]]);
const PaintbrushAlt = createMeisterIcons("paintbrush-alt", [["path", { "fill": "currentColor", "d": "M6.55 3.75c-.986 0-1.75.764-1.75 1.75s.764 1.75 1.75 1.75h9c.42 0 .862-.197 1.207-.543.346-.345.543-.787.543-1.207 0-.986-.764-1.75-1.75-1.75h-9ZM3.3 5.5a3.226 3.226 0 0 1 3.25-3.25h9A3.226 3.226 0 0 1 18.8 5.5c0 .88-.403 1.688-.982 2.268-.58.58-1.388.982-2.268.982h-9A3.226 3.226 0 0 1 3.3 5.5Zm7.073 11.324A.27.27 0 0 0 10.3 17v3c0 .08.03.135.074.177a.27.27 0 0 0 .176.073h1c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157v-3c0-.08-.03-.135-.074-.177a.27.27 0 0 0-.176-.073h-1c-.08 0-.135.03-.177.074ZM8.8 17c0-.865.688-1.75 1.75-1.75h1c.865 0 1.75.688 1.75 1.75v3c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532h-1c-.865 0-1.75-.688-1.75-1.75v-3Z", "key": "64fae8d586ac62909038b92d26f80a6812297b78" }], ["path", { "fill": "currentColor", "d": "M18.15 4.55A2.543 2.543 0 0 1 20.7 7.1v3c0 1.897-1.518 3.55-3.55 3.55h-4.1c-.66 0-1.15.538-1.15 1.15V16h-1.5v-1.2c0-1.388 1.11-2.65 2.65-2.65h4.1c1.168 0 2.05-.947 2.05-2.05v-3c0-.586-.464-1.05-1.05-1.05v-1.5Z", "key": "1eb6df0746f1076c00f7d0400cc2953208ba4964" }]]);
const PaintbrushAltB = createMeisterIcons("paintbrush-alt-b", [["path", { "fill": "currentColor", "d": "M15.55 8h-9c-1.4 0-2.5-1.1-2.5-2.5S5.15 3 6.55 3h9c1.4 0 2.5 1.1 2.5 2.5 0 1.3-1.2 2.5-2.5 2.5Z", "key": "f9bcea0435a62ec2e4fc671381ba9172be382e23" }], ["path", { "fill": "currentColor", "d": "M6.55 3.75c-.986 0-1.75.764-1.75 1.75s.764 1.75 1.75 1.75h9c.42 0 .862-.197 1.207-.543.346-.345.543-.787.543-1.207 0-.986-.764-1.75-1.75-1.75h-9ZM3.3 5.5a3.226 3.226 0 0 1 3.25-3.25h9A3.226 3.226 0 0 1 18.8 5.5c0 .88-.403 1.688-.982 2.268-.58.58-1.388.982-2.268.982h-9A3.226 3.226 0 0 1 3.3 5.5ZM11.55 21h-1c-.5 0-1-.4-1-1v-3c0-.5.4-1 1-1h1c.5 0 1 .4 1 1v3c0 .5-.5 1-1 1Z", "key": "68ea0b3ca15a924eb8d1c3c549cdb5a07453263c" }], ["path", { "fill": "currentColor", "d": "M10.373 16.824A.27.27 0 0 0 10.3 17v3c0 .08.03.135.074.177a.27.27 0 0 0 .176.073h1c.006 0 .075-.01.157-.093.082-.082.093-.15.093-.157v-3c0-.08-.03-.135-.074-.177a.27.27 0 0 0-.176-.073h-1c-.08 0-.135.03-.177.074ZM8.8 17c0-.865.688-1.75 1.75-1.75h1c.865 0 1.75.688 1.75 1.75v3c0 .494-.24.925-.532 1.218-.293.293-.724.532-1.218.532h-1c-.865 0-1.75-.688-1.75-1.75v-3Z", "key": "1921906bf5594e9674778e0b94698fb05fdf8845" }], ["path", { "fill": "currentColor", "d": "M18.15 4.55A2.543 2.543 0 0 1 20.7 7.1v3c0 1.897-1.518 3.55-3.55 3.55h-4.1c-.66 0-1.15.538-1.15 1.15V16h-1.5v-1.2c0-1.388 1.11-2.65 2.65-2.65h4.1c1.168 0 2.05-.947 2.05-2.05v-3c0-.586-.464-1.05-1.05-1.05v-1.5Z", "key": "d042d93aea9602b233bd9e19ff7d089f182800c7" }]]);
const PaintbrushB = createMeisterIcons("paintbrush-b", [["path", { "fill": "currentColor", "d": "M2.5 11.6h19v1.85c0 2.199-1.72 3.95-3.85 3.95H6.35c-2.13 0-3.85-1.751-3.85-3.95V11.6ZM4 13.1v.35c0 1.401 1.08 2.45 2.35 2.45h11.3c1.27 0 2.35-1.049 2.35-2.45v-.35H4Z", "key": "c5c83880de2c91af8d294f916c6bf4d72c3f4792" }], ["path", { "fill": "currentColor", "d": "M20.75 4.25v8.1H3.25v-8.1c0-1 .8-1.8 1.8-1.8h14c.9.1 1.7.8 1.7 1.8Z", "key": "c80b405a5d7323c0ca815a28374300855767648c" }], ["path", { "fill": "currentColor", "d": "M5.05 3.2C4.464 3.2 4 3.664 4 4.25v7.35h16V4.25c0-.535-.419-.97-.996-1.05H5.05ZM2.5 4.25A2.543 2.543 0 0 1 5.05 1.7h14.042l.04.005c1.205.133 2.368 1.09 2.368 2.545v8.85h-19V4.25Z", "key": "f11a15727f6d8de6a1f887571a481476139e35f1" }], ["path", { "fill": "currentColor", "d": "M20.75 11.6h.1v1.5h-.1v-1.5Zm-6.9 5.05v3.1c0 1-.8 1.8-1.8 1.8s-1.9-.8-1.9-1.8v-3.1h3.7Z", "key": "f883cc82c2abe4f5a205e48fd5d33215b123b118" }], ["path", { "fill": "currentColor", "d": "M9.4 15.9h5.2v3.85a2.543 2.543 0 0 1-2.55 2.55c-1.36 0-2.65-1.084-2.65-2.55V15.9Zm1.5 1.5v2.35c0 .534.51 1.05 1.15 1.05.586 0 1.05-.464 1.05-1.05V17.4h-2.2Z", "key": "4b1dabce8027839880dca0e212c49e869ec4e12c" }]]);
const PaintbrushVarB = createMeisterIcons("paintbrush-var-b", [["path", { "fill": "currentColor", "d": "M20.75 12.35v1.1c0 1.8-1.4 3.2-3.1 3.2H6.35c-1.7 0-3.1-1.4-3.1-3.2v-1.1h17.5Z", "key": "238b76f5543aa0f61c006dc91ec990b0f73769d1" }], ["path", { "fill": "currentColor", "d": "M2.5 11.6h19v1.85c0 2.199-1.72 3.95-3.85 3.95H6.35c-2.13 0-3.85-1.751-3.85-3.95V11.6ZM4 13.1v.35c0 1.401 1.08 2.45 2.35 2.45h11.3c1.27 0 2.35-1.049 2.35-2.45v-.35H4Z", "key": "9c603d6d82be3b0ed9a61d94aee3b853327a5075" }], ["path", { "fill": "currentColor", "d": "M5.05 3.2C4.464 3.2 4 3.664 4 4.25v7.35h16V4.25c0-.535-.419-.97-.996-1.05H5.05ZM2.5 4.25A2.543 2.543 0 0 1 5.05 1.7h14.042l.04.005c1.205.133 2.368 1.09 2.368 2.545v8.85h-19V4.25Z", "key": "b30c3c28e044409b0a0e0fe29db1f7fb2febcdc4" }], ["path", { "fill": "currentColor", "d": "M20.75 11.6h.1v1.5h-.1v-1.5ZM9.4 15.9h5.2v3.85a2.543 2.543 0 0 1-2.55 2.55c-1.36 0-2.65-1.084-2.65-2.55V15.9Zm1.5 1.5v2.35c0 .534.51 1.05 1.15 1.05.586 0 1.05-.464 1.05-1.05V17.4h-2.2Z", "key": "887568fff4966d54478abf8ed524471e9f68dcb1" }]]);
const Palette = createMeisterIcons("palette", [["path", { "fill": "currentColor", "d": "M4.6 4c-.386 0-.65.264-.65.65v12.1A3.262 3.262 0 0 0 7.2 20c1.793 0 3.23-1.463 3.15-3.216V4.65c0-.386-.264-.65-.65-.65H4.6Zm-2.15.65c0-1.214.936-2.15 2.15-2.15h5.1c1.214 0 2.15.936 2.15 2.15v12.084c.11 2.639-2.049 4.766-4.65 4.766a4.762 4.762 0 0 1-4.75-4.75V4.65Z", "key": "265b6f7e14d12720658777c2c5fa031183ed6b96" }], ["path", { "fill": "currentColor", "d": "M12.333 4.759c.826-.978 2.237-.9 3.097-.04L19.01 8.3c.959.827.876 2.226.021 3.081l-8.6 8.6-.032.032c-.155.156-.394.396-.667.557a1.3 1.3 0 0 1-.237.147 1.952 1.952 0 0 1-.194.171 1.126 1.126 0 0 1-.222.132.86.86 0 0 1-.44.175.995.995 0 0 1-.297.095 1.098 1.098 0 0 1-.377.105 2.09 2.09 0 0 1-.736.106H7.2a4.762 4.762 0 0 1-1.779-.354l-.029-.011-.027-.014a.928.928 0 0 0-.103-.044 3.872 3.872 0 0 1-.078-.03 1.186 1.186 0 0 1-.416-.265 2.655 2.655 0 0 0-.084-.058l-.004-.003c-.035-.023-.084-.055-.13-.09a1.667 1.667 0 0 1-.118-.093.839.839 0 0 1-.274-.173 2.22 2.22 0 0 1-.083-.08l-.205-.205-.032-.032c-.156-.155-.396-.394-.557-.667a1.32 1.32 0 0 1-.148-.238l-.002-.003c-.088-.1-.141-.2-.173-.27a1.725 1.725 0 0 1-.064-.165l-.144-.144v-.047l-.2-.1V16.75h1.5v.86a.971.971 0 0 1 .176.387l.016.033c.033.072.056.143.067.176v.002c.087.106.135.203.157.248l.05.05.055.108c.034.068.13.176.36.406l.08.08h.31l.121.326.074.05.004.003c.035.023.084.055.13.09.034.024.077.057.123.097.047.018.136.052.23.097a3.252 3.252 0 0 0 1.404.23.17.17 0 0 0 .058-.014l.158-.079h.066l.1-.1h.286a1.288 1.288 0 0 1 .182-.067l.132-.133h.1c.131-.124.262-.19.317-.216l.05-.05.109-.055c.067-.034.175-.13.405-.36l8.6-8.6c.336-.336.26-.717.05-.893l-.026-.022L14.37 5.78c-.337-.336-.718-.26-.894-.05l-.008.01-1.71 1.91-1.117-1 1.692-1.891ZM2.75 18.23Z", "key": "588dffefb6315ad7b1bcb8e8799d6ec6035c00db" }], ["path", { "fill": "currentColor", "d": "M19.4 13.5h-2.6V12h2.6c1.214 0 2.15.936 2.15 2.15v5.1c0 1.214-.936 2.15-2.15 2.15H7.2c-.531 0-1.203-.095-1.73-.33a1.008 1.008 0 0 1-.132-.044 1.405 1.405 0 0 1-.186-.095 5.276 5.276 0 0 1-.074-.046c-.043-.026-.069-.042-.113-.064l-.11-.055-.076-.077-.01-.008a2.655 2.655 0 0 0-.085-.057l-.004-.003c-.035-.023-.084-.055-.13-.09a1.566 1.566 0 0 1-.16-.131h-.1l-.194-.193a.909.909 0 0 1-.349-.358 4.08 4.08 0 0 1-.19-.24l-.007-.01a1.943 1.943 0 0 0-.18-.219 1.245 1.245 0 0 1-.237-.337l-.002-.003c-.088-.1-.141-.2-.173-.27a1.728 1.728 0 0 1-.064-.165l-.144-.144V16.85h1.5v1.097c.028.065.05.129.06.16v.001c.086.106.135.204.157.248.12.125.21.247.276.334l.007.01c.077.103.123.162.18.22l.08.08h.1l.311.31a2.655 2.655 0 0 0 .095.065l.004.004c.035.023.084.055.13.09.023.016.05.036.078.06a2.882 2.882 0 0 1 .123.07h.026l.158.08c.26.13.733.22 1.165.22h12.2c.386 0 .65-.263.65-.65v-5.1c0-.385-.264-.65-.65-.65Z", "key": "414bdeec7a046fc1ef8ad02d1aba94442cd89658" }]]);
const PaletteB = createMeisterIcons("palette-b", [["path", { "fill": "currentColor", "d": "M11.114 4.65v12.1c0 1.1-.4 2.1-1.2 2.8l-.3.3c-.1.1-.3.2-.4.3-.1.1-.2.1-.2.1-.1.1-.2.1-.3.2h-.2c-.1 0-.2.1-.3.1h-.1c-.1 0-.2 0-.3.1h-.6c-.5 0-1.1-.1-1.5-.3h-.1c-.1 0-.1-.1-.2-.1h-.1c-.1 0-.2-.1-.2-.1-.1 0-.1-.1-.2-.1l-.1-.1c-.1 0-.1-.1-.2-.1-.1-.1-.2-.1-.2-.2-.2-.2-.3-.4-.5-.6-.1-.1-.1-.2-.2-.3-.1-.1-.1-.3-.2-.4-.1-.2-.1-.3-.1-.3V4.65c0-.8.6-1.4 1.4-1.4h5c.6 0 1.3.6 1.3 1.4Z", "key": "c7bc9dbc7f9d66509a0682dc22e6ea525c3fd425" }], ["path", { "fill": "currentColor", "d": "M4.814 4c-.386 0-.65.264-.65.65v13.315c.042.062.071.12.092.165.032.072.056.143.067.176v.002c.087.107.135.204.157.249.12.125.21.246.276.333l.008.01c.077.103.123.162.18.22l.08.08h.1l.2.2h.1l.108.108a.854.854 0 0 1 .485.235l.032-.064c.26.13.732.221 1.165.221h.382c.21-.096.401-.1.492-.1a.968.968 0 0 1 .398-.1l.033-.016.184-.184h.118a1.8 1.8 0 0 1 .042-.032c.047-.034.096-.066.13-.09l.005-.002a2.618 2.618 0 0 0 .094-.065l.309-.309.019-.016c.615-.539.944-1.321.944-2.236V4.65a.667.667 0 0 0-.206-.47C10.02 4.041 9.876 4 9.814 4h-5Zm1.202 15.745a.615.615 0 0 0-.302-.137v.742l.302-.605ZM3.402 19.6a1.072 1.072 0 0 0-.019-.02 1.238 1.238 0 0 1-.236-.337l-.002-.003c-.089-.1-.142-.2-.174-.27a1.728 1.728 0 0 1-.063-.165l-.01-.01-.055-.11a1.857 1.857 0 0 1-.145-.378 1.227 1.227 0 0 1-.034-.232v-.024l.75-.001h-.75V4.65c0-1.214.935-2.15 2.15-2.15h5c.537 0 1.044.259 1.405.62.37.37.645.904.645 1.53v12.1c0 1.277-.466 2.486-1.437 3.347l-.283.283a1.519 1.519 0 0 1-.18.152c-.047.034-.096.066-.13.09l-.004.002a2.618 2.618 0 0 0-.096.066c-.125.122-.26.2-.382.245a1.37 1.37 0 0 1-.144.081l-.184.184H8.64a.964.964 0 0 1-.415.1l-.1.1h-.91c-.51 0-1.15-.088-1.668-.302a.866.866 0 0 1-.353-.106 1.03 1.03 0 0 1-.427-.164.882.882 0 0 1-.058-.028h-.76l.11-.428a1.012 1.012 0 0 1-.056-.039L2.537 19.6h.865Z", "key": "beb39f583a99498698edd14479f9569249608ec6" }], ["path", { "fill": "currentColor", "d": "M14.337 5.83c-.175-.21-.556-.286-.893.05l-1.58 1.58v9.08l6.12-6.12c.179-.18.243-.62-.028-.967l-3.597-3.597-.022-.026Zm-3.893 14.25-1.06-1.06c.58-.582.98-1.398.98-2.27V6.84l2.02-2.02c.854-.855 2.254-.938 3.081.021l3.603 3.603.022.026c.708.85.77 2.194-.046 3.01l-8.6 8.6Z", "key": "023dc9285c755d7bc42c8533457d25d5c724bf86" }], ["path", { "fill": "currentColor", "d": "M16.303 12h2.91c1.215 0 2.25 1.036 2.25 2.25v5.1c0 1.214-.935 2.15-2.15 2.15H7.115V20h.488l.1-.1h.3l.1-.1h.1l.1-.1h.1l.2-.2h.119a2.192 2.192 0 0 1 .172-.121l.005-.003a2.618 2.618 0 0 0 .094-.065L16.302 12Zm-5.879 8 6.5-6.5h2.29c.385 0 .75.364.75.75v5.1c0 .386-.265.65-.65.65h-8.89Z", "key": "e47e9180e7b8dd62aaf8d5874c81ab2d83b2d950" }]]);
const PaletteVarB = createMeisterIcons("palette-var-b", [["path", { "fill": "currentColor", "d": "M4.814 4c-.386 0-.65.264-.65.65v13.315c.042.062.071.12.092.165.032.072.056.143.067.176v.002c.087.107.135.204.157.249.12.125.21.246.276.333l.008.01c.077.103.123.162.18.22l.08.08h.1l.2.2h.1l.108.108a.854.854 0 0 1 .485.235l.032-.064c.26.13.732.221 1.165.221h.382c.21-.096.401-.1.492-.1a.968.968 0 0 1 .398-.1l.033-.016.184-.184h.118a1.8 1.8 0 0 1 .042-.032c.047-.034.096-.066.13-.09l.005-.002a2.618 2.618 0 0 0 .094-.065l.309-.309.019-.016c.615-.539.944-1.321.944-2.236V4.65a.667.667 0 0 0-.206-.47C10.02 4.041 9.876 4 9.814 4h-5Zm1.202 15.745a.615.615 0 0 0-.302-.137v.742l.302-.605ZM3.402 19.6a1.072 1.072 0 0 0-.019-.02 1.238 1.238 0 0 1-.236-.337l-.002-.003c-.089-.1-.142-.2-.174-.27a1.728 1.728 0 0 1-.063-.165l-.01-.01-.055-.11a1.857 1.857 0 0 1-.145-.378 1.227 1.227 0 0 1-.034-.232v-.024l.75-.001h-.75V4.65c0-1.214.935-2.15 2.15-2.15h5c.537 0 1.044.259 1.405.62.37.37.645.904.645 1.53v12.1c0 1.277-.466 2.486-1.437 3.347l-.283.283a1.519 1.519 0 0 1-.18.152c-.047.034-.096.066-.13.09l-.004.002a2.618 2.618 0 0 0-.096.066c-.125.122-.26.2-.382.245a1.37 1.37 0 0 1-.144.081l-.184.184H8.64a.964.964 0 0 1-.415.1l-.1.1h-.91c-.51 0-1.15-.088-1.668-.302a.866.866 0 0 1-.353-.106 1.03 1.03 0 0 1-.427-.164.882.882 0 0 1-.058-.028h-.76l.11-.428a1.012 1.012 0 0 1-.056-.039L2.537 19.6h.865Z", "key": "27e1b08fade656d6302007ae74c318bcd99d29c5" }], ["path", { "fill": "currentColor", "d": "m18.514 10.95-1.8 1.8-6.8 6.8c.7-.7 1.2-1.7 1.2-2.8v-9.6l1.8-1.8c.6-.6 1.5-.6 2 0l3.6 3.6c.5.6.5 1.5 0 2Z", "key": "ff3e0d3b0be65592ede6fb3dae14a2ebaebad238" }], ["path", { "fill": "currentColor", "d": "M14.337 5.83c-.175-.21-.556-.286-.893.05l-1.58 1.58v9.08l6.12-6.12c.179-.18.243-.62-.028-.967l-3.597-3.597-.022-.026Zm-3.893 14.25-1.06-1.06c.58-.582.98-1.398.98-2.27V6.84l2.02-2.02c.854-.855 2.254-.938 3.081.021l3.603 3.603.022.026c.708.85.77 2.194-.046 3.01l-8.6 8.6Z", "key": "6847103fc30cc44acba2867fa123467866c34135" }], ["path", { "fill": "currentColor", "d": "M16.303 12h2.91c1.215 0 2.25 1.036 2.25 2.25v5.1c0 1.214-.935 2.15-2.15 2.15H7.115V20h.488l.1-.1h.3l.1-.1h.1l.1-.1h.1l.2-.2h.119a2.192 2.192 0 0 1 .172-.121l.005-.003a2.618 2.618 0 0 0 .094-.065L16.302 12Zm-5.879 8 6.5-6.5h2.29c.385 0 .75.364.75.75v5.1c0 .386-.265.65-.65.65h-8.89Z", "key": "f860bc3cea5ea42b1ea1a654a9ba3abf0ee66859" }]]);
const ParaAdd = createMeisterIcons("para-add", [["path", { "fill": "currentColor", "d": "M3.75 4.25a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Zm0 4a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15ZM3 13a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7A.75.75 0 0 1 3 13Zm.75 3.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Zm13.5-4A.75.75 0 0 1 18 13v2.25h2.25a.75.75 0 0 1 0 1.5H18V19a.75.75 0 0 1-1.5 0v-2.25h-2.25a.75.75 0 0 1 0-1.5h2.25V13a.75.75 0 0 1 .75-.75Z", "key": "4fc16b5e0a84384b727ac7dd85aa61f0b34bafe3" }]]);
const ParaBlock = createMeisterIcons("para-block", [["path", { "fill": "currentColor", "d": "M3.35 5.038a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm14.463 8.942c-.781-.363-1.775-.22-2.482.488l-.012.011-.012.011c-.684.627-.847 1.64-.427 2.492l2.933-3.002Zm-1.857 4.048a2.4 2.4 0 0 0 2.537-.443c.702-.643.856-1.693.394-2.558l-2.931 3.001Zm-1.675-4.632c1.477-1.465 3.854-1.499 5.26.023 1.47 1.48 1.5 3.866-.034 5.271-1.474 1.351-3.832 1.383-5.237-.022-1.476-1.476-1.514-3.861.011-5.272ZM4.101 8.288a.75.75 0 1 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Zm-.75 4.75a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Z", "key": "aadd78d8ce0a7290e4add4073f1c3c513aef9b55" }]]);
const ParabolaDown = createMeisterIcons("parabola-down", [["path", { "fill": "currentColor", "d": "M3 2.75a.75.75 0 0 1 .75.75v13.9a2.366 2.366 0 0 0 2.35 2.35H21a.75.75 0 0 1 0 1.5H6.1a3.866 3.866 0 0 1-3.85-3.85V3.5A.75.75 0 0 1 3 2.75Z", "key": "bac16efa91cd752f6169f19f1695dc52ef40cf2e" }], ["path", { "fill": "currentColor", "d": "M16.337 5.268a.75.75 0 0 1 .895.57c.213.96.318 2.015.318 3.062 0 2.316-.578 4.434-1.55 5.996-.968 1.553-2.398 2.654-4.1 2.654-1.71 0-3.139-1.136-4.1-2.693-.971-1.572-1.55-3.688-1.55-5.957a13.4 13.4 0 0 1 .318-2.963.75.75 0 1 1 1.464.326c-.188.845-.282 1.69-.282 2.637 0 2.031.521 3.865 1.326 5.169.813 1.317 1.834 1.981 2.824 1.981.998 0 2.018-.649 2.826-1.947.802-1.287 1.324-3.12 1.324-5.203 0-.953-.096-1.897-.282-2.737a.75.75 0 0 1 .57-.895Z", "key": "79128c5cea25eaee98044771c5b30ea3b007659c" }]]);
const ParabolaUp = createMeisterIcons("parabola-up", [["path", { "fill": "currentColor", "d": "M3 2.75a.75.75 0 0 1 .75.75v13.9a2.366 2.366 0 0 0 2.35 2.35H21a.75.75 0 0 1 0 1.5H6.1a3.866 3.866 0 0 1-3.85-3.85V3.5A.75.75 0 0 1 3 2.75Z", "key": "ea6f9aae29d3cfc3dfabe93976f5ac4b3d6e367d" }], ["path", { "fill": "currentColor", "d": "M9.174 8.796C8.372 10.084 7.85 11.916 7.85 14c0 .953.095 1.898.282 2.737a.75.75 0 0 1-1.464.326A14.324 14.324 0 0 1 6.35 14c0-2.316.578-4.434 1.55-5.997.968-1.552 2.398-2.653 4.1-2.653 1.702 0 3.132 1.101 4.1 2.653.972 1.563 1.55 3.68 1.55 5.997 0 1.053-.106 2.008-.318 2.963a.75.75 0 1 1-1.464-.326A11.9 11.9 0 0 0 16.15 14c0-2.084-.522-3.916-1.324-5.204C14.018 7.5 12.998 6.85 12 6.85s-2.018.649-2.826 1.946Z", "key": "a2d21c803aaeef194d94bc53e005825343f457e1" }]]);
const ParaCheck = createMeisterIcons("para-check", [["path", { "fill": "currentColor", "d": "M3.75 5.462a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5h-7Zm-.75 4.75a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75ZM20.024 15a.75.75 0 0 0-1.048-1.073l-3.72 3.629-1.156-1.543a.75.75 0 1 0-1.2.9l1.532 2.043.038.038c.222.222.506.295.73.295.222 0 .504-.072.726-.29L20.024 15Z", "key": "77360244ebc285625a26d5b33458bb1c2ab7487e" }]]);
const ParaCircle = createMeisterIcons("para-circle", [["path", { "fill": "currentColor", "d": "M14.4 3.4a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6ZM4.85 8.15a3.05 3.05 0 1 1 6.1 0 3.05 3.05 0 0 1-6.1 0ZM7.9 3.6a4.55 4.55 0 1 0 0 9.1 4.55 4.55 0 0 0 0-9.1ZM3.6 19.1a.75.75 0 0 0 0 1.5h16.8a.75.75 0 0 0 0-1.5H3.6Zm-.75-3.25a.75.75 0 0 1 .75-.75h16.8a.75.75 0 0 1 0 1.5H3.6a.75.75 0 0 1-.75-.75ZM13.6 11.1a.75.75 0 0 0 0 1.5h6.8a.75.75 0 0 0 0-1.5h-6.8Zm1.25-3.25a.75.75 0 0 1 .75-.75h4.8a.75.75 0 0 1 0 1.5h-4.8a.75.75 0 0 1-.75-.75Z", "key": "e044aba1ff1a453a005fa3c4565b5d58657421b5" }]]);
const ParaCircleB = createMeisterIcons("para-circle-b", [["path", { "fill": "currentColor", "d": "M7.9 11.95a3.8 3.8 0 1 0 0-7.6 3.8 3.8 0 0 0 0 7.6Z", "key": "f5581a782b48e6fa09483b6e49656c7729ceb4a8" }], ["path", { "fill": "currentColor", "d": "M7.9 5.1a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1ZM3.35 8.15a4.55 4.55 0 1 1 9.1 0 4.55 4.55 0 0 1-9.1 0Zm-.4 11.7a.75.75 0 0 1 .75-.75h16.7a.75.75 0 0 1 0 1.5H3.7a.75.75 0 0 1-.75-.75Zm0-4a.75.75 0 0 1 .75-.75h16.7a.75.75 0 0 1 0 1.5H3.7a.75.75 0 0 1-.75-.75Zm10-4a.75.75 0 0 1 .75-.75h6.7a.75.75 0 0 1 0 1.5h-6.7a.75.75 0 0 1-.75-.75Zm2-4a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75Zm-1.3-3.7a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "af46c5fca8e5c6c68f640e83400e7104d5c0cd3a" }]]);
const ParaCross = createMeisterIcons("para-cross", [["path", { "fill": "currentColor", "d": "M4.2 4.7a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15Zm0 4a.75.75 0 0 0 0 1.5h15a.75.75 0 1 0 0-1.5h-15Zm-.75 4.75a.75.75 0 0 1 .75-.75h7a.75.75 0 0 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5h-6Zm16.13-2.98a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "fdc054ac7e71f87883ffef02602c1d1df333e5c5" }]]);
const ParaHeart = createMeisterIcons("para-heart", [["path", { "fill": "currentColor", "d": "M15.5 14.3a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l1.92 1.92 1.72-1.72.16-.16c.244-.335.32-.56.32-.71 0-.09-.026-.233-.078-.401a2.876 2.876 0 0 0-.088-.24c-.326-.234-.873-.21-1.154.071l-.73.73-.691-.69c-.334-.244-.56-.32-.709-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l1.958 1.959c.242.314.601.486.984.486.396 0 .753-.18 1.018-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.31-.074-.617-.147-.849a4.14 4.14 0 0 0-.232-.586l-.055-.11-.086-.085c-.796-.797-2.135-.883-3.05-.258Zm-.23 4.575v-.001ZM3.65 5.55a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "b1b3f0ff8952a156fa4d12a976d63eaaf65066cd" }]]);
const ParallelogramTool = createMeisterIcons("parallelogram-tool", [["path", { "fill": "currentColor", "d": "M6.5 18.45h11v1.5h-11v-1.5Zm2-14.4h7v1.5h-7v-1.5Zm9.438 2.316 2 11-1.476.268-2-11 1.476-.268Zm-10.4.268-2 11-1.476-.268 2-11 1.476.268Z", "key": "69b767bf888a760c8f3b5a88a1a748aa0ae7c9bb" }], ["path", { "fill": "currentColor", "d": "M6.8 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm.45 13.45a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm16.85-.95a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm.45-15.35a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "4c8f5a577e9d21a1039a246eaa3d6abccac0abae" }]]);
const ParallelogramToolAlt = createMeisterIcons("parallelogram-tool-alt", [["path", { "fill": "currentColor", "d": "M18.45 17.5v-11h1.5v11h-1.5Zm-14.4-2v-7h1.5v7h-1.5Zm2.316-9.438 11-2 .268 1.476-11 2-.268-1.476Zm.268 10.4 11 2-.268 1.476-11-2 .268-1.476Z", "key": "568a7114c90916062f951ca3d8ef44bbb7e3a3d8" }], ["path", { "fill": "currentColor", "d": "M4.8 16.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm16.85 1.05a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM19.2 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM4.8 5.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "373b0677b04268fb5077da232cb17683327b5e6f" }]]);
const ParallelogramToolAltB = createMeisterIcons("parallelogram-tool-alt-b", [["path", { "fill": "currentColor", "d": "M18.45 17.5v-11h1.5v11h-1.5Zm-14.4-2v-7h1.5v7h-1.5Zm2.316-9.438 11-2 .268 1.476-11 2-.268-1.476Zm.268 10.4 11 2-.268 1.476-11-2 .268-1.476Z", "key": "5ba4d9d70d9692b8f9ff51ba60a520e95e15cc4e" }], ["path", { "fill": "currentColor", "d": "M4.8 18.9a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "385ba98285477fa466cf4c3c008946fe4c1739f6" }], ["path", { "fill": "currentColor", "d": "M4.8 16.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm16.85 3.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "721789747eada069d093351d23d741b0875e63ed" }], ["path", { "fill": "currentColor", "d": "M19.2 18.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM19.2 6.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "f5ab4e36a4444e7f94ef574deecb32dc5fd230fc" }], ["path", { "fill": "currentColor", "d": "M19.2 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM4.8 8.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "bb69993dd14b546d91b2f9b0c24dc81c005e72d7" }], ["path", { "fill": "currentColor", "d": "M4.8 5.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "f48e9aaac9ce6443950ea6947b407f6a8bad01ee" }]]);
const ParallelogramToolB = createMeisterIcons("parallelogram-tool-b", [["path", { "fill": "currentColor", "d": "M6.5 18.45h11v1.5h-11v-1.5Zm2-14.4h7v1.5h-7v-1.5Zm9.438 2.316 2 11-1.476.268-2-11 1.476-.268Zm-10.4.268-2 11-1.476-.268 2-11 1.476.268Z", "key": "114080ad6107bceefea8ac6019378c3f3cdc5cbb" }], ["path", { "fill": "currentColor", "d": "M6.8 6.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "a8c1146356361828201e02271fced36d4c3a2343" }], ["path", { "fill": "currentColor", "d": "M6.8 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm.45 16.1a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "605cf194ac3804c53f3702c6a1bd6b53f54f6970" }], ["path", { "fill": "currentColor", "d": "M4.8 18.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm16.85 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "df28c8a2e542bd197a43fc647835b0c3b1eeac42" }], ["path", { "fill": "currentColor", "d": "M19.2 18.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm.45-12.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "c9dbf67f5abaed9f43e3e32c6db2a1495c538775" }], ["path", { "fill": "currentColor", "d": "M17.2 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "c53c1e7b4f4443958390f0ae39342adb481ddf66" }]]);
const ParaPlay = createMeisterIcons("para-play", [["path", { "fill": "currentColor", "d": "M3.75 5.728a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5h-7Zm-.75 4.75a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm12.622-4.952c-1.236-.706-2.622.218-2.622 1.552v2.9c0 1.333 1.386 2.257 2.622 1.55l.007-.003 2.522-1.513.015-.01c1.045-.697 1.045-2.252 0-2.948l-.015-.01-2.522-1.514-.007-.004Zm-1.122 1.552c0-.14.064-.221.127-.26.058-.035.14-.05.246.008l2.47 1.482a.279.279 0 0 1 0 .439l-2.47 1.482c-.106.059-.188.043-.245.008-.064-.039-.128-.12-.128-.26v-2.9Z", "key": "c3fd36707a6d02775ae086c1eebe6a5328b4f771" }]]);
const ParaPlayB = createMeisterIcons("para-play-b", [["path", { "fill": "currentColor", "d": "M3.8 5.75A.75.75 0 0 1 4.55 5h15a.75.75 0 1 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4A.75.75 0 0 1 4.55 9h15a.75.75 0 1 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h7a.75.75 0 1 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h6a.75.75 0 1 1 0 1.5h-6a.75.75 0 0 1-.75-.75Zm14.65-2.8-2.5-1.5c-.7-.4-1.5.1-1.5.9v2.9c0 .8.8 1.3 1.5.9l2.5-1.5c.7-.4.7-1.3 0-1.7Z", "key": "6e8b803c0106796f9d59b6286c7b7ab06ccd91ce" }], ["path", { "fill": "currentColor", "d": "M13.7 14.35c0-1.334 1.386-2.258 2.622-1.551l.007.004 2.5 1.5c.568.328.896.892.896 1.497 0 .604-.328 1.17-.895 1.497l-2.501 1.5-.007.004c-1.236.707-2.622-.217-2.622-1.551v-2.9Zm1.627-.26c-.063.04-.127.121-.127.26v2.9c0 .139.064.22.127.26.058.034.14.05.246-.008l2.498-1.5.007-.003c.128-.073.147-.156.147-.199 0-.043-.02-.126-.147-.199l-.007-.004-2.498-1.499c-.107-.059-.188-.042-.246-.007Z", "key": "971242d9d8af0b98c54db7c2cd6ae67e9489ed71" }]]);
const ParaSearch = createMeisterIcons("para-search", [["path", { "fill": "currentColor", "d": "M2.75 4a.75.75 0 0 1 .75-.75h15a.75.75 0 0 1 0 1.5h-15A.75.75 0 0 1 2.75 4Zm10.4 11.7a3.05 3.05 0 1 1 6.1 0 3.05 3.05 0 0 1-6.1 0Zm3.05-4.55a4.55 4.55 0 1 0 2.643 8.254l1.127 1.126a.75.75 0 0 0 1.06-1.06l-1.126-1.127A4.55 4.55 0 0 0 16.2 11.15ZM3.5 7.25a.75.75 0 0 0 0 1.5h15a.75.75 0 0 0 0-1.5h-15ZM2.75 12a.75.75 0 0 1 .75-.75h7a.75.75 0 1 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm.75 3.25a.75.75 0 1 0 0 1.5h5a.75.75 0 0 0 0-1.5h-5Z", "key": "e1826ee74d80c50b59a2d8b902174e6b1e7745c7" }]]);
const ParaSearchB = createMeisterIcons("para-search-b", [["path", { "fill": "currentColor", "d": "M16.25 19.55a3.8 3.8 0 1 0 0-7.6 3.8 3.8 0 0 0 0 7.6Z", "key": "d4c8cd064c9a59359cbdbe1e23ae5fa0f122758d" }], ["path", { "fill": "currentColor", "d": "M16.25 12.7a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1Zm-4.55 3.05a4.55 4.55 0 1 1 9.1 0 4.55 4.55 0 0 1-9.1 0Z", "key": "4855e515c64336de9fd18dcef181fff632df73c3" }], ["path", { "fill": "currentColor", "d": "M18.52 18.02a.75.75 0 0 1 1.06 0l1.5 1.5a.75.75 0 0 1-1.06 1.06l-1.5-1.5a.75.75 0 0 1 0-1.06ZM2.8 4.05a.75.75 0 0 1 .75-.75h15a.75.75 0 1 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h15a.75.75 0 1 1 0 1.5h-15a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h7a.75.75 0 1 1 0 1.5h-7a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5h-5a.75.75 0 0 1-.75-.75Z", "key": "10ec65d6d8198b4288bc5323a2905d2114f4d3e4" }]]);
const PercentBlock = createMeisterIcons("percent-block", [["path", { "fill": "currentColor", "d": "M16.62 4.98a.518.518 0 0 0-.74 0l-10.9 10.9a.518.518 0 0 0 0 .74l2.4 2.4a.517.517 0 0 0 .74 0l10.9-10.9a.518.518 0 0 0 0-.74l-2.4-2.4Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0l2.4 2.4a2.017 2.017 0 0 1 0 2.86l-10.9 10.9a2.017 2.017 0 0 1-2.86 0l-2.4-2.4a2.018 2.018 0 0 1 0-2.86l10.9-10.9ZM6.45 5a1.45 1.45 0 1 0 0 2.9 1.45 1.45 0 0 0 0-2.9ZM3.5 6.45a2.95 2.95 0 1 1 5.9 0 2.95 2.95 0 0 1-5.9 0Zm14.05 9.65a1.45 1.45 0 1 0 0 2.9 1.45 1.45 0 0 0 0-2.9Zm-2.95 1.45a2.95 2.95 0 1 1 5.9 0 2.95 2.95 0 0 1-5.9 0Z", "key": "4c46aede095e3d70deb1581ef2caf29713742f7f" }]]);
const PercentBlockB = createMeisterIcons("percent-block-b", [["path", { "fill": "currentColor", "d": "m6.85 19.55-2.4-2.4c-.5-.5-.5-1.3 0-1.8l10.9-10.9c.5-.5 1.3-.5 1.8 0l2.4 2.4c.5.5.5 1.3 0 1.8l-10.9 10.9c-.5.5-1.3.5-1.8 0Z", "key": "4c6267860df9c3b98af6bdad580ee172959f7cf9" }], ["path", { "fill": "currentColor", "d": "M16.62 4.98a.518.518 0 0 0-.74 0l-10.9 10.9a.518.518 0 0 0 0 .74l2.4 2.4a.517.517 0 0 0 .74 0l10.9-10.9a.518.518 0 0 0 0-.74l-2.4-2.4Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0l2.4 2.4a2.017 2.017 0 0 1 0 2.86l-10.9 10.9a2.017 2.017 0 0 1-2.86 0l-2.4-2.4a2.018 2.018 0 0 1 0-2.86l10.9-10.9ZM6.45 8.65a2.2 2.2 0 1 0 0-4.4 2.2 2.2 0 0 0 0 4.4Z", "key": "e98540de16470acee164007b96f4dc3f2fa60561" }], ["path", { "fill": "currentColor", "d": "M6.45 5a1.45 1.45 0 1 0 0 2.9 1.45 1.45 0 0 0 0-2.9ZM3.5 6.45a2.95 2.95 0 1 1 5.9 0 2.95 2.95 0 0 1-5.9 0Zm14.05 13.3a2.2 2.2 0 1 0 0-4.4 2.2 2.2 0 0 0 0 4.4Z", "key": "3182f6da3f02548a52c413523213a57846a9fcac" }], ["path", { "fill": "currentColor", "d": "M17.55 16.1a1.45 1.45 0 1 0 0 2.9 1.45 1.45 0 0 0 0-2.9Zm-2.95 1.45a2.95 2.95 0 1 1 5.9 0 2.95 2.95 0 0 1-5.9 0Z", "key": "8dae564713e7576f8505162d27e2a4a9bf599bd3" }]]);
const Phone = createMeisterIcons("phone", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "bec733b24f69c7d9ed42923e47ca47571d9b197e" }]]);
const PhoneAdd = createMeisterIcons("phone-add", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "0472209f63b457dda5982be73ebc64520a32ec7a" }], ["path", { "fill": "currentColor", "d": "M15.55 4.65a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-1.5 0v-5a.75.75 0 0 1 .75-.75Z", "key": "051fb0ad1583143ff881ffaabaacf581cd7985a3" }], ["path", { "fill": "currentColor", "d": "M12.3 7.9a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "a5ec6d5a6d2a1d11533174280684df33a21b0da2" }]]);
const PhoneAddB = createMeisterIcons("phone-add-b", [["path", { "fill": "currentColor", "d": "M7.65 4.3c.4 0 .9.1 1.3.2.1.1.3.2.5.3l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6v-.5c0-1.8 1.5-3.3 3.4-3.3Z", "key": "b18036457be2d8c8426e4ff35e6055c478f5d266" }], ["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "32048035adb13362588f033fe66812f64c75b4ae" }], ["path", { "fill": "currentColor", "d": "M15.55 4.65a.75.75 0 0 1 .75.75v5a.75.75 0 0 1-1.5 0v-5a.75.75 0 0 1 .75-.75Z", "key": "f8326acabc5c279afb3b71d78757b719914fd73d" }], ["path", { "fill": "currentColor", "d": "M12.3 7.9a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "66125fca3bce519e66a7f96b738ae2a6dc29d5af" }]]);
const PhoneB = createMeisterIcons("phone-b", [["path", { "fill": "currentColor", "d": "M7.65 4.3c.4 0 .9.1 1.3.2.1.1.3.2.5.3l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6v-.5c0-1.8 1.5-3.3 3.4-3.3Z", "key": "37764ae012dcddcb5788e3329ae793a6ea058a0b" }], ["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "c7254c70064251eb3dc6b4ab661d45be86fad9dc" }]]);
const PhoneBlock = createMeisterIcons("phone-block", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "86327ffbb64c363412d78925febeab5c13d9ed2a" }], ["path", { "fill": "currentColor", "d": "M17.22 5.93c-.707-.707-1.733-.707-2.44 0-.707.707-.707 1.733 0 2.44.707.707 1.733.707 2.44 0 .707-.707.707-1.733 0-2.44Zm-3.5-1.06c1.293-1.293 3.267-1.293 4.56 0 1.293 1.293 1.293 3.267 0 4.56-1.293 1.293-3.267 1.293-4.56 0-1.293-1.293-1.293-3.267 0-4.56Z", "key": "3122388e75281c53552b2224aae182bd62f9336f" }], ["path", { "fill": "currentColor", "d": "m13.72 8.37 3.5-3.5 1.06 1.06-3.5 3.5-1.06-1.06Z", "key": "335c5ed8a582b9d3040194e4db2d4f22ecd86a17" }]]);
const PhoneBlockB = createMeisterIcons("phone-block-b", [["path", { "fill": "currentColor", "d": "M7.65 4.3c.4 0 .9.1 1.3.2.1.1.3.2.5.3l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6v-.5c0-1.8 1.5-3.3 3.4-3.3Z", "key": "3f3dd26511301d153f6d80f06f52073a6774a2d5" }], ["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "fda2a4aa44520342b01724eb0ced2772232028ab" }], ["path", { "fill": "currentColor", "d": "M17.22 5.93c-.707-.707-1.733-.707-2.44 0-.707.707-.707 1.733 0 2.44.707.707 1.733.707 2.44 0 .707-.707.707-1.733 0-2.44Zm-3.5-1.06c1.293-1.293 3.267-1.293 4.56 0 1.293 1.293 1.293 3.267 0 4.56-1.293 1.293-3.267 1.293-4.56 0-1.293-1.293-1.293-3.267 0-4.56Z", "key": "a86dd624db0a5e0e394238af36f5c676ea8e3e22" }], ["path", { "fill": "currentColor", "d": "m13.72 8.37 3.5-3.5 1.06 1.06-3.5 3.5-1.06-1.06Z", "key": "06ab5f8cceef774df6d3254710690494646fb2fd" }]]);
const PhoneCheck = createMeisterIcons("phone-check", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "d01f257934f650cac8e2082969367556075dec26" }], ["path", { "fill": "currentColor", "d": "M18.688 6.778a.75.75 0 0 1-.016 1.06l-3.206 3.109a.833.833 0 0 1-.256.248.901.901 0 0 1-.473.13c-.229 0-.505-.083-.717-.295l-.038-.037L12.75 9.35a.75.75 0 1 1 1.2-.9l.816 1.087 2.862-2.775a.75.75 0 0 1 1.06.016Z", "key": "74886a4e867a4637489aac5114836cab6658dd6d" }]]);
const PhoneCheckB = createMeisterIcons("phone-check-b", [["path", { "fill": "currentColor", "d": "M4.2 7.65c0-1.9 1.6-3.4 3.5-3.4.4 0 .9.1 1.3.2.1.2.3.3.5.4l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6", "key": "7bed8cce819019a8a32fb5202d747231644fddf2" }], ["path", { "fill": "currentColor", "d": "M7.7 5C6.186 5 4.95 6.192 4.95 7.65h-1.5c0-2.342 1.964-4.15 4.25-4.15.497 0 1.071.12 1.482.222l.335.084.137.275a3.774 3.774 0 0 0 .181.098l.35.175.765 5.14v.056c0 .449-.147.958-.52 1.33l-.013.013c-.07.071-.239.24-.448.387.342.578.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162a3.97 3.97 0 0 1 .468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.183.193.325.252.504.38 1.02.38 1.635 0 2.3-1.823 4.25-4.25 4.25h-.012C9.293 20.394 3.663 14.355 3.45 7.65h1.5c.772 5.84 5.18 11.251 11.356 11.35a2.728 2.728 0 0 0 2.744-2.75c0-.384-.073-.67-.22-.965a1.336 1.336 0 0 0-.092-.152l-4.51-.751c-.228.229-.323.336-.357.403l-.055.11-.086.085a1.603 1.603 0 0 1-.664.4 1.225 1.225 0 0 1-.901-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.034-1.498-.69-.582-1.137-1.268-1.545-1.982l-.037-.064-.023-.07c-.174-.52-.07-1.286.576-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.637-4.272a1.634 1.634 0 0 1-.244-.204A4.39 4.39 0 0 0 7.7 5Z", "key": "c746f65a781d890e94640e2d3347f7bb4071314f" }], ["path", { "fill": "currentColor", "d": "M18.739 6.828a.75.75 0 0 1-.017 1.06l-3.206 3.109a.832.832 0 0 1-.256.248.902.902 0 0 1-.472.13c-.23 0-.506-.083-.718-.295l-.038-.037L12.8 9.4a.75.75 0 1 1 1.2-.9l.816 1.087 2.862-2.775a.75.75 0 0 1 1.06.016Z", "key": "bb10da130ea8c5472a33c15b223762c8d57d1d17" }]]);
const PhoneClassic = createMeisterIcons("phone-classic", [["path", { "fill": "currentColor", "d": "M7 1.75a.75.75 0 0 1 .75.75v3.136a5.59 5.59 0 0 1 3.05-.886h2.4c3.114 0 5.55 2.436 5.55 5.55v5.2c0 3.714-3.036 6.75-6.75 6.75s-6.75-3.036-6.75-6.75v-5.2a5.58 5.58 0 0 1 1-3.22V2.5A.75.75 0 0 1 7 1.75Zm3.8 4.5c-2.286 0-4.05 1.764-4.05 4.05v5.2c0 2.886 2.364 5.25 5.25 5.25s5.25-2.364 5.25-5.25v-5.2c0-2.286-1.764-4.05-4.05-4.05h-2.4ZM9.45 10.7c0-.786.664-1.45 1.45-1.45h2.2c.786 0 1.45.664 1.45 1.45v.6a1.47 1.47 0 0 1-1.45 1.45h-2.2a1.47 1.47 0 0 1-1.45-1.45v-.6Zm1.45-2.95a2.97 2.97 0 0 0-2.95 2.95v.6a2.97 2.97 0 0 0 2.95 2.95h2.2a2.97 2.97 0 0 0 2.95-2.95v-.6a2.97 2.97 0 0 0-2.95-2.95h-2.2Z", "key": "939c7620e419cb3e88e77da3b5059e454e764b4a" }]]);
const PhoneClassicB = createMeisterIcons("phone-classic-b", [["path", { "fill": "currentColor", "d": "M13.2 5.55h-2.5c-1.5 0-2.9.7-3.7 1.8-.6.8-1 1.8-1 2.9v5.2c0 3.3 2.7 6 6 6s6-2.7 6-6v-5.2c0-2.6-2.2-4.7-4.8-4.7Zm2.1 5.7c0 1.2-1 2.2-2.2 2.2h-2.3c-1.2 0-2.2-1-2.2-2.2v-.5c0-1.2 1-2.2 2.2-2.2H13c1.2 0 2.2 1 2.2 2.2v.5h.1Z", "key": "0a77a93bc2df09f66ffb955c804ae0bae614f278" }], ["path", { "fill": "currentColor", "d": "M6.397 6.904C7.348 5.6 8.979 4.8 10.7 4.8h2.5c2.994 0 5.55 2.415 5.55 5.45v5.2c0 3.714-3.036 6.75-6.75 6.75s-6.75-3.036-6.75-6.75v-5.2c0-1.284.466-2.437 1.147-3.346ZM10.7 6.3c-1.277 0-2.444.599-3.093 1.491L7.6 7.8c-.518.69-.85 1.536-.85 2.45v5.2c0 2.886 2.364 5.25 5.25 5.25s5.25-2.364 5.25-5.25v-5.2c0-2.166-1.844-3.95-4.05-3.95h-2.5Zm.1 3a1.47 1.47 0 0 0-1.45 1.45v.5c0 .786.664 1.45 1.45 1.45h2.3c.604 0 1.136-.392 1.35-.93v-1.02A1.47 1.47 0 0 0 13 9.3h-2.2Zm5.14 1.2C15.81 9 14.53 7.8 13 7.8h-2.2a2.97 2.97 0 0 0-2.95 2.95v.5a2.97 2.97 0 0 0 2.95 2.95h2.3a2.97 2.97 0 0 0 2.95-2.95v-.75h-.11Z", "key": "8fc8177eed391d00d0c405e238c1bcd3a8f39f08" }], ["path", { "fill": "currentColor", "d": "M7 1.8a.75.75 0 0 1 .75.75v4.8a.75.75 0 0 1-1.5 0v-4.8A.75.75 0 0 1 7 1.8Z", "key": "3b7554da32edbb1df1185abf84fa883184186dc8" }], ["path", { "fill": "#fff", "d": "M10.8 9.3a1.47 1.47 0 0 0-1.45 1.45v.6c0 .786.664 1.45 1.45 1.45h2.3a1.47 1.47 0 0 0 1.45-1.45v-.6c0-.842-.62-1.45-1.55-1.45h-2.2Zm-2.95 1.45A2.97 2.97 0 0 1 10.8 7.8H13c1.67 0 3.05 1.192 3.05 2.95v.6a2.97 2.97 0 0 1-2.95 2.95h-2.3a2.97 2.97 0 0 1-2.95-2.95v-.6Z", "key": "d9201382d3a3ed59221abb4bdc9cb30ff3bf49dd" }]]);
const PhoneClassicVarB = createMeisterIcons("phone-classic-var-b", [["path", { "fill": "currentColor", "d": "M6.397 6.904C7.348 5.6 8.979 4.8 10.7 4.8h2.5c2.994 0 5.55 2.415 5.55 5.45v5.2c0 3.714-3.036 6.75-6.75 6.75s-6.75-3.036-6.75-6.75v-5.2c0-1.284.466-2.437 1.147-3.346ZM10.7 6.3c-1.277 0-2.444.599-3.093 1.491L7.6 7.8c-.518.69-.85 1.536-.85 2.45v5.2c0 2.886 2.364 5.25 5.25 5.25s5.25-2.364 5.25-5.25v-5.2c0-2.166-1.844-3.95-4.05-3.95h-2.5Zm.1 3a1.47 1.47 0 0 0-1.45 1.45v.5c0 .786.664 1.45 1.45 1.45h2.3c.604 0 1.136-.392 1.35-.93v-1.02A1.47 1.47 0 0 0 13 9.3h-2.2Zm5.14 1.2C15.81 9 14.53 7.8 13 7.8h-2.2a2.97 2.97 0 0 0-2.95 2.95v.5a2.97 2.97 0 0 0 2.95 2.95h2.3a2.97 2.97 0 0 0 2.95-2.95v-.75h-.11Z", "key": "da319484b273344c53dae6712e10f0b0372389b7" }], ["path", { "fill": "currentColor", "d": "M7 1.8a.75.75 0 0 1 .75.75v4.8a.75.75 0 0 1-1.5 0v-4.8A.75.75 0 0 1 7 1.8Zm8.3 8.95v.6c0 1.2-1 2.2-2.2 2.2h-2.3c-1.2 0-2.2-1-2.2-2.2v-.6c0-1.2 1-2.2 2.2-2.2H13c1.3 0 2.3.9 2.3 2.2Z", "key": "4bb5eff110c2d5acb2b38c314036c91771b6264d" }], ["path", { "fill": "currentColor", "d": "M10.8 9.3a1.47 1.47 0 0 0-1.45 1.45v.6c0 .786.664 1.45 1.45 1.45h2.3a1.47 1.47 0 0 0 1.45-1.45v-.6c0-.842-.62-1.45-1.55-1.45h-2.2Zm-2.95 1.45A2.97 2.97 0 0 1 10.8 7.8H13c1.67 0 3.05 1.192 3.05 2.95v.6a2.97 2.97 0 0 1-2.95 2.95h-2.3a2.97 2.97 0 0 1-2.95-2.95v-.6Z", "key": "aada8d8a8a8aa2cfb857786ef88b4ddca290efaa" }]]);
const PhoneCross = createMeisterIcons("phone-cross", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "5e7466899d96bc728b1bbe4dc45ac5c3224780c6" }], ["path", { "fill": "currentColor", "d": "M17.78 5.67a.75.75 0 0 1 0 1.06l-3.4 3.4a.75.75 0 0 1-1.06-1.06l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "1f221d4fdb307b523a62379d74a1186531010d12" }], ["path", { "fill": "currentColor", "d": "M13.32 5.67a.75.75 0 0 1 1.06 0l3.4 3.4a.75.75 0 1 1-1.06 1.06l-3.4-3.4a.75.75 0 0 1 0-1.06Z", "key": "0314d744422855f6c868d863e5ea4e9494381be4" }]]);
const PhoneCrossB = createMeisterIcons("phone-cross-b", [["path", { "fill": "currentColor", "d": "M7.65 4.3c.4 0 .9.1 1.3.2.1.1.3.2.5.3l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6v-.5c0-1.8 1.5-3.3 3.4-3.3Z", "key": "b958a11161ec5d351fc20100036d246db57f3f73" }], ["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "98f88618d2f9f71e817fa28ad8c72d03f16c1c56" }], ["path", { "fill": "currentColor", "d": "M17.78 5.67a.75.75 0 0 1 0 1.06l-3.4 3.4a.75.75 0 0 1-1.06-1.06l3.4-3.4a.75.75 0 0 1 1.06 0Z", "key": "44dac2a6bb0d1c3e9455d175cbe8efba25538729" }], ["path", { "fill": "currentColor", "d": "M13.32 5.67a.75.75 0 0 1 1.06 0l3.4 3.4a.75.75 0 1 1-1.06 1.06l-3.4-3.4a.75.75 0 0 1 0-1.06Z", "key": "411e108c38c1cd865ff0387b0d23903570ef1350" }]]);
const PhoneHeart = createMeisterIcons("phone-heart", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "04ac26f422c13cfcf73c28fa1d1fe438aac3b041" }], ["path", { "fill": "currentColor", "d": "M14.75 6.15a.907.907 0 0 0-.67.28l-.02.02-.022.02c-.187.16-.256.346-.25.52.005.177.091.414.356.646l.019.016.217.218 1.72 1.72 1.72-1.72.16-.16c.244-.335.32-.56.32-.71 0-.284-.07-.46-.18-.57-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.708 0-1.287.285-1.71.7a2.145 2.145 0 0 0-.752 1.685c.02.64.325 1.246.848 1.712l.184.183 1.758 1.759c.242.314.601.486.985.486.395 0 .753-.18 1.017-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.516-.13-1.14-.62-1.63-.796-.797-2.135-.883-3.05-.258ZM16 9.687v-.001Z", "key": "5f3d32b1f55c6428e8611e2618990dab62ac10f6" }]]);
const PhoneHeartB = createMeisterIcons("phone-heart-b", [["path", { "fill": "currentColor", "d": "M7.65 4.3c.4 0 .9.1 1.3.2.1.1.3.2.5.3l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6v-.5c0-1.8 1.5-3.3 3.4-3.3Z", "key": "fd75a07ef8630356da03b5aad35c4fc83ab00d13" }], ["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "7de893a22af78e58aad6cf2d87d2123e3619cde5" }], ["path", { "fill": "currentColor", "d": "M14.75 6.15a.907.907 0 0 0-.67.28l-.02.02-.022.02c-.187.16-.256.346-.25.52.005.177.091.414.356.646l.019.016.217.218 1.72 1.72 1.72-1.72.16-.16c.244-.335.32-.56.32-.71 0-.284-.07-.46-.18-.57-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.708 0-1.287.285-1.71.7a2.145 2.145 0 0 0-.752 1.685c.02.64.325 1.246.848 1.712l.184.183 1.758 1.759c.242.314.601.486.985.486.395 0 .753-.18 1.017-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.516-.13-1.14-.62-1.63-.796-.797-2.135-.883-3.05-.258ZM16 9.687v-.001Z", "key": "85f75ad787a02ad6f01e2bf0587da0a4f786a84a" }]]);
const PhoneIncoming = createMeisterIcons("phone-incoming", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "b2140a5f8af85eaf801506ff969eb243834e1465" }], ["path", { "fill": "currentColor", "d": "M17.78 5.97a.75.75 0 0 1 0 1.06l-2.9 2.9a.75.75 0 1 1-1.06-1.06l2.9-2.9a.75.75 0 0 1 1.06 0Z", "key": "53b06f8055d87fc708a7eace8ce8586bd77dc9aa" }], ["path", { "fill": "currentColor", "d": "M14.05 6.35a.75.75 0 0 1 .75.75v1.95h1.95a.75.75 0 0 1 0 1.5h-2.4c-.379 0-.654-.198-.81-.394a1.075 1.075 0 0 1-.24-.656V7.1a.75.75 0 0 1 .75-.75Z", "key": "bb065e16bff43b215de2b6d51ac22c51f21d3320" }]]);
const PhoneIncomingB = createMeisterIcons("phone-incoming-b", [["path", { "fill": "currentColor", "d": "M7.65 4.3c.4 0 .9.1 1.3.2.1.1.3.2.5.3l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6v-.5c0-1.8 1.5-3.3 3.4-3.3Z", "key": "bdbc00f61620cf963de4cada83b8ff80dff3c402" }], ["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "520048071633293d013040c82a07d7f62f0939f9" }], ["path", { "fill": "currentColor", "d": "M17.78 5.97a.75.75 0 0 1 0 1.06l-2.9 2.9a.75.75 0 1 1-1.06-1.06l2.9-2.9a.75.75 0 0 1 1.06 0Z", "key": "e48bcc708b342347d8a0b77fb3f2d71c254cbb1e" }], ["path", { "fill": "currentColor", "d": "M14.05 6.35a.75.75 0 0 1 .75.75v1.95h1.95a.75.75 0 1 1 0 1.5h-2.4c-.379 0-.653-.198-.81-.394a1.075 1.075 0 0 1-.24-.656V7.1a.75.75 0 0 1 .75-.75Z", "key": "b9823188f096255669d19a842f7c8e5c21124ef6" }]]);
const PhoneMissed = createMeisterIcons("phone-missed", [["path", { "fill": "currentColor", "d": "M4.184 15.159c-1.034 1.123-1.004 2.855-.01 3.849.198.198.481.348.905.56l.047.023 3.568-2.653c0-.157-.001-.272-.01-.37a.522.522 0 0 0-.016-.103c-.313-.641.046-1.407.738-1.638l.016-.005.016-.005a9.272 9.272 0 0 1 2.506-.329 9.24 9.24 0 0 1 2.506.33l.067.018.062.031c.177.089.404.244.563.499.157.25.22.559.149.881-.01.185-.042.337-.065.442-.03.134-.032.15-.032.15v.078a.873.873 0 0 0 .044.053l3.535 2.538c.1-.025.12-.033.135-.04l.074-.037.08-.02c.204-.051.487-.239.751-.503.959-.958 1.024-2.61.176-3.738a1.173 1.173 0 0 1-.145-.094 1.895 1.895 0 0 1-.222-.199l-.003-.003c-4.297-4.103-11.119-4.02-15.435.284Zm10.966 1.69v.002-.002Zm5.504-3.06c-4.901-4.68-12.66-4.56-17.54.319l-.01.01-.01.01c-1.557 1.677-1.584 4.337.02 5.94.372.374.845.616 1.212.8.233.183.567.32.918.32h.248l4.057-3.016c.487-.28.645-.784.645-1.234v-.014c0-.14 0-.32-.016-.491a2.257 2.257 0 0 0-.036-.25 8.064 8.064 0 0 1 1.802-.195c.645 0 1.282.071 1.847.207a1.34 1.34 0 0 1-.03.168l-.006.028c-.015.064-.04.172-.053.296-.098.355.028.676.108.837.11.22.268.409.403.545l.044.043 4.317 3.1.405-.203a.784.784 0 0 1 .16-.047c.081-.02.216-.053.362-.116.563-.164 1.051-.556 1.373-.877 1.6-1.6 1.572-4.247.139-5.919l-.225-.262h-.134ZM15.481 3.615a.75.75 0 0 1-.014 1.06l-3.7 3.6a.75.75 0 1 1-1.046-1.074l3.7-3.6a.75.75 0 0 1 1.06.014Z", "key": "447124bae0cc226c96c3cc8ba830d1e34b0f9c2e" }], ["path", { "fill": "currentColor", "d": "M10.594 3.538a.75.75 0 0 1 .75-.75h3.6c.32 0 .645.11.892.358.247.247.357.572.357.892v3.6a.75.75 0 0 1-1.5 0v-3.35h-3.35a.75.75 0 0 1-.75-.75Zm-2.781.77a.75.75 0 0 1 1.061 0l2.9 2.9a.75.75 0 1 1-1.06 1.06l-2.9-2.9a.75.75 0 0 1 0-1.06Z", "key": "623d48139f4373c6ca5dae9380a99f3705003019" }]]);
const PhoneMissedB = createMeisterIcons("phone-missed-b", [["path", { "fill": "currentColor", "d": "M20.344 19.438c-.3.3-.7.6-1.1.7-.2.1-.4.1-.6.2l-3.9-2.8c-.2-.2-.4-.5-.3-.7 0-.2.1-.4.1-.7.1-.3-.1-.5-.3-.6-.7-.2-1.5-.3-2.3-.3-.8 0-1.6.1-2.3.3-.3.1-.4.4-.3.6.1.2.1.5.1.8 0 .3-.1.5-.3.6l-3.9 2.9c-.2 0-.4-.1-.5-.2-.4-.2-.8-.4-1.1-.7-1.3-1.3-1.3-3.5 0-4.9 4.6-4.6 11.9-4.7 16.5-.3.1.1.2.2.3.2 1.2 1.4 1.2 3.6-.1 4.9Z", "key": "5c2c10d5e091956a5010d689f497b7bec71d5c2a" }], ["path", { "fill": "currentColor", "d": "M4.184 15.159c-1.034 1.123-1.004 2.855-.01 3.849.198.198.481.348.905.56l.047.023 3.568-2.653c0-.157 0-.272-.01-.37a.522.522 0 0 0-.016-.103c-.313-.641.046-1.407.738-1.638l.016-.005.016-.005a9.272 9.272 0 0 1 2.506-.329c.858 0 1.729.107 2.506.33l.067.018.062.031c.177.089.404.244.563.499.157.25.22.559.149.881-.01.185-.042.337-.065.442-.03.134-.032.15-.032.15v.078a.875.875 0 0 0 .044.053l3.535 2.538c.1-.025.12-.033.135-.04l.074-.037.08-.02c.204-.051.487-.239.751-.503.959-.958 1.024-2.61.176-3.738a1.176 1.176 0 0 1-.145-.094 1.895 1.895 0 0 1-.222-.199.075.075 0 0 1-.003-.003c-4.296-4.103-11.119-4.02-15.435.284Zm10.966 1.69v.002-.002Zm5.504-3.06c-4.901-4.68-12.66-4.56-17.54.319l-.01.01-.01.01c-1.557 1.677-1.584 4.337.02 5.94.372.374.845.616 1.212.8.233.183.567.32.918.32h.248l4.057-3.016c.487-.28.645-.784.645-1.234v-.014c0-.14 0-.32-.016-.491a2.28 2.28 0 0 0-.036-.25 8.063 8.063 0 0 1 1.802-.195c.645 0 1.282.071 1.847.207a1.34 1.34 0 0 1-.03.168l-.006.028c-.014.064-.04.172-.053.296-.098.355.028.676.108.837.11.22.268.409.403.545l.044.043 4.317 3.1.405-.203a.785.785 0 0 1 .16-.047c.081-.02.216-.053.362-.116.563-.164 1.051-.556 1.373-.877 1.6-1.6 1.572-4.247.14-5.919l-.225-.262h-.135ZM15.481 3.615a.75.75 0 0 1-.014 1.06l-3.7 3.6a.75.75 0 0 1-1.046-1.074l3.7-3.6a.75.75 0 0 1 1.06.014Z", "key": "ddb03ae6031e827f7a76a5328d9ff4baa6d00f6f" }], ["path", { "fill": "currentColor", "d": "M10.594 3.538a.75.75 0 0 1 .75-.75h3.6c.32 0 .645.11.892.358.248.247.358.572.358.892v3.6a.75.75 0 0 1-1.5 0v-3.35h-3.35a.75.75 0 0 1-.75-.75Zm-2.781.77a.75.75 0 0 1 1.061 0l2.9 2.9a.75.75 0 1 1-1.06 1.06l-2.9-2.9a.75.75 0 0 1 0-1.06Z", "key": "8506f1aa84f9d748fca76458089f764ae4df5d8d" }]]);
const PhoneOutgoing = createMeisterIcons("phone-outgoing", [["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "b5e626ec96dd3ce9b5ce0b001927b69a04ece65b" }], ["path", { "fill": "currentColor", "d": "M17.38 6.37a.75.75 0 0 1 0 1.06l-2.9 2.9a.75.75 0 0 1-1.06-1.06l2.9-2.9a.75.75 0 0 1 1.06 0Z", "key": "cb46d1721e1d4abbbb4821524689e195d33f94f0" }], ["path", { "fill": "currentColor", "d": "M13.8 6.5a.75.75 0 0 1 .75-.75h2.4c.379 0 .654.198.81.394.139.173.24.409.24.656v2.4a.75.75 0 0 1-1.5 0V7.25h-1.95a.75.75 0 0 1-.75-.75Z", "key": "b96cd3f21cbe5d5786699e4d1f73e7dee0893387" }]]);
const PhoneOutgoingB = createMeisterIcons("phone-outgoing-b", [["path", { "fill": "currentColor", "d": "M7.65 4.3c.4 0 .9.1 1.3.2.1.1.3.2.5.3l.7 4.7c0 .3-.1.6-.3.8-.1.1-.3.3-.5.4-.2.1-.3.4-.2.7.4.7.8 1.3 1.4 1.8.6.6 1.2 1 1.9 1.4.2.1.5 0 .7-.2.1-.2.3-.4.5-.6.2-.2.4-.3.7-.2l4.8.8c.1.2.2.3.3.5.2.4.3.8.3 1.3 0 1.9-1.5 3.5-3.5 3.5-6.6-.1-11.8-5.3-12-11.6v-.5c0-1.8 1.5-3.3 3.4-3.3Z", "key": "82d6b63dd81185788588a8cf7c56f61e2f0e7e9d" }], ["path", { "fill": "currentColor", "d": "M7.65 5.05C6.15 5.05 5 6.229 5 7.6v.487c.193 5.888 5.058 10.766 11.256 10.863A2.728 2.728 0 0 0 19 16.2c0-.384-.073-.67-.22-.965a1.354 1.354 0 0 0-.093-.152l-4.508-.751c-.23.229-.325.336-.358.403l-.055.11-.086.085a1.603 1.603 0 0 1-.665.4 1.224 1.224 0 0 1-.9-.06l-.019-.008-.018-.01c-.722-.413-1.377-.846-2.035-1.498-.69-.582-1.136-1.268-1.544-1.982l-.037-.064-.024-.07c-.173-.52-.07-1.286.577-1.609.02-.01.067-.04.134-.098.064-.055.12-.111.17-.161.025-.025.07-.1.08-.225l-.635-4.259a2.211 2.211 0 0 1-.15-.096c-.345-.08-.7-.14-.964-.14ZM3.5 7.6c0-2.229 1.85-4.05 4.15-4.05.497 0 1.071.12 1.482.222l.201.05.136.136.001.001a.891.891 0 0 0 .065.04c.066.038.146.078.25.13l.35.175.765 5.14V9.5c0 .449-.147.958-.52 1.33l-.013.013c-.07.072-.239.24-.448.387.341.577.666 1.023 1.111 1.394l.026.022.024.024c.48.48.962.82 1.54 1.162.152-.216.339-.402.468-.53l.032-.032a1.56 1.56 0 0 1 .605-.394c.268-.09.538-.082.798-.008l5.127.855.17.342c.028.053.054.094.104.169l.004.006c.05.075.122.182.193.325A3.52 3.52 0 0 1 20.5 16.2c0 2.3-1.822 4.25-4.25 4.25h-.011C9.243 20.344 3.713 14.829 3.5 8.124V7.6Z", "key": "ddc8c2df7a19dd63fac0059bdb46b3b4e194f63c" }], ["path", { "fill": "currentColor", "d": "M17.38 6.37a.75.75 0 0 1 0 1.06l-2.9 2.9a.75.75 0 0 1-1.06-1.06l2.9-2.9a.75.75 0 0 1 1.06 0Z", "key": "a140a90c6f74a2460663e4938318c718ddb3863c" }], ["path", { "fill": "currentColor", "d": "M13.8 6.5a.75.75 0 0 1 .75-.75h2.4c.379 0 .654.198.81.394.139.173.24.409.24.656v2.4a.75.75 0 0 1-1.5 0V7.25h-1.95a.75.75 0 0 1-.75-.75Z", "key": "46fc72a53765a9e069358d938d75800bee086b19" }]]);
const PhonePlay = createMeisterIcons("phone-play", [["path", { "fill": "currentColor", "d": "M6.7 3.75A3.262 3.262 0 0 0 3.45 7v10a3.262 3.262 0 0 0 3.25 3.25h6a3.262 3.262 0 0 0 3.25-3.21c-3.047-.177-5.4-2.643-5.4-5.74 0-1.551.55-3.08 1.749-4.06.868-.857 1.998-1.484 3.315-1.648-.497-1.099-1.592-1.842-2.914-1.842h-6ZM1.95 7A4.762 4.762 0 0 1 6.7 2.25h6c2.369 0 4.283 1.669 4.64 3.933l.138.867H16.3c-1.172 0-2.189.5-2.97 1.28l-.03.03-.032.026c-.778.622-1.218 1.68-1.218 2.914 0 2.386 1.864 4.25 4.25 4.25h1.15V17a4.762 4.762 0 0 1-4.75 4.75h-6A4.762 4.762 0 0 1 1.95 17V7Z", "key": "cc714032ac994363d1bc4eb8799c64655c9e04e9" }], ["path", { "fill": "currentColor", "d": "M8.45 17.9a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Zm3.849-10.66c1.016-1.002 2.389-1.69 4-1.69h.3c1.435 0 2.818.706 3.731 1.62 1.048 1.047 1.72 2.74 1.72 4.23 0 1.52-.695 3.005-1.72 4.03-.932.933-2.201 1.504-3.568 1.617l-.03.003H16.3c-3.214 0-5.75-2.536-5.75-5.75 0-1.551.55-3.08 1.749-4.06Zm4-.19c-1.171 0-2.188.5-2.969 1.28l-.03.03-.032.026c-.778.623-1.218 1.68-1.218 2.914 0 2.386 1.864 4.25 4.25 4.25h.367c1.021-.092 1.941-.52 2.603-1.18.774-.775 1.28-1.89 1.28-2.97 0-1.11-.528-2.417-1.28-3.17-.687-.686-1.704-1.18-2.67-1.18h-.3Zm1.268 4.29-1.347-.793.76-1.293 1.718 1.01.018.012c.398.266.559.7.559 1.074 0 .374-.16.809-.559 1.074l-.032.021-1.733.918-.702-1.326 1.318-.698Z", "key": "0304f622365ff02474b5a16b431d40e3b8d92852" }], ["path", { "fill": "currentColor", "d": "M15.95 10.416v1.792l.278-.16a.75.75 0 0 1 .744 1.303l-.682.39c-.809.512-1.84-.07-1.84-1.04V9.9c0-.979 1.044-1.561 1.855-1.032l.793.495a.75.75 0 0 1-.796 1.272l-.352-.22Z", "key": "78d32555ce7760650843520937bc50df54c922d4" }]]);
const PhonePlayB = createMeisterIcons("phone-play-b", [["path", { "fill": "currentColor", "d": "M16.7 16.3v.7c0 2.2-1.8 4-4 4h-6c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h6c2 0 3.6 1.4 3.9 3.3h-.3c-1.4 0-2.6.6-3.5 1.5-1 .8-1.5 2.1-1.5 3.5 0 2.8 2.2 5 5 5h.4Z", "key": "e348c9a7181dd54c5cc4e3d7cc4f15280a77f821" }], ["path", { "fill": "currentColor", "d": "M6.7 3.75A3.262 3.262 0 0 0 3.45 7v10a3.262 3.262 0 0 0 3.25 3.25h6a3.262 3.262 0 0 0 3.25-3.21c-3.047-.177-5.4-2.643-5.4-5.74 0-1.551.55-3.08 1.749-4.06.868-.857 1.998-1.484 3.315-1.648-.497-1.099-1.592-1.842-2.914-1.842h-6ZM1.95 7A4.762 4.762 0 0 1 6.7 2.25h6c2.369 0 4.283 1.669 4.64 3.933l.138.867H16.3c-1.172 0-2.189.5-2.97 1.28l-.03.03-.032.026c-.778.622-1.218 1.68-1.218 2.914 0 2.386 1.864 4.25 4.25 4.25h1.15V17a4.762 4.762 0 0 1-4.75 4.75h-6A4.762 4.762 0 0 1 1.95 17V7Z", "key": "9faf5c314cf96c2c47558a76ffabafd122da3ca1" }], ["path", { "fill": "#fff", "d": "M8.45 17.9a.75.75 0 0 1 .75-.75h1a.75.75 0 0 1 0 1.5h-1a.75.75 0 0 1-.75-.75Z", "key": "95e2ecc629da0f56b8d1515efe221e8444ee63a1" }], ["path", { "fill": "currentColor", "d": "M12.299 7.24c1.016-1.002 2.389-1.69 4.001-1.69h.3c1.434 0 2.817.706 3.73 1.62 1.048 1.047 1.72 2.74 1.72 4.23 0 1.52-.694 3.005-1.72 4.03-.932.933-2.201 1.504-3.568 1.617l-.03.003H16.3c-3.214 0-5.75-2.536-5.75-5.75 0-1.551.55-3.08 1.749-4.06Zm4.001-.19c-1.172 0-2.189.5-2.97 1.28l-.029.03-.032.026c-.779.623-1.219 1.68-1.219 2.914 0 2.386 1.864 4.25 4.25 4.25h.367c1.021-.092 1.942-.52 2.603-1.18.774-.775 1.28-1.89 1.28-2.97 0-1.11-.528-2.417-1.28-3.17-.687-.686-1.704-1.18-2.67-1.18h-.3Zm1.267 4.29-1.347-.793.76-1.293 1.718 1.01.018.012c.398.266.559.7.559 1.074 0 .374-.16.809-.559 1.074l-.032.021-1.733.918-.702-1.326 1.319-.698Z", "key": "99e0393f4453da25b2692018a7df9af966ade35f" }], ["path", { "fill": "currentColor", "d": "M15.95 10.416v1.792l.278-.16a.75.75 0 0 1 .744 1.303l-.682.39c-.809.512-1.84-.07-1.84-1.04V9.9c0-.979 1.044-1.561 1.855-1.032l.793.495a.75.75 0 0 1-.796 1.272l-.352-.22Z", "key": "63ef83c4a5b7dbd21087f46ad9997c5e509ff451" }]]);
const Piano = createMeisterIcons("piano", [["path", { "fill": "currentColor", "d": "M5.1 7.4c-.586 0-1.05.464-1.05 1.05v9.5c0 .586.464 1.05 1.05 1.05h13.8c.586 0 1.05-.464 1.05-1.05v-9.5c0-.586-.464-1.05-1.05-1.05h-1.6a.75.75 0 0 1 0-1.5h1.6a2.543 2.543 0 0 1 2.55 2.55v9.5a2.543 2.543 0 0 1-2.55 2.55H5.1a2.543 2.543 0 0 1-2.55-2.55v-9.5A2.542 2.542 0 0 1 5.1 5.9h1.6a.75.75 0 0 1 0 1.5H5.1Z", "key": "8781b39ceca89f7682d909bcafba6559d7d1eb01" }], ["path", { "fill": "currentColor", "d": "M9.85 6.65a.75.75 0 0 1 .75-.75h2.8a.75.75 0 0 1 0 1.5h-2.8a.75.75 0 0 1-.75-.75Z", "key": "cf8c6089538facf035bc4e32a5a3fe9dd9c5ea1f" }], ["path", { "fill": "currentColor", "d": "M8.1 4.9c-.386 0-.65.264-.65.65v4.8c0 .386.264.65.65.65h1.1c.362 0 .678-.252.75-.703V5.55c0-.386-.264-.65-.65-.65H8.1Zm-2.15.65c0-1.214.936-2.15 2.15-2.15h1.2c1.214 0 2.15.936 2.15 2.15v4.847l-.006.046c-.14 1.124-1.016 2.057-2.244 2.057H8.1a2.117 2.117 0 0 1-2.15-2.15v-4.8Zm8.85-.65c-.386 0-.65.264-.65.65v4.8c0 .386.264.65.65.65H16c.235 0 .573-.22.65-.702V5.55c0-.386-.264-.65-.65-.65h-1.2Zm-2.15.65c0-1.214.936-2.15 2.15-2.15H16c1.214 0 2.15.936 2.15 2.15v4.847l-.006.046c-.136 1.09-.986 2.057-2.144 2.057h-1.2a2.117 2.117 0 0 1-2.15-2.15v-4.8Z", "key": "4ec87258180608720210173fd4e9fa1d7c5b02b9" }], ["path", { "fill": "currentColor", "d": "M8.7 11a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8A.75.75 0 0 1 8.7 11Zm6.7 0a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8a.75.75 0 0 1 .75-.75Z", "key": "f219a7b9fe1e22a2750023f02146043c2667e4d2" }]]);
const PianoB = createMeisterIcons("piano-b", [["path", { "fill": "currentColor", "d": "M5.1 7.4c-.586 0-1.05.464-1.05 1.05v9.5c0 .586.464 1.05 1.05 1.05h13.8c.586 0 1.05-.464 1.05-1.05v-9.5c0-.586-.464-1.05-1.05-1.05h-1.6a.75.75 0 0 1 0-1.5h1.6a2.543 2.543 0 0 1 2.55 2.55v9.5a2.543 2.543 0 0 1-2.55 2.55H5.1a2.543 2.543 0 0 1-2.55-2.55v-9.5A2.542 2.542 0 0 1 5.1 5.9h1.6a.75.75 0 0 1 0 1.5H5.1Z", "key": "6b62ac6a9f610574cdca538b72986dacca2f158b" }], ["path", { "fill": "currentColor", "d": "M9.85 6.65a.75.75 0 0 1 .75-.75h2.8a.75.75 0 0 1 0 1.5h-2.8a.75.75 0 0 1-.75-.75Z", "key": "6df806cfb3ba4184bb4c337bc45edba42262f5cf" }], ["path", { "fill": "currentColor", "d": "M10.6 5.55v4.9c0 .8-.6 1.4-1.4 1.4H8.1c-.8-.1-1.4-.7-1.4-1.4v-4.9c0-.8.6-1.4 1.4-1.4h1.2c.7.1 1.3.7 1.3 1.4Z", "key": "d1763b6d80a1c0c7688db7eb5e4be4036a5bdad2" }], ["path", { "fill": "currentColor", "d": "M8.1 4.9c-.386 0-.65.264-.65.65v4.9c0 .235.22.573.702.65H9.2c.386 0 .65-.264.65-.65v-4.9c0-.258-.245-.577-.612-.65H8.1Zm-2.15.65c0-1.214.936-2.15 2.15-2.15h1.253l.053.007c1.009.145 1.944 1.011 1.944 2.143v4.9c0 1.214-.936 2.15-2.15 2.15H8.053l-.046-.006c-1.09-.136-2.057-.986-2.057-2.144v-4.9Zm11.35 0v4.9c0 .8-.6 1.4-1.4 1.4h-1.2c-.8 0-1.4-.6-1.4-1.4v-4.9c0-.8.6-1.4 1.4-1.4h1.2c.8.1 1.4.7 1.4 1.4Z", "key": "9ba6393c4181921ee9fa1444118db5d700908f0d" }], ["path", { "fill": "currentColor", "d": "M14.7 4.9c-.386 0-.65.264-.65.65v4.9c0 .386.264.65.65.65h1.2c.386 0 .65-.264.65-.65v-4.9c0-.235-.22-.573-.702-.65H14.7Zm-2.15.65c0-1.214.936-2.15 2.15-2.15h1.247l.046.006c1.09.136 2.057.986 2.057 2.144v4.9c0 1.214-.936 2.15-2.15 2.15h-1.2a2.117 2.117 0 0 1-2.15-2.15v-4.9ZM8.7 11a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8A.75.75 0 0 1 8.7 11Z", "key": "50430a5cffe11baa9877d45a3c34d655620d4b33" }], ["path", { "fill": "currentColor", "d": "M15.4 11a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8a.75.75 0 0 1 .75-.75Z", "key": "599623d0aca8e053d776e91698789ac1e958fe56" }]]);
const Pie = createMeisterIcons("pie", [["path", { "fill": "currentColor", "d": "M3.75 12a8.25 8.25 0 0 1 16.466-.75H14A2.756 2.756 0 0 0 11.25 14v6.216A8.251 8.251 0 0 1 3.75 12Zm9 8.216a8.252 8.252 0 0 0 7.466-7.466H14c-.686 0-1.25.564-1.25 1.25v6.216ZM12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25Z", "key": "9c87ab0a6a4634b8099248e509c24bdf4d7a21fe" }]]);
const PieAlt = createMeisterIcons("pie-alt", [["path", { "fill": "currentColor", "d": "M5.66 6.72a8.251 8.251 0 0 0 5.59 13.496V14c0-.486.127-.943.35-1.34L5.66 6.72Zm1.06-1.06 5.94 5.94a2.73 2.73 0 0 1 1.34-.35h6.216A8.251 8.251 0 0 0 6.721 5.66Zm6.043 8.163a1.239 1.239 0 0 0-.013.177v6.216a8.213 8.213 0 0 0 4.53-1.876l-4.517-4.517Zm5.577 3.456-4.517-4.516A1.23 1.23 0 0 1 14 12.75h6.216a8.213 8.213 0 0 1-1.876 4.53ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "c9d8580da1c175d73494a33caede076025c95412" }]]);
const PieB = createMeisterIcons("pie-b", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12a8.209 8.209 0 0 0 7.5 8.217V14A2.756 2.756 0 0 1 14 11.25h6.217A8.209 8.209 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12v.75H14c-.686 0-1.25.564-1.25 1.25v7.75H12A9.713 9.713 0 0 1 2.25 12Z", "key": "371cbc237b9d760055cda60150568133b51e92d3" }], ["path", { "fill": "currentColor", "d": "M21 12c0 5-4 9-9 9v-7c0-1.1.9-2 2-2h7Z", "key": "f9d98d9b4f75e1f60a47ddf5147b318b9f001803" }], ["path", { "fill": "currentColor", "d": "M14 12.75c-.686 0-1.25.564-1.25 1.25v6.217a8.204 8.204 0 0 0 7.467-7.467H14ZM11.25 14A2.756 2.756 0 0 1 14 11.25h7.75V12A9.713 9.713 0 0 1 12 21.75h-.75V14Z", "key": "915cc1ec3be6ed2315de081338317e953c9822d3" }]]);
const PieDivided = createMeisterIcons("pie-divided", [["path", { "fill": "currentColor", "d": "M9.99 4.624h.035c.814 0 1.45.636 1.45 1.45v5.5c0 .586.464 1.05 1.05 1.05h5.327c.466-.075.883.122 1.141.438.254.31.358.73.272 1.14-.566 4.576-4.714 8.064-9.524 7.517-3.948-.439-7.123-3.614-7.561-7.562-.548-4.931 3.073-9.092 7.776-9.53l.034-.003Zm-.015 1.509v5.441a2.542 2.542 0 0 0 2.55 2.55h5.238c-.52 3.736-3.926 6.551-7.853 6.105h-.002c-3.251-.361-5.876-2.986-6.237-6.238-.448-4.027 2.466-7.437 6.304-7.858Z", "key": "da374a2eb54634a747e30c247761ec61507d6bb7" }], ["path", { "fill": "currentColor", "d": "M12.475 2.224h.75c4.808 0 8.65 3.83 8.65 8.55v.85h-6.85a2.543 2.543 0 0 1-2.55-2.55v-6.85Zm1.5 1.538v5.312c0 .586.464 1.05 1.05 1.05h5.32c-.307-3.337-2.958-6.016-6.37-6.362Z", "key": "7e4b4b6b3ab72bf37e5b135bcb79c9a10312814c" }]]);
const PieDividedB = createMeisterIcons("pie-divided-b", [["path", { "fill": "currentColor", "d": "M18.525 14.074c-.5 4.2-4.3 7.4-8.7 6.9-3.6-.4-6.5-3.3-6.9-6.9-.5-4.5 2.8-8.3 7.1-8.7.4 0 .7.3.7.7v5.5c0 1 .8 1.8 1.8 1.8h5.4c.4-.1.7.3.6.7Z", "key": "a5d5a1f5cc9f7686ee76835a49462c7148ecd7bc" }], ["path", { "fill": "currentColor", "d": "M9.99 4.624h.035c.814 0 1.45.636 1.45 1.45v5.5c0 .586.464 1.05 1.05 1.05h5.327c.466-.075.883.122 1.141.438.254.31.358.73.272 1.14-.566 4.576-4.714 8.064-9.524 7.517-3.948-.439-7.123-3.614-7.561-7.562-.548-4.931 3.073-9.092 7.776-9.53l.034-.003Zm-.015 1.509v5.441a2.542 2.542 0 0 0 2.55 2.55h5.238c-.52 3.736-3.926 6.551-7.853 6.105h-.002c-3.251-.361-5.876-2.986-6.237-6.238-.448-4.027 2.466-7.437 6.304-7.858Z", "key": "99890fca9fcfbdf3ed38d960d7894e82bbdb3f71" }], ["path", { "fill": "currentColor", "d": "M12.475 2.224h.75c4.808 0 8.65 3.83 8.65 8.55v.85h-6.85a2.543 2.543 0 0 1-2.55-2.55v-6.85Zm1.5 1.538v5.312c0 .586.464 1.05 1.05 1.05h5.32c-.307-3.337-2.958-6.016-6.37-6.362Z", "key": "0acd5ffbef8f0aeb1860843140f9ae99354bf7ab" }]]);
const PieHalf = createMeisterIcons("pie-half", [["path", { "fill": "currentColor", "d": "m9.737 4.038-.026.005-.036.003C6.067 4.407 3.35 7.476 3.35 11.1c0 3.6 2.797 6.601 6.345 7.056l.026.004.016.003a.131.131 0 0 0 .013-.063v-14a.132.132 0 0 0-.013-.062Zm-.244-1.48c1.031-.182 1.757.675 1.757 1.542v14c0 .87-.73 1.73-1.768 1.541-4.242-.555-7.632-4.15-7.632-8.54 0-4.367 3.267-8.09 7.643-8.544Zm4.77 3.28a.132.132 0 0 0-.013.062v14c0 .031.007.051.013.063l.026-.006.036-.003c3.608-.36 6.325-3.43 6.325-7.054 0-3.608-2.705-6.6-6.343-7.056l-.027-.003-.017-.003Zm.254-1.48C13.48 4.172 12.75 5.03 12.75 5.9v14c0 .867.725 1.724 1.757 1.543 4.376-.454 7.643-4.177 7.643-8.543 0-4.383-3.283-7.986-7.633-8.541Z", "key": "899e147015dfa76f810b9fb29863c5c943b8db07" }]]);
const PieHalfB = createMeisterIcons("pie-half-b", [["path", { "fill": "currentColor", "d": "M10.5 4.1v14c0 .5-.4.9-.9.8-3.9-.5-7-3.8-7-7.8s3-7.4 7-7.8c.5-.1.9.3.9.8Z", "key": "39f4bf6dcbd348b63bd015889bd7db9a6c6c675d" }], ["path", { "fill": "currentColor", "d": "m9.737 4.038-.026.005-.036.003C6.067 4.407 3.35 7.476 3.35 11.1c0 3.6 2.797 6.601 6.345 7.056l.026.004.016.003a.131.131 0 0 0 .013-.063v-14a.132.132 0 0 0-.013-.062Zm-.244-1.48c1.031-.182 1.757.675 1.757 1.542v14c0 .87-.73 1.73-1.768 1.541-4.242-.555-7.632-4.15-7.632-8.54 0-4.367 3.267-8.09 7.643-8.544Zm4.77 3.28a.132.132 0 0 0-.013.062v14c0 .031.007.051.013.063l.026-.006.036-.003c3.608-.36 6.325-3.43 6.325-7.054 0-3.608-2.705-6.6-6.343-7.056l-.027-.003-.017-.003Zm.254-1.48C13.48 4.172 12.75 5.03 12.75 5.9v14c0 .867.725 1.724 1.757 1.543 4.376-.454 7.643-4.177 7.643-8.543 0-4.383-3.283-7.986-7.633-8.541Z", "key": "041ca5738bef9086975d61b4626cabbcab2ea95d" }]]);
const PieHalfVarB = createMeisterIcons("pie-half-var-b", [["path", { "fill": "currentColor", "d": "m9.737 4.038-.026.005-.036.003C6.067 4.407 3.35 7.476 3.35 11.1c0 3.6 2.797 6.601 6.345 7.056l.026.004.016.003a.131.131 0 0 0 .013-.063v-14a.132.132 0 0 0-.013-.062Zm-.244-1.48c1.031-.182 1.757.675 1.757 1.542v14c0 .87-.73 1.73-1.768 1.541-4.242-.555-7.632-4.15-7.632-8.54 0-4.367 3.267-8.09 7.643-8.544ZM21.4 12.9c0 4-3 7.4-7 7.8-.5.1-.9-.3-.9-.8v-14c0-.5.4-.9.9-.8 4 .5 7 3.8 7 7.8Z", "key": "73e31d85e316e01ea13c6688636ccdebe2ce7914" }], ["path", { "fill": "currentColor", "d": "M14.263 5.838a.132.132 0 0 0-.013.062v14c0 .031.007.051.013.063l.026-.006.036-.003c3.608-.36 6.325-3.43 6.325-7.054 0-3.608-2.705-6.6-6.343-7.056l-.027-.003-.017-.003Zm.254-1.48C13.48 4.172 12.75 5.03 12.75 5.9v14c0 .867.725 1.724 1.757 1.543 4.376-.454 7.643-4.177 7.643-8.543 0-4.383-3.283-7.986-7.633-8.541Z", "key": "8f0cc7cd94620c0ebc94edc702af03e8f58619b2" }]]);
const PieVarB = createMeisterIcons("pie-var-b", [["path", { "fill": "currentColor", "d": "M21 12h-7c-1.1 0-2 .9-2 2v7c-5 0-9-4-9-9s4-9 9-9 9 4 9 9Z", "key": "11c7bacb6ce27ff4011249c12b3e9fc938ec81c4" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12a8.209 8.209 0 0 0 7.5 8.217V14A2.756 2.756 0 0 1 14 11.25h6.217A8.209 8.209 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12v.75H14c-.686 0-1.25.564-1.25 1.25v7.75H12A9.713 9.713 0 0 1 2.25 12Z", "key": "75adae412ef90fc0d3ec703c14d46c630259facb" }], ["path", { "fill": "currentColor", "d": "M14 12.75c-.686 0-1.25.564-1.25 1.25v6.217a8.204 8.204 0 0 0 7.467-7.467H14ZM11.25 14A2.756 2.756 0 0 1 14 11.25h7.75V12A9.713 9.713 0 0 1 12 21.75h-.75V14Z", "key": "3c0f786a37c28f616f90985765f8348d0344e3a3" }]]);
const Pin = createMeisterIcons("pin", [["path", { "fill": "currentColor", "d": "M7.33 5.98C8.577 4.734 10.28 4.1 12 4.1c1.72 0 3.423.634 4.67 1.88 1.246 1.247 1.88 2.95 1.88 4.67 0 1.718-.633 3.42-1.876 4.666a.068.068 0 0 0-.004.004l-4.5 4.5a.24.24 0 0 1-.17.08.24.24 0 0 1-.17-.08l-4.5-4.5c-1.246-1.247-1.88-2.95-1.88-4.67 0-1.72.634-3.423 1.88-4.67ZM6.265 16.376a.145.145 0 0 0 .005.004l4.5 4.5a1.716 1.716 0 0 0 2.46 0l4.5-4.5c1.554-1.553 2.32-3.65 2.32-5.73 0-2.08-.766-4.177-2.32-5.73C16.177 3.366 14.08 2.6 12 2.6c-2.08 0-4.177.766-5.73 2.32-1.554 1.553-2.32 3.65-2.32 5.73 0 2.078.765 4.173 2.315 5.726Z", "key": "c1d42b8817e2b5df0cceab384e10a5b6eee71a7a" }]]);
const PinAdd = createMeisterIcons("pin-add", [["path", { "fill": "currentColor", "d": "M7.33 5.98C8.577 4.734 10.28 4.1 12 4.1c1.72 0 3.423.634 4.67 1.88 1.246 1.247 1.88 2.95 1.88 4.67 0 1.718-.633 3.42-1.876 4.666l-.004.004-4.5 4.5a.24.24 0 0 1-.17.08.24.24 0 0 1-.17-.08l-4.5-4.5c-1.246-1.247-1.88-2.95-1.88-4.67 0-1.72.634-3.423 1.88-4.67ZM6.265 16.376l.005.004 4.5 4.5a1.716 1.716 0 0 0 2.46 0l4.5-4.5c1.554-1.553 2.32-3.65 2.32-5.73 0-2.08-.766-4.177-2.32-5.73C16.177 3.366 14.08 2.6 12 2.6c-2.08 0-4.177.766-5.73 2.32-1.554 1.553-2.32 3.65-2.32 5.73 0 2.078.765 4.173 2.315 5.726ZM8.25 11.05A.75.75 0 0 1 9 10.3h2.25V8.05a.75.75 0 1 1 1.5 0v2.25H15a.75.75 0 1 1 0 1.5h-2.25v2.25a.75.75 0 0 1-1.5 0V11.8H9a.75.75 0 0 1-.75-.75Z", "key": "5a04c439a661c01b5e21d98d0e759d848658a2d2" }]]);
const PinAddB = createMeisterIcons("pin-add-b", [["path", { "fill": "currentColor", "d": "M6.8 15.85c-1.4-1.4-2.1-3.3-2.1-5.2 0-1.9.7-3.8 2.1-5.2 1.4-1.4 3.3-2.1 5.2-2.1 1.9 0 3.8.7 5.2 2.1 1.4 1.4 2.1 3.3 2.1 5.2 0 1.9-.7 3.8-2.1 5.2", "key": "d5fec26698ed8895e3e6c10e1bbf092fb25ef1eb" }], ["path", { "fill": "currentColor", "d": "M12 4.1c-1.72 0-3.423.634-4.67 1.88-1.246 1.247-1.88 2.95-1.88 4.67 0 1.72.634 3.423 1.88 4.67l-1.06 1.06c-1.554-1.553-2.32-3.65-2.32-5.73 0-2.08.766-4.177 2.32-5.73C7.823 3.366 9.92 2.6 12 2.6c2.08 0 4.177.766 5.73 2.32 1.554 1.553 2.32 3.65 2.32 5.73 0 2.08-.766 4.177-2.32 5.73l-1.06-1.06c1.246-1.247 1.88-2.95 1.88-4.67 0-1.72-.634-3.423-1.88-4.67C15.423 4.734 13.72 4.1 12 4.1Z", "key": "e64429f5f9928967e36b41b6dc51f0a522544fe5" }], ["path", { "fill": "currentColor", "d": "m6.8 15.85 4.5 4.5c.4.4 1 .4 1.4 0l4.5-4.5", "key": "19d7e6c1663890c132501ac4e542c31fb94cfd28" }], ["path", { "fill": "currentColor", "d": "M6.27 15.32a.75.75 0 0 1 1.06 0l4.5 4.5a.24.24 0 0 0 .17.08.24.24 0 0 0 .17-.08l4.5-4.5a.75.75 0 1 1 1.06 1.06l-4.5 4.5a1.716 1.716 0 0 1-2.46 0l-4.5-4.5a.75.75 0 0 1 0-1.06Z", "key": "92ff7b2375b5fec1beb49319c1674f793cfeee51" }], ["path", { "fill": "#fff", "d": "M8.25 10.95A.75.75 0 0 1 9 10.2h6a.75.75 0 1 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "490ed9bf7e16de7873c3c277791a71e93ac5442e" }], ["path", { "fill": "#fff", "d": "M12 7.2a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6A.75.75 0 0 1 12 7.2Z", "key": "aaa708225ce5318fe7e0d57769d55e4ca4839a95" }]]);
const PinB = createMeisterIcons("pin-b", [["path", { "fill": "currentColor", "d": "M6.85 15.9c-1.4-1.4-2.1-3.3-2.1-5.2 0-1.9.7-3.8 2.1-5.2 1.4-1.4 3.3-2.1 5.2-2.1 1.9 0 3.8.7 5.2 2.1 1.4 1.4 2.1 3.3 2.1 5.2 0 1.9-.7 3.8-2.1 5.2", "key": "a8f455a5752c5c6656efddc85a2de00075dcec0c" }], ["path", { "fill": "currentColor", "d": "M12.05 4.15c-1.72 0-3.423.634-4.67 1.88C6.134 7.277 5.5 8.98 5.5 10.7c0 1.72.634 3.423 1.88 4.67l-1.06 1.06C4.766 14.877 4 12.78 4 10.7c0-2.08.766-4.177 2.32-5.73 1.553-1.554 3.65-2.32 5.73-2.32 2.08 0 4.177.766 5.73 2.32 1.554 1.553 2.32 3.65 2.32 5.73 0 2.08-.766 4.177-2.32 5.73l-1.06-1.06c1.246-1.247 1.88-2.95 1.88-4.67 0-1.72-.634-3.423-1.88-4.67-1.247-1.246-2.95-1.88-4.67-1.88Z", "key": "e9e06706d01f6d32f195ac373439f6e5657ecb9f" }], ["path", { "fill": "currentColor", "d": "m6.85 15.9 4.5 4.5c.4.4 1 .4 1.4 0l4.5-4.5", "key": "946ad5f90897792bd701fb21afcf3ee5c6fafc61" }], ["path", { "fill": "currentColor", "d": "M6.32 15.37a.75.75 0 0 1 1.06 0l4.5 4.5a.24.24 0 0 0 .17.08.24.24 0 0 0 .17-.08l4.5-4.5a.75.75 0 0 1 1.06 1.06l-4.5 4.5a1.716 1.716 0 0 1-2.46 0l-4.5-4.5a.75.75 0 0 1 0-1.06Z", "key": "4599bee45e9370947da8f2c11b9bab085e0232a1" }]]);
const PinCircle = createMeisterIcons("pin-circle", [["path", { "fill": "currentColor", "d": "M12 4.1c-1.72 0-3.423.634-4.67 1.88-1.246 1.247-1.88 2.95-1.88 4.67 0 1.72.634 3.423 1.88 4.67l4.5 4.5a.24.24 0 0 0 .17.08.24.24 0 0 0 .17-.08l4.5-4.5.003-.004c1.245-1.246 1.877-2.948 1.877-4.666 0-1.72-.634-3.423-1.88-4.67C15.423 4.734 13.72 4.1 12 4.1ZM6.27 16.38l-.005-.004c-1.55-1.553-2.315-3.648-2.315-5.726 0-2.08.766-4.177 2.32-5.73C7.823 3.366 9.92 2.6 12 2.6c2.08 0 4.177.766 5.73 2.32 1.554 1.553 2.32 3.65 2.32 5.73 0 2.08-.766 4.177-2.32 5.73l-4.5 4.5a1.716 1.716 0 0 1-2.46 0l-4.5-4.5Zm4.48-6.33a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 7.3a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "a730083793741ca92aa7954db8ac938cbcdbb2a4" }]]);
const PinCircleB = createMeisterIcons("pin-circle-b", [["path", { "fill": "currentColor", "d": "M6.8 15.85c-1.4-1.4-2.1-3.3-2.1-5.2 0-1.9.7-3.8 2.1-5.2 1.4-1.4 3.3-2.1 5.2-2.1 1.9 0 3.8.7 5.2 2.1 1.4 1.4 2.1 3.3 2.1 5.2 0 1.9-.7 3.8-2.1 5.2", "key": "6e3e58c4ac83971d6585bc6f19a7237f8915664f" }], ["path", { "fill": "currentColor", "d": "M12 4.1c-1.72 0-3.423.634-4.67 1.88-1.246 1.247-1.88 2.95-1.88 4.67 0 1.72.634 3.423 1.88 4.67l-1.06 1.06c-1.554-1.553-2.32-3.65-2.32-5.73 0-2.08.766-4.177 2.32-5.73C7.823 3.366 9.92 2.6 12 2.6c2.08 0 4.177.766 5.73 2.32 1.554 1.553 2.32 3.65 2.32 5.73 0 2.08-.766 4.177-2.32 5.73l-1.06-1.06c1.246-1.247 1.88-2.95 1.88-4.67 0-1.72-.634-3.423-1.88-4.67C15.423 4.734 13.72 4.1 12 4.1Z", "key": "ddf6c5c7e32e7eb9824c507a839a58fa4917f483" }], ["path", { "fill": "currentColor", "d": "m6.8 15.85 4.5 4.5c.4.4 1 .4 1.4 0l4.5-4.5", "key": "730a50b98c0f654d7427616738e8ab615c5a5095" }], ["path", { "fill": "currentColor", "d": "M6.27 15.32a.75.75 0 0 1 1.06 0l4.5 4.5a.24.24 0 0 0 .17.08.24.24 0 0 0 .17-.08l4.5-4.5a.75.75 0 1 1 1.06 1.06l-4.5 4.5a1.716 1.716 0 0 1-2.46 0l-4.5-4.5a.75.75 0 0 1 0-1.06Z", "key": "3d84a99ea1fbeebf4ffea65c1328ae8894bfefa5" }], ["path", { "fill": "#fff", "d": "M12 11.95a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "35f6c921ca7fc236cbe2be947385fbacebf6f930" }], ["path", { "fill": "#fff", "d": "M12 8.7a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 9.95a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "7c0c5e28a2923894cc1106053e19de6e870041d1" }]]);
const PinCross = createMeisterIcons("pin-cross", [["path", { "fill": "currentColor", "d": "M7.33 5.98C8.577 4.734 10.28 4.1 12 4.1c1.72 0 3.423.634 4.67 1.88 1.246 1.247 1.88 2.95 1.88 4.67 0 1.72-.634 3.423-1.88 4.67l-4.5 4.5a.24.24 0 0 1-.17.08.24.24 0 0 1-.17-.08l-4.5-4.5c-1.246-1.247-1.88-2.95-1.88-4.67 0-1.72.634-3.423 1.88-4.67Zm-1.06 10.4c-1.554-1.553-2.32-3.65-2.32-5.73 0-2.08.766-4.177 2.32-5.73C7.823 3.366 9.92 2.6 12 2.6c2.08 0 4.177.766 5.73 2.32 1.554 1.553 2.32 3.65 2.32 5.73 0 2.08-.766 4.177-2.32 5.73l-4.5 4.5a1.716 1.716 0 0 1-2.46 0l-4.5-4.5Zm3-8.06a.75.75 0 0 1 1.06 0l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 1.06L13.01 11l1.62 1.62a.75.75 0 1 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 1 1-1.06-1.06L10.89 11 9.27 9.38a.75.75 0 0 1 0-1.06Z", "key": "36590cfcdf87370f0822ce4acb576fa6e9589ad2" }]]);
const PinCrossB = createMeisterIcons("pin-cross-b", [["path", { "fill": "currentColor", "d": "M6.85 15.9c-1.4-1.4-2.1-3.3-2.1-5.2 0-1.9.7-3.8 2.1-5.2 1.4-1.4 3.3-2.1 5.2-2.1 1.9 0 3.8.7 5.2 2.1 1.4 1.4 2.1 3.3 2.1 5.2 0 1.9-.7 3.8-2.1 5.2", "key": "17a8ea3b89066073186fb58831917ced723a3ba5" }], ["path", { "fill": "currentColor", "d": "M12.05 4.15c-1.72 0-3.423.634-4.67 1.88C6.134 7.277 5.5 8.98 5.5 10.7c0 1.72.634 3.423 1.88 4.67l-1.06 1.06C4.766 14.877 4 12.78 4 10.7c0-2.08.766-4.177 2.32-5.73 1.553-1.554 3.65-2.32 5.73-2.32 2.08 0 4.177.766 5.73 2.32 1.554 1.553 2.32 3.65 2.32 5.73 0 2.08-.766 4.177-2.32 5.73l-1.06-1.06c1.246-1.247 1.88-2.95 1.88-4.67 0-1.72-.634-3.423-1.88-4.67-1.247-1.246-2.95-1.88-4.67-1.88Z", "key": "0f5cd2ff8ee26647c3c5a4602e99b4e579c3f992" }], ["path", { "fill": "currentColor", "d": "m6.85 15.9 4.5 4.5c.4.4 1 .4 1.4 0l4.5-4.5", "key": "bd62ca8ebc84a493480ef3a1e4a3dd1d534cda85" }], ["path", { "fill": "currentColor", "d": "M6.32 15.37a.75.75 0 0 1 1.06 0l4.5 4.5a.24.24 0 0 0 .17.08.24.24 0 0 0 .17-.08l4.5-4.5a.75.75 0 1 1 1.06 1.06l-4.5 4.5a1.716 1.716 0 0 1-2.46 0l-4.5-4.5a.75.75 0 0 1 0-1.06Z", "key": "f1909196fd89ba842e00952b9fcf9d513b78e3c1" }], ["path", { "fill": "#fff", "d": "M9.42 8.37a.75.75 0 0 1 1.06 0l4.2 4.2a.75.75 0 1 1-1.06 1.06l-4.2-4.2a.75.75 0 0 1 0-1.06Z", "key": "b51c2f3327ca2c5bbb03cf4193eefe49a1f115b5" }], ["path", { "fill": "#fff", "d": "M14.68 8.37a.75.75 0 0 1 0 1.06l-4.2 4.2a.75.75 0 1 1-1.06-1.06l4.2-4.2a.75.75 0 0 1 1.06 0Z", "key": "352ca854a891f48f35bb5d1942834533c1ef6de8" }]]);
const Pizzatime = createMeisterIcons("pizzatime", [["path", { "fill": "currentColor", "d": "M19.745 4.615c-.005 0-.016 0-.039.006l-.032.01L4.953 7.433c-.554.128-.885.65-.735 1.15l.002.006c1.34 4.597 4.598 8.529 9.11 10.736l.017.009.017.01c.463.256 1.063.002 1.224-.482l.004-.011L19.79 4.757a.15.15 0 0 0-.029-.127m-.016-.015c.002.001.002 0 0 0Zm1.169-.945c.344.413.484 1.007.297 1.567l-.003.011-5.2 14.101c-.443 1.303-2.025 2.04-3.354 1.317-4.88-2.394-8.415-6.657-9.873-11.654-.447-1.494.617-2.769 1.856-3.044l.011-.003L19.331 3.17a1.525 1.525 0 0 1 1.583.5Z", "key": "8512b5185f2335dce85a32db9b50d7973aa43890" }], ["path", { "fill": "currentColor", "d": "M6.194 5.658a.75.75 0 0 1 .848.636c.664 4.645 3.79 8.899 8.608 10.599l.044.015.041.021c.05.025.082.036.152.06h.005c.08.028.196.066.343.14a.75.75 0 1 1-.67 1.342 1.005 1.005 0 0 0-.152-.06h-.005c-.071-.025-.172-.058-.298-.118-5.36-1.91-8.818-6.645-9.552-11.787a.75.75 0 0 1 .636-.848Z", "key": "d223178e65b28d49b2d7534f0e949dbe9a840c6a" }], ["path", { "fill": "currentColor", "d": "M6.372 9.118C6.664 7.953 7.79 7.15 9 7.15a2.756 2.756 0 0 1 2.75 2.75c0 1.59-1.212 2.85-2.75 2.85h-.05c-.259 0-.623.002-.985-.18a.75.75 0 1 1 .67-1.34.168.168 0 0 0 .06.012c.063.007.143.008.305.008.662 0 1.25-.54 1.25-1.35 0-.686-.564-1.25-1.25-1.25-.589 0-1.064.396-1.172.832a.75.75 0 1 1-1.456-.364ZM17.5 8.95c-.64 0-1.25.616-1.25 1.35 0 .81.588 1.35 1.25 1.35h.3a.75.75 0 1 1 0 1.5h-.3c-1.538 0-2.75-1.26-2.75-2.85 0-1.466 1.19-2.85 2.75-2.85.834 0 1.617.406 2.13.92a.75.75 0 0 1-1.06 1.06c-.287-.286-.704-.48-1.07-.48Z", "key": "468940b3894ba92c99e558dcc720725a06bea129" }]]);
const PizzatimeB = createMeisterIcons("pizzatime-b", [["path", { "fill": "currentColor", "d": "m15.8 17.8-.5 1.3c-.3.9-1.4 1.4-2.3.9-4.7-2.3-8.1-6.5-9.5-11.2-.3-1 .3-1.9 1.3-2.1l1.5-.3c.1 1 .4 2 .8 2.9.3.9.7 1.8 1.2 2.6 1.6 2.5 4 4.6 7 5.7.2.1.3.1.5.2Z", "key": "9a2adb6034e99d13b843c546c5f15d65c06a9e82" }], ["path", { "fill": "currentColor", "d": "m6.964 5.502.082.823c.09.906.365 1.828.74 2.67l.014.034.012.034c.284.854.66 1.697 1.122 2.436 1.52 2.375 3.795 4.36 6.624 5.397l.04.014.037.02c.05.024.082.035.152.059l.005.001c.08.027.196.065.343.14l.61.304-.74 1.921c-.444 1.299-2.023 2.033-3.35 1.31-4.886-2.395-8.417-6.76-9.874-11.65-.436-1.457.474-2.77 1.872-3.05l2.311-.463ZM5.674 7.29l-.727.146c-.601.12-.892.605-.729 1.149v.001c1.343 4.505 4.605 8.535 9.112 10.74l.017.009.017.01c.463.257 1.063.002 1.224-.482l.006-.016.239-.621c-3.072-1.182-5.523-3.356-7.165-5.922l-.004-.006c-.53-.85-.95-1.793-1.264-2.727a10.857 10.857 0 0 1-.726-2.28Z", "key": "2520d5449f092d195d8eaf4b3fd888a5ad922df8" }], ["path", { "fill": "currentColor", "d": "M19.771 4.631 7.145 7.004c.128.68.335 1.363.555 2.025.398.895.773 1.733 1.234 2.47 1.48 2.311 3.673 4.252 6.396 5.31l1.765-4.765.002-.004 1.2-3.303 1.494-3.981a.155.155 0 0 0 0-.068.199.199 0 0 0-.02-.057Zm1.171-.941c.315.405.456.989.27 1.547l-.005.013-1.503 4.01-1.2 3.3-2.182 5.89H15.8c-.224 0-.396-.058-.477-.085l-.01-.003a1.286 1.286 0 0 0-.036-.012h-.11l-.125-.046c-3.17-1.162-5.695-3.376-7.374-6l-.004-.006c-.528-.845-.946-1.786-1.339-2.669L6.3 9.572l-.012-.035c-.302-.907-.625-1.974-.734-3.062l-.069-.685L19.42 3.17c.641-.186 1.205.113 1.522.52Z", "key": "aa2beb3be07727fdf5c695630bed97bf200dca12" }], ["path", { "fill": "currentColor", "d": "M6.372 9.118C6.664 7.954 7.79 7.15 9 7.15a2.756 2.756 0 0 1 2.75 2.75c0 1.59-1.212 2.85-2.75 2.85h-.05c-.259.001-.623.002-.985-.179a.75.75 0 1 1 .67-1.341c.005.001.016.007.06.012.063.007.143.008.305.008.662 0 1.25-.54 1.25-1.35 0-.686-.564-1.25-1.25-1.25-.589 0-1.064.397-1.172.832a.75.75 0 0 1-1.456-.364ZM17.5 8.95c-.763 0-1.35.641-1.35 1.35 0 .763.64 1.35 1.35 1.35h.3a.75.75 0 0 1 0 1.5h-.3c-1.49 0-2.85-1.213-2.85-2.85 0-1.49 1.213-2.85 2.85-2.85.834 0 1.617.406 2.13.92a.75.75 0 0 1-1.06 1.06c-.287-.286-.704-.48-1.07-.48Z", "key": "e2367aca042c6db0465f2cc6e2f839f4b9b0cb4a" }]]);
const Plant = createMeisterIcons("plant", [["path", { "fill": "currentColor", "d": "M11.15 10.85h-.7v-.8c0-.1.1-7.9 7.9-7.9h.8v.8c-.1.1-.6 7.9-8 7.9Zm6.3-7.2c-4.3.5-5.3 4-5.5 5.6 4.1-.4 5.2-3.9 5.5-5.6Z", "key": "4085abf607fa1c4002455f3748be9cc0201aea92" }], ["path", { "fill": "currentColor", "d": "M11.85 11.95h-.8c-4.6 0-6-4-6.2-6.1v-.8h.8c4.8 0 6.1 4 6.2 6.2v.7Zm-5.3-5.3c.3 1.2 1.1 3.4 3.7 3.8-.3-1.2-1-3.4-3.7-3.8Zm8.4 15.2h-7.6c-1.4 0-2.5-1.1-2.5-2.5v-3.8c0-1 .8-1.7 1.7-1.7h9.1c1 0 1.7.8 1.7 1.7v3.8c.1 1.4-1 2.5-2.4 2.5Zm-8.3-6.5c-.1 0-.2.1-.2.2v3.8c0 .5.4 1 1 1h7.6c.5 0 1-.4 1-1v-3.8c0-.1-.1-.2-.2-.2h-9.2Z", "key": "78f83e9ec93ed8945d24d33893e94dfc6e7ef444" }], ["path", { "fill": "currentColor", "d": "M11.95 10.05h-1.5v4.5h1.5v-4.5Z", "key": "e74593679eda9dddddd049ee4e9cf53bcd01a09e" }]]);
const PlantB = createMeisterIcons("plant-b", [["path", { "stroke": "#000", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M11.15 10.1s0-7.2 7.2-7.2c0 .1-.4 7.2-7.2 7.2Zm-.1 1.2s0-5.4-5.4-5.4c0 0 .3 5.4 5.4 5.4Z", "key": "8a1549363af53386e59ae945ee37739f09ae0c0e" }], ["path", { "fill": "currentColor", "stroke": "#000", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M16.65 15.6v3.8c0 .9-.8 1.7-1.7 1.7h-7.6c-1 0-1.7-.8-1.7-1.7v-3.8c0-.5.4-1 1-1h9.1c.5 0 .9.5.9 1Z", "key": "28e32a28ea0d648e98fbe0f16746e450d593babe" }], ["path", { "stroke": "#000", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M11.15 14.6v-4.5", "key": "c81895e6c17f4cb1b976e6d21f375497cf12e97f" }]]);
const PlantVarB = createMeisterIcons("plant-var-b", [["path", { "fill": "currentColor", "d": "M11.15 10.05s0-7.2 7.2-7.2c0 .1-.4 7.2-7.2 7.2Z", "key": "d7ddd0563b0caebf76f4fcc0b0766bf8bcc01aef" }], ["path", { "fill": "currentColor", "d": "M11.15 10.85h-.8v-.8c.1-.1.2-7.9 8-7.9h.8v.8c-.1.1-.6 7.9-8 7.9Zm6.3-7.2c-4.3.5-5.2 4-5.5 5.6 4.1-.4 5.2-3.9 5.5-5.6Z", "key": "ce53e15c9c14f55a58a60e6d3f2bb452c75fcd7f" }], ["path", { "fill": "currentColor", "d": "M11.05 11.25s0-5.4-5.4-5.4c0 0 .3 5.4 5.4 5.4Z", "key": "acd3e7d7821f5916d94dc69a3afd0724fd8f47c7" }], ["path", { "fill": "currentColor", "d": "M11.85 11.95h-.8c-4.6 0-6-4-6.2-6.1v-.8h.8c4.8 0 6.1 4 6.2 6.2v.7Zm-5.3-5.3c.3 1.2 1.1 3.4 3.7 3.8-.3-1.2-1-3.4-3.7-3.8Zm8.4 15.2h-7.6c-1.4 0-2.5-1.1-2.5-2.5v-3.8c0-1 .8-1.7 1.7-1.7h9.1c1 0 1.7.8 1.7 1.7v3.8c.1 1.4-1 2.5-2.4 2.5Zm-8.3-6.5c-.1 0-.2.1-.2.2v3.8c0 .5.4 1 1 1h7.6c.5 0 1-.4 1-1v-3.8c0-.1-.1-.2-.2-.2h-9.2Z", "key": "3695c92633bc6eb3c284f109310fb3ae4e728ff0" }], ["path", { "fill": "currentColor", "d": "M11.85 10.05h-1.5v4.5h1.5v-4.5Z", "key": "26b3d0cfe8881b7f70f4a706efe4e397debaa94c" }]]);
const Play = createMeisterIcons("play", [["path", { "fill": "currentColor", "d": "M7.525 8.8c0-1.334 1.386-2.258 2.622-1.551l.005.003 5.52 3.211.019.013c.548.365.784.975.784 1.524s-.236 1.159-.784 1.524l-.019.013-5.525 3.214c-1.236.706-2.622-.217-2.622-1.551V8.8Zm1.627-.26c-.063.04-.127.121-.127.26v6.4c0 .139.064.22.127.26.059.035.141.05.249-.01l5.469-3.182c.05-.04.105-.127.105-.268 0-.14-.056-.229-.105-.268L9.4 8.55c-.108-.06-.19-.045-.249-.01Z", "key": "4aa349a708743552eb518dec6fffd3a798477a17" }]]);
const PlayCircle = createMeisterIcons("play-circle", [["path", { "fill": "currentColor", "d": "M3.75 12A8.213 8.213 0 0 1 12 3.75 8.213 8.213 0 0 1 20.25 12c0 4.486-3.764 8.25-8.25 8.25A8.213 8.213 0 0 1 3.75 12ZM12 2.25A9.713 9.713 0 0 0 2.25 12 9.713 9.713 0 0 0 12 21.75c5.314 0 9.75-4.436 9.75-9.75A9.713 9.713 0 0 0 12 2.25Zm-1.128 5.899C9.636 7.442 8.25 8.366 8.25 9.7v4.6c0 1.334 1.386 2.258 2.622 1.551h.002l4.056-2.333.05-.042c.915-.763 1.026-2.274-.064-3l-.02-.014-4.022-2.312-.002-.001ZM9.75 9.7c0-.139.064-.22.127-.26.059-.035.142-.05.25.011l3.97 2.283a.273.273 0 0 1 .103.229.469.469 0 0 1-.142.326l-3.93 2.26c-.11.062-.192.046-.25.01-.064-.038-.128-.12-.128-.259V9.7Z", "key": "20066bbb8be6550ad654e6e7856416ad9e7e5520" }]]);
const PlayCircleB = createMeisterIcons("play-circle-b", [["path", { "fill": "currentColor", "d": "M12 21c-5 0-9-4-9-9s4-9 9-9 9 4 9 9-4 9-9 9Z", "key": "b592960476e9c2b7d43d351708dfe55462c63786" }], ["path", { "fill": "#fff", "d": "m15 11.1-4-2.3c-.7-.4-1.5.1-1.5.9v4.6c0 .8.8 1.3 1.5.9l4-2.3c.7-.4.7-1.4 0-1.8Z", "key": "46490ec77c0d22123f48f129063950789eb3360d" }]]);
const PlayCircleDashed = createMeisterIcons("play-circle-dashed", [["path", { "fill": "currentColor", "d": "M10.385 3.905a8.423 8.423 0 0 1 3.23 0 .75.75 0 1 0 .287-1.472 9.924 9.924 0 0 0-3.804 0 .75.75 0 1 0 .287 1.472Zm7.04-.024a.75.75 0 0 0-.832 1.248 8.21 8.21 0 0 1 2.278 2.278.75.75 0 1 0 1.248-.832 9.71 9.71 0 0 0-2.694-2.694ZM7.407 5.13a.75.75 0 0 0-.832-1.248A9.71 9.71 0 0 0 3.88 6.575a.75.75 0 1 0 1.248.832 8.21 8.21 0 0 1 2.278-2.278Zm-3.502 5.256a.75.75 0 0 0-1.472-.287 9.924 9.924 0 0 0 0 3.804.75.75 0 1 0 1.472-.287 8.423 8.423 0 0 1 0-3.23Zm17.662-.287a.75.75 0 0 0-1.472.287c.102.521.155 1.06.155 1.615 0 .547-.056 1.082-.162 1.602a.75.75 0 1 0 1.47.3A9.495 9.495 0 0 0 21.75 12c0-.65-.063-1.287-.183-1.902ZM20.08 17.4a.75.75 0 1 0-1.242-.84 8.525 8.525 0 0 1-2.279 2.278.75.75 0 1 0 .841 1.242 10.019 10.019 0 0 0 2.68-2.68Zm-14.95-.807a.75.75 0 0 0-1.249.832 9.71 9.71 0 0 0 2.694 2.694.75.75 0 1 0 .832-1.248 8.21 8.21 0 0 1-2.278-2.278Zm8.772 4.965a.75.75 0 1 0-.3-1.47A7.994 7.994 0 0 1 12 20.25a8.419 8.419 0 0 1-1.615-.155.75.75 0 0 0-.287 1.472c.615.12 1.251.183 1.902.183.649 0 1.285-.066 1.902-.192Zm-2.03-13.41C10.636 7.443 9.25 8.367 9.25 9.7v4.6c0 1.334 1.386 2.258 2.622 1.551h.002l4.056-2.333.05-.042c.915-.763 1.026-2.274-.064-3l-.02-.014-4.022-2.312-.002-.001ZM10.75 9.7c0-.139.064-.22.127-.26.059-.035.143-.05.25.011l3.97 2.283a.273.273 0 0 1 .103.229.468.468 0 0 1-.142.326l-3.93 2.26c-.11.062-.192.046-.25.01-.064-.038-.128-.12-.128-.259V9.7Z", "key": "e1150ddfe4282deffc0a7997d5dda12f4d42e825" }]]);
const PlayCircleDashedB = createMeisterIcons("play-circle-dashed-b", [["path", { "fill": "currentColor", "d": "M12 3.75a8.4 8.4 0 0 0-1.615.155.75.75 0 0 1-.287-1.472 9.924 9.924 0 0 1 3.804 0 .75.75 0 1 1-.287 1.472A8.423 8.423 0 0 0 12 3.75Zm4.385.34a.75.75 0 0 1 1.04-.209 9.71 9.71 0 0 1 2.694 2.694.75.75 0 1 1-1.248.832 8.21 8.21 0 0 0-2.278-2.278.75.75 0 0 1-.208-1.04Zm-8.77 0a.75.75 0 0 1-.208 1.04 8.21 8.21 0 0 0-2.278 2.277.75.75 0 0 1-1.248-.832A9.71 9.71 0 0 1 6.575 3.88a.75.75 0 0 1 1.04.208ZM3.313 9.504a.75.75 0 0 1 .592.88 8.423 8.423 0 0 0 0 3.23.75.75 0 1 1-1.472.287 9.924 9.924 0 0 1 0-3.804.75.75 0 0 1 .88-.593Zm17.374 0a.75.75 0 0 1 .88.593c.12.615.183 1.251.183 1.902 0 .649-.066 1.285-.192 1.902a.75.75 0 1 1-1.47-.3c.106-.52.162-1.055.162-1.602a8.4 8.4 0 0 0-.155-1.615.75.75 0 0 1 .592-.88Zm-.808 6.854a.75.75 0 0 1 .2 1.041 10.019 10.019 0 0 1-2.679 2.68.75.75 0 1 1-.84-1.242 8.525 8.525 0 0 0 2.278-2.279.75.75 0 0 1 1.041-.2Zm-15.79.026a.75.75 0 0 1 1.04.208 8.21 8.21 0 0 0 2.278 2.278.75.75 0 1 1-.832 1.248 9.71 9.71 0 0 1-2.694-2.694.75.75 0 0 1 .208-1.04Zm10.398 4.288a.75.75 0 0 1-.585.885A9.495 9.495 0 0 1 12 21.75c-.65 0-1.287-.063-1.902-.183a.75.75 0 0 1 .287-1.472c.521.102 1.06.155 1.615.155.547 0 1.082-.056 1.602-.162a.75.75 0 0 1 .885.585ZM15.5 11.1l-4-2.3c-.7-.4-1.6.1-1.6.8v4.6c0 .8.8 1.3 1.5.9l4-2.3c.7-.4.7-1.3.1-1.7Z", "key": "dc4a16c9978b6469277523e5c34da0c764b777bd" }], ["path", { "fill": "currentColor", "d": "M10.092 8.122a1.857 1.857 0 0 1 1.78.027h.002l4.021 2.313.021.014c1.07.713 1.034 2.301-.143 2.975l-4 2.3c-1.237.707-2.623-.217-2.623-1.551V9.6c0-.691.44-1.217.941-1.478Zm.691 1.33c-.124.065-.133.14-.133.148v4.6c0 .139.064.22.127.26.059.035.142.05.25-.01l4-2.3v-.001c.126-.072.159-.162.161-.228a.22.22 0 0 0-.09-.187l-3.97-2.283a.358.358 0 0 0-.344.002Z", "key": "a937f40d153e5cf160cc0e788629c83fbb66a106" }]]);
const PlayEqual = createMeisterIcons("play-equal", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25c4.486 0 8.25-3.764 8.25-8.25A8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Zm6-2A.75.75 0 0 1 9 9.25h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75ZM9 13.25a.75.75 0 0 0 0 1.5h6a.75.75 0 0 0 0-1.5H9Z", "key": "890b3832f2ae4a170b7e7bc4df195f848d4b9bd0" }]]);
const PlayEqualB = createMeisterIcons("play-equal-b", [["path", { "fill": "currentColor", "d": "M12 21c-5 0-9-4-9-9s4-9 9-9 9 4 9 9c0 4.9-4.1 9-9 9Z", "key": "31e0e01302dfec6fdff2a62159933334e3c839d3" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12 8.213 8.213 0 0 0 12 20.25c4.486 0 8.25-3.764 8.25-8.25A8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12Z", "key": "007568e705ce730bf284c0f9e4f7b292e769bbd2" }], ["path", { "fill": "#fff", "d": "M8.25 10A.75.75 0 0 1 9 9.25h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Zm0 4a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "353b7e13af93172faf2ca72ee05c1781f882865d" }]]);
const PlayHex = createMeisterIcons("play-hex", [["path", { "fill": "currentColor", "d": "m18.697 5.363-4.32-2.51c-1.432-.837-3.322-.837-4.755 0l-4.3 2.5A4.783 4.783 0 0 0 2.95 9.5v5c0 1.69.961 3.209 2.334 4.124l.02.013 4.318 2.51c1.434.837 3.322.837 4.756 0l4.319-2.51.019-.013c1.373-.915 2.334-2.433 2.334-4.124v-5c0-1.691-.961-3.209-2.334-4.124l-.02-.013Zm-8.32-1.215c.967-.564 2.279-.564 3.245 0h.001l4.28 2.488c1.016.686 1.647 1.761 1.647 2.864v5c0 1.102-.631 2.178-1.648 2.864l-4.28 2.488c-.966.564-2.278.564-3.244 0l-4.28-2.488C5.08 16.678 4.45 15.602 4.45 14.5v-5c0-1.225.652-2.283 1.628-2.852l4.3-2.5Zm1.095 4C10.236 7.443 8.85 8.367 8.85 9.7v4.6c0 1.334 1.386 2.258 2.622 1.551h.002l4.032-2.32.03-.02c.526-.376.839-.944.839-1.548 0-.615-.326-1.184-.902-1.514h-.001l-3.998-2.3h-.002ZM10.35 9.7c0-.139.064-.22.127-.26.059-.035.142-.05.25.011l4 2.3c.124.07.148.151.148.212 0 .066-.033.19-.186.308l-3.962 2.278c-.108.062-.191.046-.25.01-.063-.038-.127-.12-.127-.259V9.7Z", "key": "96d12c2629f399a045a2df35131efc650ff0e6d3" }]]);
const PlayHexB = createMeisterIcons("play-hex-b", [["path", { "fill": "currentColor", "d": "M20.3 14.5v-5c0-1.4-.8-2.7-2-3.5L14 3.5c-1.2-.7-2.8-.7-4 0L5.7 6c-1.2.7-2 2-2 3.5v5c0 1.4.8 2.7 2 3.5l4.3 2.5c1.2.7 2.8.7 4 0l4.3-2.5c1.2-.8 2-2.1 2-3.5Z", "key": "d8dd87963e02ef9108fa73047f3159577676a2e1" }], ["path", { "fill": "currentColor", "d": "m14.378 2.852 4.319 2.511.019.013c1.373.915 2.334 2.433 2.334 4.124v5c0 1.69-.961 3.209-2.334 4.124l-.02.013-4.318 2.51c-1.434.837-3.322.837-4.756 0l-4.319-2.51-.019-.013C3.911 17.709 2.95 16.19 2.95 14.5v-5c0-1.775.948-3.317 2.372-4.148l4.3-2.5c1.433-.836 3.323-.836 4.756 0Zm-.756 1.296c-.966-.564-2.278-.564-3.244 0l-4.3 2.5A3.284 3.284 0 0 0 4.45 9.5v5c0 1.102.631 2.178 1.648 2.863l4.28 2.489c.966.564 2.278.564 3.244 0l4.28-2.489c1.017-.685 1.648-1.76 1.648-2.863v-5c0-1.103-.631-2.178-1.648-2.864l-4.28-2.488Z", "key": "7fe75ade9a436f0568f96926c6edb2e0e08296c9" }], ["path", { "fill": "#fff", "d": "m15.1 11.1-4-2.3c-.6-.4-1.5.1-1.5.8v4.6c0 .8.8 1.3 1.5.9l4-2.3c.7-.4.7-1.3 0-1.7Z", "key": "082cd07fca9971968dba8c0edca93bc3d00a8722" }], ["path", { "fill": "#fff", "d": "m11.492 8.16 3.98 2.289h.001c.571.327.902.894.902 1.5 0 .608-.33 1.175-.902 1.501v.001l-4 2.3c-1.237.706-2.623-.217-2.623-1.551V9.6c0-.687.436-1.211.918-1.472.478-.26 1.147-.338 1.724.032Zm-1.01 1.287c-.118.064-.132.14-.132.153v4.6c0 .139.064.22.127.26.059.035.142.05.25-.01 0 0 0-.001 0 0l4-2.3v-.001c.129-.073.148-.156.148-.2 0-.042-.02-.125-.147-.198h-.002l-4.021-2.313-.021-.014c-.018-.012-.087-.04-.202.023Z", "key": "ff306eaa111bbac2ea830ee4b180763b169c5d79" }]]);
const PlayHexVarB = createMeisterIcons("play-hex-var-b", [["path", { "fill": "currentColor", "d": "m15.1 11.1-4-2.3c-.6-.4-1.5.1-1.5.8v4.6c0 .8.8 1.3 1.5.9l4-2.3c.7-.4.7-1.3 0-1.7Z", "key": "2bc13306f55d090e254362647f47240a9f5d804f" }], ["path", { "fill": "currentColor", "d": "m11.492 8.16 3.98 2.289h.001c.571.327.902.894.902 1.5 0 .608-.33 1.175-.902 1.501v.001l-4 2.3c-1.237.706-2.623-.217-2.623-1.551V9.6c0-.687.436-1.211.918-1.472.478-.26 1.147-.338 1.724.032Zm-1.01 1.287c-.118.064-.132.14-.132.153v4.6c0 .139.064.22.127.26.059.035.142.05.25-.01 0 0 0-.001 0 0l4-2.3v-.001c.129-.073.148-.156.148-.2 0-.042-.02-.125-.147-.198h-.002l-4.021-2.313-.021-.014c-.018-.012-.087-.04-.202.023Z", "key": "9a645ea40b44e3ea8ddcd7290bf53e6ab101dd1b" }], ["path", { "fill": "currentColor", "d": "m14.378 2.852 4.319 2.511.019.013c1.373.915 2.334 2.433 2.334 4.124v5c0 1.69-.961 3.209-2.334 4.124l-.02.013-4.318 2.51c-1.434.837-3.322.837-4.756 0l-4.319-2.51-.019-.013C3.911 17.709 2.95 16.19 2.95 14.5v-5c0-1.775.948-3.317 2.372-4.148l4.3-2.5c1.433-.836 3.323-.836 4.756 0Zm-.756 1.296c-.966-.564-2.278-.564-3.244 0l-4.3 2.5A3.284 3.284 0 0 0 4.45 9.5v5c0 1.102.631 2.178 1.648 2.863l4.28 2.489c.966.564 2.278.564 3.244 0l4.28-2.489c1.017-.685 1.648-1.76 1.648-2.863v-5c0-1.103-.631-2.178-1.648-2.864l-4.28-2.488Z", "key": "8884641cd6437a28971998b86b7258a80a4da953" }]]);
const PlayPause = createMeisterIcons("play-pause", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75ZM14 8.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75ZM10.75 9a.75.75 0 0 0-1.5 0v6a.75.75 0 0 0 1.5 0V9Z", "key": "aa9cac74bdc3977816812ce502b2c9de3ebf6637" }]]);
const PlayPauseB = createMeisterIcons("play-pause-b", [["path", { "fill": "currentColor", "d": "M3 12c0-5 4-9 9-9s9 4 9 9-4 9-9 9-9-4.1-9-9Z", "key": "a7c08bb866eeafdb9b660b4c85c0fa6688e34567" }], ["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 4.491 3.67 8.25 8.25 8.25A8.213 8.213 0 0 0 20.25 12 8.213 8.213 0 0 0 12 3.75ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75c-5.42 0-9.75-4.441-9.75-9.75Z", "key": "0588aef5b688f11fe42ff95c037374d78d49d66e" }], ["path", { "fill": "#fff", "d": "M14 8.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Zm-4 0a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Z", "key": "b30d0c3e45a204e6bda9988a0d7d3315b086bd1a" }]]);
const PlaySqaure = createMeisterIcons("play-sqaure", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v6c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25V9ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9Zm1.872 5.899C9.636 7.442 8.25 8.366 8.25 9.7v4.6c0 1.334 1.386 2.258 2.622 1.551h.002l4.056-2.333.05-.042c.915-.763 1.026-2.274-.064-3l-.02-.014-4.022-2.312-.002-.001ZM9.75 9.7c0-.139.064-.22.127-.26.059-.035.142-.05.25.011l3.97 2.283a.273.273 0 0 1 .103.229.469.469 0 0 1-.142.326l-3.93 2.26c-.11.062-.192.046-.25.01-.064-.038-.128-.12-.128-.259V9.7Z", "key": "1fa150b50ab616d8899bb97a743f0f974e983ee7" }]]);
const PlaySqaureB = createMeisterIcons("play-sqaure-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "af6414eb8dbb623c81ce9760eb07172a4ec027dd" }], ["path", { "fill": "#fff", "d": "m14.5 11.1-4-2.3c-.7-.4-1.5.1-1.5.9v4.6c0 .8.8 1.3 1.5.9l4-2.3c.7-.4.7-1.4 0-1.8Z", "key": "93a0e6bfc4c48017a724d3ca2abc07c569e018db" }]]);
const PlaySquareDashed = createMeisterIcons("play-square-dashed", [["path", { "fill": "currentColor", "d": "M7.977 3.85c.33-.065.673-.1 1.023-.1h1.5a.75.75 0 0 0 0-1.5H9c-.45 0-.89.045-1.317.13a.75.75 0 0 0 .294 1.47Zm5.523-1.6a.75.75 0 0 0 0 1.5H15c.35 0 .693.035 1.023.1a.75.75 0 1 0 .294-1.47A6.72 6.72 0 0 0 15 2.25h-1.5ZM6.088 4.638a.75.75 0 1 0-.836-1.245 6.825 6.825 0 0 0-1.86 1.86.75.75 0 0 0 1.246.835 5.326 5.326 0 0 1 1.45-1.45Zm12.66-1.245a.75.75 0 0 0-.837 1.245 5.325 5.325 0 0 1 1.45 1.45.75.75 0 0 0 1.246-.836 6.826 6.826 0 0 0-1.86-1.86ZM3.85 7.977a.75.75 0 0 0-1.471-.294A6.72 6.72 0 0 0 2.25 9v1.5a.75.75 0 0 0 1.5 0V9c0-.35.035-.692.1-1.023Zm17.77-.294a.75.75 0 0 0-1.472.294c.066.33.101.673.101 1.023v1.5a.75.75 0 0 0 1.5 0V9c0-.45-.045-.89-.13-1.317ZM3.75 13.5a.75.75 0 0 0-1.5 0V15c0 .45.045.89.13 1.317a.75.75 0 1 0 1.47-.294A5.22 5.22 0 0 1 3.75 15v-1.5Zm18 0a.75.75 0 0 0-1.5 0V15c0 .35-.035.693-.1 1.023a.75.75 0 1 0 1.47.294A6.72 6.72 0 0 0 21.75 15v-1.5ZM4.638 17.912a.75.75 0 0 0-1.245.836 6.826 6.826 0 0 0 1.86 1.86.75.75 0 1 0 .835-1.246 5.325 5.325 0 0 1-1.45-1.45Zm15.97.836a.75.75 0 0 0-1.246-.837 5.324 5.324 0 0 1-1.45 1.45.75.75 0 0 0 .836 1.246 6.826 6.826 0 0 0 1.86-1.86ZM7.976 20.149a.75.75 0 0 0-.294 1.471c.427.085.867.13 1.317.13h1.5a.75.75 0 0 0 0-1.5H9c-.35 0-.692-.035-1.023-.1Zm8.34 1.471a.75.75 0 0 0-.294-1.47c-.33.065-.673.1-1.023.1h-1.5a.75.75 0 0 0 0 1.5H15c.45 0 .89-.045 1.317-.13ZM10.872 8.15C9.636 7.442 8.25 8.366 8.25 9.7v4.6c0 1.334 1.386 2.258 2.622 1.551h.002l4.056-2.333.05-.042c.915-.763 1.026-2.274-.064-3l-.02-.014-4.022-2.312-.002-.001ZM9.75 9.7c0-.139.064-.22.127-.26.059-.035.143-.05.25.011l3.97 2.283a.273.273 0 0 1 .103.229.468.468 0 0 1-.142.326l-3.93 2.26c-.11.062-.192.046-.25.01-.064-.038-.128-.12-.128-.259V9.7Z", "key": "17300d00cdc69e51445e922a3e84e4f4d0db320e" }]]);
const PlaySquareDashedB = createMeisterIcons("play-square-dashed-b", [["path", { "fill": "currentColor", "d": "M9 3.75c-.35 0-.692.035-1.023.1a.75.75 0 0 1-.294-1.47A6.72 6.72 0 0 1 9 2.25h1.5a.75.75 0 0 1 0 1.5H9ZM12.75 3a.75.75 0 0 1 .75-.75H15c.45 0 .89.045 1.317.13a.75.75 0 1 1-.294 1.47A5.22 5.22 0 0 0 15 3.75h-1.5a.75.75 0 0 1-.75-.75Zm-6.457.597a.75.75 0 0 1-.205 1.041 5.326 5.326 0 0 0-1.45 1.45.75.75 0 1 1-1.245-.836 6.825 6.825 0 0 1 1.86-1.86.75.75 0 0 1 1.04.205Zm11.414 0a.75.75 0 0 1 1.04-.204 6.826 6.826 0 0 1 1.86 1.86.75.75 0 1 1-1.245.835 5.325 5.325 0 0 0-1.45-1.45.75.75 0 0 1-.205-1.04ZM3.262 7.094a.75.75 0 0 1 .589.883A5.22 5.22 0 0 0 3.75 9v1.5a.75.75 0 0 1-1.5 0V9c0-.45.045-.89.13-1.317a.75.75 0 0 1 .882-.589Zm17.476 0a.75.75 0 0 1 .882.589c.085.427.13.867.13 1.317v1.5a.75.75 0 0 1-1.5 0V9c0-.35-.035-.692-.1-1.023a.75.75 0 0 1 .588-.883ZM3 12.75a.75.75 0 0 1 .75.75V15c0 .35.035.693.1 1.023a.75.75 0 1 1-1.47.294A6.72 6.72 0 0 1 2.25 15v-1.5a.75.75 0 0 1 .75-.75Zm18 0a.75.75 0 0 1 .75.75V15c0 .45-.045.89-.13 1.317a.75.75 0 0 1-1.47-.294c.065-.33.1-.673.1-1.023v-1.5a.75.75 0 0 1 .75-.75ZM3.597 17.707a.75.75 0 0 1 1.041.204 5.325 5.325 0 0 0 1.45 1.45.75.75 0 0 1-.836 1.246 6.826 6.826 0 0 1-1.86-1.86.75.75 0 0 1 .205-1.04Zm16.806 0a.75.75 0 0 1 .204 1.04 6.826 6.826 0 0 1-1.86 1.86.75.75 0 0 1-.835-1.245 5.324 5.324 0 0 0 1.45-1.45.75.75 0 0 1 1.04-.205Zm-13.309 3.03a.75.75 0 0 1 .883-.588c.33.066.673.101 1.023.101h1.5a.75.75 0 0 1 0 1.5H9c-.45 0-.89-.045-1.317-.13a.75.75 0 0 1-.589-.882Zm9.811 0a.75.75 0 0 1-.588.883 6.72 6.72 0 0 1-1.317.13h-1.5a.75.75 0 0 1 0-1.5H15c.35 0 .693-.035 1.023-.1a.75.75 0 0 1 .883.588ZM14.5 11.1l-4-2.3c-.7-.4-1.6.1-1.6.8v4.6c0 .8.8 1.3 1.5.9l4-2.3c.7-.4.7-1.3.1-1.7Z", "key": "3b5c004a3a315df7bb8919a66fc9d4f43ddc40b7" }], ["path", { "fill": "currentColor", "d": "M9.091 8.122a1.857 1.857 0 0 1 1.781.027h.002l4.021 2.313.021.014c1.07.713 1.034 2.301-.143 2.975l-4 2.3c-1.237.707-2.623-.217-2.623-1.551V9.6c0-.691.44-1.217.941-1.478Zm.693 1.33c-.125.065-.134.14-.134.148v4.6c0 .139.064.22.127.26.059.035.142.05.25-.01l4-2.3v-.001c.126-.072.159-.162.161-.228a.22.22 0 0 0-.09-.187l-3.97-2.283a.358.358 0 0 0-.344.002Z", "key": "6e300a50b7fd710cdf2f6332cfa9655c4e88cde2" }]]);
const Popsicle = createMeisterIcons("popsicle", [["path", { "fill": "currentColor", "d": "M7.3 7.865v6.985c0 .986.764 1.75 1.75 1.75h5.9c.986 0 1.75-.764 1.75-1.75v-7a3.945 3.945 0 0 0-3.95-3.95h-1.4c-2.176 0-3.958 1.757-4.05 3.965ZM5.8 7.82c.116-2.985 2.53-5.42 5.55-5.42h1.4a5.445 5.445 0 0 1 5.45 5.45v7a3.226 3.226 0 0 1-3.25 3.25h-5.9a3.226 3.226 0 0 1-3.25-3.25V7.82Z", "key": "8d80e8142c75af025850cc370c4835e2fade1e07" }], ["path", { "fill": "currentColor", "d": "M11 17.25v1.6c0 .794.565 1.25.95 1.25s.95-.456.95-1.25v-1.6h1.5v1.6c0 1.406-1.035 2.75-2.45 2.75-1.415 0-2.45-1.344-2.45-2.75v-1.6H11Zm-.65-9.65a.75.75 0 0 1 .75.75v3.3a.75.75 0 0 1-1.5 0v-3.3a.75.75 0 0 1 .75-.75Zm3.4.1a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Z", "key": "a0017073b6cc377ad44abd791e8e2f375824744b" }]]);
const PopsicleB = createMeisterIcons("popsicle-b", [["path", { "fill": "currentColor", "d": "M17.45 7.85v7c0 1.4-1.1 2.5-2.5 2.5h-5.9c-1.4 0-2.5-1.1-2.5-2.5v-7c0-2.6 2.1-4.7 4.7-4.7h1.4c2.7 0 4.8 2.1 4.8 4.7Z", "key": "7e9ff67eff496e31e891557e4b4e10ecd625c990" }], ["path", { "fill": "currentColor", "d": "M11.25 3.9A3.945 3.945 0 0 0 7.3 7.85v7c0 .986.764 1.75 1.75 1.75h5.9c.986 0 1.75-.764 1.75-1.75v-7c0-2.176-1.754-3.95-4.05-3.95h-1.4ZM5.8 7.85a5.445 5.445 0 0 1 5.45-5.45h1.4c3.104 0 5.55 2.425 5.55 5.45v7a3.226 3.226 0 0 1-3.25 3.25h-5.9a3.226 3.226 0 0 1-3.25-3.25v-7Z", "key": "30bc85b5056c8a4145a4250d9145e58dbb862130" }], ["path", { "fill": "currentColor", "d": "M9.5 16.5h4.9v2.35c0 1.406-1.035 2.75-2.45 2.75-1.415 0-2.45-1.344-2.45-2.75V16.5ZM11 18v.85c0 .794.565 1.25.95 1.25s.95-.456.95-1.25V18H11Z", "key": "963d3a08a6a9033ca3c80672816d3fb1b92eebca" }], ["path", { "fill": "#fff", "d": "M10.35 7.6a.75.75 0 0 1 .75.75v3.3a.75.75 0 0 1-1.5 0v-3.3a.75.75 0 0 1 .75-.75Zm3.4.1a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Z", "key": "a911c2340ae44e3e8a51572e17e176463db0de0a" }]]);
const PowerButton = createMeisterIcons("power-button", [["path", { "fill": "currentColor", "d": "M8.854 5.734a.75.75 0 0 1-.288 1.02C6.286 8.031 4.75 10.39 4.75 13.2c0 3.986 3.264 7.25 7.25 7.25s7.25-3.264 7.25-7.25c0-2.81-1.537-5.169-3.816-6.446a.75.75 0 1 1 .732-1.308c2.72 1.523 4.584 4.364 4.584 7.754 0 4.814-3.936 8.75-8.75 8.75s-8.75-3.936-8.75-8.75c0-3.39 1.863-6.231 4.584-7.754a.75.75 0 0 1 1.02.288Z", "key": "aeede39c1c24470f6cc063385bccd2884a69e127" }], ["path", { "fill": "currentColor", "d": "M12 2.05a.75.75 0 0 1 .75.75v7.3a.75.75 0 1 1-1.5 0V2.8a.75.75 0 0 1 .75-.75Z", "key": "f6ec45e16bf1a68ec309f3e82f2a2b2506c68ff1" }]]);
const Presentation = createMeisterIcons("presentation", [["path", { "fill": "currentColor", "d": "M3.5 3.25a.75.75 0 0 0 0 1.5h.85v7.65a2.33 2.33 0 0 0 2.35 2.35h4.55v1.875L7.55 19.4a.75.75 0 1 0 .9 1.2l2.8-2.1V20a.75.75 0 0 0 1.5 0v-1.5l2.8 2.1a.75.75 0 1 0 .9-1.2l-3.7-2.775V14.75h4.45c1.358 0 2.308-1.167 2.444-2.257l.006-.046V4.75h.85a.75.75 0 0 0 0-1.5h-17Zm13.7 10H6.7a.83.83 0 0 1-.85-.85V4.75h12.3v7.597c-.081.492-.52.903-.95.903Z", "key": "3267f1940e0983932dfcb11c312e38ad52441315" }]]);
const PresentationAlt = createMeisterIcons("presentation-alt", [["path", { "fill": "currentColor", "d": "M4.65 3.15c-.486 0-.95.464-.95.95 0 .486.464.95.95.95h14.7c.515 0 .95-.393.95-.95 0-.486-.464-.95-.95-.95H4.65ZM2.2 4.1c0-1.314 1.136-2.45 2.45-2.45h14.7c1.314 0 2.45 1.136 2.45 2.45 0 1.443-1.165 2.45-2.45 2.45H4.65C3.336 6.55 2.2 5.414 2.2 4.1Z", "key": "f7096894dafa180f135d0da36235deb8461755ed" }], ["path", { "fill": "currentColor", "d": "M4.3 5.05h15.5v9.35c0 1.19-1.016 1.95-2.05 1.95H6.25c-1.154 0-1.95-.977-1.95-1.95V5.05Zm1.5 1.5v7.85a.47.47 0 0 0 .133.31c.084.089.192.14.317.14h11.5c.366 0 .55-.24.55-.45V6.55H5.8Zm6.25 13a.65.65 0 1 0 0 1.3.65.65 0 0 0 0-1.3Zm-2.15.65a2.15 2.15 0 1 1 4.3 0 2.15 2.15 0 0 1-4.3 0Z", "key": "560a9f2f77b4854ef183aa66a0a659f93a193fdc" }], ["path", { "fill": "currentColor", "d": "M12.05 14.85a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Z", "key": "ab1111dcbb3d24c8e1652573693366774a0f7374" }]]);
const PresentationAltB = createMeisterIcons("presentation-alt-b", [["path", { "fill": "currentColor", "d": "M4.65 3.15c-.486 0-.95.464-.95.95 0 .486.464.95.95.95h14.7c.515 0 .95-.393.95-.95 0-.486-.464-.95-.95-.95H4.65ZM2.2 4.1c0-1.314 1.136-2.45 2.45-2.45h14.7c1.314 0 2.45 1.136 2.45 2.45 0 1.443-1.165 2.45-2.45 2.45H4.65C3.336 6.55 2.2 5.414 2.2 4.1Z", "key": "9cfef1e5c841725bb8d4000395e41857304d2c87" }], ["path", { "fill": "currentColor", "d": "M17.75 15.6H6.25c-.7 0-1.2-.6-1.2-1.2V5.8h14v8.6c0 .7-.6 1.2-1.3 1.2Z", "key": "25037a05d5876b6d78cebe17e98bece9ed11b400" }], ["path", { "fill": "currentColor", "d": "M4.3 5.05h15.5v9.35c0 1.19-1.016 1.95-2.05 1.95H6.25c-1.154 0-1.95-.977-1.95-1.95V5.05Zm1.5 1.5v7.85a.47.47 0 0 0 .133.31c.084.089.192.14.317.14h11.5c.366 0 .55-.24.55-.45V6.55H5.8Zm6.25 13a.65.65 0 1 0 0 1.3.65.65 0 0 0 0-1.3Zm-2.15.65a2.15 2.15 0 1 1 4.3 0 2.15 2.15 0 0 1-4.3 0Z", "key": "dc450500d2d3529e70dbcd1ddb625cb87e985328" }], ["path", { "fill": "currentColor", "d": "M12.05 14.85a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Z", "key": "bc315056bf99fc324112b1b272221ffcca4f5995" }]]);
const PresentationAltVarB = createMeisterIcons("presentation-alt-var-b", [["path", { "fill": "currentColor", "d": "M19.35 5.8H4.65c-.9 0-1.7-.8-1.7-1.7 0-.9.8-1.7 1.7-1.7h14.7c.9 0 1.7.8 1.7 1.7 0 1-.8 1.7-1.7 1.7Z", "key": "5aac7e282d05bf81a6cf8ad83d92ff52d24f5aaf" }], ["path", { "fill": "currentColor", "d": "M4.65 3.15c-.486 0-.95.464-.95.95 0 .486.464.95.95.95h14.7c.515 0 .95-.393.95-.95 0-.486-.464-.95-.95-.95H4.65ZM2.2 4.1c0-1.314 1.136-2.45 2.45-2.45h14.7c1.314 0 2.45 1.136 2.45 2.45 0 1.443-1.165 2.45-2.45 2.45H4.65C3.336 6.55 2.2 5.414 2.2 4.1Z", "key": "366a253a3ebf62d8426dc66a1518496bdf9659d8" }], ["path", { "fill": "currentColor", "d": "M4.3 5.05h15.5v9.35c0 1.19-1.016 1.95-2.05 1.95H6.25c-1.154 0-1.95-.977-1.95-1.95V5.05Zm1.5 1.5v7.85a.47.47 0 0 0 .133.31c.084.089.192.14.317.14h11.5c.366 0 .55-.24.55-.45V6.55H5.8Zm6.25 15.05a1.4 1.4 0 1 0 0-2.8 1.4 1.4 0 0 0 0 2.8Z", "key": "49d0560bf0fc033ee26c436689b887ad570f0762" }], ["path", { "fill": "currentColor", "d": "M12.05 19.55a.65.65 0 1 0 0 1.3.65.65 0 0 0 0-1.3Zm-2.15.65a2.15 2.15 0 1 1 4.3 0 2.15 2.15 0 0 1-4.3 0Z", "key": "7d6208337f99ab92b4218eb98df4765e0a54fab2" }], ["path", { "fill": "currentColor", "d": "M12.05 14.85a.75.75 0 0 1 .75.75v3.2a.75.75 0 0 1-1.5 0v-3.2a.75.75 0 0 1 .75-.75Z", "key": "65d07896a48bd35e2c6d49ddfc0bb7f2c237a761" }]]);
const PresentationB = createMeisterIcons("presentation-b", [["path", { "fill": "currentColor", "d": "M17.2 14H6.7c-.9 0-1.6-.7-1.6-1.6V4h13.8v8.4c-.1.8-.8 1.6-1.7 1.6Z", "key": "9947cbb5d80375efea42a8c7f327ad2db4e94589" }], ["path", { "fill": "currentColor", "d": "M4.35 3.25h15.3v9.197l-.006.046c-.136 1.09-1.086 2.257-2.444 2.257H6.7a2.33 2.33 0 0 1-2.35-2.35V3.25Zm1.5 1.5v7.65c0 .486.364.85.85.85h10.5c.43 0 .869-.41.95-.903V4.75H5.85Z", "key": "892a1c498e95271360116c777172bc1142418244" }], ["path", { "fill": "currentColor", "d": "M2.75 4a.75.75 0 0 1 .75-.75h17a.75.75 0 0 1 0 1.5h-17A.75.75 0 0 1 2.75 4ZM12 13.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "b49bbd321e43621a40b2552c66a17b8837f29426" }], ["path", { "fill": "currentColor", "d": "m12 16.063 4.45 3.337a.75.75 0 1 1-.9 1.2L12 17.937 8.45 20.6a.75.75 0 1 1-.9-1.2L12 16.063Z", "key": "ecf668449fd262a3c6f9a60953221acf3a410ff7" }]]);
const PresentationChart = createMeisterIcons("presentation-chart", [["path", { "fill": "currentColor", "d": "M2.75 4a.75.75 0 0 1 .75-.75h17a.75.75 0 0 1 0 1.5h-.85v7.697l-.006.046c-.136 1.09-1.086 2.257-2.444 2.257h-4.45v1.875l3.7 2.775a.75.75 0 1 1-.9 1.2l-2.8-2.1V20a.75.75 0 0 1-1.5 0v-1.5l-2.8 2.1a.75.75 0 1 1-.9-1.2l3.7-2.775V14.75H6.7a2.33 2.33 0 0 1-2.35-2.35V4.75H3.5A.75.75 0 0 1 2.75 4ZM12 13.25h5.2c.43 0 .869-.41.95-.903V4.75H5.85v7.65c0 .486.364.85.85.85H12ZM9.75 10.2a.75.75 0 1 0-1.5 0v.8a.75.75 0 0 0 1.5 0v-.8Zm2.15-2.05a.75.75 0 0 1 .75.75V11a.75.75 0 0 1-1.5 0V8.9a.75.75 0 0 1 .75-.75Zm3.65-.65a.75.75 0 0 0-1.5 0V11a.75.75 0 0 0 1.5 0V7.5Z", "key": "6bbeb511d05f2c5348027d958012ee1feb023c80" }]]);
const PresentationChartB = createMeisterIcons("presentation-chart-b", [["path", { "fill": "currentColor", "d": "M17.2 14H6.7c-.9 0-1.6-.7-1.6-1.6V4h13.8v8.4c-.1.8-.8 1.6-1.7 1.6Z", "key": "d27b851ddc16d23e2e265bd2b0d6712a93f63f8c" }], ["path", { "fill": "currentColor", "d": "M4.35 3.25h15.3v9.197l-.006.046c-.136 1.09-1.086 2.257-2.444 2.257H6.7a2.33 2.33 0 0 1-2.35-2.35V3.25Zm1.5 1.5v7.65c0 .486.364.85.85.85h10.5c.43 0 .869-.41.95-.903V4.75H5.85Z", "key": "5d0811fe6fc439c61a4e03230b530e57a5ec3131" }], ["path", { "fill": "currentColor", "d": "M2.75 4a.75.75 0 0 1 .75-.75h17a.75.75 0 0 1 0 1.5h-17A.75.75 0 0 1 2.75 4ZM12 13.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "8217fc5ec0555918128c4e19669a09e6cb50a094" }], ["path", { "fill": "currentColor", "d": "m12 16.063 4.45 3.337a.75.75 0 1 1-.9 1.2L12 17.937 8.45 20.6a.75.75 0 1 1-.9-1.2L12 16.063Z", "key": "326757048ab1781625edbb992a870e5924f19ff0" }], ["path", { "fill": "#fff", "d": "M9 9.45a.75.75 0 0 1 .75.75v.8a.75.75 0 0 1-1.5 0v-.8A.75.75 0 0 1 9 9.45Zm2.9-1.3a.75.75 0 0 1 .75.75V11a.75.75 0 0 1-1.5 0V8.9a.75.75 0 0 1 .75-.75Zm2.9-1.4a.75.75 0 0 1 .75.75V11a.75.75 0 0 1-1.5 0V7.5a.75.75 0 0 1 .75-.75Z", "key": "2f34f0da461d91fac66f59673f83aa05e6af81c4" }]]);
const Printer = createMeisterIcons("printer", [["path", { "fill": "currentColor", "d": "M8.8 4.5c0-.08.03-.135.074-.177a.27.27 0 0 1 .176-.073h6c.08 0 .135.03.177.074a.27.27 0 0 1 .073.176v3.4c0 .051.005.102.015.15h-6.53A.754.754 0 0 0 8.8 7.9V4.5ZM7.315 8.05A.753.753 0 0 1 7.3 7.9V4.5c0-1.062.885-1.75 1.75-1.75h6c1.062 0 1.75.885 1.75 1.75v3.4a.749.749 0 0 1-.015.15h2.565a2.33 2.33 0 0 1 2.35 2.35v4a2.33 2.33 0 0 1-2.35 2.35H16.6v2.168c.266 1.338-.915 2.332-2.05 2.332h-5.1c-1.214 0-2.25-1.036-2.25-2.25v-2.25H4.65A2.33 2.33 0 0 1 2.3 14.4v-4a2.33 2.33 0 0 1 2.35-2.35h2.665Zm12.035 7.2H16.6v-.75a1.86 1.86 0 0 0-1.85-1.85h-5.7A1.86 1.86 0 0 0 7.2 14.5v.75H4.65a.83.83 0 0 1-.85-.85v-4a.83.83 0 0 1 .85-.85h14.7a.83.83 0 0 1 .85.85v4a.83.83 0 0 1-.85.85Zm-10.3-1.1a.36.36 0 0 0-.35.35V19c0 .386.364.75.75.75h5.1c.185 0 .36-.083.47-.204a.381.381 0 0 0 .103-.364l-.023-.09V14.5a.36.36 0 0 0-.35-.35h-5.7Z", "key": "f16dc1420392b2c32a89cde3cf71186ff498354c" }]]);
const PrinterB = createMeisterIcons("printer-b", [["path", { "fill": "currentColor", "d": "M20.9 10v4c0 .9-.7 1.6-1.6 1.6H16v-1.5c0-.6-.5-1.1-1.1-1.1H9.2c-.6 0-1.1.5-1.1 1.1v1.5H4.7c-.9 0-1.6-.7-1.6-1.6v-4c0-.9.7-1.6 1.6-1.6h14.7c.8 0 1.5.7 1.5 1.6Z", "key": "4a0003320eb46c98fee27b5e7c49589beeae4811" }], ["path", { "fill": "currentColor", "d": "M4.7 9.15a.83.83 0 0 0-.85.85v4c0 .486.364.85.85.85h2.65v-.75a1.86 1.86 0 0 1 1.85-1.85h5.7a1.86 1.86 0 0 1 1.85 1.85v.75h2.55a.83.83 0 0 0 .85-.85v-4c0-.518-.395-.85-.75-.85H4.7ZM2.35 10A2.33 2.33 0 0 1 4.7 7.65h14.7c1.245 0 2.25 1.068 2.25 2.35v4a2.33 2.33 0 0 1-2.35 2.35h-4.05V14.1a.36.36 0 0 0-.35-.35H9.2a.36.36 0 0 0-.35.35v2.25H4.7A2.33 2.33 0 0 1 2.35 14v-4Z", "key": "be2b872f6ab19ff9109124976c597f50e8f07e01" }], ["path", { "fill": "currentColor", "d": "M15.149 13.696c-.036-.033-.103-.073-.243-.053l-.053.007H9.1a.36.36 0 0 0-.35.35v4.5c0 .386.364.75.75.75h5c.386 0 .75-.364.75-.75V14c0-.172-.06-.264-.101-.304Zm1.028-1.092c.382.36.573.868.573 1.396v4.5c0 1.214-1.036 2.25-2.25 2.25h-5c-1.214 0-2.25-1.036-2.25-2.25V14a1.86 1.86 0 0 1 1.85-1.85h5.653c.538-.061 1.047.1 1.424.454ZM8.843 4.843c-.082.082-.093.15-.093.157v2.65h6.5V5c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055H9c-.006 0-.075.01-.157.093Zm-1.06-1.06c.292-.294.723-.533 1.217-.533h6c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v4.15h-9.5V5c0-.494.24-.925.532-1.218Z", "key": "2cfc8bd5d565f86e0be1e8490fbcfdb17529b163" }]]);
const PrinterVarB = createMeisterIcons("printer-var-b", [["path", { "fill": "currentColor", "d": "M4.7 9.15a.83.83 0 0 0-.85.85v4c0 .486.364.85.85.85h2.65v-.75a1.86 1.86 0 0 1 1.85-1.85h5.7a1.86 1.86 0 0 1 1.85 1.85v.75h2.55a.83.83 0 0 0 .85-.85v-4c0-.518-.395-.85-.75-.85H4.7ZM2.35 10A2.33 2.33 0 0 1 4.7 7.65h14.7c1.245 0 2.25 1.068 2.25 2.35v4a2.33 2.33 0 0 1-2.35 2.35h-4.05V14.1a.36.36 0 0 0-.35-.35H9.2a.36.36 0 0 0-.35.35v2.25H4.7A2.33 2.33 0 0 1 2.35 14v-4Z", "key": "60653dcd209a5f4f60f9844cd9e6843324e6928c" }], ["path", { "fill": "currentColor", "d": "M16 14v4.5c0 .8-.7 1.5-1.5 1.5h-5c-.8 0-1.5-.7-1.5-1.5V14c0-.6.5-1.1 1.1-1.1h5.7c.7-.1 1.2.4 1.2 1.1Z", "key": "e36a7b215f6ae75a09c1b1fbedacfc8ab57b041a" }], ["path", { "fill": "currentColor", "d": "M15.149 13.696c-.036-.033-.103-.073-.243-.053l-.053.007H9.1a.36.36 0 0 0-.35.35v4.5c0 .386.364.75.75.75h5c.386 0 .75-.364.75-.75V14c0-.172-.06-.264-.101-.304Zm1.028-1.092c.382.36.573.868.573 1.396v4.5c0 1.214-1.036 2.25-2.25 2.25h-5c-1.214 0-2.25-1.036-2.25-2.25V14a1.86 1.86 0 0 1 1.85-1.85h5.653c.538-.061 1.047.1 1.424.454ZM16 5v3.4H8V5c0-.5.5-1 1-1h6c.6 0 1 .4 1 1Z", "key": "6a0ef2821542961f582f702c739f89dc7bdece53" }], ["path", { "fill": "currentColor", "d": "M8.843 4.843c-.082.082-.093.15-.093.157v2.65h6.5V5c0-.13-.04-.18-.055-.195-.016-.015-.065-.055-.195-.055H9c-.006 0-.075.01-.157.093Zm-1.06-1.06c.292-.294.723-.533 1.217-.533h6c.47 0 .92.16 1.255.495.335.334.495.785.495 1.255v4.15h-9.5V5c0-.494.24-.925.532-1.218Z", "key": "2eb2c3df15b3d5d012da15f3b70f87a934d48cd7" }]]);
const Projector = createMeisterIcons("projector", [["path", { "fill": "currentColor", "d": "M4.3 7.4a.575.575 0 0 0-.55.55v6c0 .366.24.55.45.55h15.5c.286 0 .55-.264.55-.55v-6a.575.575 0 0 0-.55-.55H4.3Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h15.4c1.114 0 2.05.936 2.05 2.05v6c0 1.114-.936 2.05-2.05 2.05H4.2c-1.19 0-1.95-1.016-1.95-2.05v-6Z", "key": "8eab16dd0617bca96ed4d6781ca4d3dd7b282693" }], ["path", { "fill": "currentColor", "d": "M16.6 10.1a.85.85 0 1 0 0 1.7.85.85 0 0 0 0-1.7Zm-2.35.85a2.35 2.35 0 1 1 4.7 0 2.35 2.35 0 0 1-4.7 0Zm-8.5 0a.75.75 0 0 1 .75-.75h4.6a.75.75 0 0 1 0 1.5H6.5a.75.75 0 0 1-.75-.75Zm.35 3.55a.75.75 0 0 1 .75.75v2.1a.75.75 0 0 1-1.5 0v-2.1a.75.75 0 0 1 .75-.75Zm11.7 0a.75.75 0 0 1 .75.75v2.1a.75.75 0 0 1-1.5 0v-2.1a.75.75 0 0 1 .75-.75Z", "key": "cb34619b0d4615fc4cce0d78d439a4e91c1f2d10" }]]);
const ProjectorB = createMeisterIcons("projector-b", [["path", { "fill": "currentColor", "d": "M19.65 6.7H4.15c-.7 0-1.2.5-1.2 1.2v6c0 .7.6 1.3 1.3 1.3h15.5c.7 0 1.3-.6 1.3-1.3v-6c-.1-.7-.7-1.2-1.4-1.2Zm-3.1 5.8c-.9 0-1.6-.7-1.6-1.6 0-.9.7-1.6 1.6-1.6.9 0 1.6.7 1.6 1.6 0 .9-.7 1.6-1.6 1.6Z", "key": "1f6a87bf100b9c8ec01e8a161f2335a0a9169948" }], ["path", { "fill": "currentColor", "d": "M2.2 7.9c0-1.114.836-1.95 1.95-1.95h15.5a2.15 2.15 0 0 1 2.142 1.844l.008.053V13.9c0 1.114-.936 2.05-2.05 2.05H4.25A2.073 2.073 0 0 1 2.2 13.9v-6Zm1.95-.45c-.286 0-.45.164-.45.45v6c0 .286.264.55.55.55h15.5c.286 0 .55-.264.55-.55V7.963a.653.653 0 0 0-.65-.513H4.15Zm12.4 2.6a.83.83 0 0 0-.85.85c0 .486.364.85.85.85a.83.83 0 0 0 .85-.85.83.83 0 0 0-.85-.85Zm-2.35.85a2.33 2.33 0 0 1 2.35-2.35 2.33 2.33 0 0 1 2.35 2.35 2.33 2.33 0 0 1-2.35 2.35 2.33 2.33 0 0 1-2.35-2.35Z", "key": "2e7b9eafabe9b211126efd1a27cbc02193899887" }], ["path", { "fill": "#fff", "d": "M16.55 12.5a1.6 1.6 0 1 0 0-3.2 1.6 1.6 0 0 0 0 3.2Z", "key": "38e65412816a1d4cdb1c0918b66cd1c8e70d1546" }], ["path", { "fill": "#fff", "d": "M16.55 10.05a.85.85 0 1 0 0 1.7.85.85 0 0 0 0-1.7Zm-2.35.85a2.35 2.35 0 1 1 4.7 0 2.35 2.35 0 0 1-4.7 0Zm-8.5 0a.75.75 0 0 1 .75-.75h4.6a.75.75 0 0 1 0 1.5h-4.6a.75.75 0 0 1-.75-.75Z", "key": "002afc5bbd23e6223e59d6b572e3b2a8d97b1ffd" }], ["path", { "fill": "currentColor", "d": "M6.05 14.45a.75.75 0 0 1 .75.75v2.1a.75.75 0 0 1-1.5 0v-2.1a.75.75 0 0 1 .75-.75Zm11.7 0a.75.75 0 0 1 .75.75v2.1a.75.75 0 0 1-1.5 0v-2.1a.75.75 0 0 1 .75-.75Z", "key": "42a4647ee12e62a9a30951a57462f2b2d1b1e128" }]]);
const Pumpkin = createMeisterIcons("pumpkin", [["path", { "fill": "currentColor", "d": "M10.85 8.05C9.379 8.05 8.3 9.2 8.3 10.6v6c0 1.386 1.164 2.55 2.55 2.55h2.3a2.65 2.65 0 0 0 2.65-2.472V10.6c0-1.386-1.164-2.55-2.55-2.55h-2.4ZM6.8 10.6c0-2.2 1.721-4.05 4.05-4.05h2.4c2.214 0 4.05 1.836 4.05 4.05v6.12l-.001.022c-.122 2.202-1.956 3.908-4.149 3.908h-2.3c-2.214 0-4.05-1.836-4.05-4.05v-6Z", "key": "69f646160f9f682281c415bd182be34df3ac4b54" }], ["path", { "fill": "currentColor", "d": "M16.45 9.05h-.9v-1.5h.9A4.548 4.548 0 0 1 21 12.1V15a4.548 4.548 0 0 1-4.55 4.55h-.9v-1.5h.9A3.048 3.048 0 0 0 19.5 15v-2.9a3.048 3.048 0 0 0-3.05-3.05Zm-8.9 0c-1.673 0-3.05 1.351-3.05 3.15v2.9a3.048 3.048 0 0 0 3.05 3.05h.9v1.5h-.9A4.548 4.548 0 0 1 3 15.1v-2.9c0-2.601 2.023-4.65 4.55-4.65h.9v1.5h-.9Zm5.147-1.82v-.002l-.002-.018a5.463 5.463 0 0 1-.01-.402c.002-.27.025-.615.098-.948.074-.341.189-.608.33-.776.12-.14.27-.234.537-.234a.75.75 0 0 0 0-1.5c-.732 0-1.295.307-1.683.766-.364.432-.55.965-.65 1.424a6.26 6.26 0 0 0-.133 1.252 6.947 6.947 0 0 0 .015.527l.003.034v.011l.001.004v.001l.747-.069-.747.07a.75.75 0 1 0 1.494-.14Zm0 .001Z", "key": "82cf4d8f84977cb78d18b8644ff9e188d1617e56" }]]);
const PumpkinB = createMeisterIcons("pumpkin-b", [["path", { "fill": "currentColor", "d": "M10.85 8.05c-.78 0-1.395.306-1.87.78-.442.442-.68 1.043-.68 1.77v6.1c0 .727.238 1.328.68 1.77.466.466 1.178.78 1.87.78h2.3c.78 0 1.395-.305 1.87-.78.442-.442.68-1.043.68-1.77v-6.1c0-.717-.234-1.336-.604-1.793a2.745 2.745 0 0 0-1.846-.757h-2.4Zm-2.93-.28a4.062 4.062 0 0 1 2.93-1.22h2.4c1.108 0 2.196.486 2.93 1.22l.024.024.022.026c.617.74.974 1.711.974 2.78v6.1c0 1.073-.362 2.072-1.12 2.83a4.062 4.062 0 0 1-2.93 1.22h-2.3a4.242 4.242 0 0 1-2.93-1.22c-.758-.758-1.12-1.757-1.12-2.83v-6.1c0-1.073.362-2.072 1.12-2.83Z", "key": "63c37d75fd4d384a68b4fb1cb68eed01b63e3b84" }], ["path", { "fill": "currentColor", "d": "M20.25 12.2v2.9c0 2.1-1.7 3.8-3.8 3.8h-.9c.6-.6.9-1.4.9-2.3v-6c0-.9-.3-1.7-.9-2.3h.9c2.1 0 3.8 1.7 3.8 3.9Z", "key": "6fa5d38e7264f57f4741d9d65e0f3f3523f57a63" }], ["path", { "fill": "currentColor", "d": "M13.74 7.55h2.71C18.977 7.55 21 9.6 21 12.2v2.9a4.548 4.548 0 0 1-4.55 4.55h-2.71l1.28-1.28c.442-.442.68-1.043.68-1.77v-6c0-.727-.238-1.328-.68-1.77l-1.28-1.28Zm3.193 1.538c.18.473.267.984.267 1.512v6c0 .529-.088 1.04-.267 1.512A3.049 3.049 0 0 0 19.5 15.1v-2.9c0-1.622-1.12-2.88-2.567-3.112ZM7.55 16.7c0 .9.3 1.7.9 2.3h-.9c-2.1 0-3.8-1.7-3.8-3.8v-3c0-2.2 1.6-3.9 3.8-3.9h.9c-.6.6-.9 1.4-.9 2.3v6.1Z", "key": "2464c36629367c1ce7cc4a59d351448e62a54535" }], ["path", { "fill": "currentColor", "d": "M7.069 9.085C5.559 9.305 4.5 10.558 4.5 12.2v3a3.049 3.049 0 0 0 2.567 3.012A4.246 4.246 0 0 1 6.8 16.7v-6.1c0-.53.088-1.042.269-1.515ZM3 12.2c0-2.588 1.91-4.65 4.55-4.65h2.71L8.98 8.83c-.442.442-.68 1.043-.68 1.77v6.1c0 .727.238 1.328.68 1.77l1.28 1.28H7.55A4.548 4.548 0 0 1 3 15.2v-3Zm9.697-4.97v-.002l-.002-.018a5.375 5.375 0 0 1-.01-.402c.002-.27.025-.615.098-.948.074-.341.189-.608.33-.776.12-.14.27-.234.537-.234a.75.75 0 0 0 0-1.5c-.732 0-1.295.307-1.683.766-.364.432-.55.965-.65 1.424a6.26 6.26 0 0 0-.133 1.252 6.947 6.947 0 0 0 .015.527l.003.034v.011l.001.004v.001l.747-.069-.747.07a.75.75 0 1 0 1.494-.14Zm0 .001Z", "key": "0de9f194bf3b88c127e11fc26afc265303c749ee" }]]);
const PumpkinVarB = createMeisterIcons("pumpkin-var-b", [["path", { "fill": "currentColor", "d": "M13.15 19.9h-2.3c-1.8 0-3.3-1.5-3.3-3.3v-6c0-1.8 1.4-3.3 3.3-3.3h2.4c1.8 0 3.3 1.5 3.3 3.3v6.1a3.4 3.4 0 0 1-3.4 3.2Z", "key": "6e0ef3072de8dd017399820eba5457d900fc007c" }], ["path", { "fill": "currentColor", "d": "M10.85 8.05C9.379 8.05 8.3 9.2 8.3 10.6v6c0 1.386 1.164 2.55 2.55 2.55h2.3a2.65 2.65 0 0 0 2.65-2.472V10.6c0-1.386-1.164-2.55-2.55-2.55h-2.4ZM6.8 10.6c0-2.2 1.721-4.05 4.05-4.05h2.4c2.214 0 4.05 1.836 4.05 4.05v6.12l-.001.022c-.122 2.202-1.956 3.908-4.149 3.908h-2.3c-2.214 0-4.05-1.836-4.05-4.05v-6Z", "key": "329b939101389bc524369f71228874543f690561" }], ["path", { "fill": "currentColor", "d": "M16.45 9.05h-.9v-1.5h.9A4.548 4.548 0 0 1 21 12.1V15a4.548 4.548 0 0 1-4.55 4.55h-.9v-1.5h.9A3.048 3.048 0 0 0 19.5 15v-2.9a3.048 3.048 0 0 0-3.05-3.05Zm-8.9 0c-1.673 0-3.05 1.351-3.05 3.15v2.9a3.048 3.048 0 0 0 3.05 3.05h.9v1.5h-.9A4.548 4.548 0 0 1 3 15.1v-2.9c0-2.601 2.023-4.65 4.55-4.65h.9v1.5h-.9Zm5.147-1.82v-.002l-.002-.018a5.375 5.375 0 0 1-.01-.402c.002-.27.025-.615.098-.948.074-.341.189-.608.33-.776.12-.14.27-.234.537-.234a.75.75 0 0 0 0-1.5c-.732 0-1.295.307-1.683.766-.364.432-.55.965-.65 1.424a6.26 6.26 0 0 0-.133 1.252 6.947 6.947 0 0 0 .015.527l.003.034v.011l.001.004v.001l.747-.069-.747.07a.75.75 0 1 0 1.494-.14Zm0 .001Z", "key": "4060bdd6427786bdb183c3f476c16c87473e3587" }]]);
const Puzzle = createMeisterIcons("puzzle", [["path", { "fill": "currentColor", "d": "M11.95 3.8c-1.005 0-1.85.783-1.85 1.85 0 .27.067.556.22.865l.543 1.085H6.85c-.612 0-1.15.49-1.15 1.15v1.76c.08-.006.163-.01.25-.01 1.814 0 3.35 1.536 3.35 3.35S7.764 17.2 5.95 17.2c-.081 0-.165-.005-.25-.013v1.863c0 .612.49 1.15 1.15 1.15h10.3c.612 0 1.15-.49 1.15-1.15V8.75c0-.7-.562-1.21-1.182-1.153l-.034.003h-4.048l.543-1.085c.154-.309.221-.595.221-.865 0-.986-.864-1.85-1.85-1.85ZM8.6 5.65c0-1.933 1.555-3.35 3.35-3.35 1.814 0 3.35 1.536 3.35 3.35 0 .151-.01.301-.032.45h1.75c1.563-.12 2.782 1.162 2.782 2.65v10.3c0 1.54-1.262 2.65-2.65 2.65H6.85c-1.54 0-2.65-1.262-2.65-2.65v-3.84l.987.329c.28.093.587.161.763.161.986 0 1.85-.864 1.85-1.85 0-.986-.864-1.85-1.85-1.85-.266 0-.463.062-.763.162l-.987.329V8.75c0-1.54 1.262-2.65 2.65-2.65h1.782a3.172 3.172 0 0 1-.032-.45Z", "key": "d6b4e9a355e0bd06ef66fcbef8b4b772b0103bd8" }]]);
const PuzzleB = createMeisterIcons("puzzle-b", [["path", { "fill": "currentColor", "d": "M19.05 8.75v10.3c0 1.1-.9 1.9-1.9 1.9H6.85c-1.1 0-1.9-.9-1.9-1.9v-2.8c.3.1.7.2 1 .2 1.4 0 2.6-1.2 2.6-2.6 0-1.4-1.2-2.6-2.6-2.6-.4 0-.7.1-1 .2v-2.7c0-1.1.9-1.9 1.9-1.9h2.8c-.2-.4-.3-.8-.3-1.2 0-1.5 1.2-2.6 2.6-2.6 1.4 0 2.6 1.2 2.6 2.6 0 .4-.1.8-.3 1.2h2.8c1.1-.1 2 .8 2 1.9Z", "key": "d1aa38a17cf45f1b50e0ce38522d412f5c5ddf04" }], ["path", { "fill": "currentColor", "d": "M11.95 3.8c-1.005 0-1.85.783-1.85 1.85 0 .27.067.556.22.865l.543 1.085H6.85c-.612 0-1.15.49-1.15 1.15v1.76c.08-.006.163-.01.25-.01 1.814 0 3.35 1.536 3.35 3.35S7.764 17.2 5.95 17.2c-.081 0-.165-.005-.25-.013v1.863c0 .612.49 1.15 1.15 1.15h10.3c.612 0 1.15-.49 1.15-1.15V8.75c0-.7-.562-1.21-1.182-1.153l-.034.003h-4.048l.543-1.085c.154-.309.221-.595.221-.865 0-.986-.864-1.85-1.85-1.85ZM8.6 5.65c0-1.933 1.555-3.35 3.35-3.35 1.814 0 3.35 1.536 3.35 3.35 0 .151-.01.301-.032.45h1.75c1.563-.12 2.782 1.162 2.782 2.65v10.3c0 1.54-1.262 2.65-2.65 2.65H6.85c-1.54 0-2.65-1.262-2.65-2.65v-3.84l.987.329c.28.093.587.161.763.161.986 0 1.85-.864 1.85-1.85 0-.986-.864-1.85-1.85-1.85-.266 0-.463.062-.763.162l-.987.329V8.75c0-1.54 1.262-2.65 2.65-2.65h1.782a3.172 3.172 0 0 1-.032-.45Z", "key": "4b815bfe47377785908830236484b91e878f8d89" }]]);
const Radio = createMeisterIcons("radio", [["path", { "fill": "currentColor", "d": "M15.665 3.153a.75.75 0 0 1-.318 1.012L8.672 7.65h9.351l.024.002c1.825.114 3.703 1.401 3.703 3.348v6.9c0 1.899-1.726 3.35-3.75 3.35H6c-2.024 0-3.75-1.451-3.75-3.35V11c0-1.684 1.358-3.016 3.078-3.296l9.325-4.869a.75.75 0 0 1 1.012.318Zm-9.88 6.005-1.709.892a1.63 1.63 0 0 0-.326.95v6.9c0 .901.874 1.85 2.25 1.85h12c1.376 0 2.25-.949 2.25-1.85V11c0-.849-.912-1.756-2.275-1.85H6c-.073 0-.145.003-.216.008ZM6.75 14.5a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM9 10.75a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z", "key": "8faa422739c9b9dcdcf306a91c096440e20f3644" }]]);
const Radio1 = createMeisterIcons("radio1", [["path", { "fill": "currentColor", "d": "M6 9.15c-1.376 0-2.25.949-2.25 1.85v6.9c0 .902.874 1.85 2.25 1.85h12c1.376 0 2.25-.948 2.25-1.85V11c0-.848-.912-1.756-2.275-1.85H6ZM2.25 11c0-1.899 1.726-3.35 3.75-3.35h12.023l.024.002c1.825.114 3.703 1.401 3.703 3.348v6.9c0 1.899-1.726 3.35-3.75 3.35H6c-2.024 0-3.75-1.451-3.75-3.35V11Z", "key": "df14e34cbd7f95579cb77f45dacb7426eca0a7df" }], ["path", { "fill": "currentColor", "d": "M15.665 3.153a.75.75 0 0 1-.318 1.012l-11.3 5.9a.75.75 0 1 1-.694-1.33l11.3-5.9a.75.75 0 0 1 1.012.318ZM9 12.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM5.25 14.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM16 13.2c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.1.1-.6.2-.7.2Zm0 2c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.2-.5.2Zm0 2c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.1.1-.6.2-.7.2Z", "key": "8fce1c1eecddb91987faf0d519e68a5b3e9f51ba" }]]);
const RadioB = createMeisterIcons("radio-b", [["path", { "fill": "currentColor", "d": "M21 11v6.9c0 1.4-1.3 2.6-3 2.6H6c-1.7 0-3-1.2-3-2.6V11c0-1.4 1.3-2.6 3-2.6h12c1.6.1 3 1.2 3 2.6Z", "key": "c5d7f90cd057c96621ba7f0c205179a8ad7a854c" }], ["path", { "fill": "currentColor", "d": "M6 9.15c-1.376 0-2.25.949-2.25 1.85v6.9c0 .902.874 1.85 2.25 1.85h12c1.376 0 2.25-.948 2.25-1.85V11c0-.848-.912-1.756-2.275-1.85H6ZM2.25 11c0-1.899 1.726-3.35 3.75-3.35h12.023l.024.002c1.825.114 3.703 1.401 3.703 3.348v6.9c0 1.899-1.726 3.35-3.75 3.35H6c-2.024 0-3.75-1.451-3.75-3.35V11Z", "key": "325a05f995b6ac892b7814eacfe9b8464f88d98b" }], ["path", { "fill": "currentColor", "d": "M15.665 3.153a.75.75 0 0 1-.318 1.012l-11.3 5.9a.75.75 0 1 1-.694-1.33l11.3-5.9a.75.75 0 0 1 1.012.318Z", "key": "7c0e8cc3d51da51c54bb4029f16b93d81159f488" }], ["path", { "fill": "#fff", "d": "M9 17.5a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "c6206c4bcfa1afc27d00f407e514c201905489c2" }], ["path", { "fill": "#fff", "d": "M9 12.25a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM5.25 14.5a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0ZM16 13.2c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.1.1-.6.2-.7.2Zm0 2c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.2.1-.4.2-.5.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.2-.5.2Zm0 2c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.1.1-.6.2-.7.2Z", "key": "523915f28f6ec7387225cc22b374495376631ca7" }]]);
const RadioButton = createMeisterIcons("radio-button", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "f8723eeb8c297b3d417ec206a930c806a6e502e1" }], ["path", { "fill": "currentColor", "d": "M12 7.75a4.25 4.25 0 1 0 0 8.5 4.25 4.25 0 0 0 0-8.5ZM6.25 12a5.75 5.75 0 1 1 11.5 0 5.75 5.75 0 0 1-11.5 0Z", "key": "0e6f5e813015272e3bf322e4a10591592e3365ec" }]]);
const RadioButtonB = createMeisterIcons("radio-button-b", [["path", { "fill": "currentColor", "d": "M12 3.75a8.25 8.25 0 1 0 0 16.5 8.25 8.25 0 0 0 0-16.5ZM2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12Z", "key": "fb8bfe53378d0bda29d166b2498908d94686a91a" }], ["path", { "fill": "currentColor", "d": "M12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z", "key": "804978be624f800e24f3044449d6ad97368ad031" }], ["path", { "fill": "currentColor", "d": "M12 7.75a4.25 4.25 0 1 0 0 8.5 4.25 4.25 0 0 0 0-8.5ZM6.25 12a5.75 5.75 0 1 1 11.5 0 5.75 5.75 0 0 1-11.5 0Z", "key": "277c459bb2e2939697f8e64709182df8b443a02a" }]]);
const Rain = createMeisterIcons("rain", [["path", { "fill": "currentColor", "d": "M6.254 9.207C6.694 8.78 7.286 8.55 8 8.55a.75.75 0 0 0 0-1.5c-1.073 0-2.072.362-2.83 1.12l-.024.024-.022.026C4.548 8.91 4.05 9.875 4.05 11A3.909 3.909 0 0 0 8 14.95h8c1.073 0 2.072-.362 2.83-1.12l.024-.024.022-.026c.576-.691 1.074-1.655 1.074-2.78A3.909 3.909 0 0 0 16 7.05a.75.75 0 0 0 0 1.5c1.386 0 2.45 1.064 2.45 2.45 0 .664-.292 1.289-.704 1.793-.44.427-1.032.657-1.746.657H8c-1.386 0-2.45-1.064-2.45-2.45 0-.663.292-1.289.704-1.793Z", "key": "eda3384dc5f46154c21925c638b4acb60fec50e5" }], ["path", { "fill": "currentColor", "d": "M12 4.55A3.262 3.262 0 0 0 8.75 7.8a.75.75 0 0 1-1.5 0A4.762 4.762 0 0 1 12 3.05a4.762 4.762 0 0 1 4.75 4.75.75.75 0 0 1-1.5 0A3.262 3.262 0 0 0 12 4.55ZM8.453 16.593a.75.75 0 0 1-.046 1.06l-1.2 1.1a.75.75 0 0 1-1.014-1.106l1.2-1.1a.75.75 0 0 1 1.06.046Zm2.077 1.977a.75.75 0 0 1 0 1.06l-1.1 1.1a.75.75 0 0 1-1.06-1.06l1.1-1.1a.75.75 0 0 1 1.06 0Zm4.1-2a.75.75 0 0 1 0 1.06l-1.1 1.1a.75.75 0 1 1-1.06-1.06l1.1-1.1a.75.75 0 0 1 1.06 0Zm2.1 2a.75.75 0 0 1 0 1.06l-1.1 1.1a.75.75 0 1 1-1.06-1.06l1.1-1.1a.75.75 0 0 1 1.06 0Z", "key": "5bc0a3374284eb50b51de3e620f881b10d12c410" }]]);
const RainB = createMeisterIcons("rain-b", [["path", { "fill": "currentColor", "d": "M16 7.8c1.8 0 3.2 1.4 3.2 3.2 0 .9-.4 1.7-.9 2.3-.6.6-1.4.9-2.3.9H8c-1.8 0-3.2-1.4-3.2-3.2 0-.9.4-1.7.9-2.3.6-.6 1.4-.9 2.3-.9", "key": "33a2d3137c328b03eab0aae13f0503fdaf2eff17" }], ["path", { "fill": "currentColor", "d": "M6.254 9.207C6.694 8.78 7.286 8.55 8 8.55a.75.75 0 1 0 0-1.5c-1.073 0-2.072.362-2.83 1.12l-.024.024-.022.026C4.548 8.91 4.05 9.875 4.05 11A3.909 3.909 0 0 0 8 14.95h8c1.073 0 2.072-.362 2.83-1.12l.024-.024.022-.026c.576-.691 1.074-1.655 1.074-2.78A3.909 3.909 0 0 0 16 7.05a.75.75 0 0 0 0 1.5c1.386 0 2.45 1.064 2.45 2.45 0 .664-.292 1.289-.704 1.793-.44.427-1.032.657-1.746.657H8c-1.386 0-2.45-1.064-2.45-2.45 0-.663.292-1.289.704-1.793Z", "key": "85700f410e40122beaaee1fbcb08a4cc267d1b82" }], ["path", { "fill": "currentColor", "d": "M8 7.8c0-2.2 1.8-4 4-4s4 1.8 4 4", "key": "b338dda80a9065989cf82c6c9404fa0716ff1a64" }], ["path", { "fill": "currentColor", "d": "M12 4.55A3.262 3.262 0 0 0 8.75 7.8a.75.75 0 0 1-1.5 0A4.762 4.762 0 0 1 12 3.05a4.762 4.762 0 0 1 4.75 4.75.75.75 0 0 1-1.5 0A3.262 3.262 0 0 0 12 4.55ZM8.453 16.593a.75.75 0 0 1-.046 1.06l-1.2 1.1a.75.75 0 0 1-1.014-1.106l1.2-1.1a.75.75 0 0 1 1.06.046Zm2.077 1.977a.75.75 0 0 1 0 1.06l-1.1 1.1a.75.75 0 0 1-1.06-1.06l1.1-1.1a.75.75 0 0 1 1.06 0Zm4.1-2a.75.75 0 0 1 0 1.06l-1.1 1.1a.75.75 0 1 1-1.06-1.06l1.1-1.1a.75.75 0 0 1 1.06 0Zm2.1 2a.75.75 0 0 1 0 1.06l-1.1 1.1a.75.75 0 1 1-1.06-1.06l1.1-1.1a.75.75 0 0 1 1.06 0Z", "key": "b27b4a4729903f301422427048d2a55fa7f14f6a" }]]);
const ReactangleHalf = createMeisterIcons("reactangle-half", [["path", { "fill": "currentColor", "d": "M5.75 7A3.262 3.262 0 0 1 9 3.75h6A3.262 3.262 0 0 1 18.25 7v4.25H5.75V7Zm0 5.75V17A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17v-4.25H5.75ZM9 2.25A4.762 4.762 0 0 0 4.25 7v10A4.762 4.762 0 0 0 9 21.75h6A4.762 4.762 0 0 0 19.75 17V7A4.762 4.762 0 0 0 15 2.25H9Z", "key": "68fa432fe10f7dc86d55ff4066ef7e7fde08541c" }]]);
const ReactangleHalfB = createMeisterIcons("reactangle-half-b", [["path", { "fill": "currentColor", "d": "M19 7v5H5V7c0-2.2 1.8-4 4-4h6c2.2 0 4 1.7 4 4Z", "key": "54907f52d6e2c0a24ba448daaa4598feb8fe7029" }], ["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v4.25h12.5V7c0-1.874-1.452-3.25-3.25-3.25H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6c2.602 0 4.75 2.024 4.75 4.75v5.75H4.25V7Z", "key": "583a69d2c163ad9545201d15657b7e33bf649aee" }], ["path", { "fill": "currentColor", "d": "M4.25 11.25h15.5V17A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17v-5.75Zm1.5 1.5V17A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17v-4.25H5.75Z", "key": "57505cc4db7fd523c33f3a2ba15377ea340eafde" }]]);
const Reel = createMeisterIcons("reel", [["path", { "fill": "currentColor", "d": "M6.25 3.838A3.266 3.266 0 0 0 3.75 7v1.45h2.5V3.838Zm0 6.112h-2.5v4.3h2.5v-4.3Zm0 5.8h-2.5V17a3.266 3.266 0 0 0 2.5 3.162V15.75Zm1.5-12v16.5h8.5V3.75h-8.5ZM20.25 17a3.266 3.266 0 0 1-2.5 3.162V15.75h2.5V17Zm0-2.75h-2.5v-4.3h2.5v4.3Zm0-5.8h-2.5V3.838A3.266 3.266 0 0 1 20.25 7v1.45ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "2aa2309d147ac87827fbaec40c701c56efa1814a" }]]);
const ReelAdd = createMeisterIcons("reel-add", [["path", { "fill": "currentColor", "d": "M6.25 3.338A3.266 3.266 0 0 0 3.75 6.5v1.45h2.5V3.338Zm0 6.112h-2.5v4.3h2.5v-4.3Zm-2.5 7.05v-1.25h2.5v4.412a3.266 3.266 0 0 1-2.5-3.162ZM7 21.25a4.762 4.762 0 0 1-4.75-4.75v-10A4.762 4.762 0 0 1 7 1.75h10a4.762 4.762 0 0 1 4.75 4.75v6a.75.75 0 0 1-1.5 0V9.45h-2.5v3.05a.75.75 0 0 1-1.5 0V3.25h-8.5v16.5H12a.75.75 0 0 1 0 1.5H7ZM20.25 6.5v1.45h-2.5V3.338a3.266 3.266 0 0 1 2.5 3.162ZM17 14.75a.75.75 0 0 1 .75.75v2.25H20a.75.75 0 0 1 0 1.5h-2.25v2.25a.75.75 0 0 1-1.5 0v-2.25H14a.75.75 0 0 1 0-1.5h2.25V15.5a.75.75 0 0 1 .75-.75Z", "key": "1c685bb96578ad187ecdf4ffe7a2517c4ef6151c" }]]);
const ReelBlock = createMeisterIcons("reel-block", [["path", { "fill": "currentColor", "d": "M6.25 3.376a3.266 3.266 0 0 0-2.5 3.161v1.45h2.5V3.376Zm0 6.111h-2.5v4.3h2.5v-4.3Zm-2.5 7.05v-1.25h2.5V19.7a3.266 3.266 0 0 1-2.5-3.161Zm4-13.25h8.5v9.25a.75.75 0 0 0 1.5 0v-3.05h2.5v3.05a.75.75 0 0 0 1.5 0v-6A4.762 4.762 0 0 0 17 1.787H7a4.762 4.762 0 0 0-4.75 4.75v10A4.762 4.762 0 0 0 7 21.288h5a.75.75 0 0 0 0-1.5H7.75v-16.5Zm12.5 4.7h-2.5V3.376a3.266 3.266 0 0 1 2.5 3.161v1.45ZM15.6 19.476l2.824-2.823c-.822-.358-1.764-.205-2.382.404-.642.71-.772 1.658-.441 2.419Zm3.899-1.777-2.823 2.823c.822.358 1.764.205 2.382-.403.642-.71.772-1.659.441-2.42Zm-4.53-1.692c1.406-1.405 3.664-1.373 5.138-.022l.012.01.011.012c1.405 1.405 1.374 3.664.023 5.137l-.011.012-.012.012c-1.405 1.405-3.663 1.373-5.137.022l-.012-.01-.011-.012c-1.405-1.405-1.374-3.664-.023-5.137l.011-.012.012-.012Z", "key": "e1c762bb9fcf9d9facab80bf1fc9b9cba50657a7" }]]);
const ReelCheck = createMeisterIcons("reel-check", [["path", { "fill": "currentColor", "d": "M6.25 3.838A3.266 3.266 0 0 0 3.75 7v1.45h2.5V3.838Zm0 6.112h-2.5v4.3h2.5v-4.3ZM3.75 17v-1.25h2.5v4.412A3.266 3.266 0 0 1 3.75 17ZM7 21.75A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v6a.75.75 0 0 1-1.5 0V9.95h-2.5V13a.75.75 0 0 1-1.5 0V3.75h-8.5v16.5H12a.75.75 0 0 1 0 1.5H7ZM20.25 7v1.45h-2.5V3.838A3.266 3.266 0 0 1 20.25 7Zm.274 9.537a.75.75 0 1 0-1.048-1.074l-3.72 3.63L14.6 17.55a.75.75 0 1 0-1.2.9l1.532 2.043.038.037c.222.223.506.295.73.295.222 0 .504-.071.726-.29l4.098-3.998Z", "key": "3f752c694c2e1e45404ffa6104080a2c429c1898" }]]);
const ReelCode = createMeisterIcons("reel-code", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25a.75.75 0 0 1 0 1.5A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v6a.75.75 0 0 1-1.5 0V7A3.262 3.262 0 0 0 17 3.75H7Z", "key": "1720c80aee3f1ef346c807c3c24854e4251e7f93" }], ["path", { "fill": "currentColor", "d": "M17 2.25a.75.75 0 0 1 .75.75v10a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75ZM6.25 21V3h1.5v18h-1.5Z", "key": "14f4288c96a3dea1cc44a97a6d46c2fec581ba76" }], ["path", { "fill": "currentColor", "d": "M17 8.45h4v1.5h-4v-1.5Zm-14 0h4v1.5H3v-1.5Zm0 5.8h4v1.5H3v-1.5ZM6.25 21a.75.75 0 0 1 .75-.75h5a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1-.75-.75Zm10.68-4.13a.75.75 0 0 1 0 1.06L15.86 19l1.07 1.07a.75.75 0 0 1-1.06 1.06l-1.2-1.2a1.316 1.316 0 0 1-.37-.93c0-.299.097-.658.37-.93l1.2-1.2a.75.75 0 0 1 1.06 0Zm-1.2 2.26Zm3.24-2.26a.75.75 0 0 1 1.06 0l1.2 1.2c.273.272.37.631.37.93 0 .299-.097.658-.37.93l-1.2 1.2a.75.75 0 0 1-1.06-1.06L20.04 19l-1.07-1.07a.75.75 0 0 1 0-1.06Zm1.2 2Z", "key": "8a26295e914fb264580c612a1af7e9b736bce24e" }]]);
const ReelCross = createMeisterIcons("reel-cross", [["path", { "fill": "currentColor", "d": "M6.25 3.788a3.266 3.266 0 0 0-2.5 3.162V8.4h2.5V3.788Zm0 6.112h-2.5v4.3h2.5V9.9Zm-2.5 7.05V15.7h2.5v4.412a3.266 3.266 0 0 1-2.5-3.162ZM7 21.7a4.762 4.762 0 0 1-4.75-4.75v-10A4.762 4.762 0 0 1 7 2.2h10a4.762 4.762 0 0 1 4.75 4.75v6a.75.75 0 0 1-1.5 0V9.9h-2.5v3.05a.75.75 0 0 1-1.5 0V3.7h-8.5v16.5H12a.75.75 0 0 1 0 1.5H7ZM20.25 6.95V8.4h-2.5V3.788a3.266 3.266 0 0 1 2.5 3.162Zm.38 9.27a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 1 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "1406447a7e36fd157c0971e9f3e67b19e960889c" }]]);
const Responsive = createMeisterIcons("responsive", [["path", { "fill": "currentColor", "d": "M6.9 3.2c-1.44 0-2.55 1.163-2.55 2.65v3.589a2.542 2.542 0 0 0-2.1 2.51v6.3A2.542 2.542 0 0 0 4.8 20.8h4.3c.722 0 1.382-.32 1.843-.781.32-.321.577-.743.673-1.218H19.2c1.44 0 2.55-1.163 2.55-2.65V5.85c0-1.36-1.084-2.65-2.55-2.65H6.9Zm4.75 14.1h7.55c.56 0 1.05-.437 1.05-1.15V5.85c0-.64-.516-1.15-1.05-1.15H6.9c-.56 0-1.05.437-1.05 1.15V9.4H9.1a2.542 2.542 0 0 1 2.55 2.55v5.35Zm-7.9-5.35c0-.586.464-1.05 1.05-1.05h4.3c.586 0 1.05.464 1.05 1.05v6.341l.005.042c.019.172-.056.407-.273.624a1.138 1.138 0 0 1-.782.343H4.8c-.586 0-1.05-.464-1.05-1.05v-6.3Z", "key": "a90170953d0c8738b2e4fb4610f0b70173041413" }]]);
const ResponsiveB = createMeisterIcons("responsive-b", [["path", { "fill": "currentColor", "d": "M11 11.8v6.3c0 1-.8 1.9-1.8 1.9H4.8c-1 0-1.8-.8-1.8-1.9v-6.3c0-1 .8-1.8 1.8-1.8h4.3c1 0 1.9.8 1.9 1.8Z", "key": "cc02c1c432fb63ebad9c36e68df164ad4dd68094" }], ["path", { "fill": "currentColor", "d": "M4.8 10.75c-.586 0-1.05.464-1.05 1.05v6.3c0 .713.49 1.15 1.05 1.15h4.4c.534 0 1.05-.51 1.05-1.15v-6.3c0-.534-.51-1.05-1.15-1.05H4.8ZM2.25 11.8A2.543 2.543 0 0 1 4.8 9.25h4.3c1.36 0 2.65 1.084 2.65 2.55v6.3c0 1.36-1.084 2.65-2.55 2.65H4.8c-1.44 0-2.55-1.163-2.55-2.65v-6.3Z", "key": "15acb976556be38e3c6cee92726c93dfba09ec22" }], ["path", { "fill": "currentColor", "d": "M6.8 4.75c-.586 0-1.05.464-1.05 1.05v3.45H9.2a2.543 2.543 0 0 1 2.55 2.55v5.45h7.45c.534 0 1.05-.51 1.05-1.15V5.8c0-.534-.51-1.05-1.15-1.05H6.8ZM4.25 5.8A2.543 2.543 0 0 1 6.8 3.25h12.3c1.36 0 2.65 1.084 2.65 2.55v10.3c0 1.36-1.084 2.65-2.55 2.65h-8.95V11.8c0-.586-.464-1.05-1.05-1.05H4.25V5.8Z", "key": "ba304fec8e8520459a62ad913103f285f13f21b4" }]]);
const ResponsiveVarB = createMeisterIcons("responsive-var-b", [["path", { "fill": "currentColor", "d": "M4.8 10.75c-.586 0-1.05.464-1.05 1.05v6.3c0 .713.49 1.15 1.05 1.15h4.4c.534 0 1.05-.51 1.05-1.15v-6.3c0-.534-.51-1.05-1.15-1.05H4.8ZM2.25 11.8A2.543 2.543 0 0 1 4.8 9.25h4.3c1.36 0 2.65 1.084 2.65 2.55v6.3c0 1.36-1.084 2.65-2.55 2.65H4.8c-1.44 0-2.55-1.163-2.55-2.65v-6.3Z", "key": "31865e65854f9d91c63ed2ca52492f77db3f866e" }], ["path", { "fill": "currentColor", "d": "M21 5.8v10.3c0 1-.8 1.9-1.8 1.9H11v-6.2c0-1-.8-1.8-1.8-1.8H5V5.8C5 4.8 5.8 4 6.8 4h12.3c1 0 1.9.8 1.9 1.8Z", "key": "01b5095c51cf69890d02aaef53b2b5a75137a667" }], ["path", { "fill": "currentColor", "d": "M6.8 4.75c-.586 0-1.05.464-1.05 1.05v3.45H9.2a2.543 2.543 0 0 1 2.55 2.55v5.45h7.45c.534 0 1.05-.51 1.05-1.15V5.8c0-.534-.51-1.05-1.15-1.05H6.8ZM4.25 5.8A2.543 2.543 0 0 1 6.8 3.25h12.3c1.36 0 2.65 1.084 2.65 2.55v10.3c0 1.36-1.084 2.65-2.55 2.65h-8.95V11.8c0-.586-.464-1.05-1.05-1.05H4.25V5.8Z", "key": "e896e1bf71ca83bd855b5ab85086df6b585dde73" }]]);
const Rhombus = createMeisterIcons("rhombus", [["path", { "fill": "currentColor", "d": "M14.42 4.98c-1.307-1.307-3.533-1.307-4.84 0l-4.6 4.6c-1.307 1.307-1.307 3.533 0 4.84l4.6 4.6c1.307 1.307 3.533 1.307 4.84 0l4.6-4.6c1.307-1.307 1.307-3.533 0-4.84l-4.6-4.6Zm-5.9-1.06c1.893-1.893 5.067-1.893 6.96 0l4.6 4.6c1.893 1.893 1.893 5.067 0 6.96l-4.6 4.6c-1.893 1.893-5.068 1.893-6.96 0l-4.6-4.6c-1.893-1.893-1.893-5.068 0-6.96l4.6-4.6Z", "key": "d7b6ecfa7390cfe9cd6cc32469394b13f95f447e" }]]);
const RhombusB = createMeisterIcons("rhombus-b", [["path", { "fill": "currentColor", "d": "m19.55 14.95-4.6 4.6c-1.6 1.6-4.3 1.6-5.9 0l-4.6-4.6c-1.6-1.6-1.6-4.3 0-5.9l4.6-4.6c1.6-1.6 4.3-1.6 5.9 0l4.6 4.6c1.6 1.6 1.6 4.2 0 5.9Z", "key": "83677017641adfe287feb6aa1c84d133986963dd" }], ["path", { "fill": "currentColor", "d": "M14.42 4.98c-1.307-1.307-3.533-1.307-4.84 0l-4.6 4.6c-1.307 1.307-1.307 3.533 0 4.84l4.6 4.6c1.307 1.307 3.533 1.307 4.84 0l4.591-4.592c1.33-1.42 1.305-3.552.009-4.848l-4.6-4.6Zm-5.9-1.06c1.893-1.893 5.067-1.893 6.96 0l4.6 4.6c1.902 1.901 1.88 4.964.016 6.944l-.008.008-4.608 4.608c-1.893 1.893-5.067 1.893-6.96 0l-4.6-4.6c-1.893-1.893-1.893-5.067 0-6.96l4.6-4.6Z", "key": "a3e44abe451bd74010a455335070d88f10c75b0e" }]]);
const Rugby = createMeisterIcons("rugby", [["path", { "fill": "currentColor", "d": "M3.618 15.97c.064 1.278.5 2.36 1.276 3.136.775.775 1.853 1.21 3.127 1.276l.001-.162c0-2.386-1.864-4.25-4.25-4.25h-.154Zm.083-1.5h.071c3.214 0 5.75 2.536 5.75 5.75v.081c.157-.024.316-.052.476-.085 2.128-.44 4.472-1.706 6.492-3.726 2.02-2.02 3.286-4.364 3.726-6.492.022-.11.043-.22.061-.33-.095.002-.189.002-.284.002h-.021c-3.214 0-5.75-2.536-5.75-5.75v-.178a9.1 9.1 0 0 0-.22.043C11.874 4.225 9.53 5.49 7.51 7.51c-2.02 2.02-3.286 4.364-3.725 6.492a9.265 9.265 0 0 0-.085.468Zm15.405-9.576c.804.803 1.242 1.934 1.282 3.27-.12.006-.253.006-.416.006-2.386 0-4.25-1.864-4.25-4.25 0-.115 0-.218.002-.31 1.385.018 2.556.458 3.382 1.284Zm-16.79 8.804c.507-2.453 1.936-5.051 4.133-7.249 2.198-2.197 4.796-3.626 7.25-4.133 2.445-.506 4.846-.105 6.468 1.517 1.622 1.622 2.023 4.023 1.517 6.469-.507 2.453-1.936 5.051-4.133 7.249-2.198 2.197-4.796 3.626-7.25 4.133-2.445.506-4.846.105-6.468-1.517-1.622-1.622-2.023-4.023-1.517-6.469Zm7.726-1.908a.75.75 0 0 1 1.06 0l1.4 1.4a.75.75 0 0 1-1.06 1.06l-1.4-1.4a.75.75 0 0 1 0-1.06Zm3.16-2.1a.75.75 0 1 0-1.06 1.06l1.4 1.4a.75.75 0 1 0 1.06-1.06l-1.4-1.4Z", "key": "de09ed5adfbd1cf9d70adaeacc87e8e6c966b22e" }]]);
const RugbyHelmet = createMeisterIcons("rugby-helmet", [["path", { "fill": "currentColor", "d": "M6.638 6.022C5.16 7.597 4.25 9.615 4.25 11.9c0 2.301.921 4.41 2.38 5.87l.013.012.012.014a7.077 7.077 0 0 0 3.438 2.08l.014.003.014.004c.789.243 1.582-.346 1.627-1.114l-.998-4.69V14c0-.758.255-1.604.982-2.186l.097-.078 6.38-2.292c1.02-.956 1.084-2.39.16-3.314-1.57-1.57-3.582-2.48-5.869-2.48-2.297 0-4.403.918-5.862 2.372ZM5.57 4.97c1.74-1.741 4.232-2.82 6.93-2.82 2.713 0 5.1 1.09 6.93 2.92 1.648 1.648 1.346 4.153-.342 5.6l-.105.09-2.733.982v3.608h3.25c1.062 0 1.75.885 1.75 1.75v3c0 .47-.16.92-.495 1.255-.334.335-.785.495-1.255.495h-1c-1.683 0-2.68-.572-3.225-1.3a2.679 2.679 0 0 1-.515-1.284 1.921 1.921 0 0 1-.008-.106l-.001-.018v-.018l-.001-.014v-.008c0-.001 0-.002.75-.002h-.75v-2.25h-1.877l.377 1.771v.079c0 1.794-1.774 3.16-3.556 2.621a8.577 8.577 0 0 1-4.137-2.503C3.824 17.078 2.75 14.592 2.75 11.9c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008Zm7.018 8.087 2.162-.776v3.069h-2.196l-.303-1.423c.014-.364.13-.662.337-.87Zm3.662 6.031V16.85h3.25c.08 0 .135.03.177.074a.27.27 0 0 1 .073.176v3c0 .13-.04.18-.055.195-.016.015-.066.055-.195.055h-1c-1.317 0-1.82-.428-2.025-.7a1.177 1.177 0 0 1-.225-.562Zm-9-6.488a.75.75 0 1 1 1.5 0 .75.75 0 0 1-1.5 0ZM8 10.35a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "e27cb5e25363cc7e99a4dcd28fb7860789e76a6f" }]]);
const RugbyHelmetB = createMeisterIcons("rugby-helmet-b", [["path", { "fill": "currentColor", "d": "m11.55 13.95 1 4.7c0 1.3-1.3 2.3-2.6 1.9-1.5-.4-2.8-1.2-3.8-2.3-1.6-1.6-2.6-3.9-2.6-6.4 0-2.5 1-4.7 2.6-6.4 1.6-1.4 3.9-2.4 6.4-2.4 2.5 0 4.7 1 6.4 2.7 1.3 1.3 1.1 3.3-.3 4.5l-6.4 2.3c-.5.2-.7.8-.7 1.4Z", "key": "dad3895b6874e674884ad43b92d29c5c6063aeca" }], ["path", { "fill": "currentColor", "d": "M6.671 5.99C5.203 7.564 4.3 9.575 4.3 11.85c0 2.302.921 4.41 2.38 5.87l.013.012.012.014a7.077 7.077 0 0 0 3.438 2.08l.014.003.014.004c.789.243 1.582-.346 1.627-1.114l-.998-4.69v-.079c0-.673.219-1.715 1.171-2.096l.013-.005 6.275-2.255c1.02-.956 1.084-2.39.16-3.314-1.57-1.57-3.582-2.48-5.869-2.48a9.12 9.12 0 0 0-5.879 2.19ZM5.656 4.887A10.614 10.614 0 0 1 12.55 2.3c2.713 0 5.1 1.09 6.93 2.92 1.648 1.648 1.346 4.153-.342 5.6l-.105.09-6.511 2.34c-.027.012-.075.046-.126.158a1.298 1.298 0 0 0-.095.47l.999 4.693v.079c0 1.794-1.774 3.16-3.556 2.621a8.577 8.577 0 0 1-4.137-2.503C3.874 17.028 2.8 14.542 2.8 11.85c0-2.71 1.087-5.09 2.804-6.914l.025-.026.027-.024Z", "key": "273f480c85891653225149b511ab6980550ef644" }], ["path", { "fill": "currentColor", "d": "M14.8 15.3h-2.85v1.5h2.85v2.25h.75l-.75.001v.023a1.759 1.759 0 0 0 .01.142 2.677 2.677 0 0 0 .515 1.284c.546.728 1.542 1.3 3.225 1.3h1c.47 0 .92-.16 1.255-.495.335-.334.495-.785.495-1.255v-3c0-1.062-.885-1.75-1.75-1.75H16.3v-4.35h-1.5v4.35Zm1.5 3.738V16.8h3.25a.27.27 0 0 1 .176.073.228.228 0 0 1 .074.177v3c0 .13-.04.18-.055.195-.016.015-.065.055-.195.055h-1c-1.317 0-1.82-.428-2.025-.7a1.179 1.179 0 0 1-.223-.544l-.002-.018Z", "key": "487e3918e6d0fbc156c41ff073ee35a5eede2531" }], ["path", { "fill": "#fff", "d": "M8.05 14.05a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "25b18a87488f026bc8771ae01ae0b63985d89224" }], ["path", { "fill": "#fff", "d": "M8.05 11.8a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "53d855282fe12b0e7dcaf16473e96c2106ad7448" }]]);
const Ruler = createMeisterIcons("ruler", [["path", { "fill": "currentColor", "d": "M9.45 3.5c-.386 0-.65.264-.65.65v15.7c0 .386.264.65.65.65h5a.791.791 0 0 0 .532-.23c.16-.152.218-.317.218-.42V4.15c0-.386-.264-.65-.65-.65h-5.1Zm-2.15.65C7.3 2.936 8.236 2 9.45 2h5.1c1.214 0 2.15.936 2.15 2.15v15.7c0 .596-.292 1.133-.682 1.505A2.29 2.29 0 0 1 14.45 22h-5a2.117 2.117 0 0 1-2.15-2.15V4.15Z", "key": "151085a8df34ce00f554291867d4945c36e1e595" }], ["path", { "fill": "currentColor", "d": "M7.8 6.55a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm0 3.5a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5h-3.9a.75.75 0 0 1-.75-.75Zm0 3.5a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75Zm0 3.6a.75.75 0 0 1 .75-.75h3.9a.75.75 0 0 1 0 1.5h-3.9a.75.75 0 0 1-.75-.75Z", "key": "da286b38cfbb72a8d8b4f1cafaf30c0e88a3bcc6" }]]);
const RulerDiag = createMeisterIcons("ruler-diag", [["path", { "fill": "currentColor", "d": "M16.174 4.18c-.176-.21-.557-.286-.894.05l-.002.003L4.155 15.255l-.025.021c-.21.176-.286.557.05.894l3.6 3.6c.307.307.733.307 1.04 0L19.844 8.746l.026-.022c.21-.176.286-.557-.05-.894l-3.624-3.624-.022-.026Zm1.128-.989c-.828-.958-2.226-.876-3.081-.023l-.001.002L3.143 14.147c-.961.828-.879 2.228-.023 3.083l3.6 3.6a2.2 2.2 0 0 0 3.16 0L20.86 9.852c.959-.828.876-2.227.021-3.082l-3.579-3.58Z", "key": "88f2abb1421ee9fcc37a448f41954c503cea1c04" }], ["path", { "fill": "currentColor", "d": "M12.92 5.17a.75.75 0 0 1 1.06 0l1.4 1.4a.75.75 0 1 1-1.06 1.06l-1.4-1.4a.75.75 0 0 1 0-1.06Zm-2.5 2.5a.75.75 0 0 1 1.06 0l2.8 2.8a.75.75 0 1 1-1.06 1.06l-2.8-2.8a.75.75 0 0 1 0-1.06Zm-2.5 2.5a.75.75 0 0 1 1.06 0l1.4 1.4a.75.75 0 1 1-1.06 1.06l-1.4-1.4a.75.75 0 0 1 0-1.06Zm-2.5 2.5a.75.75 0 0 1 1.06 0l2.8 2.8a.75.75 0 1 1-1.06 1.06l-2.8-2.8a.75.75 0 0 1 0-1.06Z", "key": "01e0d9c82d56f235ccd676adffdb144152abd3f6" }]]);
const Sanitizer = createMeisterIcons("sanitizer", [["path", { "fill": "currentColor", "d": "M8.25 3A.75.75 0 0 1 9 2.25h5.3c.644 0 1.225.314 1.63.72l1.5 1.5a.75.75 0 0 1-1.06 1.06l-1.5-1.5c-.195-.194-.414-.28-.57-.28h-1.55v.5a3.75 3.75 0 0 1 2.653 2.428c1.394.604 2.347 1.982 2.347 3.622v9.2c0 1.214-1.036 2.25-2.25 2.25h-7c-1.347 0-2.25-1.069-2.25-2.25v-9.2c0-1.548.849-2.863 2.117-3.513.421-1.253 1.517-2.314 2.883-2.576V3.75H9A.75.75 0 0 1 8.25 3Zm8 14.25v-4.6H12.7c-.486 0-.95.465-.95.95v2.7c0 .486.464.95.95.95h3.55Zm0-6.1H12.7c-1.314 0-2.45 1.136-2.45 2.45v2.7c0 1.315 1.136 2.45 2.45 2.45h3.55v.75c0 .386-.364.75-.75.75h-7c-.453 0-.75-.33-.75-.75v-9.2c0-1.386 1.064-2.45 2.45-2.45h3.6c.196 0 .385.021.566.062a.75.75 0 0 0 .43.138c.868.37 1.454 1.222 1.454 2.25v.85Zm-4.35-5.5c-.584 0-1.143.274-1.554.7h3.148c-.41-.438-.98-.7-1.594-.7Z", "key": "e7f56ec5d9c9da28b47002a2dc96adabf09be07a" }]]);
const SanitizerB = createMeisterIcons("sanitizer-b", [["path", { "fill": "currentColor", "d": "M9.364 8.003C8.407 8.41 7.75 9.263 7.75 10.3v9.2c0 .386.364.75.75.75h7c.386 0 .75-.364.75-.75v-.75H12.7c-1.314 0-2.45-1.136-2.45-2.45v-2.7a2.33 2.33 0 0 1 2.35-2.35h3.65v-.95c0-1.029-.646-1.875-1.59-2.287a32.561 32.561 0 0 1-.128-.033c-.315-.08-.505-.13-.832-.13h-3.6c-.258 0-.451.058-.736.153Zm-.482-1.42c.299-.1.696-.233 1.218-.233h3.6c.529 0 .902.098 1.228.183l.154.04.054.013.053.022c1.429.595 2.561 1.939 2.561 3.692v2.45H12.6a.83.83 0 0 0-.85.85v2.7c0 .486.464.95.95.95h5.05v2.25c0 1.214-1.036 2.25-2.25 2.25h-7c-1.214 0-2.25-1.036-2.25-2.25v-9.2c0-1.753 1.132-3.097 2.562-3.692l.025-.01.026-.01.02-.006Z", "key": "676dc38f592ddc3e7d3a86793775771cc8b1229f" }], ["path", { "fill": "currentColor", "d": "M11.9 5.75a2.252 2.252 0 0 0-2.17 1.719.75.75 0 0 1-1.46-.338A3.752 3.752 0 0 1 11.9 4.25a3.752 3.752 0 0 1 3.63 2.881.75.75 0 0 1-1.46.338A2.252 2.252 0 0 0 11.9 5.75Z", "key": "c26329212debda21497734f489c959015428872f" }], ["path", { "fill": "currentColor", "d": "M12.75 3v2h-1.5V3h1.5Z", "key": "d9651e1f9dbdebd0b39cf1ea88c6429fddc65d52" }], ["path", { "fill": "currentColor", "d": "M8.25 3A.75.75 0 0 1 9 2.25h5.3c.644 0 1.225.314 1.63.72l1.5 1.5a.75.75 0 0 1-1.06 1.06l-1.5-1.5c-.195-.194-.414-.28-.57-.28H9A.75.75 0 0 1 8.25 3ZM17 12v6h-4.4c-.9 0-1.7-.8-1.7-1.7v-2.7c0-.9.8-1.7 1.7-1.7H17v.1Z", "key": "e1c0398278de68355e03e13f954a6ef74788c3ef" }], ["path", { "fill": "currentColor", "d": "M12.6 12.65c-.486 0-.95.464-.95.95v2.7c0 .486.464.95.95.95h3.65v-4.6H12.6Zm-2.45.95c0-1.314 1.136-2.45 2.45-2.45h5.15v7.6H12.6c-1.314 0-2.45-1.136-2.45-2.45v-2.7Z", "key": "b9ce0efc0d642b388a89b3a03cb3f7047c7dd811" }]]);
const SanitizerMinimal = createMeisterIcons("sanitizer-minimal", [["path", { "fill": "currentColor", "d": "M9 2.25a.75.75 0 0 0 0 1.5h2.25v.461c-1.366.262-2.462 1.323-2.883 2.576-1.268.65-2.117 1.965-2.117 3.513v9.2c0 1.181.903 2.25 2.25 2.25h7c1.214 0 2.25-1.036 2.25-2.25v-9.2c0-1.64-.953-3.018-2.347-3.622A3.75 3.75 0 0 0 12.75 4.25v-.5h1.55c.156 0 .375.086.57.28l1.5 1.5a.75.75 0 0 0 1.06-1.06l-1.5-1.5c-.405-.406-.986-.72-1.63-.72H9Zm1.346 4.1c.411-.426.97-.7 1.554-.7a2.18 2.18 0 0 1 1.594.7h-3.148Zm4.02 1.562a.75.75 0 0 0 .43.138c.868.37 1.454 1.222 1.454 2.25v9.2c0 .386-.364.75-.75.75h-7c-.453 0-.75-.33-.75-.75v-9.2c0-1.386 1.064-2.45 2.45-2.45h3.6c.196 0 .385.021.566.062Z", "key": "4ab703183a077cdef8fb2bb6158c324f4917cec5" }]]);
const SanitizerMinimalB = createMeisterIcons("sanitizer-minimal-b", [["path", { "fill": "currentColor", "d": "M7 19.5v-9.2c0-1.8 1.4-3.2 3.2-3.2h3.6c1.8 0 3.2 1.4 3.2 3.2v9.2c0 .8-.7 1.5-1.5 1.5h-7c-.9 0-1.5-.7-1.5-1.5Z", "key": "7296fcba9fa21f04356257d17d0d4bde9bd1461a" }], ["path", { "fill": "currentColor", "d": "M10.2 7.85c-1.386 0-2.45 1.064-2.45 2.45v9.2c0 .42.297.75.75.75h7c.386 0 .75-.364.75-.75v-9.2c0-1.386-1.064-2.45-2.45-2.45h-3.6ZM6.25 10.3a3.909 3.909 0 0 1 3.95-3.95h3.6a3.909 3.909 0 0 1 3.95 3.95v9.2c0 1.214-1.036 2.25-2.25 2.25h-7c-1.347 0-2.25-1.069-2.25-2.25v-9.2Z", "key": "399ec2e05ec7bdcc2a70ad6052760d6fa4ef4c1d" }], ["path", { "fill": "currentColor", "d": "M11.9 5.75a2.252 2.252 0 0 0-2.17 1.719.75.75 0 0 1-1.46-.338A3.752 3.752 0 0 1 11.9 4.25a3.752 3.752 0 0 1 3.63 2.881.75.75 0 0 1-1.46.338A2.252 2.252 0 0 0 11.9 5.75Z", "key": "bee3ab359c7f02ae066ba151729184b84d20348d" }], ["path", { "fill": "currentColor", "d": "M12.75 3v2h-1.5V3h1.5Z", "key": "674286e6d3bf063461eb3618b5406c0c26741ca5" }], ["path", { "fill": "currentColor", "d": "M8.25 3A.75.75 0 0 1 9 2.25h5.3c.644 0 1.225.314 1.63.72l1.5 1.5a.75.75 0 0 1-1.06 1.06l-1.5-1.5c-.195-.194-.414-.28-.57-.28H9A.75.75 0 0 1 8.25 3Z", "key": "ad5f11fb6b99deb824fa7ae993e05247e65b7c77" }]]);
const Save = createMeisterIcons("save", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h.75V17a2.756 2.756 0 0 1 2.75-2.75h3A2.756 2.756 0 0 1 16.25 17v3.25H17A3.262 3.262 0 0 0 20.25 17v-6.3c0-.795-.317-1.606-.98-2.27l-3.718-3.717-.016-.02c-.539-.614-1.321-.943-2.236-.943H7Zm9.25 18H7A4.762 4.762 0 0 1 2.25 17V7A4.762 4.762 0 0 1 7 2.25h6.3c1.277 0 2.486.465 3.347 1.436L20.33 7.37c.937.936 1.42 2.125 1.42 3.33V17A4.762 4.762 0 0 1 17 21.75h-.75Zm-1.5-1.5V17c0-.686-.564-1.25-1.25-1.25h-3c-.686 0-1.25.564-1.25 1.25v3.25h5.5ZM12 7.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Z", "key": "f56c2c89f7aff928149d3126d95d71794b143b76" }]]);
const SaveB = createMeisterIcons("save-b", [["path", { "fill": "currentColor", "d": "m19.8 7.85-3.7-3.7c-.8-.8-1.8-1.2-2.8-1.2H7c-2.2 0-4 1.8-4 4v10c0 2.2 1.8 4 4 4h1.5v-4c0-1.1.9-2 2-2h3c1.1 0 2 .9 2 2v4H17c2.2 0 4-1.8 4-4v-6.3c0-1.1-.5-2.1-1.2-2.8Zm-7.8 2.2c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5-.7 1.5-1.5 1.5Z", "key": "8e7b8f48befb86b25afe4de47a567f3135e3ab46" }], ["path", { "fill": "currentColor", "d": "M2.25 6.95A4.762 4.762 0 0 1 7 2.2h6.3c1.205 0 2.394.484 3.33 1.42l3.7 3.7c.819.818 1.42 2.002 1.42 3.33v6.3A4.762 4.762 0 0 1 17 21.7h-2.25v-4.75c0-.686-.564-1.25-1.25-1.25h-3c-.686 0-1.25.564-1.25 1.25v4.75H7a4.762 4.762 0 0 1-4.75-4.75v-10ZM7 3.7a3.262 3.262 0 0 0-3.25 3.25v10A3.262 3.262 0 0 0 7 20.2h.75v-3.25a2.756 2.756 0 0 1 2.75-2.75h3a2.756 2.756 0 0 1 2.75 2.75v3.25H17a3.262 3.262 0 0 0 3.25-3.25v-6.3c0-.872-.399-1.688-.98-2.27l-3.7-3.7c-.664-.663-1.475-.98-2.27-.98H7Zm5 4.1c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25S13.214 10.8 12 10.8 9.75 9.764 9.75 8.55Z", "key": "ae738174814ae04922943f363aa8e6a13483c12e" }], ["path", { "fill": "#fff", "d": "M12 7.8a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm5.75 8.5v4h-7v-4c0-1.1.9-2 2-2h3c1 0 2 .8 2 2Z", "key": "bc0ab59006f97b4c11cea0cac7756b8438a806cc" }], ["path", { "fill": "#fff", "d": "M10.5 15.8c-.686 0-1.25.564-1.25 1.25v3.25h5.5v-3.25c0-.738-.615-1.25-1.25-1.25h-3Zm-2.75 1.25a2.756 2.756 0 0 1 2.75-2.75h3c1.365 0 2.75 1.088 2.75 2.75v4.75h-8.5v-4.75Z", "key": "a2bfe5b855c22ef75d06dcd78b58e1bbf5feb8a0" }]]);
const SaveVarB = createMeisterIcons("save-var-b", [["path", { "fill": "currentColor", "d": "M2.25 6.95A4.762 4.762 0 0 1 7 2.2h6.3c1.205 0 2.394.484 3.33 1.42l3.7 3.7c.819.818 1.42 2.002 1.42 3.33v6.3A4.762 4.762 0 0 1 17 21.7h-2.25v-4.75c0-.686-.564-1.25-1.25-1.25h-3c-.686 0-1.25.564-1.25 1.25v4.75H7a4.762 4.762 0 0 1-4.75-4.75v-10ZM7 3.7a3.262 3.262 0 0 0-3.25 3.25v10A3.262 3.262 0 0 0 7 20.2h.75v-3.25a2.756 2.756 0 0 1 2.75-2.75h3a2.756 2.756 0 0 1 2.75 2.75v3.25H17a3.262 3.262 0 0 0 3.25-3.25v-6.3c0-.872-.399-1.688-.98-2.27l-3.7-3.7c-.664-.663-1.475-.98-2.27-.98H7Zm5 4.1c-.386 0-.75.364-.75.75s.364.75.75.75.75-.364.75-.75-.364-.75-.75-.75Zm-2.25.75c0-1.214 1.036-2.25 2.25-2.25s2.25 1.036 2.25 2.25S13.214 10.8 12 10.8 9.75 9.764 9.75 8.55Z", "key": "38665a67fb91e9f20dccb5cbd2e9ec772a251abb" }], ["path", { "fill": "currentColor", "d": "M12 10.05a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "55d241655cdf82e6aec308fbc89f087bf5b60ea9" }], ["path", { "fill": "currentColor", "d": "M12 7.8a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm5.75 8.5v4h-7v-4c0-1.1.9-2 2-2h3c1 0 2 .8 2 2Z", "key": "0f5fb935265d36673f86cf0541adc38c19d54ce3" }], ["path", { "fill": "currentColor", "d": "M10.5 15.8c-.686 0-1.25.564-1.25 1.25v3.25h5.5v-3.25c0-.738-.615-1.25-1.25-1.25h-3Zm-2.75 1.25a2.756 2.756 0 0 1 2.75-2.75h3c1.365 0 2.75 1.088 2.75 2.75v4.75h-8.5v-4.75Z", "key": "3fe35cb0398d7516b4a61d852dc1d215871547f7" }]]);
const Scan = createMeisterIcons("scan", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Z", "key": "bd65405d8208665ee4844a72d6be6a65f8f6db9e" }]]);
const ScanAdd = createMeisterIcons("scan-add", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2ZM12 8.75a.75.75 0 0 1 .75.75v1.75h1.65a.75.75 0 0 1 0 1.5h-1.65v1.65a.75.75 0 0 1-1.5 0v-1.65H9.5a.75.75 0 0 1 0-1.5h1.75V9.5a.75.75 0 0 1 .75-.75Z", "key": "59731e2f54aee3e4114124ea86fdb92290bcc0b1" }]]);
const ScanBlock = createMeisterIcons("scan-block", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Zm9.535-7.446c-.994-.59-2.327-.451-3.255.476l-.01.01-.01.01c-.892.828-1.06 2.154-.442 3.22l3.717-3.716Zm1.047 1.075-3.715 3.715c1.018.595 2.4.444 3.233-.454l.02-.02.02-.02c.892-.828 1.06-2.155.442-3.221Zm.608-1.65c-1.605-1.717-4.282-1.688-5.96-.02-1.718 1.606-1.689 4.283-.02 5.962 1.592 1.702 4.374 1.706 5.97.01 1.708-1.607 1.675-4.276.01-5.952Z", "key": "32f1af0ac3acea06c957edba2449f23cda73b26f" }]]);
const ScanCamera = createMeisterIcons("scan-camera", [["path", { "fill": "currentColor", "d": "M5 3.75c-.686 0-1.25.564-1.25 1.25v2a.75.75 0 0 1-1.5 0V5A2.756 2.756 0 0 1 5 2.25h2a.75.75 0 0 1 0 1.5H5ZM16.25 3a.75.75 0 0 1 .75-.75h2A2.756 2.756 0 0 1 21.75 5v2a.75.75 0 0 1-1.5 0V5c0-.686-.564-1.25-1.25-1.25h-2a.75.75 0 0 1-.75-.75Zm5.5 14a.75.75 0 0 0-1.5 0v2c0 .686-.564 1.25-1.25 1.25h-2a.75.75 0 0 0 0 1.5h2A2.756 2.756 0 0 0 21.75 19v-2ZM3 16.25a.75.75 0 0 1 .75.75v2c0 .686.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 19v-2a.75.75 0 0 1 .75-.75Zm4.05-5.55c0-.876.603-1.576 1.429-1.722A.75.75 0 0 0 9.55 8.3v-.7a.36.36 0 0 1 .35-.35h4a.36.36 0 0 1 .35.35v.7a.75.75 0 0 0 .8.748.76.76 0 0 0 .05.002c.986 0 1.75.764 1.75 1.75v3.7c0 .986-.764 1.75-1.75 1.75H8.8c-.986 0-1.75-.764-1.75-1.75v-3.8Zm-1.5 0a3.222 3.222 0 0 1 2.501-3.166A1.86 1.86 0 0 1 9.9 5.75h4a1.86 1.86 0 0 1 1.85 1.85v.013a3.222 3.222 0 0 1 2.6 3.187v3.7a3.226 3.226 0 0 1-3.25 3.25H8.8a3.226 3.226 0 0 1-3.25-3.25v-3.8Zm5.3 1.9a1.15 1.15 0 1 1 2.3 0 1.15 1.15 0 0 1-2.3 0ZM12 9.95a2.65 2.65 0 1 0 0 5.3 2.65 2.65 0 0 0 0-5.3Z", "key": "f11379d900e02ca79758fbc53d21c18c3cb01132" }]]);
const ScanCameraB = createMeisterIcons("scan-camera-b", [["path", { "fill": "currentColor", "d": "M5 3.75c-.686 0-1.25.564-1.25 1.25v2a.75.75 0 0 1-1.5 0V5A2.756 2.756 0 0 1 5 2.25h2a.75.75 0 0 1 0 1.5H5ZM16.25 3a.75.75 0 0 1 .75-.75h2A2.756 2.756 0 0 1 21.75 5v2a.75.75 0 0 1-1.5 0V5c0-.686-.564-1.25-1.25-1.25h-2a.75.75 0 0 1-.75-.75ZM21 16.25a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v2c0 .686.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 19v-2a.75.75 0 0 1 .75-.75ZM15 8.3v-.8c0-.6-.5-1.1-1.1-1.1h-4c-.6 0-1.1.5-1.1 1.1v.8c-1.4 0-2.5 1.1-2.5 2.5v3.7c0 1.4 1.1 2.5 2.5 2.5H15c1.4 0 2.5-1.1 2.5-2.5v-3.8c0-1.3-1.1-2.4-2.5-2.4Zm-3 6.2c-1 0-1.9-.8-1.9-1.9 0-1 .8-1.9 1.9-1.9 1.1 0 1.9.8 1.9 1.9-.1 1-.9 1.9-1.9 1.9Z", "key": "9fbfa14c269cc7f35e04e66c34ee929701e626ac" }], ["path", { "fill": "currentColor", "d": "M8.05 7.5A1.86 1.86 0 0 1 9.9 5.65h4a1.86 1.86 0 0 1 1.85 1.85v.135c1.433.329 2.5 1.58 2.5 3.065v3.8A3.226 3.226 0 0 1 15 17.75H8.8a3.226 3.226 0 0 1-3.25-3.25v-3.7a3.222 3.222 0 0 1 2.5-3.165V7.5Zm1.85-.35a.36.36 0 0 0-.35.35v1.55H8.8c-.986 0-1.75.764-1.75 1.75v3.7c0 .986.764 1.75 1.75 1.75H15c.986 0 1.75-.764 1.75-1.75v-3.8c0-.866-.744-1.65-1.75-1.65h-.75V7.5a.36.36 0 0 0-.35-.35h-4Zm2.1 4.3c-.66 0-1.15.538-1.15 1.15 0 .66.538 1.15 1.15 1.15.517 0 1.063-.496 1.15-1.187-.017-.666-.477-1.113-1.15-1.113ZM9.35 12.6c0-1.388 1.11-2.65 2.65-2.65 1.514 0 2.65 1.136 2.65 2.65v.037l-.004.038c-.129 1.288-1.172 2.575-2.646 2.575-1.388 0-2.65-1.11-2.65-2.65Z", "key": "242b3edbcebd77a3d9bbf2965d1d029c3aec9551" }], ["path", { "fill": "#fff", "d": "M11.9 11.45c-.66 0-1.15.538-1.15 1.15 0 .686.464 1.15 1.15 1.15.66 0 1.15-.538 1.15-1.15 0-.612-.49-1.15-1.15-1.15ZM9.25 12.6c0-1.388 1.11-2.65 2.65-2.65 1.54 0 2.65 1.262 2.65 2.65s-1.11 2.65-2.65 2.65c-1.514 0-2.65-1.136-2.65-2.65Z", "key": "ad52016b9631154fdc9c9883d08637ae1a291203" }]]);
const ScanCheck = createMeisterIcons("scan-check", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Z", "key": "41b4bf4d25351497a198b13ed0b8999ac7fc5d52" }], ["path", { "stroke": "#000", "stroke-linecap": "round", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "m9.5 11.9 1.2 1.6c.1.1.3.1.3 0l3.3-3.2", "key": "9ac786b0ebc4d2525af358d56f048f3115ca2450" }]]);
const ScanCode = createMeisterIcons("scan-code", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Zm6.88-7.43a.75.75 0 0 1 0 1.06L9.26 12l1.37 1.37a.75.75 0 1 1-1.06 1.06l-1.4-1.4c-.27-.27-.445-.63-.445-1.03s.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Zm3.7-.1a.75.75 0 1 0-1.06 1.06l1.37 1.37-1.37 1.37a.75.75 0 1 0 1.06 1.06l1.4-1.4c.27-.27.445-.63.445-1.03s-.174-.76-.445-1.03l-1.4-1.4Z", "key": "28c34cef62a1a4f7d4326fe16e675ec4ecf24b72" }]]);
const ScanCross = createMeisterIcons("scan-cross", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Zm10.48-7.33a.75.75 0 0 1 0 1.06l-1.22 1.22 1.22 1.22a.75.75 0 0 1-1.06 1.06l-1.22-1.22-1.22 1.22a.75.75 0 1 1-1.06-1.06l1.22-1.22-1.22-1.22a.75.75 0 0 1 1.06-1.06l1.22 1.22 1.22-1.22a.75.75 0 0 1 1.06 0Z", "key": "146c09d46ea8b9f21b907fec9c4e6ceba8e256e4" }]]);
const ScanKey = createMeisterIcons("scan-key", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Zm5.05-4.25a1.75 1.75 0 1 0 1.438.753.745.745 0 0 1-.441-.442 1.742 1.742 0 0 0-.997-.311Zm1.712-1.013A3.25 3.25 0 1 0 11.57 12.8l2.458-2.412.641.642a.75.75 0 1 0 1.061-1.06l-.632-.632.797-.782L17.07 9.73a.75.75 0 1 0 1.06-1.06l-1.695-1.695v-.001l-.01-.009-.595-.595a.75.75 0 1 0-1.06 1.06l.064.065-1.142 1.12a.75.75 0 0 0-.37.365l-2.81 2.757Z", "key": "1c3df1d52e9cfd955c23ea9d6a1bf05e362feef6" }]]);
const ScanKeyB = createMeisterIcons("scan-key-b", [["path", { "fill": "currentColor", "d": "M5 3.75c-.686 0-1.25.564-1.25 1.25v2a.75.75 0 0 1-1.5 0V5A2.756 2.756 0 0 1 5 2.25h2a.75.75 0 0 1 0 1.5H5ZM16.25 3a.75.75 0 0 1 .75-.75h2A2.756 2.756 0 0 1 21.75 5v2a.75.75 0 0 1-1.5 0V5c0-.686-.564-1.25-1.25-1.25h-2a.75.75 0 0 1-.75-.75ZM21 16.25a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v2c0 .686.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 19v-2a.75.75 0 0 1 .75-.75Zm5.8.75a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z", "key": "c94784723b77592145040bcb79443bb6c2311d33" }], ["path", { "fill": "currentColor", "d": "M8.8 12.75a1.75 1.75 0 1 0 0 3.5 1.75 1.75 0 0 0 0-3.5ZM5.55 14.5a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0Z", "key": "646d1e8e6cf49a6affca593ea95baf4e8d373027" }], ["path", { "fill": "currentColor", "d": "M16.435 6.975a.75.75 0 0 1-.01 1.06l-5.4 5.3a.75.75 0 0 1-1.05-1.07l5.4-5.3a.75.75 0 0 1 1.06.01Z", "key": "675ccab30e5feed456e93507f7f46e0520f6162a" }], ["path", { "fill": "currentColor", "d": "M14.77 6.37a.75.75 0 0 1 1.06 0l2.3 2.3a.75.75 0 1 1-1.06 1.06l-2.3-2.3a.75.75 0 0 1 0-1.06Zm-1.3 2.4a.75.75 0 0 1 1.06 0l1.2 1.2a.75.75 0 1 1-1.06 1.06l-1.2-1.2a.75.75 0 0 1 0-1.06Z", "key": "8c44b3b921222c13eba19ff2ff3a4f537a05b000" }]]);
const ScanLock = createMeisterIcons("scan-lock", [["path", { "fill": "currentColor", "d": "M5 3.75c-.686 0-1.25.564-1.25 1.25v2a.75.75 0 0 1-1.5 0V5A2.756 2.756 0 0 1 5 2.25h2a.75.75 0 0 1 0 1.5H5ZM9.95 8.2c0-1.103.881-2.05 2.05-2.05.607 0 1.115.225 1.47.58.354.355.58.862.58 1.47v.082a4.757 4.757 0 0 0-.55-.032h-3.1a4.76 4.76 0 0 0-.45.021V8.2Zm-1.5.47V8.2c0-1.897 1.518-3.55 3.55-3.55.992 0 1.885.374 2.53 1.02.645.645 1.02 1.537 1.02 2.53v.517A4.763 4.763 0 0 1 18.25 13v2c0 2.114-1.636 3.75-3.75 3.75H9.4c-2.13 0-3.75-1.752-3.75-3.75v-2a4.764 4.764 0 0 1 2.8-4.33ZM7.15 13a3.262 3.262 0 0 1 3.25-3.25h3.1A3.262 3.262 0 0 1 16.75 13v2c0 1.286-.964 2.25-2.25 2.25H9.4A2.259 2.259 0 0 1 7.15 15v-2ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Z", "key": "d4e5debf035617f2b4b47c0b4803191174cc48c4" }]]);
const ScanLockB = createMeisterIcons("scan-lock-b", [["path", { "fill": "currentColor", "d": "M6.4 15v-2c0-2.2 1.8-4 4-4h3.1c2.2 0 4 1.8 4 4v2c0 1.7-1.3 3-3 3H9.4c-1.7 0-3-1.4-3-3Z", "key": "e81c69415cce50fbd59d8c54eebc88068b4ddc2e" }], ["path", { "fill": "currentColor", "d": "M10.4 9.75A3.262 3.262 0 0 0 7.15 13v2c0 1.202.98 2.25 2.25 2.25h5.1c1.286 0 2.25-.964 2.25-2.25v-2a3.262 3.262 0 0 0-3.25-3.25h-3.1ZM5.65 13a4.762 4.762 0 0 1 4.75-4.75h3.1A4.762 4.762 0 0 1 18.25 13v2c0 2.114-1.636 3.75-3.75 3.75H9.4c-2.13 0-3.75-1.752-3.75-3.75v-2Z", "key": "7151d3ce92c19f1957559f4e6b69a237c822d43d" }], ["path", { "fill": "currentColor", "d": "M12 6.15c-1.168 0-2.05.947-2.05 2.05v.7h-1.5v-.7c0-1.897 1.518-3.55 3.55-3.55.992 0 1.885.375 2.53 1.02.645.645 1.02 1.537 1.02 2.53v.7h-1.5v-.7c0-.607-.226-1.115-.58-1.47-.355-.355-.863-.58-1.47-.58Zm-7-2.4c-.686 0-1.25.564-1.25 1.25v2a.75.75 0 0 1-1.5 0V5A2.756 2.756 0 0 1 5 2.25h2a.75.75 0 0 1 0 1.5H5ZM16.25 3a.75.75 0 0 1 .75-.75h2A2.756 2.756 0 0 1 21.75 5v2a.75.75 0 0 1-1.5 0V5c0-.686-.564-1.25-1.25-1.25h-2a.75.75 0 0 1-.75-.75ZM21 16.25a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v2c0 .686.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 19v-2a.75.75 0 0 1 .75-.75Z", "key": "ae164e5e518117c234bd4b00299a590db454abbd" }]]);
const ScanSearch = createMeisterIcons("scan-search", [["path", { "fill": "currentColor", "d": "M3.75 5c0-.686.564-1.25 1.25-1.25h2a.75.75 0 0 0 0-1.5H5A2.756 2.756 0 0 0 2.25 5v2a.75.75 0 0 0 1.5 0V5ZM17 2.25a.75.75 0 0 0 0 1.5h2c.686 0 1.25.564 1.25 1.25v2a.75.75 0 0 0 1.5 0V5A2.756 2.756 0 0 0 19 2.25h-2Zm4 14a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75ZM3.75 17a.75.75 0 0 0-1.5 0v2A2.756 2.756 0 0 0 5 21.75h2a.75.75 0 0 0 0-1.5H5c-.686 0-1.25-.564-1.25-1.25v-2Zm7.95-8.85a3.55 3.55 0 1 0 0 7.1 3.55 3.55 0 0 0 0-7.1ZM6.65 11.7a5.05 5.05 0 1 1 9.112 3.001l1.268 1.268a.75.75 0 0 1-1.06 1.061l-1.27-1.268A5.05 5.05 0 0 1 6.65 11.7Z", "key": "443d0bab74f077375cf89c872d9335b34504c61a" }]]);
const ScanSearchB = createMeisterIcons("scan-search-b", [["path", { "fill": "currentColor", "d": "M5 3.75c-.686 0-1.25.564-1.25 1.25v2a.75.75 0 0 1-1.5 0V5A2.756 2.756 0 0 1 5 2.25h2a.75.75 0 0 1 0 1.5H5ZM16.25 3a.75.75 0 0 1 .75-.75h2A2.756 2.756 0 0 1 21.75 5v2a.75.75 0 0 1-1.5 0V5c0-.686-.564-1.25-1.25-1.25h-2a.75.75 0 0 1-.75-.75ZM21 16.25a.75.75 0 0 1 .75.75v2A2.756 2.756 0 0 1 19 21.75h-2a.75.75 0 0 1 0-1.5h2c.686 0 1.25-.564 1.25-1.25v-2a.75.75 0 0 1 .75-.75Zm-18 0a.75.75 0 0 1 .75.75v2c0 .686.564 1.25 1.25 1.25h2a.75.75 0 0 1 0 1.5H5A2.756 2.756 0 0 1 2.25 19v-2a.75.75 0 0 1 .75-.75Zm8.7-.25a4.3 4.3 0 1 0 0-8.6 4.3 4.3 0 0 0 0 8.6Z", "key": "e0c5667f0ee9072a68cb31389c14a36d8c132db5" }], ["path", { "fill": "currentColor", "d": "M11.7 8.15a3.55 3.55 0 1 0 0 7.1 3.55 3.55 0 0 0 0-7.1ZM6.65 11.7a5.05 5.05 0 1 1 10.1 0 5.05 5.05 0 0 1-10.1 0Z", "key": "3400c42a436c85402c458a7dbba342d72de594f7" }], ["path", { "fill": "currentColor", "d": "M14.37 14.37a.75.75 0 0 1 1.06 0l1.6 1.6a.75.75 0 1 1-1.06 1.06l-1.6-1.6a.75.75 0 0 1 0-1.06Z", "key": "203725468d5146669eb2168f062c9e59a1425c36" }]]);
const Scooter = createMeisterIcons("scooter", [["path", { "fill": "currentColor", "d": "M12 3.3a2.25 2.25 0 1 0 2.172 1.66.744.744 0 0 1-.118-.329A2.25 2.25 0 0 0 12 3.3Zm3.318.5a3.75 3.75 0 0 0-6.635 0H6a.75.75 0 0 0 0 1.5h2.258a3.805 3.805 0 0 0 .042.864C6.995 6.811 6.15 8.16 6.15 9.75v3.7c0 2.273 1.234 4.146 3.1 5.119v.881A2.756 2.756 0 0 0 12 22.2a2.756 2.756 0 0 0 2.75-2.75v-.992a5.8 5.8 0 0 0 2.9-5.008v-3.7c0-1.422-.76-2.78-1.968-3.483a3.77 3.77 0 0 0 .06-.967H18a.75.75 0 0 0 0-1.5h-2.682ZM12 9.3a3.746 3.746 0 0 0 3.093-1.629 2.57 2.57 0 0 1 1.057 2.08v2.136a.755.755 0 0 0-.143.098C14.657 13.163 13.63 13.8 12 13.8c-1.616 0-3.091-.633-4.35-1.681V9.75c0-.98.478-1.764 1.193-2.176A3.747 3.747 0 0 0 12 9.3Zm-4.317 4.698c.183 1.522 1.126 2.734 2.49 3.352.577.191 1.167.35 1.727.35.639 0 1.209-.093 1.665-.32l.015-.008.015-.007a4.309 4.309 0 0 0 2.539-3.543C14.967 14.71 13.74 15.3 12 15.3c-1.596 0-3.051-.494-4.317-1.302Zm5.567 5.066c-.453.1-.913.136-1.35.136a5.46 5.46 0 0 1-1.15-.132v.382c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.386Z", "key": "94e3309ec5871f9a42d98e47cfef68f8ac905338" }]]);
const ScooterB = createMeisterIcons("scooter-b", [["path", { "fill": "currentColor", "d": "m6.25 11.207 1.213.953c1.289 1.013 2.83 1.64 4.537 1.64 1.707 0 3.248-.627 4.537-1.64l1.213-.953v2.343a5.803 5.803 0 0 1-3.43 5.279c-.74.366-1.564.471-2.32.471-.829 0-1.626-.235-2.237-.438l-.035-.012-.033-.015C7.637 17.922 6.25 15.96 6.25 13.55v-2.343Zm1.543 2.974c.207 1.483 1.14 2.662 2.48 3.27.577.19 1.167.35 1.727.35.639 0 1.209-.094 1.665-.322l.015-.007.015-.007a4.312 4.312 0 0 0 2.507-3.282A8.538 8.538 0 0 1 12 15.3a8.539 8.539 0 0 1-4.207-1.12Z", "key": "f765ed05296a77567f08e987f480706e77bcc8b5" }], ["path", { "fill": "currentColor", "d": "M17 9.85v2.9c-1.4 1.1-3.1 1.8-5 1.8s-3.6-.7-5-1.8v-2.9c0-1.5.9-2.7 2.2-3.1.5 1 1.5 1.8 2.8 1.8 1.3 0 2.2-.8 2.7-1.9 1.3.5 2.3 1.7 2.3 3.2Z", "key": "78972136fe81da0883a8e38714de5006134acad2" }], ["path", { "fill": "currentColor", "d": "m14.31 5.696.66.254c1.54.593 2.78 2.04 2.78 3.9v3.265l-.287.225c-1.511 1.187-3.37 1.96-5.463 1.96s-3.952-.773-5.463-1.96l-.287-.226V9.85c0-1.815 1.101-3.316 2.73-3.817l.607-.187.284.569C10.269 7.21 11.037 7.8 12 7.8c.926 0 1.602-.547 2.017-1.46l.293-.644Zm.695 1.946C14.365 8.6 13.365 9.3 12 9.3c-1.35 0-2.424-.687-3.096-1.603C8.21 8.115 7.75 8.888 7.75 9.85v2.526c1.228.885 2.668 1.424 4.25 1.424 1.582 0 3.022-.539 4.25-1.424V9.85c0-.922-.496-1.72-1.245-2.208ZM14 18.05v1.4c0 1.1-.9 2-2 2s-2-.9-2-2v-1.4c.6.3 1.3.4 2 .4s1.3-.1 2-.4Z", "key": "70439ca901f7469c1b321aad8d42ab70f2a1defa" }], ["path", { "fill": "currentColor", "d": "m9.25 16.836 1.085.543c.456.228 1.026.321 1.665.321a4.01 4.01 0 0 0 1.705-.34l1.045-.447v2.537A2.756 2.756 0 0 1 12 22.2a2.756 2.756 0 0 1-2.75-2.75v-2.614Zm4 2.24A5.866 5.866 0 0 1 12 19.2c-.405 0-.83-.03-1.25-.115v.365c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.373ZM12 3.3c-.98 0-1.791.596-2.088 1.487-.1.3-.162.497-.162.763 0 .465.024.61.074.684l.034.05.025.056c.395.87 1.25 1.46 2.117 1.46.816 0 1.582-.532 2.1-1.345.09-.361.15-.64.15-.905 0-.266-.062-.463-.162-.763C13.792 3.896 12.98 3.3 12 3.3ZM8.488 4.313C8.991 2.804 10.38 1.8 12 1.8s3.009 1.004 3.512 2.513l.006.02c.1.298.232.695.232 1.217 0 .493-.12.97-.214 1.348l-.008.034-.027.108-.058.096C14.761 8.272 13.553 9.3 12 9.3c-1.514 0-2.845-.984-3.46-2.29-.294-.485-.292-1.062-.29-1.398V5.55c0-.522.133-.92.232-1.218l.006-.02Z", "key": "4326f9e545a8ddff82d2e453c5bac3af82179047" }], ["path", { "fill": "currentColor", "d": "M14.05 4.55a.75.75 0 0 1 .75-.75H18a.75.75 0 0 1 0 1.5h-3.2a.75.75 0 0 1-.75-.75Zm-8.8 0A.75.75 0 0 1 6 3.8h3.1a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75Z", "key": "4da112c3c173a3bf202575da935bb660ced4a6c4" }]]);
const ScooterVarB = createMeisterIcons("scooter-var-b", [["path", { "fill": "currentColor", "d": "M17 12.75v.8c0 2-1.2 3.8-3 4.6-.6.3-1.3.4-2 .4s-1.4-.2-2-.4c-1.8-.8-3-2.5-3-4.6v-.8c1.4 1.1 3.1 1.8 5 1.8s3.6-.7 5-1.8Z", "key": "970bd15c0520dbd5bb34c6f75495c0497ef0b36a" }], ["path", { "fill": "currentColor", "d": "m6.25 11.207 1.213.953c1.289 1.013 2.83 1.64 4.537 1.64 1.707 0 3.248-.627 4.537-1.64l1.213-.953v2.343a5.803 5.803 0 0 1-3.43 5.279c-.74.366-1.564.471-2.32.471-.829 0-1.626-.235-2.237-.438l-.035-.012-.033-.015C7.637 17.922 6.25 15.96 6.25 13.55v-2.343Zm1.543 2.974c.207 1.483 1.14 2.662 2.48 3.27.577.19 1.167.35 1.727.35.639 0 1.209-.094 1.665-.322l.015-.007.015-.007a4.312 4.312 0 0 0 2.507-3.282A8.538 8.538 0 0 1 12 15.3a8.539 8.539 0 0 1-4.207-1.12Z", "key": "87846cbd87a928400113c3792c9d6cd7163a7cb1" }], ["path", { "fill": "currentColor", "d": "m14.31 5.696.66.254c1.54.593 2.78 2.04 2.78 3.9v3.265l-.287.225c-1.511 1.187-3.37 1.96-5.463 1.96s-3.952-.773-5.463-1.96l-.287-.226V9.85c0-1.815 1.101-3.316 2.73-3.817l.607-.187.284.569C10.269 7.21 11.037 7.8 12 7.8c.926 0 1.602-.547 2.017-1.46l.293-.644Zm.695 1.946C14.365 8.6 13.365 9.3 12 9.3c-1.35 0-2.424-.687-3.096-1.603C8.21 8.115 7.75 8.888 7.75 9.85v2.526c1.228.885 2.668 1.424 4.25 1.424 1.582 0 3.022-.539 4.25-1.424V9.85c0-.922-.496-1.72-1.245-2.208ZM9.25 16.836l1.085.543c.456.228 1.026.321 1.665.321a4.01 4.01 0 0 0 1.705-.34l1.045-.447v2.537A2.756 2.756 0 0 1 12 22.2a2.756 2.756 0 0 1-2.75-2.75v-2.614Zm4 2.24A5.866 5.866 0 0 1 12 19.2c-.405 0-.83-.03-1.25-.115v.365c0 .686.564 1.25 1.25 1.25s1.25-.564 1.25-1.25v-.373Z", "key": "d1fd3bda9aa424068078840e257833b860c977e9" }], ["path", { "fill": "currentColor", "d": "M15 5.55c0 .4-.1.8-.2 1.2-.6 1-1.6 1.8-2.8 1.8-1.2 0-2.3-.8-2.8-1.9-.2-.3-.2-.7-.2-1.1 0-.4.1-.7.2-1 .4-1.2 1.5-2 2.8-2 1.3 0 2.4.8 2.8 2 .1.3.2.6.2 1Z", "key": "a780862398529d706f555b894b1204388efb056d" }], ["path", { "fill": "currentColor", "d": "M12 3.3c-.98 0-1.791.596-2.088 1.487-.1.3-.162.497-.162.763 0 .465.024.61.074.684l.034.05.025.056c.395.87 1.25 1.46 2.117 1.46.816 0 1.582-.532 2.1-1.345.09-.361.15-.64.15-.905 0-.266-.062-.463-.162-.763C13.792 3.896 12.98 3.3 12 3.3ZM8.488 4.313C8.991 2.804 10.38 1.8 12 1.8s3.009 1.004 3.512 2.513l.006.02c.1.298.232.695.232 1.217 0 .493-.12.97-.214 1.348l-.008.034-.027.108-.058.096C14.761 8.272 13.553 9.3 12 9.3c-1.514 0-2.845-.984-3.46-2.29-.294-.485-.292-1.062-.29-1.398V5.55c0-.522.133-.92.232-1.218l.006-.02Z", "key": "feb09f58eb71465a33d140951d852a4a34d58ad3" }], ["path", { "fill": "currentColor", "d": "M14.05 4.55a.75.75 0 0 1 .75-.75H18a.75.75 0 0 1 0 1.5h-3.2a.75.75 0 0 1-.75-.75Zm-8.8 0A.75.75 0 0 1 6 3.8h3.1a.75.75 0 0 1 0 1.5H6a.75.75 0 0 1-.75-.75Z", "key": "657d579d9a26da6affe65346fbaf7bb8969153c4" }]]);
const ScrollH = createMeisterIcons("scroll-h", [["path", { "fill": "currentColor", "d": "M6.88 7.67a.75.75 0 0 1 0 1.06l-3.224 3.224a.165.165 0 0 0 0 .092L6.88 15.27a.75.75 0 0 1-1.06 1.06l-3.353-3.352-.041-.062a1.658 1.658 0 0 1 0-1.832l.041-.062L5.82 7.67a.75.75 0 0 1 1.06 0Zm10.232.108a.75.75 0 0 1 1.06-.016l3.357 3.255.045.067c.368.552.368 1.28 0 1.832l-.041.062-3.353 3.352a.75.75 0 1 1-1.06-1.06l3.223-3.224a.166.166 0 0 0 .001-.088l-3.216-3.12a.75.75 0 0 1-.017-1.06ZM12.05 10.15a1.85 1.85 0 1 0 0 3.7 1.85 1.85 0 0 0 0-3.7ZM8.7 12a3.35 3.35 0 1 1 6.7 0 3.35 3.35 0 0 1-6.7 0Z", "key": "9fa27d9a580cbf7cbf8bc784462f62a353d36521" }]]);
const ScrollHb = createMeisterIcons("scroll-hb", [["path", { "fill": "currentColor", "d": "M6.88 7.67a.75.75 0 0 1 0 1.06l-3.224 3.224a.165.165 0 0 0 0 .092L6.88 15.27a.75.75 0 0 1-1.06 1.06l-3.353-3.352-.041-.062a1.658 1.658 0 0 1 0-1.832l.041-.062L5.82 7.67a.75.75 0 0 1 1.06 0Zm10.232.108a.75.75 0 0 1 1.06-.016l3.357 3.255.045.067c.368.552.368 1.28 0 1.832l-.041.062-3.353 3.352a.75.75 0 1 1-1.06-1.06l3.223-3.224a.166.166 0 0 0 .001-.088l-3.216-3.12a.75.75 0 0 1-.017-1.06ZM12.05 14.6a2.6 2.6 0 1 0 0-5.2 2.6 2.6 0 0 0 0 5.2Z", "key": "2b27a3eb097618571a588c1598a470d6faf539e0" }], ["path", { "fill": "currentColor", "d": "M12.05 10.15a1.85 1.85 0 1 0 0 3.7 1.85 1.85 0 0 0 0-3.7ZM8.7 12a3.35 3.35 0 1 1 6.7 0 3.35 3.35 0 0 1-6.7 0Z", "key": "2148ef0f1040cc9658cd0584b50dd8822d35d4f4" }]]);
const ScrollV = createMeisterIcons("scroll-v", [["path", { "fill": "currentColor", "d": "M11.951 3.7 8.838 6.91a.75.75 0 0 1-1.076-1.045l3.208-3.308a1.45 1.45 0 0 1 1.018-.445c.383 0 .742.173.984.487l3.258 3.258a.75.75 0 1 1-1.06 1.06L11.95 3.7Zm.1-.1-.002.002.002-.001ZM7.67 17.157a.75.75 0 0 1 1.06 0l3.224 3.224a.16.16 0 0 0 .092 0l3.224-3.224a.75.75 0 0 1 1.06 1.06l-3.352 3.353-.062.041a1.658 1.658 0 0 1-1.832 0l-.062-.04-3.352-3.353a.75.75 0 0 1 0-1.061Zm4.33-6.92a1.85 1.85 0 1 0 0 3.7 1.85 1.85 0 0 0 0-3.7Zm-3.35 1.85a3.35 3.35 0 1 1 6.7 0 3.35 3.35 0 0 1-6.7 0Z", "key": "e2da44eb74e14971fec67cd7ce192c1d039d77d4" }]]);
const ScrollVb = createMeisterIcons("scroll-vb", [["path", { "fill": "currentColor", "d": "M11.951 3.7 8.838 6.91a.75.75 0 0 1-1.076-1.045l3.208-3.308a1.45 1.45 0 0 1 1.018-.445c.383 0 .742.173.984.487l3.258 3.258a.75.75 0 1 1-1.06 1.06L11.95 3.7Zm.1-.1-.002.002.002-.001ZM7.67 17.157a.75.75 0 0 1 1.06 0l3.224 3.224a.16.16 0 0 0 .092 0l3.224-3.224a.75.75 0 0 1 1.06 1.06l-3.352 3.353-.062.041a1.658 1.658 0 0 1-1.832 0l-.062-.04-3.352-3.353a.75.75 0 0 1 0-1.061Zm4.33-2.47a2.6 2.6 0 1 0 0-5.2 2.6 2.6 0 0 0 0 5.2Z", "key": "969fc8e41809c91d0cfded7a52f43cdb070f3c1b" }], ["path", { "fill": "currentColor", "d": "M12 10.237a1.85 1.85 0 1 0 0 3.7 1.85 1.85 0 0 0 0-3.7Zm-3.35 1.85a3.35 3.35 0 1 1 6.7 0 3.35 3.35 0 0 1-6.7 0Z", "key": "956b60c59ce879bf45897de7604104c4ff7beb41" }]]);
const Search = createMeisterIcons("search", [["path", { "fill": "currentColor", "d": "M4.3 11.55a7.25 7.25 0 1 1 14.5 0 7.25 7.25 0 0 1-14.5 0Zm7.25-8.75a8.75 8.75 0 1 0 5.634 15.445l2.736 2.735a.75.75 0 1 0 1.06-1.06l-2.735-2.736A8.75 8.75 0 0 0 11.55 2.8Z", "key": "59808e18796c6ffc4edb411ca32afbcae2725432" }]]);
const SearchAdd = createMeisterIcons("search-add", [["path", { "fill": "currentColor", "d": "M4.3 11.55a7.25 7.25 0 1 1 14.5 0 7.25 7.25 0 0 1-14.5 0Zm7.25-8.75a8.75 8.75 0 1 0 5.634 15.445l2.736 2.735a.75.75 0 0 0 1.06-1.06l-2.735-2.736A8.75 8.75 0 0 0 11.55 2.8ZM7.8 11.55a.75.75 0 0 1 .75-.75h2.25V8.55a.75.75 0 0 1 1.5 0v2.25h2.25a.75.75 0 1 1 0 1.5H12.3v2.25a.75.75 0 1 1-1.5 0V12.3H8.55a.75.75 0 0 1-.75-.75Z", "key": "1d41daf2e87d558a25b36e2e5f76bfbce0dce9f6" }]]);
const SearchAddB = createMeisterIcons("search-add-b", [["path", { "fill": "currentColor", "d": "M11.55 19.55a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z", "key": "81f2445ee3cc02cbe33a6fb7fc3704ef26f3b93e" }], ["path", { "fill": "currentColor", "d": "M11.55 4.3a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5ZM2.8 11.55a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0Z", "key": "76a96da53f42a1656a538fef63fb84c871a75b79" }], ["path", { "fill": "currentColor", "d": "M16.92 16.92a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06Z", "key": "b2b91e5655ce5b2ff9aef948f9e8a5dcdd3824fb" }], ["path", { "fill": "#fff", "d": "M7.8 11.55a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "02288c516be16665402e5a75875cde7e6f695899" }], ["path", { "fill": "#fff", "d": "M11.55 7.8a.75.75 0 0 1 .75.75v6a.75.75 0 1 1-1.5 0v-6a.75.75 0 0 1 .75-.75Z", "key": "0118cb578e634e50d3752dc8f6182ad65961c51c" }]]);
const SearchB = createMeisterIcons("search-b", [["path", { "fill": "currentColor", "d": "M11.175 19.175a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z", "key": "9302c16226cb0b5c011cda7c668c360da24ade4d" }], ["path", { "fill": "currentColor", "d": "M16.045 16.045a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 0 1-1.06 1.06l-3.5-3.5a.75.75 0 0 1 0-1.06Z", "key": "fe57090454287496521a8fc5881ef90a48f73a83" }]]);
const SearchCircle = createMeisterIcons("search-circle", [["path", { "fill": "currentColor", "d": "M11.55 4.3a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5ZM2.8 11.55a8.75 8.75 0 1 1 15.445 5.634l2.735 2.736a.75.75 0 0 1-1.06 1.06l-2.736-2.735A8.75 8.75 0 0 1 2.8 11.55Zm6.5 0a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm2.25-3.75a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z", "key": "ac9d72a5e702a6d9483b1fb92846e4330a2ef5c9" }]]);
const SearchCross = createMeisterIcons("search-cross", [["path", { "fill": "currentColor", "d": "M4.3 11.55a7.25 7.25 0 1 1 14.5 0 7.25 7.25 0 0 1-14.5 0Zm7.25-8.75a8.75 8.75 0 1 0 5.634 15.445l2.736 2.735a.75.75 0 0 0 1.06-1.06l-2.735-2.736A8.75 8.75 0 0 0 11.55 2.8ZM8.82 8.82a.75.75 0 0 1 1.06 0l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 1.06l-1.62 1.62 1.62 1.62a.75.75 0 0 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 1 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 0-1.06Z", "key": "7afe83ceeadae66eb8d48c7b7ac5a2dad914c389" }]]);
const SearchCrossB = createMeisterIcons("search-cross-b", [["path", { "fill": "currentColor", "d": "M11.55 19.55a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z", "key": "197bcd80db7572f143c7f7dbda6231aabb5d59cd" }], ["path", { "fill": "currentColor", "d": "M11.55 4.3a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5ZM2.8 11.55a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0Z", "key": "011a20fa1237026cc9ffaeb0a181ce1ca763cda6" }], ["path", { "fill": "currentColor", "d": "M16.92 16.92a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06Z", "key": "e1bd19b590cdd19e51c7672b35288f6178d51ef0" }], ["path", { "fill": "#fff", "d": "M8.82 8.82a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 1 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "078923132e02a564076965e12aea774403484ac1" }], ["path", { "fill": "#fff", "d": "M14.18 8.82a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 0 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "8ad20a86622069f60c179cce625f54ef3b3c05a4" }]]);
const SearchHeart = createMeisterIcons("search-heart", [["path", { "fill": "currentColor", "d": "M10.15 9.7a.907.907 0 0 0-.67.28c-.307.307-.307.932 0 1.24l.194.193 1.924 1.828 1.882-1.882c.244-.334.32-.56.32-.709a.907.907 0 0 0-.28-.67c-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.206.207 1.96 1.86c.24.309.597.478.976.478.396 0 .754-.18 1.018-.445l2.038-2.037.032-.043c.332-.443.65-1.005.65-1.65 0-.72-.295-1.305-.72-1.73-.796-.797-2.135-.883-3.05-.258Zm-.03 4.675v-.001Z", "key": "d6b6fd3794c86b39f688138b3d03bb576a5812c5" }], ["path", { "fill": "currentColor", "d": "M11.55 4.3a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5ZM2.8 11.55a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0Z", "key": "8c3cdfc9275703d713f66bcb12f412b26a4a2cb8" }], ["path", { "fill": "currentColor", "d": "M16.92 16.92a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06Z", "key": "5bfae614cf774af9f2ce05c0b628e40bdcb6ec82" }]]);
const SearchMinus = createMeisterIcons("search-minus", [["path", { "fill": "currentColor", "d": "M11.55 4.3a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5ZM2.8 11.55a8.75 8.75 0 1 1 15.445 5.634l2.735 2.736a.75.75 0 0 1-1.06 1.06l-2.736-2.735A8.75 8.75 0 0 1 2.8 11.55Zm5.75-.75a.75.75 0 0 0 0 1.5h6a.75.75 0 1 0 0-1.5h-6Z", "key": "3ad10b589b546fad7ee83c32cca2566e92f54835" }]]);
const SearchMinusB = createMeisterIcons("search-minus-b", [["path", { "fill": "currentColor", "d": "M11.55 19.55a8 8 0 1 0 0-16 8 8 0 0 0 0 16Z", "key": "64db108a5e151788490e92e1959774d7c937a164" }], ["path", { "fill": "currentColor", "d": "M11.55 4.3a7.25 7.25 0 1 0 0 14.5 7.25 7.25 0 0 0 0-14.5ZM2.8 11.55a8.75 8.75 0 1 1 17.5 0 8.75 8.75 0 0 1-17.5 0Z", "key": "6fece6a7f51635dcf90f98318b9cda33ed263e36" }], ["path", { "fill": "currentColor", "d": "M16.92 16.92a.75.75 0 0 1 1.06 0l3 3a.75.75 0 0 1-1.06 1.06l-3-3a.75.75 0 0 1 0-1.06Z", "key": "eace16803f5e0e840689416bec5745c7931a5b46" }], ["path", { "fill": "#fff", "d": "M7.8 11.55a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "90999b4da7f86bf175bf394d78887b9237a0060f" }]]);
const SearchSquare = createMeisterIcons("search-square", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v6c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25V9ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9Zm2.7 6.4a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1ZM7.15 11.7a4.55 4.55 0 1 1 8.254 2.643l1.126 1.127a.75.75 0 0 1-1.06 1.06l-1.127-1.126A4.55 4.55 0 0 1 7.15 11.7Z", "key": "118c49979ed0da7857348ef8945ceb6865f143d0" }]]);
const SearchSquareB = createMeisterIcons("search-square-b", [["path", { "fill": "currentColor", "d": "M11.7 15.5a3.8 3.8 0 1 0 0-7.6 3.8 3.8 0 0 0 0 7.6Z", "key": "c57e1b95dd8eaac940a20f6fe2a6b00323825272" }], ["path", { "fill": "currentColor", "d": "M11.7 8.65a3.05 3.05 0 1 0 0 6.1 3.05 3.05 0 0 0 0-6.1ZM7.15 11.7a4.55 4.55 0 1 1 9.1 0 4.55 4.55 0 0 1-9.1 0Z", "key": "957a340760f6ff29d5b4abcc987cf2d0fe499b20" }], ["path", { "fill": "currentColor", "d": "M13.97 13.97a.75.75 0 0 1 1.06 0l1.5 1.5a.75.75 0 1 1-1.06 1.06l-1.5-1.5a.75.75 0 0 1 0-1.06Z", "key": "a3fcbd01a79a9e8d77f439f35c84a93a7d3f679b" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "43a5da638bbdaa0c7de9560c05f0c8bc246918ab" }]]);
const SendMessage = createMeisterIcons("send-message", [["path", { "fill": "currentColor", "d": "M18.53 3.961c.572-.232 1.071.073 1.278.28.208.209.515.71.279 1.283L16.383 19.24l-.034.068a2.063 2.063 0 0 1-.257.42 1.05 1.05 0 0 1-.814.394.75.75 0 0 1-.299-1.438L18.537 5.51 5.221 8.958a.75.75 0 0 1-1.393-.386 1.075 1.075 0 0 1 .927-1.043l13.776-3.568Z", "key": "ee84c306f66ba3183fee417334bbb1cfa6290a31" }], ["path", { "fill": "currentColor", "d": "M3.857 8.365a.75.75 0 0 1 .928-.514l8.067 2.32.062.03c.145.073.295.166.432.303.137.138.23.287.303.433l.03.061L16 19.065a.75.75 0 0 1-1.442.414l-2.274-7.911L4.37 9.293a.75.75 0 0 1-.514-.928Z", "key": "19b878a749dca7866b4d2fa2827f7f84517df797" }], ["path", { "fill": "currentColor", "d": "M19.708 4.142a.75.75 0 0 1 0 1.06l-6.3 6.3a.75.75 0 0 1-1.06-1.06l6.3-6.3a.75.75 0 0 1 1.06 0Z", "key": "57efd8e986d8e89b1d35c78a84626e9355e7481c" }]]);
const Server = createMeisterIcons("server", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "fd832823fd8e29011167372eade497995699f871" }], ["path", { "fill": "currentColor", "d": "M6.5 10.1c-.3 0-.5-.1-.7-.3-.1-.1-.1-.2-.2-.4 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.3-.4.4-.7.4Zm3.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.1.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm2.65-1a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75ZM6.5 16.3c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1.1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm3.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm2.65-1a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75Z", "key": "7e184a0cc1ceefbe086d25a9fdc0b0b5782a758e" }]]);
const ServerB = createMeisterIcons("server-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "955054a7802e233e10902e7318d17652629d5247" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "cc7317bcbb3f888de209ea7d287b1349a352f7c9" }], ["path", { "fill": "#fff", "d": "M6.5 10.1c-.3 0-.5-.1-.7-.3-.1-.1-.1-.2-.2-.4 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.3-.4.4-.7.4Zm3.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.1.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm2.65-1a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75ZM6.5 16.3c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1.1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm3.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm2.65-1a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75Z", "key": "62355585408e721e8b7ad822344c62b6d97c20c2" }]]);
const ServerDivided = createMeisterIcons("server-divided", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "bca5bccef3273a9d64044ae498f5d597e4040971" }], ["path", { "fill": "currentColor", "d": "M6.5 9.1c-.3 0-.5-.1-.7-.3-.1-.1-.1-.2-.2-.4 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.3-.4.4-.7.4Zm3.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.1.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm2.65-1a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75ZM6.5 17.3c-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1.1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm3.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm2.65-1a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75ZM2.25 12a.75.75 0 0 1 .75-.75h18a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75Z", "key": "715adff8271333911041a4d10a3e6c8e29d6232e" }]]);
const ServerDividedB = createMeisterIcons("server-divided-b", [["path", { "fill": "currentColor", "d": "M3 12v3c0 3.3 2.7 6 6 6h6c3.3 0 6-2.7 6-6v-3H3Zm4.2 5c-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1.1-.4 1.4 0 .1.1.2.2.2.3 0 .1.1.3.1.4 0 .3-.1.5-.3.7Zm3.8 0c-.2.2-.5.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7Z", "key": "86b6016a3678244be7066b58765270704a089812" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h19.5V15c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75v-3.75Zm1.5 1.5V15c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-2.25H3.75Zm2.6 3.363v.098l-.08.08a2.482 2.482 0 0 1 .05.168l.01.01a.32.32 0 0 0 .087.07c.003.002.023.011.083.011.06 0 .08-.009.083-.01a.32.32 0 0 0 .087-.07.324.324 0 0 0 .07-.087l.006-.023a3.696 3.696 0 0 0-.008-.023l-.001-.006a1.548 1.548 0 0 1-.057-.19l-.01-.01-.038-.038-.024-.032a.174.174 0 0 0-.07-.011.31.31 0 0 0-.188.063ZM7.761 15.1c-.324-.396-.801-.551-1.224-.551a1.8 1.8 0 0 0-1.267.52l-.009.008c-.043.044-.128.128-.199.222-.042.056-.11.155-.158.29a1.199 1.199 0 0 0-.131.387c-.023.137-.023.265-.023.316v.007a.988.988 0 0 0 .042.288c.015.055.033.11.045.143l.001.006.016.047c.023.251.146.432.208.516.071.094.156.178.2.222l.008.008c.144.145.318.283.538.38.223.1.454.14.692.14.238 0 .469-.04.692-.14.22-.097.394-.235.538-.38.145-.144.283-.318.38-.538.1-.223.14-.454.14-.692a.988.988 0 0 0-.042-.288 2.208 2.208 0 0 0-.045-.144l-.001-.005a4.776 4.776 0 0 1-.016-.047 1.022 1.022 0 0 0-.209-.516c-.06-.08-.13-.153-.176-.2Zm2.539.949a.24.24 0 0 0-.17.08.321.321 0 0 0-.07.087.203.203 0 0 0-.01.083c0 .06.009.08.01.083a.322.322 0 0 0 .07.087.321.321 0 0 0 .087.07c.003 0 .022.01.079.01a.374.374 0 0 0 .174-.08.321.321 0 0 0 .07-.087.203.203 0 0 0 .01-.083c0-.06-.009-.08-.01-.083a.322.322 0 0 0-.07-.087.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0c.145.144.283.318.38.538.1.223.14.454.14.692 0 .238-.04.469-.14.692a1.826 1.826 0 0 1-1.61 1.058 1.68 1.68 0 0 1-.692-.14 1.786 1.786 0 0 1-.538-.38 1.784 1.784 0 0 1-.38-.538 1.68 1.68 0 0 1-.14-.692c0-.238.04-.469.14-.692.097-.22.235-.394.38-.538Z", "key": "08ed7bc303f5cd23be58419888fbfb337ea8572b" }], ["path", { "fill": "currentColor", "d": "m6.492 16.06-.024.033-.018.018v.1l-.08.08a2.455 2.455 0 0 1 .05.168l.01.01a.324.324 0 0 0 .087.07c.003.002.023.011.083.011.06 0 .08-.009.083-.01a.325.325 0 0 0 .087-.07.32.32 0 0 0 .07-.087l.006-.023-.008-.023a.746.746 0 0 1-.018-.056l-.188-.188-.024-.033a.15.15 0 0 0-.058-.01.15.15 0 0 0-.058.01Zm1.27-.96c-.322-.39-.796-.55-1.212-.55-.416 0-.89.16-1.211.55-.047.047-.116.12-.177.2-.042.056-.11.155-.158.29a1.2 1.2 0 0 0-.131.387c-.023.137-.023.265-.023.316v.007a.986.986 0 0 0 .042.288c.015.055.033.11.045.143a.746.746 0 0 0 .017.053c.023.251.145.432.208.516.071.094.156.178.2.222l.008.008c.144.145.318.283.538.38.223.1.454.14.692.14.238 0 .469-.04.692-.14.22-.097.394-.235.538-.38.145-.144.283-.318.38-.538.1-.223.14-.454.14-.692a.986.986 0 0 0-.042-.288 1.979 1.979 0 0 0-.045-.143.746.746 0 0 0-.002-.006l-.011-.035v-.239l-.489-.488Zm2.538.95a.24.24 0 0 0-.17.08.322.322 0 0 0-.07.087c-.001.003-.01.023-.01.083 0 .06.009.08.01.083a.322.322 0 0 0 .07.087.322.322 0 0 0 .087.07.198.198 0 0 0 .094.007.373.373 0 0 0 .159-.077.322.322 0 0 0 .07-.087c.001-.003.01-.023.01-.083 0-.06-.009-.08-.01-.083a.322.322 0 0 0-.07-.087.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0c.145.144.283.318.38.538.1.223.14.454.14.692 0 .238-.04.469-.14.692a1.827 1.827 0 0 1-1.61 1.058c-.237 0-.469-.04-.692-.14a1.784 1.784 0 0 1-.538-.38 1.786 1.786 0 0 1-.38-.538 1.68 1.68 0 0 1-.14-.692c0-.238.04-.469.14-.692.097-.22.235-.394.38-.538ZM9 3.75C6.114 3.75 3.75 6.114 3.75 9v2.25h16.5V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v3.75H2.25V9Z", "key": "7e7406d4bbd4c012a683389272a15ef70a408458" }], ["path", { "fill": "currentColor", "d": "M6.5 9.1c-.3 0-.5-.1-.7-.3-.1-.1-.1-.2-.2-.4 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4.1-.1.1-.2.2-.3.4-.4 1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4 0 .3-.1.5-.3.7-.1.3-.4.4-.7.4Zm3.8 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.1.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.7.3Zm2.65-1a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75Z", "key": "638ff45697721ccc6fd07c7e79bc988f08754aff" }], ["path", { "fill": "#fff", "d": "M7.5 16.3c0 .3-.1.5-.3.7-.2.2-.4.3-.7.3-.3 0-.5-.1-.7-.3-.1-.1-.2-.2-.2-.3 0-.1-.1-.3-.1-.4 0-.1 0-.3.1-.4 0-.1.1-.2.2-.3.4-.4 1.1-.4 1.4 0 .1.1.2.2.2.3.1.1.1.3.1.4Zm3.8 0c0 .3-.1.5-.3.7-.2.2-.5.3-.7.3-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7Zm1.65 0a.75.75 0 0 1 .75-.75h4.7a.75.75 0 0 1 0 1.5h-4.7a.75.75 0 0 1-.75-.75Z", "key": "a2667a865d0bf313059d75d8e70050dab32024b4" }]]);
const SettingsCog = createMeisterIcons("settings-cog", [["path", { "fill": "currentColor", "d": "M11.55 3.1c-.286 0-.45.164-.45.45v3.286l-.568.142c-.305.076-.63.234-1.047.443l-.483.242L6.72 5.38c-.123-.123-.237-.155-.32-.155-.083 0-.197.032-.32.155l-.7.7c-.123.123-.155.237-.155.32 0 .083.032.197.155.32l2.183 2.182-.242.483c-.209.418-.367.742-.443 1.047L6.736 11H3.55c-.286 0-.45.164-.45.45v1c0 .286.164.45.45.45h3.286l.142.568c.076.305.234.63.443 1.047l.242.483L5.38 17.28c-.123.123-.155.237-.155.32 0 .083.032.197.155.32l.7.7c.123.123.237.155.32.155.083 0 .197-.032.32-.155l2.282-2.283.483.242c.418.209.742.367 1.047.443l.568.142v3.286c0 .286.164.45.45.45h1c.286 0 .45-.164.45-.45v-3.286l.568-.142c.305-.076.63-.234 1.047-.443l.483-.242 2.282 2.283c.123.123.237.155.32.155.083 0 .197-.032.32-.155l.7-.7c.123-.123.155-.237.155-.32 0-.083-.032-.197-.155-.32l-2.283-2.282.242-.483c.209-.418.367-.742.443-1.047l.142-.568h3.186c.286 0 .45-.164.45-.45v-1c0-.042-.023-.125-.123-.214a.52.52 0 0 0-.327-.136h-3.186l-.142-.568c-.076-.305-.234-.63-.443-1.047l-.242-.483L18.72 6.72c.123-.123.155-.237.155-.32 0-.083-.032-.197-.155-.32l-.7-.7c-.123-.123-.237-.155-.32-.155-.083 0-.197.032-.32.155l-2.282 2.283-.483-.242c-.418-.209-.742-.367-1.047-.443L13 6.836V3.55c0-.286-.164-.45-.45-.45h-1Zm-1.95.45c0-1.114.836-1.95 1.95-1.95h1c1.114 0 1.95.836 1.95 1.95v2.162c.102.041.201.085.298.13L16.32 4.32a1.949 1.949 0 0 1 1.38-.595 1.95 1.95 0 0 1 1.38.595l.7.7c.377.377.595.863.595 1.38a1.95 1.95 0 0 1-.595 1.38l-1.52 1.522c.044.097.088.196.13.298h2.061c.502 0 .975.205 1.323.514.35.311.627.778.627 1.336v1c0 1.114-.836 1.95-1.95 1.95h-2.062a6.964 6.964 0 0 1-.13.298l1.522 1.522c.377.377.595.863.595 1.38a1.95 1.95 0 0 1-.595 1.38l-.7.7a1.95 1.95 0 0 1-1.38.595 1.95 1.95 0 0 1-1.38-.595l-1.522-1.521a6.964 6.964 0 0 1-.298.13v2.161c0 1.114-.836 1.95-1.95 1.95h-1c-1.114 0-1.95-.836-1.95-1.95v-2.162a6.976 6.976 0 0 1-.298-.13L7.78 19.68a1.95 1.95 0 0 1-1.38.595 1.95 1.95 0 0 1-1.38-.595l-.7-.7a1.949 1.949 0 0 1-.595-1.38c0-.517.218-1.003.595-1.38l1.522-1.522a6.964 6.964 0 0 1-.13-.298H3.55c-1.114 0-1.95-.836-1.95-1.95v-1c0-1.114.836-1.95 1.95-1.95h2.062a6.22 6.22 0 0 1 .13-.298L4.32 7.78a1.95 1.95 0 0 1-.595-1.38c0-.517.218-1.003.595-1.38l.7-.7a1.95 1.95 0 0 1 1.38-.595 1.95 1.95 0 0 1 1.38.595l1.522 1.52c.097-.044.196-.088.298-.13V3.55Z", "key": "ee32545cb2a3e2e04dc41946e77e4423eec00708" }], ["path", { "fill": "currentColor", "d": "M12.05 9.9a2.15 2.15 0 1 0 0 4.3 2.15 2.15 0 0 0 0-4.3ZM8.4 12.05a3.65 3.65 0 1 1 7.3 0 3.65 3.65 0 0 1-7.3 0Z", "key": "455d9ebf5d983309ede926bf3cad25ac4c683eb6" }]]);
const SettingsCogB = createMeisterIcons("settings-cog-b", [["path", { "fill": "currentColor", "d": "M21.65 11.45v1c0 .7-.5 1.2-1.2 1.2h-2.6c-.1.4-.3.8-.5 1.2l1.9 1.9c.5.5.5 1.2 0 1.7l-.7.7c-.5.5-1.2.5-1.7 0l-1.9-1.9c-.4.2-.8.4-1.2.5v2.7c0 .7-.5 1.2-1.2 1.2h-1c-.7 0-1.2-.5-1.2-1.2v-2.7c-.4-.1-.8-.3-1.2-.5l-1.9 1.9c-.5.5-1.2.5-1.7 0l-.7-.7c-.5-.5-.5-1.2 0-1.7l1.9-1.9c-.2-.4-.4-.8-.5-1.2h-2.7c-.7 0-1.2-.5-1.2-1.2v-1c0-.7.5-1.2 1.2-1.2h2.6c.1-.4.3-.8.5-1.2l-1.8-1.8c-.5-.5-.5-1.2 0-1.7l.7-.7c.5-.5 1.2-.5 1.7 0l1.9 1.9c.4-.2.8-.4 1.2-.5v-2.7c0-.7.5-1.2 1.2-1.2h1c.7 0 1.2.5 1.2 1.2v2.7c.4.1.8.3 1.2.5l1.9-1.9c.5-.5 1.2-.5 1.7 0l.7.7c.5.5.5 1.2 0 1.7l-1.9 1.9c.2.4.4.8.5 1.2h2.6c.6 0 1.2.5 1.2 1.1Z", "key": "a0340dcdf71d99275ec25d420c966bbb532564d0" }], ["path", { "fill": "currentColor", "d": "M11.55 3.1c-.286 0-.45.164-.45.45v3.286l-.568.142c-.305.076-.63.234-1.047.443l-.483.242L6.72 5.38c-.123-.123-.237-.155-.32-.155-.083 0-.197.032-.32.155l-.7.7c-.123.123-.155.237-.155.32 0 .083.032.197.155.32l2.183 2.182-.242.483c-.209.418-.367.742-.443 1.047L6.736 11H3.55c-.286 0-.45.164-.45.45v1c0 .286.164.45.45.45h3.286l.142.568c.076.305.234.63.443 1.047l.242.483L5.38 17.28c-.123.123-.155.237-.155.32 0 .083.032.197.155.32l.7.7c.123.123.237.155.32.155.083 0 .197-.032.32-.155l2.282-2.283.483.242c.418.209.742.367 1.047.443l.568.142v3.286c0 .286.164.45.45.45h1c.286 0 .45-.164.45-.45v-3.286l.568-.142c.305-.076.63-.234 1.047-.443l.483-.242 2.282 2.283c.123.123.237.155.32.155.083 0 .197-.032.32-.155l.7-.7c.123-.123.155-.237.155-.32 0-.083-.032-.197-.155-.32l-2.283-2.282.242-.483c.209-.418.367-.742.443-1.047l.142-.568h3.186c.286 0 .45-.164.45-.45v-1c0-.042-.023-.125-.123-.214a.52.52 0 0 0-.327-.136h-3.186l-.142-.568c-.076-.305-.234-.63-.443-1.047l-.242-.483L18.72 6.72c.123-.123.155-.237.155-.32 0-.083-.032-.197-.155-.32l-.7-.7c-.123-.123-.237-.155-.32-.155-.083 0-.197.032-.32.155l-2.282 2.283-.483-.242c-.418-.209-.742-.367-1.047-.443L13 6.836V3.55c0-.286-.164-.45-.45-.45h-1Zm-1.95.45c0-1.114.836-1.95 1.95-1.95h1c1.114 0 1.95.836 1.95 1.95v2.162c.102.041.201.085.298.13L16.32 4.32a1.949 1.949 0 0 1 1.38-.595 1.95 1.95 0 0 1 1.38.595l.7.7c.377.377.595.863.595 1.38a1.95 1.95 0 0 1-.595 1.38l-1.52 1.522c.044.097.088.196.13.298h2.061c.502 0 .975.205 1.323.514.35.311.627.778.627 1.336v1c0 1.114-.836 1.95-1.95 1.95h-2.062a6.964 6.964 0 0 1-.13.298l1.522 1.522c.377.377.595.863.595 1.38a1.95 1.95 0 0 1-.595 1.38l-.7.7a1.95 1.95 0 0 1-1.38.595 1.95 1.95 0 0 1-1.38-.595l-1.522-1.521a6.964 6.964 0 0 1-.298.13v2.161c0 1.114-.836 1.95-1.95 1.95h-1c-1.114 0-1.95-.836-1.95-1.95v-2.162a6.976 6.976 0 0 1-.298-.13L7.78 19.68a1.95 1.95 0 0 1-1.38.595 1.95 1.95 0 0 1-1.38-.595l-.7-.7a1.949 1.949 0 0 1-.595-1.38c0-.517.218-1.003.595-1.38l1.522-1.522a6.964 6.964 0 0 1-.13-.298H3.55c-1.114 0-1.95-.836-1.95-1.95v-1c0-1.114.836-1.95 1.95-1.95h2.062a6.22 6.22 0 0 1 .13-.298L4.32 7.78a1.95 1.95 0 0 1-.595-1.38c0-.517.218-1.003.595-1.38l.7-.7a1.95 1.95 0 0 1 1.38-.595 1.95 1.95 0 0 1 1.38.595l1.522 1.52c.097-.044.196-.088.298-.13V3.55Z", "key": "8fdc3f4a5abe8cd079701f5941d45a635b70cbc2" }], ["path", { "fill": "#fff", "d": "M12.05 14.95a2.9 2.9 0 1 0 0-5.8 2.9 2.9 0 0 0 0 5.8Z", "key": "a52bee824a61fac65b848ca931a04101dcc0d78a" }], ["path", { "fill": "#fff", "d": "M12.05 9.65a2.4 2.4 0 1 0 0 4.8 2.4 2.4 0 0 0 0-4.8Zm-3.4 2.4a3.4 3.4 0 1 1 6.8 0 3.4 3.4 0 0 1-6.8 0Z", "key": "f6d8ae1845bade3051857dd1dc70f385358a8615" }]]);
const SettingsHorizontal = createMeisterIcons("settings-horizontal", [["path", { "fill": "currentColor", "d": "M5.25 7.5a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM6.5 4.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm5 2a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5h-8Zm6 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM4.5 15.75a.75.75 0 0 0 0 1.5h8a.75.75 0 0 0 0-1.5h-8Z", "key": "fe2018f683a6fac796ed00d6df969131c201da53" }]]);
const SettingsHorizontalB = createMeisterIcons("settings-horizontal-b", [["path", { "fill": "currentColor", "d": "M6.5 9.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "9b2d84ef27b5775d9cc782731c36b4a34951295f" }], ["path", { "fill": "currentColor", "d": "M6.5 6.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM3.75 7.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm7 0a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5h-8a.75.75 0 0 1-.75-.75Zm6.75 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "38973a37e9b083b4f4d7a636937add9eb3eef901" }], ["path", { "fill": "currentColor", "d": "M17.5 15.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5Zm-2.75 1.25a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm-11 0a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5h-8a.75.75 0 0 1-.75-.75Z", "key": "8b1c3a3c095f8aa4c5bd9ff56894ce2121d0d6da" }]]);
const SettingsVertical = createMeisterIcons("settings-vertical", [["path", { "fill": "currentColor", "d": "M15.25 6.5a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0Zm1.25-2.75a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm.75 7.75a.75.75 0 0 0-1.5 0v8a.75.75 0 0 0 1.5 0v-8ZM7.5 16.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM4.75 17.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm3.5-13a.75.75 0 0 0-1.5 0v8a.75.75 0 0 0 1.5 0v-8Z", "key": "ee286e4f8466bce395164502f16ad843cfba3c24" }]]);
const SettingsVerticalB = createMeisterIcons("settings-vertical-b", [["path", { "fill": "currentColor", "d": "M16.5 8.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "1a54fb0c4b54449ea5c09a6eecf6d1711b1fe9a0" }], ["path", { "fill": "currentColor", "d": "M16.5 5.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM13.75 6.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm2.75 4.25a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8a.75.75 0 0 1 .75-.75Zm-9 8.75a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "3641dcf6b8d24481beed56468936fb12c5dd8fbb" }], ["path", { "fill": "currentColor", "d": "M7.5 16.25a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM4.75 17.5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM7.5 3.75a.75.75 0 0 1 .75.75v8a.75.75 0 0 1-1.5 0v-8a.75.75 0 0 1 .75-.75Z", "key": "befa8fd5aa68c1a568671dc38fef9053d66ba97d" }]]);
const SevenKey = createMeisterIcons("seven-key", [["path", { "fill": "currentColor", "d": "M5 3.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM2.25 5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0ZM12 3.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.25 5a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM19 2.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm-14 8.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM2.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm8.5 0a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 9.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Zm7 1.5a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM16.25 12a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Zm-5.5 7a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 16.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "7d84035575443e81701276d2a251dfac71c82801" }]]);
const SevenKeyB = createMeisterIcons("seven-key-b", [["path", { "fill": "currentColor", "d": "M17.9 6.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "c0efa2326ae560f229e387d87428b5bc60ea8104" }], ["path", { "fill": "currentColor", "d": "M17.9 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 6.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "2098e75859a72feb2efb0a87c62028a22ea5571b" }], ["path", { "fill": "currentColor", "d": "M12 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM6.1 6.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "88050075b3100cf6bf049db940ad69ee80ac7711" }], ["path", { "fill": "currentColor", "d": "M6.1 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm13.8 8.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "80ce3c0efc7f0641fc4e60eec3d9b63171e6fcfd" }], ["path", { "fill": "currentColor", "d": "M17.9 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0ZM12 13.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "628b0ec26ba1864d92d93588f1e010cf955276cb" }], ["path", { "fill": "currentColor", "d": "M12 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm-3.9 1.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "776165fad49a7349c3d40ffd3c016cee9fe8a281" }], ["path", { "fill": "currentColor", "d": "M6.1 11a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Zm7.9 8.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "5cca500d1181510eddaa13e6a5ed475bbfa87022" }], ["path", { "fill": "currentColor", "d": "M12 18a1 1 0 1 0 0 2 1 1 0 0 0 0-2Zm-2 1a2 2 0 1 1 4 0 2 2 0 0 1-4 0Z", "key": "676fdb77086ecef779caec8f03ab199b437882c0" }]]);
const Shield = createMeisterIcons("shield", [["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "34868665f4d50cfbb0743034d3832234d1fa57ec" }]]);
const ShieldAdd = createMeisterIcons("shield-add", [["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Zm9.25.75a.75.75 0 0 1 .75.75v2.25H15a.75.75 0 0 1 0 1.5h-2.25V15a.75.75 0 0 1-1.5 0v-2.25H9a.75.75 0 0 1 0-1.5h2.25V9a.75.75 0 0 1 .75-.75Z", "key": "d1ef533efd09d40756c16037b6451c8be6cf72d3" }]]);
const ShieldAddB = createMeisterIcons("shield-add-b", [["path", { "fill": "currentColor", "d": "M12 20.5c-4.7 0-8.5-3.8-8.5-8.5V7.5c0-2.2 1.8-4 4-4h9c2.2 0 4 1.8 4 4V12c0 4.6-3.9 8.5-8.5 8.5Z", "key": "c64b6c4f66fe9c231820776ad894ed675b1f0afd" }], ["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "40f3c79048a7c448bed3b686aa701d7153979c86" }], ["path", { "fill": "#fff", "d": "M12 8.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0V9a.75.75 0 0 1 .75-.75Z", "key": "755153f980bcb0f6efbff9c2075426217acb405e" }], ["path", { "fill": "#fff", "d": "M8.25 12a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5H9a.75.75 0 0 1-.75-.75Z", "key": "b5443943a126b6b33a88beaa46a2ef2741702541" }]]);
const ShieldB = createMeisterIcons("shield-b", [["path", { "fill": "currentColor", "d": "M12 20.5c-4.7 0-8.5-3.8-8.5-8.5V7.5c0-2.2 1.8-4 4-4h9c2.2 0 4 1.8 4 4V12c0 4.6-3.9 8.5-8.5 8.5Z", "key": "565c1f62afda3faee2414d68d62f2ab178859968" }], ["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "1193b095a660cf8c5bb45fe594e73cc365fcee6e" }]]);
const ShieldBlock = createMeisterIcons("shield-block", [["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Zm10.535 2.054c-.994-.59-2.327-.451-3.255.476l-.01.01-.01.01c-.892.828-1.06 2.154-.442 3.22l3.717-3.716Zm1.047 1.075-3.715 3.715c1.018.595 2.4.444 3.233-.454l.02-.02.02-.02c.892-.828 1.06-2.155.442-3.221Zm.608-1.65c-1.605-1.717-4.282-1.688-5.96-.02-1.718 1.606-1.689 4.283-.02 5.962 1.592 1.702 4.374 1.706 5.97.01 1.708-1.607 1.675-4.276.01-5.952Z", "key": "bb48c92b2957f3479f9236221a0e55f71fb72431" }]]);
const ShieldBlockB = createMeisterIcons("shield-block-b", [["path", { "fill": "currentColor", "d": "M12 20.5c-4.7 0-8.5-3.8-8.5-8.5V7.5c0-2.2 1.8-4 4-4h9c2.2 0 4 1.8 4 4V12c0 4.6-3.9 8.5-8.5 8.5Z", "key": "8962c653b745d9296e57ddd9a090a50d097e6e82" }], ["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "6652a130ac5ca5fab098183b967c4e44aebc4541" }], ["path", { "fill": "#fff", "d": "M13.85 10.01c-.992-1.069-2.701-1.098-3.82.02l-.01.01-.01.01c-1.069.992-1.098 2.701.02 3.82l.01.01.01.01c1.003 1.08 2.797 1.08 3.8 0l.02-.02.02-.02c1.069-.992 1.098-2.701-.02-3.82l-.01-.01-.01-.01Zm1.09-1.03c-1.605-1.718-4.282-1.689-5.96-.02-1.718 1.605-1.689 4.282-.02 5.96 1.592 1.703 4.374 1.707 5.97.01 1.708-1.606 1.675-4.275.01-5.95Z", "key": "17cd0dfabd8faddb2c94cade6f76a4c435949273" }], ["path", { "fill": "#fff", "d": "m8.97 13.87 4.9-4.9 1.06 1.06-4.9 4.9-1.06-1.06Z", "key": "609c1dedfb44742bc3107a5a2c4bee329b6a9f82" }]]);
const ShieldCheck = createMeisterIcons("shield-check", [["path", { "fill": "currentColor", "d": "M4.25 7.5A3.262 3.262 0 0 1 7.5 4.25h9a3.262 3.262 0 0 1 3.25 3.25V12c0 4.186-3.564 7.75-7.75 7.75A7.743 7.743 0 0 1 4.25 12V7.5ZM7.5 2.75A4.762 4.762 0 0 0 2.75 7.5V12A9.243 9.243 0 0 0 12 21.25c5.014 0 9.25-4.236 9.25-9.25V7.5a4.762 4.762 0 0 0-4.75-4.75h-9Zm8.024 7.787a.75.75 0 1 0-1.048-1.074l-3.72 3.63L9.6 11.55a.75.75 0 1 0-1.2.9l1.532 2.043.038.037c.222.223.506.295.73.295.222 0 .504-.071.726-.29l4.098-3.998Z", "key": "d4d5a474540d165c340b02d4b04c000a7fbfe56d" }]]);
const ShieldCheckB = createMeisterIcons("shield-check-b", [["path", { "fill": "currentColor", "d": "M12 20.5c-4.7 0-8.5-3.8-8.5-8.5V7.5c0-2.2 1.8-4 4-4h9c2.2 0 4 1.8 4 4V12c0 4.6-3.9 8.5-8.5 8.5Z", "key": "54cdd0035a568f734808d642118741afc611da67" }], ["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "7254af051dc9d8a55996df8120ad46d131736b1d" }], ["path", { "fill": "#fff", "d": "M15.537 9.476a.75.75 0 0 1-.013 1.06l-4.098 3.999c-.222.219-.504.29-.726.29a1.03 1.03 0 0 1-.73-.295l-.038-.037L8.4 12.45a.75.75 0 0 1 1.2-.9l1.157 1.542 3.72-3.629a.75.75 0 0 1 1.06.013Z", "key": "fe8e37e585709ae9eb377d64afb097dea8c11acc" }]]);
const ShieldCode = createMeisterIcons("shield-code", [["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Zm7.88 2.07a.75.75 0 0 1 0 1.06L9.26 12l1.37 1.37a.75.75 0 1 1-1.06 1.06l-1.4-1.4c-.27-.27-.445-.63-.445-1.03s.174-.76.445-1.03l1.4-1.4a.75.75 0 0 1 1.06 0Zm3.7-.1a.75.75 0 1 0-1.06 1.06l1.37 1.37-1.37 1.37a.75.75 0 1 0 1.06 1.06l1.4-1.4c.27-.27.445-.63.445-1.03s-.174-.76-.445-1.03l-1.4-1.4Z", "key": "6b402d70896a0468ac36929ec9a7b5f534c3e041" }]]);
const ShieldCodeB = createMeisterIcons("shield-code-b", [["path", { "fill": "currentColor", "d": "M12.3 20.8c-4.7 0-8.5-3.8-8.5-8.5V7.8c0-2.2 1.8-4 4-4h9c2.2 0 4 1.8 4 4v4.5c0 4.6-3.9 8.5-8.5 8.5Z", "key": "c94e1097ebf2159d2d96082e7e16988011b10c02" }], ["path", { "fill": "currentColor", "d": "M7.8 4.55A3.262 3.262 0 0 0 4.55 7.8v4.5a7.743 7.743 0 0 0 7.75 7.75c4.186 0 7.75-3.564 7.75-7.75V7.8a3.262 3.262 0 0 0-3.25-3.25h-9ZM3.05 7.8A4.762 4.762 0 0 1 7.8 3.05h9a4.762 4.762 0 0 1 4.75 4.75v4.5c0 5.014-4.236 9.25-9.25 9.25a9.243 9.243 0 0 1-9.25-9.25V7.8Z", "key": "dc81f0843242a064a48351ce3c52a18d80522229" }], ["path", { "fill": "#fff", "d": "M10.93 9.87a.75.75 0 0 1 0 1.06l-1.322 1.322 1.34 1.436a.75.75 0 1 1-1.096 1.024l-1.354-1.45a1.293 1.293 0 0 1-.473-1.012c0-.35.14-.753.485-1.021l1.36-1.36a.75.75 0 0 1 1.06 0Zm2.64-.1a.75.75 0 0 1 1.06 0l1.4 1.4c.27.27.445.63.445 1.03s-.174.76-.445 1.03l-1.4 1.4a.75.75 0 1 1-1.06-1.06l1.37-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Z", "key": "5add1ac83f30546dd36dd56d934248fc08f7c127" }]]);
const ShieldCross = createMeisterIcons("shield-cross", [["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Zm11.88 1.77a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 1 1-1.06 1.06l-1.62-1.62-1.62 1.62a.75.75 0 0 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Z", "key": "00aa14b7fbe727a897bc2d7ea4abf23685979bc9" }]]);
const ShieldCrossB = createMeisterIcons("shield-cross-b", [["path", { "fill": "currentColor", "d": "M12 20.5c-4.7 0-8.5-3.8-8.5-8.5V7.5c0-2.2 1.8-4 4-4h9c2.2 0 4 1.8 4 4V12c0 4.6-3.9 8.5-8.5 8.5Z", "key": "32325d3b6ad2b3d484adc2681f01c1ffeb3393c2" }], ["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "713eb35a59eddaa80fe008d35333f68cf0c9fc8c" }], ["path", { "fill": "#fff", "d": "M14.63 9.27a.75.75 0 0 1 0 1.06l-4.3 4.3a.75.75 0 0 1-1.06-1.06l4.3-4.3a.75.75 0 0 1 1.06 0Z", "key": "6e0aabf3a73a9541dc1304b8e5a009f36d92fc44" }], ["path", { "fill": "#fff", "d": "M9.27 9.27a.75.75 0 0 1 1.06 0l4.3 4.3a.75.75 0 1 1-1.06 1.06l-4.3-4.3a.75.75 0 0 1 0-1.06Z", "key": "06b55019d9f61dd13ffc380a02c3fa48d6ed265f" }]]);
const ShieldHeart = createMeisterIcons("shield-heart", [["path", { "fill": "currentColor", "d": "M10 9.15c-.366 0-.783.194-1.07.48a1.484 1.484 0 0 0 0 2.14l.3.3 2.6 2.6a.352.352 0 0 0 .097.073l.018.006.005.001h.005a.092.092 0 0 0 .018-.007.35.35 0 0 0 .097-.073l2.6-2.6.329-.33.032-.026c.274-.219.419-.572.419-1.014 0-.355-.183-.746-.518-1.014l-.033-.026-.03-.03a1.484 1.484 0 0 0-2.139 0l-.83.83-.86-.86-.026-.031c-.219-.274-.571-.419-1.014-.419Zm-2.13-.58c.513-.514 1.296-.92 2.13-.92.648 0 1.362.187 1.918.696a2.979 2.979 0 0 1 3.983.195c.645.531 1.049 1.328 1.049 2.159 0 .745-.247 1.577-.947 2.157L13.13 15.73c-.312.312-.719.52-1.18.52-.461 0-.868-.208-1.18-.52l-2.6-2.6-.3-.3a2.984 2.984 0 0 1 0-4.26Z", "key": "63e14b0095f43261b2b9b8df1ed02373b087c395" }], ["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "e8125e744676b6276b0d824b025dd9848654d802" }]]);
const ShieldImage = createMeisterIcons("shield-image", [["path", { "fill": "currentColor", "d": "M4.25 7.5A3.262 3.262 0 0 1 7.5 4.25h9a3.262 3.262 0 0 1 3.25 3.25V12a7.43 7.43 0 0 1-.348 2.242l-4.76-4.761C13.23 7.956 10.844 7.994 9.37 9.47l.53.53-.53-.53-4.787 4.787A7.77 7.77 0 0 1 4.25 12V7.5Zm.999 8.313A7.741 7.741 0 0 0 12 19.75c2.83 0 5.374-1.628 6.727-3.976a2.556 2.556 0 0 0-.357-.444l-4.8-4.8a.835.835 0 0 1-.023-.023c-.79-.863-2.196-.897-3.117.023l-4.8 4.8c-.15.15-.269.3-.381.483ZM7.5 2.75A4.762 4.762 0 0 0 2.75 7.5V12A9.243 9.243 0 0 0 12 21.25c5.014 0 9.25-4.236 9.25-9.25V7.5a4.762 4.762 0 0 0-4.75-4.75h-9Z", "key": "b96fb02ef79f644b3c21ee37be8b6cfab2907115" }]]);
const ShieldImageB = createMeisterIcons("shield-image-b", [["path", { "fill": "currentColor", "d": "M20.6 7.55v4.5c0 1.4-.3 2.7-1 3.9-.1-.4-.4-.7-.7-1l-4.8-4.8c-1.2-1.2-3.1-1.2-4.2 0l-4.8 4.8c-.3.3-.5.6-.7 1-.6-1.2-1-2.5-1-3.9v-4.5c0-2.2 1.8-4 4-4h9c2.4 0 4.2 1.7 4.2 4Z", "key": "ca8bffa60026f236db52d527a5c1e5409a102234" }], ["path", { "fill": "currentColor", "d": "M7.4 4.3a3.262 3.262 0 0 0-3.25 3.25v4.5c0 .82.153 1.61.416 2.373l.004-.003 4.789-4.79c1.41-1.524 3.796-1.486 5.271-.01l4.8 4.8.037.036a7.242 7.242 0 0 0 .383-2.406v-4.5c0-1.85-1.428-3.25-3.45-3.25h-9ZM2.65 7.55A4.762 4.762 0 0 1 7.4 2.8h9c2.777 0 4.95 2 4.95 4.75v4.5c0 1.512-.326 2.947-1.102 4.278a.75.75 0 0 1-1.376-.196c-.04-.163-.17-.319-.502-.652l-4.8-4.8c-.92-.92-2.327-.886-3.117-.023a.718.718 0 0 1-.023.023l-4.8 4.8c-.23.23-.386.46-.56.805a.75.75 0 0 1-1.34 0c-.638-1.273-1.08-2.689-1.08-4.235v-4.5Z", "key": "6b9213b5705a35eae85d1d98e8ad990bb397a693" }], ["path", { "fill": "currentColor", "d": "M13.747 10.557c-.79-.863-2.196-.897-3.117.023l-4.8 4.8a3.925 3.925 0 0 0-.394.434c1.333 2.3 3.882 3.886 6.664 3.886 2.778 0 5.322-1.582 6.657-3.874a12.9 12.9 0 0 0-.074-.13c-.063-.112-.15-.264-.222-.424L13.77 10.58a.714.714 0 0 1-.023-.023Zm1.094-1.026C13.43 8.006 11.045 8.044 9.57 9.52l-4.8 4.8-.04.04c-.273.27-.706.702-.858 1.308a.75.75 0 0 0 .062.527C5.456 19.131 8.605 21.2 12.1 21.2c3.494 0 6.644-2.07 8.166-5.005a.75.75 0 0 0 .045-.582 3.582 3.582 0 0 0-.295-.608l-.015-.027a2.615 2.615 0 0 1-.19-.365.751.751 0 0 0-.18-.293l-4.79-4.79Z", "key": "d686e86b9c72c86356df3c4fc96bb0a5570078f0" }]]);
const ShieldScroll = createMeisterIcons("shield-scroll", [["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Zm6.82 5.77a.75.75 0 0 1 1.06 0L12 14.64l1.37-1.37a.75.75 0 1 1 1.06 1.06l-1.4 1.4c-.27.27-.63.445-1.03.445s-.76-.174-1.03-.445l-1.4-1.4a.75.75 0 0 1 0-1.06Zm3.7-2.64L11.9 9.26l-1.37 1.37a.75.75 0 1 1-1.06-1.06l1.4-1.4c.27-.27.63-.445 1.03-.445s.76.174 1.03.445l1.4 1.4a.75.75 0 1 1-1.06 1.06Z", "key": "566618516a9fc409a9d812b66a932606d34c4ea0" }]]);
const ShieldScrollB = createMeisterIcons("shield-scroll-b", [["path", { "fill": "currentColor", "d": "M12 20.5c-4.7 0-8.5-3.8-8.5-8.5V7.5c0-2.2 1.8-4 4-4h9c2.2 0 4 1.8 4 4V12c0 4.6-3.9 8.5-8.5 8.5Z", "key": "7d9bfbc96cfecc6ff791a8d5f90e34d4a60483f1" }], ["path", { "fill": "currentColor", "d": "M7.5 4.25A3.262 3.262 0 0 0 4.25 7.5V12A7.743 7.743 0 0 0 12 19.75c4.186 0 7.75-3.564 7.75-7.75V7.5a3.262 3.262 0 0 0-3.25-3.25h-9ZM2.75 7.5A4.762 4.762 0 0 1 7.5 2.75h9a4.762 4.762 0 0 1 4.75 4.75V12c0 5.014-4.236 9.25-9.25 9.25A9.243 9.243 0 0 1 2.75 12V7.5Z", "key": "1158665a8b5f25b6ef88ffa237251d81aaf4fad1" }], ["path", { "fill": "#fff", "d": "M9.57 13.27a.75.75 0 0 1 1.06 0L12 14.64l1.37-1.37a.75.75 0 1 1 1.06 1.06l-1.4 1.4c-.27.27-.63.445-1.03.445s-.76-.174-1.03-.445l-1.4-1.4a.75.75 0 0 1 0-1.06ZM12 9.26l1.37 1.37a.75.75 0 1 0 1.06-1.06l-1.4-1.4c-.27-.27-.63-.445-1.03-.445-.396 0-.75.17-1.02.434L9.488 9.552a.75.75 0 0 0 1.024 1.096l1.487-1.388Z", "key": "74a7a47089792c2ced010409b1c5fa1bc0eae380" }]]);
const Signal = createMeisterIcons("signal", [["path", { "fill": "currentColor", "d": "M17.5 6.75a.75.75 0 0 0-1.5 0v11a.75.75 0 0 0 1.5 0v-11ZM11.75 10a.75.75 0 0 1 .75.75v7a.75.75 0 0 1-1.5 0v-7a.75.75 0 0 1 .75-.75Zm-5 4a.75.75 0 0 1 .75.75v3a.75.75 0 0 1-1.5 0v-3a.75.75 0 0 1 .75-.75Z", "key": "e7da037ced0526f7304db92986b8b621e7bb6275" }]]);
const Simcard = createMeisterIcons("simcard", [["path", { "fill": "currentColor", "d": "M18.84 3.23a.292.292 0 0 0-.134.013l-.1.03H10.4c-.521 0-1.124.234-1.47.58l-3.3 3.3c-.355.355-.58.862-.58 1.47v11.8c0 .185.164.35.35.35h13.2a.36.36 0 0 0 .35-.35v-17c0-.096-.039-.151-.064-.172a.097.097 0 0 0-.046-.02Zm1-1.137c.4.33.61.824.61 1.33v17a1.86 1.86 0 0 1-1.85 1.85H5.4a1.86 1.86 0 0 1-1.85-1.85v-11.8c0-.993.375-1.886 1.02-2.531l3.3-3.3c.654-.654 1.651-1.02 2.53-1.02h8.007c.532-.118 1.045.002 1.432.321Z", "key": "5d5a4d2f09c1e44a90588248270b14a3ea840aad" }], ["path", { "fill": "currentColor", "d": "M14.5 6.472a.75.75 0 0 1 .75.75v4.7a.75.75 0 0 1-1.5 0v-4.7a.75.75 0 0 1 .75-.75Zm-4.5 0a.75.75 0 0 1 .75.75v4.7a.75.75 0 0 1-1.5 0v-4.7a.75.75 0 0 1 .75-.75Z", "key": "15968f4b1f593b5b7435c66dffa29682d39e5fa5" }]]);
const SimcardB = createMeisterIcons("simcard-b", [["path", { "fill": "currentColor", "d": "M19.7 3.422v17c0 .6-.5 1.1-1.1 1.1H5.4c-.6 0-1.1-.5-1.1-1.1v-11.8c0-.8.3-1.5.8-2l3.3-3.3c.5-.5 1.3-.8 2-.8h8.1c.7-.2 1.2.3 1.2.9Z", "key": "0a463aff966d7c5b8e81cafcae524689d8f0bc3c" }], ["path", { "fill": "currentColor", "d": "M18.84 3.23a.292.292 0 0 0-.134.013l-.1.03H10.4c-.521 0-1.124.234-1.47.58l-3.3 3.3c-.355.355-.58.862-.58 1.47v11.8c0 .185.164.35.35.35h13.2a.36.36 0 0 0 .35-.35v-17c0-.096-.039-.151-.064-.172a.097.097 0 0 0-.046-.02Zm1-1.137c.4.33.61.824.61 1.33v17a1.86 1.86 0 0 1-1.85 1.85H5.4a1.86 1.86 0 0 1-1.85-1.85v-11.8c0-.993.375-1.886 1.02-2.531l3.3-3.3c.654-.654 1.651-1.02 2.53-1.02h8.007c.532-.118 1.045.002 1.432.321Z", "key": "31661f23e6a0d784b9fec4d3feb0f56d535d9fb1" }], ["path", { "fill": "#fff", "d": "M14.5 6.472a.75.75 0 0 1 .75.75v4.7a.75.75 0 0 1-1.5 0v-4.7a.75.75 0 0 1 .75-.75Zm-4.5 0a.75.75 0 0 1 .75.75v4.7a.75.75 0 0 1-1.5 0v-4.7a.75.75 0 0 1 .75-.75Z", "key": "6f44d3205a44eef239797fb640c05a4e5be9e589" }]]);
const SmartwatcCircle = createMeisterIcons("smartwatc-circle", [["path", { "fill": "currentColor", "d": "M12 5.55a6.55 6.55 0 1 0 0 13.1 6.55 6.55 0 0 0 0-13.1ZM3.95 12.1a8.05 8.05 0 1 1 16.1 0 8.05 8.05 0 0 1-16.1 0Z", "key": "765e1f9002f752aef21ed326fc5436a03f38cbeb" }], ["path", { "fill": "currentColor", "d": "M9.4 3.15a.575.575 0 0 0-.55.55V6a.75.75 0 1 1-1.5 0V3.7c0-1.114.936-2.05 2.05-2.05h5.453l.053.008c1.012.144 1.844.914 1.844 2.042V6a.75.75 0 0 1-1.5 0V3.7c0-.261-.155-.484-.51-.55H9.4ZM8 17.45a.75.75 0 0 1 .75.75v2.1c0 .286.264.55.55.55h5.4c.286 0 .55-.264.55-.55v-2.1a.75.75 0 0 1 1.5 0v2.1c0 1.114-.936 2.05-2.05 2.05H9.3a2.073 2.073 0 0 1-2.05-2.05v-2.1a.75.75 0 0 1 .75-.75Z", "key": "3d8246bbbcd71c5c234e9e4f5c1bb9caa49f2c54" }]]);
const SmartwatcCircleB = createMeisterIcons("smartwatc-circle-b", [["path", { "fill": "currentColor", "d": "M12 19.4a7.3 7.3 0 1 0 0-14.6 7.3 7.3 0 0 0 0 14.6Z", "key": "5fec8db143aca0e54bbc4c7e52e9c511d09388d6" }], ["path", { "fill": "currentColor", "d": "M12 5.55a6.55 6.55 0 1 0 0 13.1 6.55 6.55 0 0 0 0-13.1ZM3.95 12.1a8.05 8.05 0 1 1 16.1 0 8.05 8.05 0 0 1-16.1 0Z", "key": "56c9c3b43bf0395090c1889aff1effd1551d581e" }], ["path", { "fill": "currentColor", "d": "M9.4 3.15a.575.575 0 0 0-.55.55V6a.75.75 0 1 1-1.5 0V3.7c0-1.114.936-2.05 2.05-2.05h5.453l.053.008c1.012.144 1.844.914 1.844 2.042V6a.75.75 0 0 1-1.5 0V3.7c0-.261-.155-.484-.51-.55H9.4ZM8 17.45a.75.75 0 0 1 .75.75v2.1c0 .286.264.55.55.55h5.4c.286 0 .55-.264.55-.55v-2.1a.75.75 0 0 1 1.5 0v2.1c0 1.114-.936 2.05-2.05 2.05H9.3a2.073 2.073 0 0 1-2.05-2.05v-2.1a.75.75 0 0 1 .75-.75Z", "key": "a7e237e4bdb602835fb8e4d2ab972b85fbe91545" }]]);
const SmartwatcCircleTime = createMeisterIcons("smartwatc-circle-time", [["path", { "fill": "currentColor", "d": "M12 8.45a.75.75 0 0 1 .75.75v2.9c0 .162.085.385.236.626l1.444 1.444a.75.75 0 0 1-1.06 1.06l-1.553-1.552-.041-.062c-.225-.337-.526-.89-.526-1.516V9.2a.75.75 0 0 1 .75-.75Z", "key": "ee803cd3fa028c35657d2a08a1cd91233befb1e7" }], ["path", { "fill": "currentColor", "d": "M12 5.55a6.55 6.55 0 1 0 0 13.1 6.55 6.55 0 0 0 0-13.1ZM3.95 12.1a8.05 8.05 0 1 1 16.1 0 8.05 8.05 0 0 1-16.1 0Z", "key": "264d5eabbd1e589a5f1df873211ae52e4b7c965b" }], ["path", { "fill": "currentColor", "d": "M9.4 3.15a.575.575 0 0 0-.55.55V6a.75.75 0 1 1-1.5 0V3.7c0-1.114.936-2.05 2.05-2.05h5.453l.053.008c1.012.144 1.844.914 1.844 2.042V6a.75.75 0 0 1-1.5 0V3.7c0-.261-.155-.484-.51-.55H9.4ZM8 17.45a.75.75 0 0 1 .75.75v2.1c0 .286.264.55.55.55h5.4c.286 0 .55-.264.55-.55v-2.1a.75.75 0 0 1 1.5 0v2.1c0 1.114-.936 2.05-2.05 2.05H9.3a2.073 2.073 0 0 1-2.05-2.05v-2.1a.75.75 0 0 1 .75-.75Z", "key": "ff9a8fde0159106b485d95c7a2eb6279b9f2164b" }]]);
const SmartwatcCircleTimeB = createMeisterIcons("smartwatc-circle-time-b", [["path", { "fill": "currentColor", "d": "M12 19.4a7.3 7.3 0 1 0 0-14.6 7.3 7.3 0 0 0 0 14.6Z", "key": "b0a866974c726fb669e0cc97701922796fd1e1c5" }], ["path", { "fill": "currentColor", "d": "M12 5.55a6.55 6.55 0 1 0 0 13.1 6.55 6.55 0 0 0 0-13.1ZM3.95 12.1a8.05 8.05 0 1 1 16.1 0 8.05 8.05 0 0 1-16.1 0Z", "key": "f503a64f44b702caffa2d9652fc5e62ef61cfd94" }], ["path", { "fill": "#fff", "d": "M12 8.45a.75.75 0 0 1 .75.75v2.9c0 .162.085.385.236.626l1.444 1.444a.75.75 0 0 1-1.06 1.06l-1.553-1.552-.041-.062c-.225-.337-.526-.89-.526-1.516V9.2a.75.75 0 0 1 .75-.75Z", "key": "a34161b8898c901a9421b29525d687a6be88e99f" }], ["path", { "fill": "currentColor", "d": "M9.4 3.15a.575.575 0 0 0-.55.55V6a.75.75 0 1 1-1.5 0V3.7c0-1.114.936-2.05 2.05-2.05h5.453l.053.008c1.012.144 1.844.914 1.844 2.042V6a.75.75 0 0 1-1.5 0V3.7c0-.261-.155-.484-.51-.55H9.4ZM8 17.45a.75.75 0 0 1 .75.75v2.1c0 .286.264.55.55.55h5.4c.286 0 .55-.264.55-.55v-2.1a.75.75 0 0 1 1.5 0v2.1c0 1.114-.936 2.05-2.05 2.05H9.3a2.073 2.073 0 0 1-2.05-2.05v-2.1a.75.75 0 0 1 .75-.75Z", "key": "c8482fa63053deae3b1fc79e53611dc9659079d3" }]]);
const SmartwatcSquare = createMeisterIcons("smartwatc-square", [["path", { "fill": "currentColor", "d": "M9.25 5.25A3.945 3.945 0 0 0 5.3 9.2v5.5a3.945 3.945 0 0 0 3.95 3.95h5.5a3.945 3.945 0 0 0 3.95-3.95V9.2a3.945 3.945 0 0 0-3.95-3.95h-5.5ZM3.8 9.2a5.445 5.445 0 0 1 5.45-5.45h5.5A5.445 5.445 0 0 1 20.2 9.2v5.5a5.445 5.445 0 0 1-5.45 5.45h-5.5A5.445 5.445 0 0 1 3.8 14.7V9.2Z", "key": "5195a9f7f5745304fea66df96cf3ef116fb028b2" }], ["path", { "fill": "currentColor", "d": "M8.974 2.923A.228.228 0 0 0 8.9 3.1v.945l.026.046c.024.042.06.102.095.174l-1.342.67a1.79 1.79 0 0 0-.058-.105 2.796 2.796 0 0 1-.08-.145 1.276 1.276 0 0 1-.14-.585v-1c0-1.062.885-1.75 1.75-1.75h5.6c1.061 0 1.75.885 1.75 1.75v1.017c0 .086 0 .218-.024.356a1.603 1.603 0 0 1-.156.462l-1.342-.67a.438.438 0 0 0 .02-.042v-.017L15 4.1v-1a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-5.6a.27.27 0 0 0-.176.073ZM15.092 19.9l.028.03 1.06-1.06c.223.223.28.496.3.636.02.142.02.29.02.378V20.9c0 1.062-.885 1.75-1.75 1.75h-5.5c-1.062 0-1.75-.885-1.75-1.75v-1.017c0-.086 0-.218.023-.356.027-.167.082-.314.156-.463l1.342.671a.472.472 0 0 0-.019.042l-.001.017L9 19.9v1a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h5.5a.27.27 0 0 0 .176-.073A.228.228 0 0 0 15 20.9v-1l-.001-.124a.591.591 0 0 0-.004-.058.479.479 0 0 0 .096.181Z", "key": "60911631f78deccafaba962df16fe01e67d51998" }]]);
const SmartwatcSquareB = createMeisterIcons("smartwatc-square-b", [["path", { "fill": "currentColor", "d": "M19.45 9.2v5.5c0 2.6-2.1 4.7-4.7 4.7h-5.5c-2.6 0-4.7-2.1-4.7-4.7V9.2c0-2.3 1.6-4.2 3.8-4.6.3-.1.6-.1.9-.1h5.5c.3 0 .6 0 .9.1 2.2.4 3.8 2.3 3.8 4.6Z", "key": "bcacd0ec7896c464522fa01dc28259e8d5427223" }], ["path", { "fill": "currentColor", "d": "M9.25 5.25c-.317 0-.496.006-.663.062l-.05.016-.053.01C6.644 5.673 5.3 7.26 5.3 9.2v5.5a3.945 3.945 0 0 0 3.95 3.95h5.5a3.945 3.945 0 0 0 3.95-3.95V9.2c0-1.94-1.344-3.527-3.184-3.862l-.053-.01-.05-.016c-.167-.056-.346-.062-.663-.062h-5.5Zm-.032-1.5h5.564c.27 0 .653 0 1.051.121C18.367 4.356 20.2 6.558 20.2 9.2v5.5a5.445 5.445 0 0 1-5.45 5.45h-5.5A5.445 5.445 0 0 1 3.8 14.7V9.2c0-2.642 1.833-4.844 4.367-5.329.398-.121.78-.121 1.05-.121Z", "key": "9e564cdaf896ae48d98259d953b0ab71fd56930f" }], ["path", { "fill": "currentColor", "d": "M8.974 2.923A.228.228 0 0 0 8.9 3.1v.945l.026.046c.024.042.06.102.095.174l-1.342.67a1.79 1.79 0 0 0-.058-.105 2.796 2.796 0 0 1-.08-.145 1.276 1.276 0 0 1-.14-.585v-1c0-1.062.885-1.75 1.75-1.75h5.6c1.061 0 1.75.885 1.75 1.75v1.017c0 .086 0 .218-.024.356a1.603 1.603 0 0 1-.156.462l-1.342-.67a.438.438 0 0 0 .02-.042v-.017L15 4.1v-1a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-5.6a.27.27 0 0 0-.176.073ZM15.092 19.9l.028.03 1.06-1.06c.223.223.28.496.3.636.02.142.02.29.02.378V20.9c0 1.062-.885 1.75-1.75 1.75h-5.5c-1.062 0-1.75-.885-1.75-1.75v-1.017c0-.086 0-.218.023-.356.027-.167.082-.314.156-.463l1.342.671a.472.472 0 0 0-.019.042l-.001.017L9 19.9v1a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h5.5a.27.27 0 0 0 .176-.073A.228.228 0 0 0 15 20.9v-1l-.001-.124a.591.591 0 0 0-.004-.058.479.479 0 0 0 .096.181Z", "key": "b3f68047e91d11472d7fd6edf8d4d35a64e50ad3" }]]);
const SmartwatcSquareTime = createMeisterIcons("smartwatc-square-time", [["path", { "fill": "currentColor", "d": "M9.25 5.25A3.945 3.945 0 0 0 5.3 9.2v5.5a3.945 3.945 0 0 0 3.95 3.95h5.5a3.945 3.945 0 0 0 3.95-3.95V9.2a3.945 3.945 0 0 0-3.95-3.95h-5.5ZM3.8 9.2a5.445 5.445 0 0 1 5.45-5.45h5.5A5.445 5.445 0 0 1 20.2 9.2v5.5a5.445 5.445 0 0 1-5.45 5.45h-5.5A5.445 5.445 0 0 1 3.8 14.7V9.2Z", "key": "b7abf181dafbf8ce5985351fab8a03f0b660d660" }], ["path", { "fill": "currentColor", "d": "M8.974 2.923A.228.228 0 0 0 8.9 3.1v.945l.026.046c.024.042.06.102.095.174l-1.342.67a1.79 1.79 0 0 0-.058-.105 2.796 2.796 0 0 1-.08-.145 1.276 1.276 0 0 1-.14-.585v-1c0-1.062.885-1.75 1.75-1.75h5.6c1.061 0 1.75.885 1.75 1.75v1.017c0 .086 0 .218-.024.356a1.603 1.603 0 0 1-.156.462l-1.342-.67a.438.438 0 0 0 .02-.042v-.017L15 4.1v-1a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-5.6a.27.27 0 0 0-.176.073ZM15.092 19.9l.028.03 1.06-1.06c.223.223.28.496.3.636.02.142.02.29.02.378V20.9c0 1.062-.885 1.75-1.75 1.75h-5.5c-1.062 0-1.75-.885-1.75-1.75v-1.017c0-.086 0-.218.023-.356.027-.167.082-.314.156-.463l1.342.671a.472.472 0 0 0-.019.042l-.001.017L9 19.9v1a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h5.5a.27.27 0 0 0 .176-.073A.228.228 0 0 0 15 20.9v-1l-.001-.124a.591.591 0 0 0-.004-.058.479.479 0 0 0 .096.181ZM11.95 8.55a.75.75 0 0 1 .75.75v2.9c0 .162.085.385.236.625l1.444 1.445a.75.75 0 0 1-1.06 1.06l-1.553-1.552-.041-.062c-.225-.337-.526-.89-.526-1.516V9.3a.75.75 0 0 1 .75-.75Z", "key": "da36eaa8ec4f0966ab3ef0fc5148406ea926aa46" }]]);
const SmartwatcSquareTimeB = createMeisterIcons("smartwatc-square-time-b", [["path", { "fill": "currentColor", "d": "M14.75 19.4h-5.5c-2.6 0-4.7-2.1-4.7-4.7V9.2c0-2.6 2.1-4.7 4.7-4.7h5.5c2.6 0 4.7 2.1 4.7 4.7v5.5c0 2.6-2.1 4.7-4.7 4.7Z", "key": "e07ef8e37caa26df815541f017d7b9ba1cf75343" }], ["path", { "fill": "currentColor", "d": "M9.25 5.25A3.945 3.945 0 0 0 5.3 9.2v5.5a3.945 3.945 0 0 0 3.95 3.95h5.5a3.945 3.945 0 0 0 3.95-3.95V9.2a3.945 3.945 0 0 0-3.95-3.95h-5.5ZM3.8 9.2a5.445 5.445 0 0 1 5.45-5.45h5.5A5.445 5.445 0 0 1 20.2 9.2v5.5a5.445 5.445 0 0 1-5.45 5.45h-5.5A5.445 5.445 0 0 1 3.8 14.7V9.2Z", "key": "fe5cffa0580b51b10f9c674350348df9f15f711a" }], ["path", { "fill": "currentColor", "d": "M8.974 2.923A.228.228 0 0 0 8.9 3.1v.945l.026.046c.024.042.06.102.095.174l-1.342.67a1.79 1.79 0 0 0-.058-.105 2.796 2.796 0 0 1-.08-.145 1.276 1.276 0 0 1-.14-.585v-1c0-1.062.885-1.75 1.75-1.75h5.6c1.061 0 1.75.885 1.75 1.75v1.017c0 .086 0 .218-.024.356a1.603 1.603 0 0 1-.156.462l-1.342-.67a.438.438 0 0 0 .02-.042v-.017L15 4.1v-1a.27.27 0 0 0-.073-.176.228.228 0 0 0-.177-.074h-5.6a.27.27 0 0 0-.176.073ZM15.092 19.9l.028.03 1.06-1.06c.223.223.28.496.3.636.02.142.02.29.02.378V20.9c0 1.062-.885 1.75-1.75 1.75h-5.5c-1.062 0-1.75-.885-1.75-1.75v-1.017c0-.086 0-.218.023-.356.027-.167.082-.314.156-.463l1.342.671a.472.472 0 0 0-.019.042l-.001.017L9 19.9v1a.27.27 0 0 0 .073.176.228.228 0 0 0 .177.074h5.5a.27.27 0 0 0 .176-.073A.228.228 0 0 0 15 20.9v-1l-.001-.124a.591.591 0 0 0-.004-.058.479.479 0 0 0 .096.181Z", "key": "4020848b4700534a9b641b19737d265e3dcf1a3f" }], ["path", { "fill": "#fff", "d": "M11.95 8.55a.75.75 0 0 1 .75.75v2.9c0 .162.085.385.236.625l1.444 1.445a.75.75 0 0 1-1.06 1.06l-1.553-1.552-.041-.062c-.225-.337-.526-.89-.526-1.516V9.3a.75.75 0 0 1 .75-.75Z", "key": "3859795f758374f702c15e9b68fad8c4ec310033" }]]);
const Snow = createMeisterIcons("snow", [["path", { "fill": "currentColor", "d": "M6.254 8.082c.44-.427 1.032-.657 1.746-.657a.75.75 0 0 0 0-1.5c-1.073 0-2.072.362-2.83 1.12l-.024.024-.022.026c-.576.691-1.074 1.655-1.074 2.78A3.909 3.909 0 0 0 8 13.825h8c1.073 0 2.072-.362 2.83-1.12l.024-.024.022-.026c.576-.691 1.074-1.655 1.074-2.78A3.909 3.909 0 0 0 16 5.925a.75.75 0 0 0 0 1.5c1.386 0 2.45 1.064 2.45 2.45 0 .663-.292 1.289-.704 1.793-.44.427-1.032.657-1.746.657H8c-1.386 0-2.45-1.064-2.45-2.45 0-.664.292-1.289.704-1.793Z", "key": "a82278d4ad5718e28bd1f25ee8c0078b4cde7f5a" }], ["path", { "fill": "currentColor", "d": "M12 3.425a3.262 3.262 0 0 0-3.25 3.25.75.75 0 0 1-1.5 0A4.762 4.762 0 0 1 12 1.925a4.762 4.762 0 0 1 4.75 4.75.75.75 0 0 1-1.5 0A3.262 3.262 0 0 0 12 3.425Zm-4 14.75c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Zm2.8-1.5c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Zm-.3 4.1c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Zm-3.7 1.3c-.2 0-.4-.1-.5-.2-.2-.1-.3-.3-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.2.1-.4.2-.6.2Zm6.9-2.5c-.2 0-.4-.1-.5-.2-.2-.2-.2-.4-.2-.6 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.2-.5.3-.7.3Zm3.1-2.1c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.6 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.3-.6.3Zm.8 3.7c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.5.2-.7.2Z", "key": "f2efffc904c80c479ffbb15fceef51d5d0f81544" }]]);
const SnowB = createMeisterIcons("snow-b", [["path", { "fill": "currentColor", "d": "M16 6.675c1.8 0 3.2 1.4 3.2 3.2 0 .9-.4 1.7-.9 2.3-.6.6-1.4.9-2.3.9H8c-1.8 0-3.2-1.4-3.2-3.2 0-.9.4-1.7.9-2.3.6-.6 1.4-.9 2.3-.9", "key": "5f8798b1614db8b16dfbd09ac71246472ac4a7df" }], ["path", { "fill": "currentColor", "d": "M6.254 8.082c.44-.427 1.032-.657 1.746-.657a.75.75 0 1 0 0-1.5c-1.073 0-2.072.362-2.83 1.12l-.024.024-.022.026c-.576.691-1.074 1.655-1.074 2.78A3.909 3.909 0 0 0 8 13.825h8c1.073 0 2.072-.362 2.83-1.12l.024-.024.022-.026c.576-.691 1.074-1.655 1.074-2.78A3.909 3.909 0 0 0 16 5.925a.75.75 0 0 0 0 1.5c1.386 0 2.45 1.064 2.45 2.45 0 .663-.292 1.289-.704 1.793-.44.427-1.032.657-1.746.657H8c-1.386 0-2.45-1.064-2.45-2.45 0-.664.292-1.289.704-1.793Z", "key": "ca51ee17ac1286cded8bb6c998de9ff66eb7cc27" }], ["path", { "fill": "currentColor", "d": "M8 6.675c0-2.2 1.8-4 4-4s4 1.8 4 4", "key": "0740c65972a922cd08724249242f63146f949199" }], ["path", { "fill": "currentColor", "d": "M12 3.425a3.262 3.262 0 0 0-3.25 3.25.75.75 0 0 1-1.5 0A4.762 4.762 0 0 1 12 1.925a4.762 4.762 0 0 1 4.75 4.75.75.75 0 0 1-1.5 0A3.262 3.262 0 0 0 12 3.425Zm-4 14.75c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Zm2.8-1.5c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Zm-.3 4.1c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.1-.5.2-.7.2Zm-3.7 1.3c-.2 0-.4-.1-.5-.2-.2-.1-.3-.3-.3-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.2.1-.4.2-.6.2Zm6.9-2.5c-.2 0-.4-.1-.5-.2-.2-.2-.2-.4-.2-.6 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.3.2-.5.3-.7.3Zm3.1-2.1c-.2 0-.4-.1-.5-.2-.1-.1-.3-.4-.3-.6 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.4.3-.6.3Zm.8 3.7c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2.3-.3.8-.3 1.1 0 .1.1.2.3.2.5s-.1.4-.2.5c-.1.1-.5.2-.7.2Z", "key": "01e89ff716ebf475a847e998267a45d9a48dbb23" }]]);
const Sound = createMeisterIcons("sound", [["path", { "fill": "currentColor", "d": "m9.275 6.671-3.097 9.793a.75.75 0 0 1-1.43-.453l3.103-9.81c.177-.533.597-.93 1.125-1.056.537-.127 1.098.043 1.517.462l7.9 7.9c.398.398.52.957.432 1.44a1.537 1.537 0 0 1-1.025 1.202l-.01.003-9.7 3.1a.75.75 0 0 1-.456-1.429l9.694-3.098.005-.003a.105.105 0 0 0 .017-.044.183.183 0 0 0-.004-.08.107.107 0 0 0-.014-.03l-7.9-7.9a.226.226 0 0 0-.089-.061c-.012-.004-.018-.003-.02-.002a.035.035 0 0 0-.014.01.14.14 0 0 0-.034.056Z", "key": "79e4272d1db47dfdc22e3e0d8de16198ce390ff3" }], ["path", { "fill": "currentColor", "d": "M5.993 15.707a.75.75 0 0 1 0 1.06l-1.4 1.4c0 .001-.006.006-.006.02 0 .015.006.02.006.02l1.2 1.2s.005.006.02.006c.014 0 .019-.006.02-.006l1.4-1.4a.75.75 0 0 1 1.06 1.06l-1.4 1.4a1.535 1.535 0 0 1-2.16 0l-1.2-1.2a1.535 1.535 0 0 1 0-2.16l1.4-1.4a.75.75 0 0 1 1.06 0Zm8.32-9.07a.75.75 0 0 1 .75-.75 3.013 3.013 0 0 1 3.05 3.05.75.75 0 0 1-1.5 0c0-.885-.665-1.55-1.55-1.55a.75.75 0 0 1-.75-.75Z", "key": "361ccbdd706cd60f82f5efd1d86aebb6f85ae478" }], ["path", { "fill": "currentColor", "d": "M14.313 3.837a.75.75 0 0 1 .75-.75c3.214 0 5.85 2.636 5.85 5.85a.75.75 0 0 1-1.5 0c0-2.385-1.965-4.35-4.35-4.35a.75.75 0 0 1-.75-.75Z", "key": "a4c1059eee7eb32f88d601c0139916d3d1aae226" }]]);
const SoundB = createMeisterIcons("sound-b", [["path", { "fill": "currentColor", "d": "m17.463 15.438-9.7 3.1-1.4 1.4c-.3.3-.8.3-1.1 0l-1.2-1.2c-.3-.3-.3-.8 0-1.1l1.4-1.4 3.1-9.8c.2-.6.9-.8 1.4-.3l7.9 7.9c.4.4.2 1.2-.4 1.4Z", "key": "3b0067ef8c8d19f091f754a7935b5cecffd61916" }], ["path", { "fill": "currentColor", "d": "m9.275 6.671-3.153 9.967-1.53 1.53s-.005.005-.005.02c0 .014.006.019.006.02l1.2 1.2s.005.005.02.005c.014 0 .019-.006.02-.006l1.528-1.529 9.866-3.153c.028-.01.068-.041.087-.11a.159.159 0 0 0 .006-.06L9.432 6.669a.226.226 0 0 0-.089-.061c-.012-.004-.018-.003-.02-.002a.035.035 0 0 0-.014.01.14.14 0 0 0-.034.056Zm-.299-1.526c.537-.127 1.098.043 1.517.462l7.9 7.9c.432.432.497 1.03.368 1.503-.13.48-.49.948-1.061 1.139l-.01.003-9.526 3.044-1.271 1.272a1.535 1.535 0 0 1-2.16 0l-1.2-1.2a1.535 1.535 0 0 1 0-2.16l1.27-1.271L7.85 6.2a1.579 1.579 0 0 1 1.125-1.055Zm5.337 1.492a.75.75 0 0 1 .75-.75 3.013 3.013 0 0 1 3.05 3.05.75.75 0 0 1-1.5 0c0-.885-.665-1.55-1.55-1.55a.75.75 0 0 1-.75-.75Z", "key": "e474449ec75bcbceedfe79ffbe672ebf2030223b" }], ["path", { "fill": "currentColor", "d": "M14.313 3.837a.75.75 0 0 1 .75-.75c3.214 0 5.85 2.636 5.85 5.85a.75.75 0 0 1-1.5 0c0-2.385-1.965-4.35-4.35-4.35a.75.75 0 0 1-.75-.75Z", "key": "0dfd45976c5816b596ebec5b7913fe42f0c2ef52" }]]);
const Speaker = createMeisterIcons("speaker", [["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17V7ZM12 6.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm0 7.5a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM12 11.25a3.75 3.75 0 1 0 0 7.5 3.75 3.75 0 0 0 0-7.5Z", "key": "c5056f14345223544aa97b5cc372675195cfe415" }]]);
const SpeakerB = createMeisterIcons("speaker-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h6c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4Z", "key": "13eb0d14b2d8185b4c592a14affc4d4196c5b8d1" }], ["path", { "fill": "currentColor", "d": "M9 3.75A3.262 3.262 0 0 0 5.75 7v10A3.262 3.262 0 0 0 9 20.25h6A3.262 3.262 0 0 0 18.25 17V7A3.262 3.262 0 0 0 15 3.75H9ZM4.25 7A4.762 4.762 0 0 1 9 2.25h6A4.762 4.762 0 0 1 19.75 7v10A4.762 4.762 0 0 1 15 21.75H9A4.762 4.762 0 0 1 4.25 17V7Z", "key": "42350a4a647656f71bb19b8ffde64875bdea43b7" }], ["path", { "fill": "#fff", "d": "M12 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z", "key": "789cde28d58c8be2d4753f89aa6086c239527b3f" }], ["path", { "fill": "#fff", "d": "M12 6.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5Zm-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0ZM12 12.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 15a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "a805251a782d8d10a6a3b222da21ee046fd2bc14" }]]);
const Spoon = createMeisterIcons("spoon", [["path", { "fill": "currentColor", "d": "M10.232 4.901C9.752 5.85 9.5 7.057 9.5 8c0 1.817 1.084 3.05 2.55 3.05.785 0 1.403-.308 1.834-.804.438-.506.716-1.248.716-2.146 0-.923-.293-2.15-.822-3.131-.55-1.017-1.205-1.52-1.828-1.52-.618.001-1.223.473-1.718 1.452Zm-1.339-.677c.58-1.146 1.575-2.274 3.057-2.274 1.477 0 2.522 1.147 3.147 2.306C15.743 5.45 16.1 6.923 16.1 8.1c0 1.202-.373 2.31-1.084 3.13-.719.827-1.751 1.32-2.966 1.32C9.516 12.55 8 10.383 8 8c0-1.158.298-2.6.893-3.776ZM11.95 16.35a.575.575 0 0 0-.55.55V20c0 .25.227.55.65.55.324 0 .55-.202.55-.55v-3.1a.575.575 0 0 0-.55-.55h-.1Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h.1c1.114 0 2.05.936 2.05 2.05V20c0 1.252-.974 2.05-2.05 2.05-1.178 0-2.15-.9-2.15-2.05v-3.1Z", "key": "ed5c13a54bc314f536d355a2ac9d1ce99f5b536a" }], ["path", { "fill": "currentColor", "d": "M11.3 15.7v-3.9h1.5v3.9h-1.5Z", "key": "76561e6c6c2c27a6fb19342346cc24ba3c129e5c" }]]);
const SpoonB = createMeisterIcons("spoon-b", [["path", { "fill": "currentColor", "d": "M11.95 2.7c2.1 0 3.4 3.3 3.4 5.4 0 2.1-1.3 3.7-3.3 3.7-2 0-3.3-1.7-3.3-3.8 0-2.1 1.1-5.3 3.2-5.3Z", "key": "60c40ca664e55beecb923309b0f3b94d0c5de560" }], ["path", { "fill": "currentColor", "d": "M10.232 4.901C9.752 5.85 9.5 7.057 9.5 8c0 1.817 1.084 3.05 2.55 3.05.785 0 1.403-.308 1.834-.804.438-.506.716-1.248.716-2.146 0-.923-.293-2.15-.822-3.131-.55-1.017-1.205-1.52-1.828-1.52-.618.001-1.223.473-1.718 1.452Zm-1.339-.677c.58-1.146 1.575-2.274 3.057-2.274 1.477 0 2.522 1.147 3.147 2.306C15.743 5.45 16.1 6.923 16.1 8.1c0 1.202-.373 2.31-1.084 3.13-.719.827-1.751 1.32-2.966 1.32C9.516 12.55 8 10.383 8 8c0-1.158.298-2.6.893-3.776ZM12.05 21.3c-.8 0-1.4-.6-1.4-1.3v-3.1c0-.7.6-1.3 1.3-1.3h.1c.7 0 1.3.6 1.3 1.3V20c0 .8-.6 1.3-1.3 1.3Z", "key": "0476134749d847fcf22ce863efea0faa1428616d" }], ["path", { "fill": "currentColor", "d": "M11.95 16.35a.575.575 0 0 0-.55.55V20c0 .25.227.55.65.55.324 0 .55-.202.55-.55v-3.1a.575.575 0 0 0-.55-.55h-.1Zm-2.05.55c0-1.114.936-2.05 2.05-2.05h.1c1.114 0 2.05.936 2.05 2.05V20c0 1.252-.974 2.05-2.05 2.05-1.178 0-2.15-.9-2.15-2.05v-3.1Z", "key": "ae0d0e584f95ad18066f0df36f0b44a18302661a" }], ["path", { "fill": "currentColor", "d": "M11.3 15.7v-3.9h1.5v3.9h-1.5Z", "key": "04d445402bdde2e005d665e22c18f75ed3a73ca1" }]]);
const SpoonDiag = createMeisterIcons("spoon-diag", [["path", { "fill": "currentColor", "d": "M15.628 5.84c-1.061.338-2.123 1.022-2.73 1.672-.617.66-.972 1.389-1.04 2.063-.064.649.13 1.302.722 1.895.598.597 1.282.814 1.944.758.677-.058 1.386-.406 1.978-1.04.627-.672 1.292-1.749 1.619-2.81.34-1.1.242-1.904-.201-2.348l-.01-.009-.008-.01c-.386-.413-1.163-.526-2.274-.172Zm3.361-.861c-1.014-1.077-2.582-.963-3.817-.569-1.289.412-2.577 1.228-3.37 2.078-.783.839-1.328 1.86-1.436 2.937-.11 1.101.246 2.198 1.154 3.105.902.903 2.018 1.286 3.13 1.192 1.1-.093 2.14-.644 2.948-1.51.773-.828 1.558-2.101 1.956-3.391.385-1.246.482-2.786-.565-3.842ZM8.82 15.13a.518.518 0 0 0-.74 0l-2.224 2.224-.026.022c-.14.117-.18.236-.18.336 0 .109.048.275.23.457a.517.517 0 0 0 .735.005l2.199-2.299.006-.005a.518.518 0 0 0 0-.74Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0c.791.79.793 2.06.007 2.854l-2.2 2.3-.007.006a2.017 2.017 0 0 1-2.86 0c-.418-.418-.67-.951-.67-1.518 0-.562.25-1.083.691-1.464l2.179-2.179Z", "key": "659492a67a6b29c566fb89382bc3f5edc19fb007" }], ["path", { "fill": "currentColor", "d": "m8.82 14.17 2.7-2.7 1.06 1.06-2.7 2.7-1.06-1.06Z", "key": "8ea9f091ad710890dac10bed5b86a899603b7000" }]]);
const SpoonDiagB = createMeisterIcons("spoon-diag-b", [["path", { "fill": "currentColor", "d": "M18.45 5.5c1.5 1.5 0 4.7-1.4 6.2s-3.5 1.8-5 .3-1.1-3.5.3-5c1.4-1.5 4.7-3 6.1-1.5Z", "key": "aa2cafb0673006c1abfa76998c2feb97054f3b3f" }], ["path", { "fill": "currentColor", "d": "M15.628 5.84c-1.061.338-2.123 1.022-2.73 1.672-.617.66-.972 1.389-1.04 2.063-.064.649.13 1.302.722 1.895.598.597 1.282.814 1.944.758.677-.058 1.386-.406 1.978-1.04.627-.672 1.292-1.749 1.619-2.81.34-1.1.242-1.904-.201-2.348l-.01-.009-.008-.01c-.386-.413-1.163-.526-2.274-.172Zm3.361-.861c-1.014-1.077-2.582-.963-3.817-.569-1.289.412-2.577 1.228-3.37 2.078-.783.839-1.328 1.86-1.436 2.937-.11 1.101.246 2.198 1.154 3.105.902.903 2.018 1.286 3.13 1.192 1.1-.093 2.14-.644 2.948-1.51.773-.828 1.558-2.101 1.956-3.391.385-1.246.482-2.786-.565-3.842ZM5.35 18.7c-.6-.6-.6-1.4 0-1.9l2.2-2.2c.5-.5 1.3-.5 1.8 0s.5 1.3 0 1.8l-2.2 2.3c-.5.5-1.3.5-1.8 0Z", "key": "65d57338655cd727956d23abafd171218b1f2fbd" }], ["path", { "fill": "currentColor", "d": "M8.82 15.13a.518.518 0 0 0-.74 0l-2.224 2.224-.026.022c-.14.117-.18.236-.18.336 0 .109.048.275.23.457a.517.517 0 0 0 .735.005l2.199-2.299.006-.005a.518.518 0 0 0 0-.74Zm-1.8-1.06a2.017 2.017 0 0 1 2.86 0c.791.79.793 2.06.007 2.854l-2.2 2.3-.007.006a2.017 2.017 0 0 1-2.86 0c-.418-.418-.67-.951-.67-1.518 0-.562.25-1.083.691-1.464l2.179-2.179Z", "key": "0234693950715fc4aa2954f22ce79019701ac371" }], ["path", { "fill": "currentColor", "d": "m8.82 14.17 2.7-2.7 1.06 1.06-2.7 2.7-1.06-1.06Z", "key": "83ad1a48bac281a3ac50d3c3ecfc1e094a80d70c" }]]);
const Square = createMeisterIcons("square", [["path", { "fill": "currentColor", "d": "M2.25 2.25h19.5v19.5H2.25V2.25Zm1.5 1.5v16.5h16.5V3.75H3.75Z", "key": "1e8ae8eead255bd6d3cf3554c351852f7f7b2923" }]]);
const Square1 = createMeisterIcons("square1", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h10c1.798 0 3.25 1.376 3.25 3.25v.25H3.75V7Zm0 1.75V17A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V8.75H3.75ZM7 2.25A4.762 4.762 0 0 0 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7c0-2.726-2.148-4.75-4.75-4.75H7Z", "key": "c3c565f1f0f9e0279c0c525702287f9ba0c82bb7" }]]);
const Square10 = createMeisterIcons("square10", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v1.15h16.5V7A3.262 3.262 0 0 0 17 3.75H7ZM3.75 17V9.65h3.5v10.6H7A3.262 3.262 0 0 1 3.75 17Zm5 3.25H17A3.262 3.262 0 0 0 20.25 17V9.65H8.75v10.6ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "0102926cf612d2b07bc64c57eb6415f16612d6ad" }]]);
const Square10B = createMeisterIcons("square10-b", [["path", { "fill": "currentColor", "d": "M2.25 8.2h6.5v13.5H7a4.762 4.762 0 0 1-4.75-4.75V8.2Zm1.5 1.5v7.25A3.262 3.262 0 0 0 7 20.2h.25V9.7h-3.5Z", "key": "51aba244109dc53b7957f54bfd24189435b5dc5a" }], ["path", { "fill": "currentColor", "d": "M7.25 8.2h14.5v8.75A4.762 4.762 0 0 1 17 21.7H7.25V8.2Zm1.5 1.5v10.5H17a3.262 3.262 0 0 0 3.25-3.25V9.7H8.75Z", "key": "cace491036605cdf5c5d1e7a4f5d49cb89d488e0" }], ["path", { "fill": "currentColor", "d": "M21 7.05v2H3v-2c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "4dd29a78486e0310adf22a2fa2823d78c39595a6" }], ["path", { "fill": "currentColor", "d": "M7 3.8a3.262 3.262 0 0 0-3.25 3.25V8.3h16.5V7.05c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7.05A4.762 4.762 0 0 1 7 2.3h10c2.602 0 4.75 2.024 4.75 4.75V9.8H2.25V7.05Z", "key": "ef9c924ab17797ad12bba3da6aec2c470cadc69b" }]]);
const Square11 = createMeisterIcons("square11", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10c0 1.798 1.376 3.25 3.25 3.25h1.15V3.75H7Zm10 16.5H9.65v-7.5h10.6V17A3.262 3.262 0 0 1 17 20.25Zm3.25-9H9.65v-7.5H17A3.262 3.262 0 0 1 20.25 7v4.25ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Z", "key": "047f204f89e577f6ecf15591a73b9bccbef77dfb" }]]);
const Square11B = createMeisterIcons("square11-b", [["path", { "fill": "currentColor", "d": "M8.95 3v18h-2c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h2Z", "key": "86f4373db474f78d733ad79be0e1782df40f0e6a" }], ["path", { "fill": "currentColor", "d": "M6.95 3.75A3.262 3.262 0 0 0 3.7 7v10a3.262 3.262 0 0 0 3.25 3.25H8.2V3.75H6.95ZM2.2 7a4.762 4.762 0 0 1 4.75-4.75H9.7v19.5H6.95A4.762 4.762 0 0 1 2.2 17V7Z", "key": "bf291138ef043750441e5c5ff364dbe943a2eead" }], ["path", { "fill": "currentColor", "d": "M8.3 2.25h8.75c2.602 0 4.75 2.024 4.75 4.75v5.75H8.3V2.25Zm1.5 1.5v7.5h10.5V7c0-1.874-1.452-3.25-3.25-3.25H9.8Z", "key": "6843b64a73584979b88ac97f08a3ef05dd847cc6" }], ["path", { "fill": "currentColor", "d": "M8.3 11.25h13.5V17a4.762 4.762 0 0 1-4.75 4.75H8.3v-10.5Zm1.5 1.5v7.5h7.25A3.262 3.262 0 0 0 20.3 17v-4.25H9.8Z", "key": "ec0a96bf13d2e3e9d222c5894a893881c2d727c4" }]]);
const Square12 = createMeisterIcons("square12", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h4.25v16.5H7A3.262 3.262 0 0 1 3.75 17V7Zm9 13.25H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75h-4.25v16.5ZM7 2.25A4.762 4.762 0 0 0 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "3b822035f91b03f03eeeaf992c370ae0eb81ff98" }]]);
const Square12B = createMeisterIcons("square12-b", [["path", { "fill": "currentColor", "d": "M11.25 2.25H17c2.602 0 4.75 2.024 4.75 4.75v10A4.762 4.762 0 0 1 17 21.75h-5.75V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7c0-1.874-1.452-3.25-3.25-3.25h-4.25Z", "key": "8e563912b3bc04cb8056caedf5583719f62dfc42" }], ["path", { "fill": "currentColor", "d": "M12 3v18H7c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h5Z", "key": "3150f1e7d66f34c6f01261c2861ed2a788f7a035" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h4.25V3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h5.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "2d5513ba99aeaa5b8b729651a08e7a2f80031564" }]]);
const Square12VarB = createMeisterIcons("square12-var-b", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10c0 1.798 1.376 3.25 3.25 3.25h4.25V3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h5.75v19.5H7c-2.726 0-4.75-2.148-4.75-4.75V7Z", "key": "d1d0cdd698e4b425c155710983ea2e811aa6de66" }], ["path", { "fill": "currentColor", "d": "M12 21V3h5c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4h-5Z", "key": "90ea2bb84c33ec4b32dd05f480fdec37fedee1a8" }], ["path", { "fill": "currentColor", "d": "M11.25 2.25H17A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75h-5.75V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75h-4.25Z", "key": "2519a5c5bf0d3628e39ee6d4c067092da7ceb080" }]]);
const Square13 = createMeisterIcons("square13", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h10A3.262 3.262 0 0 1 20.25 7v4.25H3.75V7Zm0 5.75V17c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 17v-4.25H3.75ZM7 2.25A4.762 4.762 0 0 0 2.25 7v10c0 2.602 2.024 4.75 4.75 4.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "640ff3cd16f145a4df48ad02ecb1dd97ee0a33aa" }]]);
const Square13B = createMeisterIcons("square13-b", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v4.25h16.5V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v5.75H2.25V7Z", "key": "7c40d16a1d93c0cb60f1cdc342d7821ca30e04d4" }], ["path", { "fill": "currentColor", "d": "M3 12h18v5c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4v-5Z", "key": "019bf03239de783317cda9acaac4eeedd91a9f4d" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h19.5V17A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17v-5.75Zm1.5 1.5V17A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17v-4.25H3.75Z", "key": "81db6e3fe2600ffab7d286b13c44f6ea79f188b4" }]]);
const Square13VarB = createMeisterIcons("square13-var-b", [["path", { "fill": "currentColor", "d": "M2.25 11.25h19.5V17A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17v-5.75Zm1.5 1.5V17A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17v-4.25H3.75Z", "key": "ba1639d28502c367c83ab3fa4eb8040e0e4be8af" }], ["path", { "fill": "currentColor", "d": "M21 12H3V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v5Z", "key": "a0f5100ee1759b5c791d3b01d62a86f5ded901b1" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v4.25h16.5V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v5.75H2.25V7Z", "key": "fd2013504a400306f77e816e3e64608a3deb68b1" }]]);
const Square14 = createMeisterIcons("square14", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v4.25h7.5v-7.5H7Zm4.25 9h-7.5V17c0 1.798 1.376 3.25 3.25 3.25h4.25v-7.5Zm1.5 0h7.5V17A3.262 3.262 0 0 1 17 20.25h-4.25v-7.5Zm7.5-1.5h-7.5v-7.5H17A3.262 3.262 0 0 1 20.25 7v4.25ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Z", "key": "62d8863745cd6d54d999fbf904a5b9b29ad40afc" }]]);
const Square14B = createMeisterIcons("square14-b", [["path", { "fill": "currentColor", "d": "M11.25 2.25H17c2.602 0 4.75 2.024 4.75 4.75v5.75h-10.5V2.25Zm1.5 1.5v7.5h7.5V7c0-1.874-1.452-3.25-3.25-3.25h-4.25Z", "key": "2a23c5d836a484f06dd99b6117d14593ae7558be" }], ["path", { "fill": "currentColor", "d": "M12 3v9H3V7c0-2.2 1.8-4 4-4h5Z", "key": "b45d1448a5fc2b8f6faf105000bf3af9b05bfc40" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v4.25h7.5v-7.5H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h5.75v10.5H2.25V7Z", "key": "422bb20ceabd2f45f973e78e70994b912538f395" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h10.5v10.5H7A4.762 4.762 0 0 1 2.25 17v-5.75Zm1.5 1.5V17A3.262 3.262 0 0 0 7 20.25h4.25v-7.5h-7.5Z", "key": "40358e44e5a723d7e083eae7240bcf2c26b78e90" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h10.5V17A4.762 4.762 0 0 1 17 21.75h-5.75v-10.5Zm1.5 1.5v7.5H17A3.262 3.262 0 0 0 20.25 17v-4.25h-7.5Z", "key": "6b3f52d29acedf7803c37b62336bcdfa7938c3bb" }]]);
const Square14VarB = createMeisterIcons("square14-var-b", [["path", { "fill": "currentColor", "d": "M11.25 2.25H17c2.602 0 4.75 2.024 4.75 4.75v5.75h-10.5V2.25Zm1.5 1.5v7.5h7.5V7c0-1.874-1.452-3.25-3.25-3.25h-4.25Z", "key": "381c8977dfb3dd9274e602dbef881b7636029958" }], ["path", { "fill": "currentColor", "d": "M12 3v9H3V7c0-2.2 1.8-4 4-4h5Z", "key": "ac21359814de9391a7169200d32833c3e3e161a5" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v4.25h7.5v-7.5H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h5.75v10.5H2.25V7Z", "key": "a783a02cd7d9359eaab01bbf9f407c8ce2881db1" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h10.5v10.5H7A4.762 4.762 0 0 1 2.25 17v-5.75Zm1.5 1.5V17A3.262 3.262 0 0 0 7 20.25h4.25v-7.5h-7.5Z", "key": "b2bb4a60868757a2887fddbcf8df9e223d1f595f" }], ["path", { "fill": "currentColor", "d": "M21 12v5c0 2.2-1.8 4-4 4h-5v-9h9Z", "key": "8fcd0bbdc36f3c0f2102ed133754e066d2e7820d" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h10.5V17A4.762 4.762 0 0 1 17 21.75h-5.75v-10.5Zm1.5 1.5v7.5H17A3.262 3.262 0 0 0 20.25 17v-4.25h-7.5Z", "key": "0820e9ff85b05f960e478c720b5fb2e864d6b286" }]]);
const Square15 = createMeisterIcons("square15", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v2.25h7.5v-7.5H9Zm3.75 0v7.5h7.5V9c0-2.886-2.364-5.25-5.25-5.25h-2.25Zm-1.5 9h-7.5V15c0 2.886 2.364 5.25 5.25 5.25h2.25v-7.5Zm1.5 7.5v-7.5h7.5V15c0 2.886-2.364 5.25-5.25 5.25h-2.25ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "1112fcc75181ab04322d31c834cbe4403b0d10f6" }]]);
const Square15B = createMeisterIcons("square15-b", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v2.25h7.5v-7.5H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h3.75v10.5H2.25V9Z", "key": "0c8a46151f46734040089790b150e7de708678ad" }], ["path", { "fill": "currentColor", "d": "M21 9v3h-9V3h3c3.3 0 6 2.6 6 6Z", "key": "acfcaed1aa971fa066c4c5baef320d419fc6916b" }], ["path", { "fill": "currentColor", "d": "M11.25 2.25H15c3.706 0 6.75 2.928 6.75 6.75v3.75h-10.5V2.25Zm1.5 1.5v7.5h7.5V9c0-2.978-2.356-5.25-5.25-5.25h-2.25Z", "key": "2960db3268ca5aa1739011531d1823d9fd63e9d9" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h10.5V15c0 3.714-3.036 6.75-6.75 6.75h-3.75v-10.5Zm1.5 1.5v7.5H15c2.886 0 5.25-2.364 5.25-5.25v-2.25h-7.5Z", "key": "5325fd62e331adbdd7f52c8e404d478d13f7f496" }], ["path", { "fill": "currentColor", "d": "M12 12v9H9c-3.3 0-6-2.7-6-6v-3h9Z", "key": "1d61af545018c633f1fa0071e7858881fe81d896" }], ["path", { "fill": "currentColor", "d": "M2.25 11.25h10.5v10.5H9c-3.714 0-6.75-3.036-6.75-6.75v-3.75Zm1.5 1.5V15c0 2.886 2.364 5.25 5.25 5.25h2.25v-7.5h-7.5Z", "key": "61258d65239356d2b425643c8c78b765abad55f0" }]]);
const Square1B = createMeisterIcons("square1-b", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v.25h16.5V7c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.602 0 4.75 2.024 4.75 4.75v1.75H2.25V7Z", "key": "446fc797b939fd6bb5d71338a01b1b3e618e0d4c" }], ["path", { "fill": "currentColor", "d": "M21 8v9c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4V8h18Z", "key": "81a6ced65b21d24764d81f3dea1fb9c03a37b1d8" }], ["path", { "fill": "currentColor", "d": "M2.25 7.25h19.5V17A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7.25Zm1.5 1.5V17A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V8.75H3.75Z", "key": "f639242ab26a808c8bcc7c7551552bba0d38d1ec" }]]);
const Square1VarB = createMeisterIcons("square1-var-b", [["path", { "fill": "currentColor", "d": "M21 7v1H3V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "fc710584fe1387fbdd43e4e6a4bdffbd7bc4d79a" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v.25h16.5V7c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.602 0 4.75 2.024 4.75 4.75v1.75H2.25V7Z", "key": "397cd0e22f12561d940488140d06ce2ff04c18ae" }], ["path", { "fill": "currentColor", "d": "M2.25 7.25h19.5V17A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7.25Zm1.5 1.5V17A3.262 3.262 0 0 0 7 20.25h10A3.262 3.262 0 0 0 20.25 17V8.75H3.75Z", "key": "67796781d0463c8f9dcdaff8c3abd1267eba55d2" }]]);
const Square2 = createMeisterIcons("square2", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h.25V3.75H7Zm1.75 0v16.5h6.5V3.75h-6.5ZM17 20.25h-.25V3.75H17A3.262 3.262 0 0 1 20.25 7v10A3.262 3.262 0 0 1 17 20.25ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "115f988bd569144baf3570ccb7aca54dc38e75e1" }]]);
const Square2B = createMeisterIcons("square2-b", [["path", { "fill": "currentColor", "d": "M21 7v10c0 2.2-1.8 4-4 4h-1V3h1c2.2 0 4 1.7 4 4Z", "key": "e17e5fbc2ed2c8526cd93e1a87efe1478d1943ea" }], ["path", { "fill": "currentColor", "d": "M15.25 2.25H17c2.602 0 4.75 2.024 4.75 4.75v10A4.762 4.762 0 0 1 17 21.75h-1.75V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7c0-1.874-1.452-3.25-3.25-3.25h-.25Z", "key": "f87750f9d53859eee5a75cbc533a5454cea1912e" }], ["path", { "fill": "currentColor", "d": "M7.25 2.25h9.5v19.5h-9.5V2.25Zm1.5 1.5v16.5h6.5V3.75h-6.5Z", "key": "97af2d01064f5872697fedab14827c49240e49b4" }], ["path", { "fill": "currentColor", "d": "M8 3v18H7c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h1Z", "key": "6f0c3e4bb627abffb6f471f35d30a632dfcca67d" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h.25V3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h1.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "0e42991793e3c48c41849a178f12354ad65a9b4c" }]]);
const Square2VarB = createMeisterIcons("square2-var-b", [["path", { "fill": "currentColor", "d": "M15.25 2.25H17c2.602 0 4.75 2.024 4.75 4.75v10A4.762 4.762 0 0 1 17 21.75h-1.75V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7c0-1.874-1.452-3.25-3.25-3.25h-.25Z", "key": "7d6a06c40947c39749071719d016b0e158444c52" }], ["path", { "fill": "currentColor", "d": "M16 3H8v18h8V3Z", "key": "0501b426a7c826a97cae4776f31ae9f7cb86d165" }], ["path", { "fill": "currentColor", "d": "M7.25 2.25h9.5v19.5h-9.5V2.25Zm1.5 1.5v16.5h6.5V3.75h-6.5Z", "key": "f1be37d2ac5b67eb4ff4b5eaa67898aaba8d9e2a" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h.25V3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h1.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "dc6959c885bd32a66bf501e3597a7d78395bf804" }]]);
const Square3 = createMeisterIcons("square3", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h8.25v16.5H7A3.262 3.262 0 0 1 3.75 17V7Zm13 13.25H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75h-.25v16.5ZM7 2.25A4.762 4.762 0 0 0 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "6d6f6198d8ffc1b696b4c64105248e2037da55c7" }]]);
const Square3B = createMeisterIcons("square3-b", [["path", { "fill": "currentColor", "d": "M15.25 2.25H17A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75h-1.75V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75h-.25Z", "key": "5b164a78229c7cc7785022dd26250ec94e185708" }], ["path", { "fill": "currentColor", "d": "M16 21H7c-2.2 0-4-1.8-4-4V7c0-2.2 1.8-4 4-4h9v18Z", "key": "872651539d7c5bb193dfde86e68eff244aaa1afe" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h8.25V3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h9.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "1dddcc33f69a17df30387330f1e956cab8ccf64f" }]]);
const Square3VarB = createMeisterIcons("square3-var-b", [["path", { "fill": "currentColor", "d": "M17 21h-1V3h1c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4Z", "key": "2b0d0e8e41c39d537234f901dafda3612addf82e" }], ["path", { "fill": "currentColor", "d": "M15.25 2.25H17A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75h-1.75V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75h-.25Z", "key": "b3b276fd394aa8e218172e04883464f1c0212d6f" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10A3.262 3.262 0 0 0 7 20.25h8.25V3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h9.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "bf9801c24c2104ad7e8741d350d56e24be287f6a" }]]);
const Square4 = createMeisterIcons("square4", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h.25v16.5H7A3.262 3.262 0 0 1 3.75 17V7Zm5 13.25H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H8.75v16.5ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "4e61320ab27e09fd608fe98ddd461c281d743b11" }]]);
const Square4B = createMeisterIcons("square4-b", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h.25V3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h1.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "43e35aed5e17622fb77f5816592ef44decc03488" }], ["path", { "fill": "currentColor", "d": "M8 3h9c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H8V3Z", "key": "0bc18056cc23f1c165c1a86affb0901bf0ad67bb" }], ["path", { "fill": "currentColor", "d": "M7.25 2.25H17A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7.25V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H8.75Z", "key": "3517a42d84be79ad45a2d8018ca9c88a7d9da32f" }]]);
const Square4VarB = createMeisterIcons("square4-var-b", [["path", { "fill": "currentColor", "d": "M7 3h1v18H7c-2.2 0-4-1.8-4-4V7c0-2.3 1.7-4 4-4Z", "key": "e89105c02a445646eb8303ad401b6370df04b0a4" }], ["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v10A3.262 3.262 0 0 0 7 20.25h.25V3.75H7ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h1.75v19.5H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "08d5fabd9c11c3ded439e767b016d2fbc737d455" }], ["path", { "fill": "currentColor", "d": "M7.25 2.25H17A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7.25V2.25Zm1.5 1.5v16.5H17A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H8.75Z", "key": "22a9a91f641519354cf8b9791f566f68468fc416" }]]);
const Square5 = createMeisterIcons("square5", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v1.15h16.5V7A3.262 3.262 0 0 0 17 3.75H7ZM3.75 17V9.65h11.5v10.6H7A3.262 3.262 0 0 1 3.75 17Zm13 3.25H17A3.262 3.262 0 0 0 20.25 17V9.65h-3.5v10.6ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "1fa7f89799fc87066cdb99108863223ff389c08c" }]]);
const Square5B = createMeisterIcons("square5-b", [["path", { "fill": "currentColor", "d": "M21 7.05v2H3v-2c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "71dba526f972f8cb20692d7e1d83d5edbb633be4" }], ["path", { "fill": "currentColor", "d": "M7 3.8a3.262 3.262 0 0 0-3.25 3.25V8.3h16.5V7.05c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7.05A4.762 4.762 0 0 1 7 2.3h10c2.602 0 4.75 2.024 4.75 4.75V9.8H2.25V7.05Z", "key": "87cc12cfe944933d827a39326b6bbe267479674d" }], ["path", { "fill": "currentColor", "d": "M2.25 8.2h19.5v8.75A4.762 4.762 0 0 1 17 21.7H7a4.762 4.762 0 0 1-4.75-4.75V8.2Zm1.5 1.5v7.25A3.262 3.262 0 0 0 7 20.2h10a3.262 3.262 0 0 0 3.25-3.25V9.7H3.75Z", "key": "9e7c501a1ed18b64778bbbfbab1a3d0f99bb431c" }], ["path", { "fill": "currentColor", "d": "M16.75 8.95v12.1h-1.5V8.95h1.5Z", "key": "9ce085e56e56d73bd30b0f17cb0de72ff3dd9bb6" }]]);
const Square6 = createMeisterIcons("square6", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h10A3.262 3.262 0 0 1 20.25 7v1.15H3.75V7Zm0 2.65V17A3.262 3.262 0 0 0 7 20.25h.25V9.65h-3.5ZM17 20.25H8.75v-4.6h11.5V17A3.262 3.262 0 0 1 17 20.25Zm3.25-6.1H8.75v-4.5h11.5v4.5ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "19daeb7158a2efc8562e7b1672c2a7e76396905a" }]]);
const Square6B = createMeisterIcons("square6-b", [["path", { "fill": "currentColor", "d": "M21 7.05v2H3v-2c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "30a39e2e8ce09ca02f649d0fb2b81975adddb402" }], ["path", { "fill": "currentColor", "d": "M7 3.8a3.262 3.262 0 0 0-3.25 3.25V8.3h16.5V7.05c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7.05A4.762 4.762 0 0 1 7 2.3h10c2.602 0 4.75 2.024 4.75 4.75V9.8H2.25V7.05Z", "key": "604bb6e7f420f2b87252235cfcff29160f6a2a8d" }], ["path", { "fill": "currentColor", "d": "M2.25 8.2h19.5v8.75A4.762 4.762 0 0 1 17 21.7H7a4.762 4.762 0 0 1-4.75-4.75V8.2Zm1.5 1.5v7.25A3.262 3.262 0 0 0 7 20.2h10a3.262 3.262 0 0 0 3.25-3.25V9.7H3.75Z", "key": "417a539524409c938d36bb3d6e86516751c63b9c" }], ["path", { "fill": "currentColor", "d": "M8.75 8.95v12.1h-1.5V8.95h1.5Z", "key": "1e254fd3a291731c4038734166ef7504ea49c0b3" }], ["path", { "fill": "currentColor", "d": "M21 15.7H8v-1.5h13v1.5Z", "key": "fd8b6f23d27df7d700dcdd62152bbeb9473e89fe" }]]);
const Square7 = createMeisterIcons("square7", [["path", { "fill": "currentColor", "d": "M7 3.75C5.114 3.75 3.75 5.114 3.75 7v1.15h16.5V7A3.262 3.262 0 0 0 17 3.75H7ZM3.75 17V9.65h7.5v10.6H7A3.262 3.262 0 0 1 3.75 17Zm9 3.25H17A3.262 3.262 0 0 0 20.25 17V9.65h-7.5v10.6ZM2.25 7c0-2.714 2.036-4.75 4.75-4.75h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7A4.762 4.762 0 0 1 2.25 17V7Z", "key": "c3c192eb0d2e66512e938a569d9a828eb1d7260a" }]]);
const Square7B = createMeisterIcons("square7-b", [["path", { "fill": "currentColor", "d": "M11.25 8.2h10.5v8.75A4.762 4.762 0 0 1 17 21.7h-5.75V8.2Zm1.5 1.5v10.5H17a3.262 3.262 0 0 0 3.25-3.25V9.7h-7.5Z", "key": "29705df920b4170c6e20e0882df4e90331fb58cf" }], ["path", { "fill": "currentColor", "d": "M2.25 8.2h10.5v13.5H7a4.762 4.762 0 0 1-4.75-4.75V8.2Zm1.5 1.5v7.25A3.262 3.262 0 0 0 7 20.2h4.25V9.7h-7.5Z", "key": "ff8d7067921f27c5c5703aa7d00024a80d47db30" }], ["path", { "fill": "currentColor", "d": "M21 7.05v2H3v-2c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "d0f5269695609769ec546c0665978f67a25d450f" }], ["path", { "fill": "currentColor", "d": "M7 3.8a3.262 3.262 0 0 0-3.25 3.25V8.3h16.5V7.05c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7.05A4.762 4.762 0 0 1 7 2.3h10c2.602 0 4.75 2.024 4.75 4.75V9.8H2.25V7.05Z", "key": "581276165f89fae1a2e6e6d33e99934aa46fe21e" }]]);
const Square8 = createMeisterIcons("square8", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h10A3.262 3.262 0 0 1 20.25 7v1.15H3.75V7Zm0 2.65V17A3.262 3.262 0 0 0 7 20.25h.25V9.65h-3.5Zm11.5 10.6h-6.5V9.65h6.5v10.6Zm1.5 0H17A3.262 3.262 0 0 0 20.25 17V9.65h-3.5v10.6ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "ecee5a5c3dc114af84e5713e975ccd329bf57d47" }]]);
const Square8B = createMeisterIcons("square8-b", [["path", { "fill": "currentColor", "d": "M15.25 8.2h6.5v8.75A4.762 4.762 0 0 1 17 21.7h-1.75V8.2Zm1.5 1.5v10.5H17a3.262 3.262 0 0 0 3.25-3.25V9.7h-3.5Z", "key": "e537bab883d8ddef780546aa51ca7741317ba77e" }], ["path", { "fill": "currentColor", "d": "M7.25 8.2h9.5v13.5h-9.5V8.2Zm1.5 1.5v10.5h6.5V9.7h-6.5Z", "key": "752d9280c344354c62613fd193cfe6ee2db4a934" }], ["path", { "fill": "currentColor", "d": "M2.25 8.2h6.5v13.5H7a4.762 4.762 0 0 1-4.75-4.75V8.2Zm1.5 1.5v7.25A3.262 3.262 0 0 0 7 20.2h.25V9.7h-3.5Z", "key": "39e566ffcc1a7bdf883437777c51865e26a08d88" }], ["path", { "fill": "currentColor", "d": "M21 7.05v2H3v-2c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "4fbe6f96337615ead3879f816e8760bf207cf996" }], ["path", { "fill": "currentColor", "d": "M7 3.8a3.262 3.262 0 0 0-3.25 3.25V8.3h16.5V7.05c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7.05A4.762 4.762 0 0 1 7 2.3h10c2.602 0 4.75 2.024 4.75 4.75V9.8H2.25V7.05Z", "key": "45bc9ebf28953b5f7260a102a2d2217fed181b06" }]]);
const Square9 = createMeisterIcons("square9", [["path", { "fill": "currentColor", "d": "M3.75 7c0-1.886 1.364-3.25 3.25-3.25h10A3.262 3.262 0 0 1 20.25 7v1.15H3.75V7Zm0 8.654V17A3.262 3.262 0 0 0 7 20.25h4.25v-4.554l-7.5-.042Zm0-1.5 7.5.042V9.65h-7.5v4.504Zm9 1.55v4.546H17A3.262 3.262 0 0 0 20.25 17v-1.254l-7.5-.042Zm7.5-1.458-7.5-.042V9.65h7.5v4.596ZM7 2.25C4.286 2.25 2.25 4.286 2.25 7v10A4.762 4.762 0 0 0 7 21.75h10A4.762 4.762 0 0 0 21.75 17V7A4.762 4.762 0 0 0 17 2.25H7Z", "key": "dbba8e580696fa6f2dc377ef0c80341add9effa9" }]]);
const Square9B = createMeisterIcons("square9-b", [["path", { "fill": "currentColor", "d": "M11.25 14.25h10.5V17A4.762 4.762 0 0 1 17 21.75h-5.75v-7.5Zm1.5 1.5v4.5H17A3.262 3.262 0 0 0 20.25 17v-1.25h-7.5Z", "key": "7b3fddac41534da099a2283750e0a5ec4d7431cd" }], ["path", { "fill": "currentColor", "d": "M2.25 14.15h10.5v7.5H7a4.762 4.762 0 0 1-4.75-4.75v-2.75Zm1.5 1.5v1.25A3.262 3.262 0 0 0 7 20.15h4.25v-4.5h-7.5Z", "key": "03dc6aaef76254887e541d7ae043920fd6607327" }], ["path", { "fill": "currentColor", "d": "M2.25 8.15h10.5v7.5H2.25v-7.5Zm1.5 1.5v4.5h7.5v-4.5h-7.5Z", "key": "3d67aea65c6e379c92b71018dff3ef882dfcbcca" }], ["path", { "fill": "currentColor", "d": "M11.25 8.15h10.5v7.608l-10.5-.116V8.15Zm1.5 1.5v4.508l7.5.084V9.65h-7.5Z", "key": "7e6c92c87763cabb85d6913d73a3f2f7193db3be" }], ["path", { "fill": "currentColor", "d": "M21 7v2H3V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "c1de5c4391ea248443342a65474ddbe931c0de97" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v1.25h16.5V7c0-1.874-1.452-3.25-3.25-3.25H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10c2.602 0 4.75 2.024 4.75 4.75v2.75H2.25V7Z", "key": "65f8f3a96c49f60ed620b0a6f6d725cbc82bdd2b" }]]);
const SquareB = createMeisterIcons("square-b", [["path", { "fill": "currentColor", "d": "M21 3H3v18h18V3Z", "key": "5da314432d30225ec8b3a6eff0a96b7f59e4244c" }], ["path", { "fill": "currentColor", "d": "M2.25 2.25h19.5v19.5H2.25V2.25Zm1.5 1.5v16.5h16.5V3.75H3.75Z", "key": "75ec3759e0526eacf04d0c3b9b8e84368a8b81ad" }]]);
const SquareCircle = createMeisterIcons("square-circle", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.986 2.264-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v6c0 2.886-2.364 5.25-5.25 5.25H9c-2.886 0-5.25-2.364-5.25-5.25V9ZM9 2.25C5.186 2.25 2.25 5.186 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9ZM8.75 12a3.25 3.25 0 1 1 6.5 0 3.25 3.25 0 0 1-6.5 0ZM12 7.25a4.75 4.75 0 1 0 0 9.5 4.75 4.75 0 0 0 0-9.5Z", "key": "44b153ef4029f3c19674ff4b914f54be001d949f" }]]);
const SquareCircleB = createMeisterIcons("square-circle-b", [["path", { "fill": "currentColor", "d": "M12 16a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z", "key": "3833daa0b0b9ea4fbf37fe0cf2d0e3b1f67259a3" }], ["path", { "fill": "currentColor", "d": "M12 8.75a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5ZM7.25 12a4.75 4.75 0 1 1 9.5 0 4.75 4.75 0 0 1-9.5 0Z", "key": "e2e851d82371cf12b43defe085f601e93d1bf3ac" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.014 3.75 3.75 6.014 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.814 2.936-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "c84c45592f6c13caa750e583bd432fd7b9419b28" }]]);
const SquareDiagCircle = createMeisterIcons("square-diag-circle", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "e8118746ccf471df22ffcae5ffe04f400018932c" }], ["path", { "fill": "currentColor", "d": "m5.23 4.17 4.7 4.7-1.06 1.06-4.7-4.7 1.06-1.06Zm9.8 9.8 4.7 4.7-1.06 1.06-4.7-4.7 1.06-1.06Z", "key": "23785185471114467885a18095dbaa388abb69a1" }], ["path", { "fill": "currentColor", "d": "M12 9.15a2.85 2.85 0 1 0 0 5.7 2.85 2.85 0 0 0 0-5.7ZM7.65 12a4.35 4.35 0 1 1 8.7 0 4.35 4.35 0 0 1-8.7 0Z", "key": "ae25035126b8d0f1a9987b7ebd204c5a4cbbdd01" }]]);
const SquareDiagCircleB = createMeisterIcons("square-diag-circle-b", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "1fea2176dfac97024a73458949df8f01402d7ddb" }], ["path", { "fill": "currentColor", "d": "m5.23 4.17 4.7 4.7-1.06 1.06-4.7-4.7 1.06-1.06Zm9.8 9.8 4.7 4.7-1.06 1.06-4.7-4.7 1.06-1.06Z", "key": "fd45c0b9d90c20648f60481a65a9cbee11325b39" }], ["path", { "fill": "currentColor", "d": "M12 15.6a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z", "key": "a324614ed4766b76a0056e64e052c37a00bb5509" }], ["path", { "fill": "currentColor", "d": "M12 9.15a2.85 2.85 0 1 0 0 5.7 2.85 2.85 0 0 0 0-5.7ZM7.65 12a4.35 4.35 0 1 1 8.7 0 4.35 4.35 0 0 1-8.7 0Z", "key": "c624e94231a5010935fbf488af5ecff121567209" }]]);
const SquareDiagHalf = createMeisterIcons("square-diag-half", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "135ac00b9025b433ed3cf3cd96353a7518c6560d" }], ["path", { "fill": "currentColor", "d": "m5.23 4.17 14.5 14.5-1.06 1.06-14.5-14.5 1.06-1.06Z", "key": "c79ade2a604d434a48b436bc6b09461b983f2a0c" }]]);
const SquareDiagHalfB = createMeisterIcons("square-diag-half-b", [["path", { "fill": "currentColor", "d": "M4.825 3.814 20.26 19.25l-.53.53c-1.225 1.225-2.91 2.02-4.73 2.02H9c-3.714 0-6.75-3.036-6.75-6.75v-6c0-1.908.787-3.61 2.045-4.755l.53-.481Zm-.01 2.112C4.158 6.75 3.75 7.836 3.75 9.05v6c0 2.886 2.364 5.25 5.25 5.25h6c1.128 0 2.213-.404 3.104-1.085L4.816 5.926Z", "key": "eb780ffee696dda1dbfe01f456a8eeb47fc055cb" }], ["path", { "fill": "currentColor", "d": "M21 9.05v6c0 1.7-.7 3.2-1.8 4.2L4.7 4.75c1.1-1.1 2.6-1.8 4.2-1.8h6c3.4.1 6.1 2.7 6.1 6.1Z", "key": "755f0155dfb46cefc9fb4a5e35703176545d5607" }], ["path", { "fill": "currentColor", "d": "m5.796 4.785 13.388 13.389c.66-.823 1.066-1.91 1.066-3.124v-6c0-2.963-2.343-5.256-5.361-5.35h-5.99c-1.127 0-2.212.404-3.103 1.085ZM4.17 4.22C5.394 2.995 7.08 2.2 8.9 2.2h6.022c3.777.111 6.828 3.016 6.828 6.85v6c0 1.908-.787 3.61-2.046 4.755l-.529.481L3.64 4.75l.53-.53Z", "key": "ba6dad7e18b739c0140485f621562d012d7559f0" }]]);
const SquareDiagHalfVarB = createMeisterIcons("square-diag-half-var-b", [["path", { "fill": "currentColor", "d": "M19.2 19.25c-1.1 1.1-2.6 1.8-4.2 1.8H9c-3.3 0-6-2.7-6-6v-6c0-1.7.7-3.2 1.8-4.2l14.4 14.4Z", "key": "088b6a7af87fa4ddfd91afb3b55bac2e3d4cee1a" }], ["path", { "fill": "currentColor", "d": "M4.825 3.814 20.26 19.25l-.53.53c-1.225 1.225-2.91 2.02-4.73 2.02H9c-3.714 0-6.75-3.036-6.75-6.75v-6c0-1.908.787-3.61 2.045-4.755l.53-.481Zm-.01 2.112C4.158 6.75 3.75 7.836 3.75 9.05v6c0 2.886 2.364 5.25 5.25 5.25h6c1.128 0 2.213-.404 3.104-1.085L4.816 5.926Z", "key": "48b96b9d72a94b1f304090366b53950eac029a51" }], ["path", { "fill": "currentColor", "d": "m5.796 4.785 13.388 13.389c.66-.823 1.066-1.91 1.066-3.124v-6c0-2.963-2.343-5.256-5.361-5.35h-5.99c-1.127 0-2.212.404-3.103 1.085ZM4.17 4.22C5.394 2.995 7.08 2.2 8.9 2.2h6.022c3.777.111 6.828 3.016 6.828 6.85v6c0 1.908-.787 3.61-2.046 4.755l-.529.481L3.64 4.75l.53-.53Z", "key": "c532accbebaae4d47f62796241841dc8bdbec3d5" }]]);
const SquareHeart = createMeisterIcons("square-heart", [["path", { "fill": "currentColor", "d": "M14.84 9.698c-.486-.546-1.384-.593-2.01.032l-.037.038-.963.722-.76-.76a1.583 1.583 0 0 0-.478-.328c-.173-.074-.29-.078-.345-.067l-.073.015H10.1c-.441 0-.825.146-1.055.366a1.551 1.551 0 0 0 .002 2.07l2.734 2.735a.423.423 0 0 0 .207.054c.056 0 .083-.01.09-.014l2.492-2.491.269-.27c.294-.376.411-.708.411-1.1 0-.333-.142-.731-.38-.97l-.016-.015-.015-.017Zm1.106-1.012c-1.06-1.176-2.82-1.188-3.996-.183a3.047 3.047 0 0 0-.767-.48c-.331-.142-.735-.236-1.151-.172-.73.014-1.507.264-2.062.819l-.016.015-.015.017a3.052 3.052 0 0 0 0 4.096l.015.017 2.853 2.853.043.032c.34.255.75.375 1.138.375.38 0 .817-.119 1.142-.445l2.83-2.829.026-.032c.488-.61.764-1.271.764-2.069 0-.66-.253-1.453-.804-2.014Z", "key": "08dd98b4c8e32cefb433285ce7613f83a19f7a4c" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "f97a3da83a0ea3de09839f290d7816c996af724a" }]]);
const SquareTool = createMeisterIcons("square-tool", [["path", { "fill": "currentColor", "d": "M6.5 18.45h11v1.5h-11v-1.5Zm0-14.4h11v1.5h-11v-1.5ZM19.95 6.5v11h-1.5v-11h1.5Zm-14.4 0v11h-1.5v-11h1.5Z", "key": "f45865f0eedef4ee46af92ad4f41c9a858b7f8e4" }], ["path", { "fill": "currentColor", "d": "M4.8 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM4.8 18.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm16.85-.95a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM19.2 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "cd082020524c9048024928a0045b111f75f32c3a" }]]);
const SquareToolB = createMeisterIcons("square-tool-b", [["path", { "fill": "currentColor", "d": "M6.5 18.45h11v1.5h-11v-1.5Zm0-14.4h11v1.5h-11v-1.5ZM19.95 6.5v11h-1.5v-11h1.5Zm-14.4 0v11h-1.5v-11h1.5Z", "key": "a61bb3fb71312c7016a089c7daffbce456fc911e" }], ["path", { "fill": "currentColor", "d": "M4.8 6.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "447b761ef52a39cc7756061b638fc00511c8b490" }], ["path", { "fill": "currentColor", "d": "M4.8 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM4.8 20.9a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "ce781977bed2a2c3bb964d2234d189ff2431d00c" }], ["path", { "fill": "currentColor", "d": "M4.8 18.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Zm16.85 1.7a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "193be556b922fab65043dcd3aa1f109cbd64ebaa" }], ["path", { "fill": "currentColor", "d": "M19.2 18.25a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0ZM19.2 6.5a1.7 1.7 0 1 0 0-3.4 1.7 1.7 0 0 0 0 3.4Z", "key": "878da73816531ad604cb011fbf597697de7db628" }], ["path", { "fill": "currentColor", "d": "M19.2 3.85a.95.95 0 1 0 0 1.9.95.95 0 0 0 0-1.9Zm-2.45.95a2.45 2.45 0 1 1 4.9 0 2.45 2.45 0 0 1-4.9 0Z", "key": "bc553be4ac09f4470612a83b6700be8ee8d7c6d9" }]]);
const Stack = createMeisterIcons("stack", [["path", { "fill": "currentColor", "d": "M12.9 3.95a1.5 1.5 0 0 0-1.8 0l-.054.04-6.008 3.005c-.817.605-.817 1.905 0 2.51l6.008 3.004.054.041a1.5 1.5 0 0 0 1.8 0l.054-.04 6.008-3.005c.817-.605.817-1.905 0-2.51L12.954 3.99l-.054-.04Zm.842-1.243a3 3 0 0 0-3.484 0L4.267 5.703l-.044.03c-1.73 1.199-1.73 3.835 0 5.034l.044.03 5.991 2.996a3 3 0 0 0 3.484 0l5.991-2.996.044-.03c1.73-1.199 1.73-3.835 0-5.034l-.044-.03-5.991-2.996ZM3.979 13.515a.75.75 0 0 1 1.006-.336l6.06 3.03.055.041a1.5 1.5 0 0 0 1.8 0l.054-.04 6.06-3.03a.75.75 0 0 1 .671 1.34l-5.943 2.973a3 3 0 0 1-3.484 0L4.315 14.52a.75.75 0 0 1-.336-1.006Zm1.006 3.464a.75.75 0 0 0-.67 1.342l5.943 2.972a3 3 0 0 0 3.484 0l5.943-2.972a.75.75 0 0 0-.67-1.342l-6.06 3.03-.055.041a1.5 1.5 0 0 1-1.8 0l-.054-.04-6.06-3.03Z", "key": "86f789688cdc262d4467bc9131e1d0b4f21a1fa2" }]]);
const StackAlt = createMeisterIcons("stack-alt", [["path", { "fill": "currentColor", "d": "m6.486 7.56 4.489-3.192a1.81 1.81 0 0 1 2.05 0l4.49 3.193c.98.7.98 2.178 0 2.879l-.9.64-2.74-1.948-.009-.006a3.31 3.31 0 0 0-3.732 0l-.01.006-2.738 1.948-.9-.64a1.778 1.778 0 0 1 0-2.88ZM6.092 12l-.477-.339c-1.82-1.3-1.82-4.022 0-5.321v-.001l4.51-3.207.009-.006a3.31 3.31 0 0 1 3.732 0l.01.006 4.51 3.208c1.819 1.299 1.819 4.021 0 5.32l-.001.001-.477.339.478.34c1.819 1.299 1.819 4.021 0 5.32l-.001.001-4.51 3.207-.009.006a3.31 3.31 0 0 1-3.732 0l-.01-.006-4.509-3.207c-1.82-1.3-1.82-4.022 0-5.321v-.001l.477-.34Zm10.522.92.9.64c.981.701.98 2.179 0 2.88l-4.489 3.192a1.81 1.81 0 0 1-2.05 0l-4.49-3.193c-.98-.7-.98-2.178 0-2.879l.9-.64 2.74 1.948.009.006a3.31 3.31 0 0 0 3.732 0l.01-.006 2.738-1.948ZM15.32 12l-2.295 1.632a1.81 1.81 0 0 1-2.05 0L8.68 12l2.295-1.632a1.81 1.81 0 0 1 2.05 0L15.32 12Z", "key": "d600737d31eb4ebe99f5dc378505149a38121da4" }]]);
const StackAltB = createMeisterIcons("stack-alt-b", [["path", { "fill": "currentColor", "d": "m17.944 11.05-1.3 1-3.1-2.3c-.9-.6-2.1-.6-2.9 0l-3.2 2.3-1.3-1c-1.4-1-1.4-3.1 0-4.1l4.5-3.2c.9-.6 2.1-.6 2.9 0l4.5 3.2c1.3 1 1.3 3.1-.1 4.1Z", "key": "215c9be5d48a41d6469c15c2b8bcd9c0a7d73b0f" }], ["path", { "fill": "currentColor", "d": "M11.068 4.368 6.58 7.56c-.98.701-.98 2.179 0 2.88l.011.007.869.668 2.741-1.97c1.08-.806 2.626-.775 3.76-.02l.015.011 2.66 1.974.862-.663.01-.007c.985-.704.982-2.19.09-2.888L13.1 4.356l-.008-.006c-.516-.388-1.362-.419-2.025.018Zm2.917-1.224c-1.08-.805-2.625-.773-3.758-.018l-.009.006-4.51 3.207c-1.815 1.297-1.82 4.01-.012 5.313l1.732 1.333 3.66-2.63.006-.005c.515-.386 1.357-.418 2.019.014l3.539 2.626 1.739-1.338c1.8-1.297 1.803-3.994.11-5.297l-.011-.008-4.505-3.203Z", "key": "eb01b8b4573b93cd7a11150377c917a0a41fbaba" }], ["path", { "fill": "currentColor", "d": "m16.462 11.018 1.712 1.316c2.018 1.29 2.032 4.021.206 5.326l-.002.001-4.509 3.207-.01.006c-1.132.755-2.677.787-3.757-.018l-4.493-3.195h-.001c-1.815-1.297-1.82-4.01-.012-5.313l1.73-1.33 3.542 2.513c.663.437 1.509.406 2.025.019l.008-.006 3.56-2.527Zm-2.677 3.738c-1.08.804-2.625.773-3.758.018l-.009-.006-2.657-1.886-.87.67-.012.008a1.776 1.776 0 0 0 0 2.88l4.507 3.204.007.006c.517.387 1.363.418 2.026-.018l4.489-3.192c.962-.689.987-2.136-.162-2.854l-.03-.02-.89-.684-2.641 1.874Z", "key": "d6addfd43d13e088ad0d8dcb0d43a3bca5e7f44a" }], ["path", { "fill": "currentColor", "d": "m16.644 12.05-3.1 2.2c-.9.6-2.1.6-2.9 0l-3.2-2.2 3.1-2.2c.9-.6 2.1-.6 2.9 0l3.2 2.2Z", "key": "c312969bdac5f4cec92362e7c8a54e39f709169c" }], ["path", { "fill": "currentColor", "d": "M10.968 10.468 8.753 12.04l2.328 1.6.013.01c.516.387 1.362.418 2.025-.019l2.215-1.571-2.328-1.6-.012-.01c-.517-.388-1.363-.419-2.026.018ZM13.88 9.24c-1.08-.8-2.621-.768-3.753-.014l-.009.006-3.984 2.828 4.073 2.8c1.08.8 2.621.768 3.753.014l.009-.006 3.984-2.828-4.073-2.8Z", "key": "833c28d3eb48848e1deae3e47548cb26cadab6bc" }]]);
const StackB = createMeisterIcons("stack-b", [["path", { "fill": "currentColor", "d": "m10.65 13.1-6-3c-1.3-.9-1.3-2.8 0-3.7l6-3c.8-.6 1.9-.6 2.7 0l6 3c1.3.9 1.3 2.9 0 3.8l-6 3c-.8.5-1.8.5-2.7-.1Z", "key": "8de2b6f2cba39a84fe44d5386731b44344d1808d" }], ["path", { "fill": "currentColor", "d": "M12.9 4a1.5 1.5 0 0 0-1.8 0l-.054.04-6.008 3.005a1.492 1.492 0 0 0 0 2.41l5.99 2.995.038.026c.667.445 1.349.424 1.886.088l.03-.019 5.98-2.99c.817-.605.817-1.905 0-2.51L12.954 4.04 12.9 4Zm.842-1.243a3 3 0 0 0-3.484 0l-5.99 2.996-.044.03a2.993 2.993 0 0 0 0 4.934l.044.03 6.008 3.004c1.112.721 2.396.74 3.44.105l6.018-3.01.044-.03c1.73-1.198 1.73-3.834 0-5.033l-.044-.03-5.991-2.996Z", "key": "da3d26c9c659073642799baa087926da34c79cc4" }], ["path", { "fill": "currentColor", "d": "M4.08 13.565a.75.75 0 0 1 1.005-.336l6.06 3.03.055.04a1.5 1.5 0 0 0 1.8 0l.054-.04 6.06-3.03a.75.75 0 0 1 .671 1.342l-5.943 2.972a3 3 0 0 1-3.484 0L4.416 14.57a.75.75 0 0 1-.336-1.006Z", "key": "b82c9862752cbb4edd51007f60570e79d76a2370" }], ["path", { "fill": "currentColor", "d": "M4.08 17.265a.75.75 0 0 1 1.005-.336l6.06 3.03.055.04a1.5 1.5 0 0 0 1.8 0l.054-.04 6.06-3.03a.75.75 0 0 1 .671 1.342l-5.943 2.972a3 3 0 0 1-3.484 0L4.416 18.27a.75.75 0 0 1-.336-1.006Z", "key": "6742626633d6e410abbbc714f730cc548c689878" }]]);
const Star = createMeisterIcons("star", [["path", { "fill": "currentColor", "d": "M16.998 20.898c-.2 0-.4 0-.6-.1l-4.1-2.2c-.3-.1-.4 0-.4 0l-4.2 2.2c-.6.2-1.1.1-1.5-.2-.4-.3-.6-.8-.5-1.3l.8-4.6v-.1l-3.4-3.3c-.4-.4-.5-1-.3-1.5s.6-.9 1.2-1l4.7-.6 2.1-4.3c.2-.4.6-.8 1.1-.8.6 0 1.1.2 1.4.7l2.1 4.4 4.7.7c.5.1.9.4 1.1.9.2.5.1 1-.2 1.4l-.1.1-3.4 3.4.8 4.6c.1.5-.1 1-.5 1.3-.2.2-.5.3-.8.3Zm-5.1-3.8c.3 0 .5 0 .8.1l.2.1 4 2.1-.8-4.6c0-.2 0-.9.5-1.2l3.2-3.2-4.9-.7c-.2-.1-.6-.3-.8-.7l-2-4.2-2 4.2c-.3.2-.6.6-1.2.7l-4.6.6 3.3 3.3c.4.4.4.9.4 1.1v.1l-.8 4.5 4-2.1c.2-.1.5-.1.7-.1Z", "key": "0c889c3ec24709de6de12750c8449da94d8d8c09" }]]);
const StarB = createMeisterIcons("star-b", [["path", { "fill": "currentColor", "d": "m11.635 17.81-4.2 2.2c-.5.2-1-.2-.9-.7l.8-4.7c0-.2 0-.4-.2-.6l-3.5-3.3c-.4-.4-.2-1 .4-1.1l4.8-.7c.2 0 .4-.2.5-.4l2.1-4.3c.2-.5.9-.5 1.2 0l2.1 4.3c.1.2.3.3.5.4l4.8.7c.5.1.7.7.4 1.1l-3.4 3.4c-.2.1-.2.4-.2.6l.8 4.7c.1.5-.5.9-.9.7l-4.2-2.2c-.4-.2-.7-.2-.9-.1Z", "key": "cc7d7707bb560396a3678ed56f53f304d9e363b5" }], ["path", { "fill": "currentColor", "d": "m12.035 4.691-2.03 4.155c-.09.181-.224.363-.394.51a1.22 1.22 0 0 1-.706.303l-4.584.668 3.337 3.146.007.007c.421.421.42.892.42 1.112v.082L7.31 19.23l3.983-2.087.007-.003c.487-.244 1.05-.16 1.57.1l.007.003 3.983 2.087-.775-4.556v-.078c0-.093 0-.29.043-.485.04-.18.145-.484.436-.69l3.193-3.193-4.75-.692-.107-.054-.033-.016c-.176-.086-.587-.288-.803-.72l-.003-.006-2.026-4.149Zm-7.912 5.67Zm7.875-7.275c.498 0 .993.26 1.28.739l.017.028 2.095 4.29a.751.751 0 0 0 .075.043l4.698.686.02.003c1.087.218 1.454 1.483.852 2.286l-.032.043-3.417 3.417v.028l.787 4.627c.114.6-.2 1.09-.557 1.352-.345.253-.897.413-1.416.154l-.007-.003-4.2-2.2a.676.676 0 0 0-.249-.084L7.75 20.694l-.035.014c-.995.398-2.134-.397-1.917-1.531l.788-4.627v-.028L3.111 11.25l-.007-.008c-.389-.388-.53-.937-.352-1.442.177-.502.624-.839 1.159-.928l.007-.001 4.744-.692v-.001l2.088-4.275a1.339 1.339 0 0 1 1.247-.816Z", "key": "61140ebb0aee6d96da325f952913a56cf1b665c1" }]]);
const StarHalfB = createMeisterIcons("star-half-b", [["path", { "fill": "currentColor", "d": "M11.962 3.849v13.9c-.1 0-.2 0-.3.1l-4.3 2.2c-.5.3-1-.1-.9-.7l.8-4.7c0-.2 0-.4-.2-.6l-3.4-3.4c-.4-.4-.2-1 .4-1.1l4.8-.7c.2 0 .4-.2.5-.4l2.1-4.3c0-.2.2-.3.5-.3Z", "key": "b5401900f9fe8b9011e477bf23e93e2d2eefa239" }], ["path", { "fill": "currentColor", "d": "M10.736 3.926 8.69 8.116l-4.744.692-.008.001c-.534.09-.982.426-1.159.928-.178.505-.036 1.054.352 1.442l3.38 3.38v.028l-.789 4.636v.003c-.088.527.079 1.068.501 1.4.433.34 1.011.361 1.5.081l4.315-2.208h.674v-15.4h-.75c-.215 0-.488.033-.735.174a1.008 1.008 0 0 0-.491.653Zm.476 2.444-1.18 2.414c-.09.182-.225.364-.395.51a1.22 1.22 0 0 1-.705.303l-4.592.67 3.252 3.252c.42.42.42.891.42 1.111v.082l-.776 4.559 3.976-2.034V6.37ZM7.199 19.511v-.002.002ZM4.15 10.299Z", "key": "187cb818cdef83bdb457c31496e7b12d57005b3c" }], ["path", { "fill": "currentColor", "d": "M11.112 3.099h.75c.355 0 1.024.17 1.287.846l2.166 4.134a.71.71 0 0 0 .077.046l4.697.685.02.004c.5.1.903.447 1.084.887a1.339 1.339 0 0 1-.301 1.478l-.011.012-3.568 3.27-.001.025v.001l.788 4.627c.114.6-.2 1.09-.557 1.352-.345.253-.897.414-1.417.154l-.006-.003-4.205-2.152a1.052 1.052 0 0 1-.179-.066h-.624v-15.3Zm1.5 3.053v10.985l3.976 2.034-.776-4.559v-.082c0-.22-.002-.69.42-1.111l.01-.012 3.43-3.142-4.738-.691-.108-.054-.032-.016c-.175-.086-.582-.285-.8-.712l-1.382-2.64Z", "key": "d4906ee885fee40b0043dac7cad1f759fd26c1d8" }]]);
const StarWand = createMeisterIcons("star-wand", [["path", { "fill": "currentColor", "d": "M13.265 6.449 10.877 8.04h-.17c-.03.006-.084.019-.134.027a1.116 1.116 0 0 1-.334.008.922.922 0 0 1-.348-.121L7.556 7.02 8.3 9.584v.141c.003.162.009.543-.29.866l-1.673 1.991 2.541.159c.496.01.778.294.892.408l.01.011.072.071 1.326 2.321.939-2.347c.05-.284.214-.495.377-.625.146-.117.338-.208.544-.232l2.558-.56-1.967-1.574c-.54-.326-.53-.915-.529-1.014v-.032l.165-2.72Zm-.33-1.582c.812-.542 1.865.041 1.865 1.024v.022l-.192 3.164L17 10.989c.426.305.537.805.445 1.208-.097.419-.42.798-.912.921l-.01.003-3.02.66-1.15 2.873c-.17.471-.6.7-.95.753-.374.057-.875-.049-1.176-.5l-.014-.022-1.516-2.653-3.074-.192c-.482-.01-.89-.286-1.052-.73a1.275 1.275 0 0 1 .156-1.135l.023-.035 2.03-2.416-.846-2.914c-.165-.524.11-.985.365-1.214.26-.234.774-.464 1.286-.18l2.828 1.132 2.522-1.681Z", "key": "3c6c926f81095cddb76ec907706e884cb39f7644" }], ["path", { "fill": "currentColor", "d": "M12.72 12.56a.75.75 0 0 1 1.06 0l5.5 5.5a.75.75 0 0 1-1.06 1.06l-5.5-5.5a.75.75 0 0 1 0-1.06Z", "key": "a6c9ed1deda10c94ff665b9ffa409d76789457f0" }]]);
const StarWandB = createMeisterIcons("star-wand-b", [["path", { "fill": "currentColor", "d": "m8.85 13.49-3.2-.2c-.4 0-.5-.4-.3-.7l2.1-2.5c.1-.1.1-.2.1-.4l-.9-3.1c-.1-.3.3-.7.6-.5l3 1.2c.1.1.3 0 .4 0l2.7-1.8c.3-.2.7 0 .7.4l-.2 3.3c0 .1 0 .3.2.4l2.5 2c.3.2.2.7-.2.8l-3.2.7c-.1 0-.3.1-.3.3l-1.2 3c-.1.3-.6.4-.8.1l-1.6-2.8c-.1-.1-.2-.2-.4-.2Z", "key": "fcefa12213147f0ee487c38808a8e10f9b6c9237" }], ["path", { "fill": "currentColor", "d": "M13.265 6.449 10.877 8.04h-.17c-.03.006-.084.019-.134.027a1.116 1.116 0 0 1-.334.008.922.922 0 0 1-.348-.121L7.556 7.02 8.3 9.584v.141c.003.162.009.543-.29.866l-1.673 1.991 2.541.159c.496.01.778.294.892.408l.01.011.072.071 1.326 2.321.939-2.347c.05-.284.214-.495.377-.625.146-.117.338-.208.544-.232l2.558-.56-1.967-1.574c-.54-.326-.53-.915-.529-1.014v-.032l.165-2.72Zm-.33-1.582c.812-.542 1.865.041 1.865 1.024v.022l-.192 3.164L17 10.989c.426.305.537.805.445 1.208-.097.419-.42.798-.912.921l-.01.003-3.02.66-1.15 2.873c-.17.471-.6.7-.95.753-.374.057-.875-.049-1.176-.5l-.014-.022-1.516-2.653-3.074-.192c-.482-.01-.89-.286-1.052-.73a1.275 1.275 0 0 1 .156-1.135l.023-.035 2.03-2.416-.846-2.914c-.165-.524.11-.985.365-1.214.26-.234.774-.464 1.286-.18l2.828 1.132 2.522-1.681Z", "key": "2420d6c2f8e2fbf996cbabea328bdaec985b199e" }], ["path", { "fill": "currentColor", "d": "M12.72 12.56a.75.75 0 0 1 1.06 0l5.5 5.5a.75.75 0 0 1-1.06 1.06l-5.5-5.5a.75.75 0 0 1 0-1.06Z", "key": "8718ffacb28bf1beedb02ca8caaf2936b1b9a7b9" }]]);
const Stethoscope = createMeisterIcons("stethoscope", [["path", { "fill": "currentColor", "d": "M4.84 5.183a.427.427 0 0 0-.14.317V8c0 2.235 1.978 3.975 4.31 3.563 1.602-.324 2.79-1.876 2.79-3.663V5.5a.47.47 0 0 0-.133-.31.427.427 0 0 0-.317-.14.75.75 0 0 1 0-1.5c1.154 0 1.95.977 1.95 1.95v2.4c0 2.41-1.608 4.656-4.003 5.136l-.008.001-.007.001C6.018 13.621 3.2 11.163 3.2 8V5.5c0-1.154.977-1.95 1.95-1.95a.75.75 0 1 1 0 1.5.47.47 0 0 0-.31.133Z", "key": "dbd3c56f1feef8b11f01c3fb248beb6f2032c7ae" }], ["path", { "fill": "currentColor", "d": "M8.15 11.55a.75.75 0 0 1 .75.75v2.4c0 2.386 1.864 4.25 4.25 4.25 2.376 0 4.25-1.954 4.25-4.25v-1.6a.75.75 0 0 1 1.5 0v1.6c0 3.105-2.526 5.75-5.75 5.75-3.214 0-5.75-2.536-5.75-5.75v-2.4a.75.75 0 0 1 .75-.75Z", "key": "05459edfc997f948e0d89121d0d1d8d84f79a347" }], ["path", { "fill": "currentColor", "d": "M18.15 10.15a1.15 1.15 0 1 0 0 2.3 1.15 1.15 0 0 0 0-2.3ZM15.5 11.3a2.65 2.65 0 1 1 5.3 0 2.65 2.65 0 0 1-5.3 0Z", "key": "bd450cd9156ded1e1b50e0c0fd07a9658c145f1d" }]]);
const StethoscopeB = createMeisterIcons("stethoscope-b", [["path", { "fill": "currentColor", "d": "M4.84 5.183a.427.427 0 0 0-.14.317V8c0 2.235 1.978 3.975 4.31 3.563 1.602-.324 2.79-1.876 2.79-3.663V5.5a.47.47 0 0 0-.133-.31.427.427 0 0 0-.317-.14.75.75 0 0 1 0-1.5c1.154 0 1.95.977 1.95 1.95v2.4c0 2.41-1.608 4.656-4.003 5.136l-.008.001-.007.001C6.018 13.621 3.2 11.163 3.2 8V5.5c0-1.154.977-1.95 1.95-1.95a.75.75 0 1 1 0 1.5.47.47 0 0 0-.31.133Z", "key": "e58b3fcdc4a96743339932bd5b293d7905a90846" }], ["path", { "fill": "currentColor", "d": "M8.15 11.55a.75.75 0 0 1 .75.75v2.4c0 2.386 1.864 4.25 4.25 4.25 2.376 0 4.25-1.954 4.25-4.25v-1.6a.75.75 0 0 1 1.5 0v1.6c0 3.105-2.526 5.75-5.75 5.75-3.214 0-5.75-2.536-5.75-5.75v-2.4a.75.75 0 0 1 .75-.75Z", "key": "a686bc50dab12d426f2a991035eb12472921f4a5" }], ["path", { "fill": "currentColor", "d": "M18.15 13.2a1.9 1.9 0 1 0 0-3.8 1.9 1.9 0 0 0 0 3.8Z", "key": "9aa95d545d4358a09b307140ca9661b8e85c30ba" }], ["path", { "fill": "currentColor", "d": "M18.15 10.15a1.15 1.15 0 1 0 0 2.3 1.15 1.15 0 0 0 0-2.3ZM15.5 11.3a2.65 2.65 0 1 1 5.3 0 2.65 2.65 0 0 1-5.3 0Z", "key": "c53b05493ee349278e0203424191268744f7fa7f" }]]);
const Stickynote = createMeisterIcons("stickynote", [["path", { "fill": "currentColor", "d": "M3.75 9c0-2.886 2.364-5.25 5.25-5.25h6c2.886 0 5.25 2.364 5.25 5.25v4.386a6.255 6.255 0 0 0-1.35-.136c-3.714 0-6.75 3.036-6.75 6.75v.038l.001.212H9c-2.978 0-5.25-2.356-5.25-5.25V9Zm9.902 11.25H15c2.886 0 5.25-2.364 5.25-5.25v-.06c-.394-.133-.85-.19-1.35-.19-2.886 0-5.25 2.364-5.25 5.25 0 .088 0 .172.002.25ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.706 2.928 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75V9c0-3.714-3.036-6.75-6.75-6.75H9Z", "key": "eeb7223fca111df5b62e492ac4fede3bdee33a71" }]]);
const StickynoteB = createMeisterIcons("stickynote-b", [["path", { "fill": "currentColor", "d": "M21 9v5.3c-.6-.2-1.3-.3-2-.3-3.3 0-6 2.7-6 6 0 .3 0 .7.1 1H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.6 6 6Z", "key": "841601cba2499e135f1e3bcae84bddc227058250" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h3.251l-.001-.212V20c0-3.714 3.036-6.75 6.75-6.75.418 0 .84.032 1.25.099V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6.34l-.987-.328A5.7 5.7 0 0 0 19 14.75c-2.886 0-5.25 2.364-5.25 5.25 0 .335.008.602.062.763l.329.987H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "fc9b26cd474ad93b84202cba2f6c3fc117167a52" }], ["path", { "fill": "currentColor", "d": "M19 14.75c-2.886 0-5.25 2.364-5.25 5.25 0 .088 0 .172.002.25H15c2.886 0 5.25-2.364 5.25-5.25v-.113A6.29 6.29 0 0 0 19 14.75ZM12.25 20c0-3.714 3.036-6.75 6.75-6.75.677 0 1.447.112 2.206.329l.544.155V15c0 3.714-3.036 6.75-6.75 6.75h-2.44l-.172-.513c-.14-.418-.138-.923-.138-1.199V20Z", "key": "4285a7fe40fa5759ac0d7897c00a76cd9399f87f" }]]);
const StickynoteVarB = createMeisterIcons("stickynote-var-b", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h3.251l-.001-.212V20c0-3.714 3.036-6.75 6.75-6.75.418 0 .84.032 1.25.099V9c0-2.978-2.356-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.706 0 6.75 2.928 6.75 6.75v6.34l-.987-.328A5.7 5.7 0 0 0 19 14.75c-2.886 0-5.25 2.364-5.25 5.25 0 .335.008.602.062.763l.329.987H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "e7aa2a4ab801fe4dc0b9aeb26f9fb3494c44089e" }], ["path", { "fill": "currentColor", "d": "M21 14.3v.7c0 3.3-2.7 6-6 6h-1.9c-.1-.3-.1-.7-.1-1 0-3.3 2.7-6 6-6 .6 0 1.3.1 2 .3Z", "key": "1dfaa5f0bdee06ee4fc9a2bd437b7d092afc00c4" }], ["path", { "fill": "currentColor", "d": "M19 14.75c-2.886 0-5.25 2.364-5.25 5.25 0 .088 0 .172.002.25H15c2.886 0 5.25-2.364 5.25-5.25v-.113A6.29 6.29 0 0 0 19 14.75ZM12.25 20c0-3.714 3.036-6.75 6.75-6.75.677 0 1.447.112 2.206.329l.544.155V15c0 3.714-3.036 6.75-6.75 6.75h-2.44l-.172-.513c-.14-.418-.138-.923-.138-1.199V20Z", "key": "bfa9e3e072011727ff8623d56f4d6296c622fdd8" }]]);
const Suitcase = createMeisterIcons("suitcase", [["path", { "fill": "currentColor", "d": "M8.75 5.25C8.75 4.564 9.314 4 10 4h4c.61 0 1.25.588 1.25 1.25V6h-6.5v-.75ZM7.25 6v-.75A2.756 2.756 0 0 1 10 2.5h4c1.39 0 2.75 1.212 2.75 2.75V6H17a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 21.5H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 6h.25Zm0 14H7a3.262 3.262 0 0 1-3.25-3.25v-6A3.262 3.262 0 0 1 7 7.5h.25V20Zm1.5 0V7.5h6.5V20h-6.5Zm8 0H17a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 7.5h-.25V20Z", "key": "e85205e3df9183b072ea5d2a64a9dd992c4d9077" }]]);
const SuitcaseB = createMeisterIcons("suitcase-b", [["path", { "fill": "currentColor", "d": "M7 7.5a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 20h.25V7.5H7Zm-4.75 3.25A4.762 4.762 0 0 1 7 6h1.75v15.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Zm13-4.75H17c2.602 0 4.75 2.024 4.75 4.75v6A4.762 4.762 0 0 1 17 21.5h-1.75V6Zm1.5 1.5V20H17a3.262 3.262 0 0 0 3.25-3.25v-6c0-1.874-1.452-3.25-3.25-3.25h-.25Z", "key": "487d847abd910d214eb7f7de01f43863cf0da171" }], ["path", { "fill": "currentColor", "d": "M16 6.75H8v14h8v-14Z", "key": "15937fb1d48ca79fa7d876a72d212c3882a243cf" }], ["path", { "fill": "currentColor", "d": "M7.25 6h9.5v15.5h-9.5V6Zm1.5 1.5V20h6.5V7.5h-6.5Z", "key": "b2cbea4a99fef2a99ed4c6a3a516fdff351684db" }], ["path", { "fill": "currentColor", "d": "M10 4c-.686 0-1.25.564-1.25 1.25V6h6.5v-.75C15.25 4.512 14.635 4 14 4h-4ZM7.25 5.25A2.756 2.756 0 0 1 10 2.5h4c1.365 0 2.75 1.088 2.75 2.75V7.5h-9.5V5.25Z", "key": "9f9ab81c7468a37d27f9031c4c193ff0f3eabd35" }]]);
const SuitcaseMinimal = createMeisterIcons("suitcase-minimal", [["path", { "fill": "currentColor", "d": "M8.75 5.25C8.75 4.564 9.314 4 10 4h4c.686 0 1.25.564 1.25 1.25V6h-6.5v-.75ZM7.25 6v-.75A2.756 2.756 0 0 1 10 2.5h4a2.756 2.756 0 0 1 2.75 2.75V6H17a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 21.5H7a4.762 4.762 0 0 1-4.75-4.75v-6A4.762 4.762 0 0 1 7 6h.25Zm-3.5 4.75A3.262 3.262 0 0 1 7 7.5h10a3.262 3.262 0 0 1 3.25 3.25v6A3.262 3.262 0 0 1 17 20H7a3.262 3.262 0 0 1-3.25-3.25v-6Z", "key": "9355502ce0ff6379643dd55a6329e19cb127b1ea" }], ["path", { "stroke": "#000", "stroke-miterlimit": "10", "stroke-width": "1.5", "d": "M16 20.75H8", "key": "b5746e48b994f180953cd9c8e329ca74be4f1fc2" }]]);
const SuitcaseMinimalB = createMeisterIcons("suitcase-minimal-b", [["path", { "fill": "currentColor", "d": "M21 10.75v6c0 2.2-1.8 4-4 4H7c-2.2 0-4-1.8-4-4v-6c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "33b59a7a98070a7d791759a270a39c8fe22bf512" }], ["path", { "fill": "currentColor", "d": "M7 7.5a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 20h10a3.262 3.262 0 0 0 3.25-3.25v-6c0-1.874-1.452-3.25-3.25-3.25H7Zm-4.75 3.25A4.762 4.762 0 0 1 7 6h10c2.602 0 4.75 2.024 4.75 4.75v6A4.762 4.762 0 0 1 17 21.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Z", "key": "5891ac86b13164b0ed24b0f0dd7c5a8741e06993" }], ["path", { "fill": "currentColor", "d": "M10 4c-.686 0-1.25.564-1.25 1.25v1.5h-1.5v-1.5A2.756 2.756 0 0 1 10 2.5h4a2.756 2.756 0 0 1 2.75 2.75v1.5h-1.5v-1.5C15.25 4.564 14.686 4 14 4h-4ZM8 20h8v1.5H8V20Z", "key": "d6621ec48ad568cf6036ea1adbf874f33a795354" }]]);
const SuitcaseVarB = createMeisterIcons("suitcase-var-b", [["path", { "fill": "currentColor", "d": "M8 6.75v14H7c-2.2 0-4-1.8-4-4v-6c0-2.2 1.8-4 4-4h1Z", "key": "717256004520b25b258af32d1993bc9ef0178020" }], ["path", { "fill": "currentColor", "d": "M7 7.5a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 20h.25V7.5H7Zm-4.75 3.25A4.762 4.762 0 0 1 7 6h1.75v15.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Zm18.75 0v6c0 2.2-1.8 4-4 4h-1v-14h1c2.2 0 4 1.7 4 4Z", "key": "032d6c311dad9c16e16b8455a6bb47f4020e86c9" }], ["path", { "fill": "currentColor", "d": "M15.25 6H17c2.602 0 4.75 2.024 4.75 4.75v6A4.762 4.762 0 0 1 17 21.5h-1.75V6Zm1.5 1.5V20H17a3.262 3.262 0 0 0 3.25-3.25v-6c0-1.874-1.452-3.25-3.25-3.25h-.25Z", "key": "0c3344e3c1ab19a6a37cf667d74317c7920e102f" }], ["path", { "fill": "currentColor", "d": "M7.25 6h9.5v15.5h-9.5V6Zm1.5 1.5V20h6.5V7.5h-6.5Z", "key": "83467564390bcc7e897624dd293e761f66743eee" }], ["path", { "fill": "currentColor", "d": "M10 4c-.686 0-1.25.564-1.25 1.25V6h6.5v-.75C15.25 4.512 14.635 4 14 4h-4ZM7.25 5.25A2.756 2.756 0 0 1 10 2.5h4c1.365 0 2.75 1.088 2.75 2.75V7.5h-9.5V5.25Z", "key": "7b9413f10e47b180088e4a7d894d15bda713e860" }]]);
const SunCloud = createMeisterIcons("sun-cloud", [["path", { "fill": "currentColor", "d": "M11.4 7.35c-2.064 0-3.75 1.742-3.75 3.85v.75H6.9c-.788 0-1.5.311-2.07.88-.568.569-.88 1.282-.88 2.07a2.835 2.835 0 0 0 2.85 2.85h9.1c.788 0 1.5-.312 2.07-.88.569-.57.88-1.282.88-2.07 0-.55-.156-1.019-.393-1.414a.75.75 0 0 1 1.286-.772c.363.604.607 1.336.607 2.186 0 1.212-.488 2.299-1.32 3.13-.83.831-1.918 1.32-3.13 1.32H6.8a4.335 4.335 0 0 1-4.35-4.35c0-1.212.489-2.3 1.32-3.13a4.42 4.42 0 0 1 2.425-1.264C6.529 7.926 8.702 5.85 11.4 5.85c.93 0 1.744.233 2.435.579a.75.75 0 0 1-.67 1.342A3.898 3.898 0 0 0 11.4 7.35Z", "key": "5bdf1e83a7a31af56758fb290f1030f0a6ce31f7" }], ["path", { "fill": "currentColor", "d": "M16.7 6.25a3.35 3.35 0 1 0 0 6.7 3.35 3.35 0 0 0 0-6.7ZM11.85 9.6a4.85 4.85 0 1 1 9.7 0 4.85 4.85 0 0 1-9.7 0Z", "key": "eeffd0b007d4a2f990e360909227ef8af0eda94d" }]]);
const SunCloudB = createMeisterIcons("sun-cloud-b", [["path", { "fill": "currentColor", "d": "M19.5 14.85c0 1-.4 1.9-1.1 2.6-.7.6-1.6 1.1-2.6 1.1H6.7c-2 0-3.6-1.6-3.6-3.6 0-1 .4-1.9 1.1-2.6.7-.6 1.6-1.1 2.6-1.1 0-2.5 2-4.5 4.5-4.5.8 0 1.5.2 2.1.5-.5.7-.8 1.5-.8 2.5 0 2.3 1.9 4.1 4.1 4.1.9 0 1.6-.3 2.3-.7.3.5.5 1.1.5 1.7Z", "key": "ddf7536fdc469eda458bfbe423c0410781c81555" }], ["path", { "fill": "currentColor", "d": "M11.3 7.5a3.731 3.731 0 0 0-3.75 3.75V12H6.8c-.74 0-1.464.37-2.09.9-.556.566-.86 1.271-.86 2.05A2.835 2.835 0 0 0 6.7 17.8h9.1c.74 0 1.464-.37 2.09-.9.556-.566.86-1.271.86-2.05 0-.222-.038-.45-.107-.675a4.695 4.695 0 0 1-1.943.425c-2.602 0-4.85-2.124-4.85-4.85 0-.799.166-1.496.458-2.118A3.87 3.87 0 0 0 11.3 7.5Zm-5.207 3.066A5.23 5.23 0 0 1 11.3 6c.93 0 1.744.233 2.435.58l.785.392-.51.714a3.398 3.398 0 0 0-.66 2.064c0 1.874 1.552 3.35 3.35 3.35.713 0 1.279-.23 1.928-.601l.637-.365.378.63c.356.593.607 1.325.607 2.086 0 1.212-.488 2.3-1.32 3.13l-.02.02-.022.02c-.77.66-1.838 1.28-3.088 1.28H6.7a4.335 4.335 0 0 1-4.35-4.35c0-1.212.488-2.3 1.32-3.13l.02-.02.022-.02c.62-.531 1.434-1.038 2.381-1.214Z", "key": "eaa6e9ca9ed269d20a7fde75a133c7824e912587" }], ["path", { "fill": "currentColor", "d": "M13.999 7.602a3.627 3.627 0 0 0-.649 2.048c0 1.886 1.464 3.35 3.35 3.35.784 0 1.42-.172 1.964-.56l.016-.012.017-.01c.871-.555 1.453-1.61 1.453-2.768 0-1.852-1.533-3.358-3.466-3.45-1.016.006-2.002.556-2.685 1.402Zm-1.185-.92C13.726 5.541 15.128 4.7 16.7 4.7h.033c2.659.116 4.917 2.208 4.917 4.95 0 1.634-.811 3.174-2.13 4.022-.852.603-1.81.828-2.82.828a4.805 4.805 0 0 1-4.85-4.85c0-1.06.35-2.111.94-2.936l.012-.017.012-.016Z", "key": "ccb9f034ecb2d62d1d0e64d3120d22fd8903bbdd" }]]);
const SunCloudVarB = createMeisterIcons("sun-cloud-var-b", [["path", { "fill": "currentColor", "d": "M11.35 7.35c-2.065 0-3.75 1.742-3.75 3.85v.75h-.75c-.788 0-1.5.311-2.07.88-.568.569-.88 1.282-.88 2.07a2.835 2.835 0 0 0 2.85 2.85h9.1c.788 0 1.5-.312 2.07-.88.568-.57.88-1.282.88-2.07 0-.55-.156-1.019-.393-1.414a.75.75 0 1 1 1.286-.772c.363.604.607 1.336.607 2.186 0 1.212-.489 2.299-1.32 3.13-.83.831-1.918 1.32-3.13 1.32h-9.1A4.335 4.335 0 0 1 2.4 14.9c0-1.212.488-2.3 1.32-3.13a4.42 4.42 0 0 1 2.425-1.264c.334-2.58 2.507-4.656 5.205-4.656.93 0 1.744.233 2.435.579a.75.75 0 1 1-.67 1.342 3.899 3.899 0 0 0-1.765-.421Z", "key": "b4924ef19a93e67baf29c9fdd28d0b5e00688ea6" }], ["path", { "fill": "currentColor", "d": "M16.75 13.7a4.1 4.1 0 1 0 0-8.2 4.1 4.1 0 0 0 0 8.2Z", "key": "4bc7aa014da231d2829fb9b965d3b9569e12d1f5" }], ["path", { "fill": "currentColor", "d": "M16.75 6.25a3.35 3.35 0 1 0 0 6.7 3.35 3.35 0 0 0 0-6.7ZM11.9 9.6a4.85 4.85 0 1 1 9.7 0 4.85 4.85 0 0 1-9.7 0Z", "key": "dc83b9ccb46d53b831830c002cdec6f5adf0d580" }]]);
const Switch = createMeisterIcons("switch", [["path", { "fill": "currentColor", "d": "M3.75 12c0-2.386 1.864-4.25 4.25-4.25h8c2.386 0 4.25 1.864 4.25 4.25s-1.864 4.25-4.25 4.25H8c-2.376 0-4.25-1.954-4.25-4.25ZM8 6.25c-3.214 0-5.75 2.536-5.75 5.75 0 3.104 2.526 5.75 5.75 5.75h8c3.214 0 5.75-2.536 5.75-5.75S19.214 6.25 16 6.25H8ZM6.75 12a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM8 9.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "14de14624ee91e90e40b812f17c5fada710be20a" }]]);
const SwitchActive = createMeisterIcons("switch-active", [["path", { "fill": "currentColor", "d": "M8 7.75c-2.386 0-4.25 1.864-4.25 4.25 0 2.296 1.874 4.25 4.25 4.25h8c2.386 0 4.25-1.864 4.25-4.25S18.386 7.75 16 7.75H8ZM2.25 12c0-3.214 2.536-5.75 5.75-5.75h8c3.214 0 5.75 2.536 5.75 5.75s-2.536 5.75-5.75 5.75H8c-3.224 0-5.75-2.646-5.75-5.75ZM16 9.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "3a8c2afee00438f5a5cb6c44c3ab70686c0062b6" }]]);
const SwitchAdd = createMeisterIcons("switch-add", [["path", { "fill": "currentColor", "d": "M8 7.75c-2.386 0-4.25 1.864-4.25 4.25 0 2.296 1.874 4.25 4.25 4.25h8c2.386 0 4.25-1.864 4.25-4.25S18.386 7.75 16 7.75H8ZM2.25 12c0-3.214 2.536-5.75 5.75-5.75h8c3.214 0 5.75 2.536 5.75 5.75s-2.536 5.75-5.75 5.75H8c-3.224 0-5.75-2.646-5.75-5.75Zm10 0a.75.75 0 0 1 .75-.75h1.25V10a.75.75 0 0 1 1.5 0v1.25H17a.75.75 0 0 1 0 1.5h-1.25V14a.75.75 0 0 1-1.5 0v-1.25H13a.75.75 0 0 1-.75-.75Z", "key": "bbe39be242b8c19d2925276f4944b79a0a7dfb5e" }]]);
const SwitchAddB = createMeisterIcons("switch-add-b", [["path", { "fill": "currentColor", "d": "M3 12c0-2.8 2.2-5 5-5h8c2.8 0 5 2.2 5 5s-2.2 5-5 5H8c-2.8 0-5-2.3-5-5Z", "key": "7aaee43b05d3ef88478b9a651294fcf22fa1154a" }], ["path", { "fill": "currentColor", "d": "M8 7.75c-2.386 0-4.25 1.864-4.25 4.25 0 2.296 1.874 4.25 4.25 4.25h8c2.386 0 4.25-1.864 4.25-4.25S18.386 7.75 16 7.75H8ZM2.25 12c0-3.214 2.536-5.75 5.75-5.75h8c3.214 0 5.75 2.536 5.75 5.75s-2.536 5.75-5.75 5.75H8c-3.224 0-5.75-2.646-5.75-5.75Z", "key": "fd8c82783c906546a80743a4940f4c613d20701b" }], ["path", { "fill": "#fff", "d": "M12.25 12a.75.75 0 0 1 .75-.75h4a.75.75 0 0 1 0 1.5h-4a.75.75 0 0 1-.75-.75Z", "key": "ce0b0baa5e7ed3ac611ee4982588dea02a2ee38b" }], ["path", { "fill": "#fff", "d": "M15 9.25a.75.75 0 0 1 .75.75v4a.75.75 0 0 1-1.5 0v-4a.75.75 0 0 1 .75-.75Z", "key": "6dfad734558fe96b801ad675573d82e99903e2a2" }]]);
const SwitchCross = createMeisterIcons("switch-cross", [["path", { "fill": "currentColor", "d": "M8 7.75c-2.386 0-4.25 1.864-4.25 4.25 0 2.296 1.874 4.25 4.25 4.25h8c2.386 0 4.25-1.864 4.25-4.25S18.386 7.75 16 7.75H8ZM2.25 12c0-3.214 2.536-5.75 5.75-5.75h8c3.214 0 5.75 2.536 5.75 5.75s-2.536 5.75-5.75 5.75H8c-3.224 0-5.75-2.646-5.75-5.75Zm10.72-2.03a.75.75 0 0 1 1.06 0l.92.92.92-.92a.75.75 0 0 1 1.06 1.06l-.92.92.92.92a.75.75 0 0 1-1.06 1.06l-.92-.92-.92.92a.75.75 0 0 1-1.06-1.06l.92-.92-.92-.92a.75.75 0 0 1 0-1.06Z", "key": "9b86824439e3d0b5b93205b7717e82bb35783db3" }]]);
const SwitchCrossB = createMeisterIcons("switch-cross-b", [["path", { "fill": "currentColor", "d": "M3 12c0-2.8 2.2-5 5-5h8c2.8 0 5 2.2 5 5s-2.2 5-5 5H8c-2.8 0-5-2.3-5-5Z", "key": "9e2c438deb0b59005e6c16abfd6b0f0cd8fb4e71" }], ["path", { "fill": "currentColor", "d": "M8 7.75c-2.386 0-4.25 1.864-4.25 4.25 0 2.296 1.874 4.25 4.25 4.25h8c2.386 0 4.25-1.864 4.25-4.25S18.386 7.75 16 7.75H8ZM2.25 12c0-3.214 2.536-5.75 5.75-5.75h8c3.214 0 5.75 2.536 5.75 5.75s-2.536 5.75-5.75 5.75H8c-3.224 0-5.75-2.646-5.75-5.75Z", "key": "25b9a179d6ae636a825dd29f109b6e1628958a96" }], ["path", { "fill": "#fff", "d": "M12.97 9.97a.75.75 0 0 1 1.06 0l2.9 2.9a.75.75 0 1 1-1.06 1.06l-2.9-2.9a.75.75 0 0 1 0-1.06Z", "key": "52bb119000b326262e5d05b0d5cbcbb63fdd4be5" }], ["path", { "fill": "#fff", "d": "M16.93 9.97a.75.75 0 0 1 0 1.06l-2.9 2.9a.75.75 0 1 1-1.06-1.06l2.9-2.9a.75.75 0 0 1 1.06 0Z", "key": "8973ce877a553cb1cadd257284866c28d1703a7d" }]]);
const Sword = createMeisterIcons("sword", [["path", { "fill": "currentColor", "d": "M3.91 12.63a.75.75 0 0 1 1.06 0l6.4 6.4a.75.75 0 0 1-1.06 1.061l-6.4-6.4a.75.75 0 0 1 0-1.06Z", "key": "b84edb79b301d23cf4a0d1e243613af0db713315" }], ["path", { "fill": "currentColor", "d": "M8.17 15.83a.75.75 0 0 1 0 1.06l-3.2 3.2a.75.75 0 0 1-1.06-1.06l3.2-3.2a.75.75 0 0 1 1.06 0Z", "key": "865d072b08f497a4db363f406cfa8a1e7d012e57" }], ["path", { "fill": "currentColor", "d": "m20.282 5.088-.317 4.007-10.319 10.32-5.17-5.045L14.81 3.926l4.113-.21c.805-.175 1.542.567 1.358 1.372Zm-1.516.138-3.298.169-8.864 8.956 3.029 2.955 8.88-8.88.253-3.2Z", "key": "9917bcf02aea061c6757ea4715b9bdcf11a9590d" }], ["path", { "fill": "currentColor", "d": "M13.97 10.03a.75.75 0 0 1 0 1.06l-1.9 1.9a.75.75 0 0 1-1.06-1.06l1.9-1.9a.75.75 0 0 1 1.06 0Z", "key": "6a7c81ef929f35b57b5a63c14c7ed68b905f327d" }]]);
const SwordB = createMeisterIcons("sword-b", [["path", { "fill": "currentColor", "d": "m19.54 4.96-.3 3.9-9.6 9.5-4-4 9.5-9.7 3.9-.2c.3-.1.6.2.5.5Z", "key": "79680da7c9dc160b5362c290e2bc4a370e312ec4" }], ["path", { "fill": "currentColor", "d": "m18.767 5.226-3.297.169-8.775 8.96 2.947 2.948 8.871-8.779.254-3.298Zm1.515-.139c.184-.804-.554-1.546-1.358-1.371l-4.115.21-10.225 10.44 5.053 5.053L19.966 9.197l.316-4.11Z", "key": "6212530500f25ea082cea5f31c5eb7c86d386374" }], ["path", { "fill": "currentColor", "d": "M3.91 12.63a.75.75 0 0 1 1.06 0l1.2 1.2a.75.75 0 0 1-1.06 1.061l-1.2-1.2a.75.75 0 0 1 0-1.06Zm5.2 5.2a.75.75 0 0 1 1.06 0l1.2 1.2a.75.75 0 1 1-1.06 1.06l-1.2-1.2a.75.75 0 0 1 0-1.06Zm-.94-2a.75.75 0 0 1 0 1.06l-3.2 3.2a.75.75 0 0 1-1.06-1.06l3.2-3.2a.75.75 0 0 1 1.06 0Z", "key": "a4ff1b2ba86c8c76467a6a94606eb840dac69988" }], ["path", { "fill": "#fff", "d": "M13.97 10.03a.75.75 0 0 1 0 1.06l-1.9 1.9a.75.75 0 0 1-1.06-1.06l1.9-1.9a.75.75 0 0 1 1.06 0Z", "key": "a7aa21dc1fdb89efcbc61e56937688d1a2086b57" }]]);
const Target = createMeisterIcons("target", [["path", { "fill": "currentColor", "d": "M12.75 3a.75.75 0 0 0-1.5 0v1.286a7.752 7.752 0 0 0-6.964 6.964H3a.75.75 0 0 0 0 1.5h1.286a7.752 7.752 0 0 0 6.964 6.964V21a.75.75 0 0 0 1.5 0v-1.286a7.752 7.752 0 0 0 6.964-6.964H21a.75.75 0 0 0 0-1.5h-1.286a7.752 7.752 0 0 0-6.964-6.964V3Zm-1.5 2.795V7a.75.75 0 0 0 1.5 0V5.795a6.253 6.253 0 0 1 5.456 5.455H17a.75.75 0 0 0 0 1.5h1.206a6.253 6.253 0 0 1-5.456 5.456V17a.75.75 0 0 0-1.5 0v1.206a6.253 6.253 0 0 1-5.455-5.456H7a.75.75 0 0 0 0-1.5H5.795a6.253 6.253 0 0 1 5.455-5.455Z", "key": "4b6612b6b8438dee56ca10ed67aef0cb62e587f9" }]]);
const Tennis = createMeisterIcons("tennis", [["path", { "fill": "currentColor", "d": "M7.156 18.696A8.241 8.241 0 0 0 12 20.25a8.24 8.24 0 0 0 4.904-1.597C15.32 16.93 14.35 14.558 14.35 12c0-2.58.985-4.86 2.561-6.648A8.24 8.24 0 0 0 12 3.75c-1.761 0-3.4.566-4.744 1.533A9.724 9.724 0 0 1 9.85 11.9c0 2.653-1.041 4.988-2.694 6.796Zm-1.132-.986c1.442-1.564 2.326-3.557 2.326-5.81 0-2.204-.873-4.19-2.229-5.634a8.499 8.499 0 0 0-2.371 5.742 8.226 8.226 0 0 0 2.274 5.703ZM20.25 12a8.226 8.226 0 0 1-2.224 5.657C16.686 16.21 15.85 14.192 15.85 12c0-2.177.826-4.111 2.182-5.65A8.226 8.226 0 0 1 20.25 12Zm-18-.015C2.358 6.591 6.678 2.25 12 2.25A9.713 9.713 0 0 1 21.75 12 9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12v-.015Z", "key": "ef9952a826f355111e8b26e2a4e3d1c62eb9785f" }]]);
const TennisB = createMeisterIcons("tennis-b", [["path", { "fill": "currentColor", "d": "M21.05 12.05c0 2.5-1 4.7-2.6 6.4-.1.1-.2.2-.4.3-.1-.1-.2-.2-.4-.3-1.6-1.6-2.6-3.9-2.6-6.4 0-2.5 1-4.7 2.6-6.4.1-.1.2-.2.4-.3 1.8 1.6 3 4 3 6.7Z", "key": "bcb0ab54b5bbe0273d91ea19668b8e90dfb3e279" }], ["path", { "fill": "currentColor", "d": "m18.169 4.452.38.337A9.722 9.722 0 0 1 21.8 12.05c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.01.01a2.103 2.103 0 0 1-.593.439l-.483.242-.382-.383a1.258 1.258 0 0 0-.101-.094.568.568 0 0 0-.104-.065l-.11-.055-.085-.086c-1.741-1.74-2.82-4.232-2.82-6.93 0-2.71 1.087-5.09 2.804-6.914l.008-.008.01-.01c.115-.116.284-.284.593-.439l.454-.227Zm-.152 1.907C16.64 7.906 15.8 9.854 15.8 12.05c0 2.23.865 4.28 2.246 5.732 1.4-1.553 2.254-3.517 2.254-5.732a8.225 8.225 0 0 0-2.283-5.69Z", "key": "a5427a21c6e3be0dc6e3bee266a49e5ec8d5a3a1" }], ["path", { "fill": "currentColor", "d": "M7.181 5.307A9.724 9.724 0 0 1 9.8 11.95c0 2.57-.978 4.95-2.574 6.675 1.367.977 3.033 1.575 4.824 1.575s3.457-.598 4.824-1.575C15.278 16.901 14.3 14.52 14.3 11.95c0-2.57.978-4.95 2.574-6.675C15.507 4.297 13.841 3.7 12.05 3.7c-1.81 0-3.493.61-4.869 1.607Zm10.925.85c.234-.136.373-.275.472-.375l.57-.569-.604-.527C16.82 3.178 14.549 2.2 12.05 2.2c-2.5 0-4.771.978-6.494 2.486l-.64.56.636.565A8.222 8.222 0 0 1 8.3 11.95c0 2.262-.89 4.338-2.305 5.794a2.087 2.087 0 0 0-.473.374l-.57.569.604.527C7.28 20.722 9.551 21.7 12.05 21.7c2.5 0 4.771-.978 6.494-2.486l.84-.735-.999-.5a.562.562 0 0 1-.104-.065 1.239 1.239 0 0 1-.1-.094c-1.46-1.46-2.381-3.568-2.381-5.87 0-2.262.89-4.338 2.305-5.794Z", "key": "b0017ecd01f1584ebda41edcb0ecb45fe76631c3" }], ["path", { "fill": "currentColor", "d": "M9.05 12.05c0 2.5-1 4.7-2.6 6.4-.1.1-.2.2-.4.3-.1-.1-.2-.2-.4-.3-1.6-1.6-2.6-3.9-2.6-6.4 0-2.5 1-4.7 2.6-6.4l.4-.4c1.8 1.7 3 4.1 3 6.8Z", "key": "65e1d2fefc91034c7c21a82ccb11fc8897a1982d" }], ["path", { "fill": "currentColor", "d": "m6.035 4.204.53.5C8.498 6.53 9.8 9.122 9.8 12.05c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.01.01a2.103 2.103 0 0 1-.593.439l-.483.242-.382-.383a1.253 1.253 0 0 0-.101-.094.565.565 0 0 0-.104-.065l-.11-.055-.085-.086c-1.741-1.74-2.82-4.232-2.82-6.93 0-2.71 1.087-5.09 2.804-6.914l.008-.008.923-.924Zm.015 2.118C4.653 7.874 3.8 9.837 3.8 12.05c0 2.23.865 4.28 2.246 5.732 1.4-1.553 2.254-3.517 2.254-5.732 0-2.206-.875-4.204-2.25-5.728Z", "key": "e42f868a5242c21b21bf1d31ef8119a6437e8c37" }]]);
const TennisVarB = createMeisterIcons("tennis-var-b", [["path", { "fill": "currentColor", "d": "m18.169 4.452.38.337A9.722 9.722 0 0 1 21.8 12.05c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.01.01a2.103 2.103 0 0 1-.593.439l-.483.242-.382-.383a1.258 1.258 0 0 0-.101-.094.568.568 0 0 0-.104-.065l-.11-.055-.085-.086c-1.741-1.74-2.82-4.232-2.82-6.93 0-2.71 1.087-5.09 2.804-6.914l.008-.008.01-.01c.115-.116.284-.284.593-.439l.454-.227Zm-.152 1.907C16.64 7.906 15.8 9.854 15.8 12.05c0 2.23.865 4.28 2.246 5.732 1.4-1.553 2.254-3.517 2.254-5.732a8.225 8.225 0 0 0-2.283-5.69Z", "key": "6a1cf8d1ea365df1a03e22b3b0781ae166d56312" }], ["path", { "fill": "currentColor", "d": "M17.65 18.35c.1.1.2.2.4.3-1.6 1.4-3.7 2.3-6 2.3s-4.4-.9-6-2.3c.1-.1.2-.2.4-.3 1.6-1.6 2.6-3.9 2.6-6.4 0-2.7-1.2-5.1-3-6.7 1.6-1.4 3.7-2.3 6-2.3s4.4.9 6 2.3c-.1.1-.2.2-.4.3-1.6 1.6-2.6 3.9-2.6 6.4 0 2.5 1 4.8 2.6 6.4Z", "key": "8c4b39ad95ca8169200e627c2ae6c205451ffa77" }], ["path", { "fill": "currentColor", "d": "M7.181 5.307A9.724 9.724 0 0 1 9.8 11.95c0 2.57-.978 4.95-2.574 6.675 1.367.977 3.033 1.575 4.824 1.575s3.457-.598 4.824-1.575C15.278 16.901 14.3 14.52 14.3 11.95c0-2.57.978-4.95 2.574-6.675C15.507 4.297 13.841 3.7 12.05 3.7c-1.81 0-3.493.61-4.869 1.607Zm10.925.85c.234-.136.373-.275.472-.375l.57-.569-.604-.527C16.82 3.178 14.549 2.2 12.05 2.2c-2.5 0-4.771.978-6.494 2.486l-.64.56.636.565A8.222 8.222 0 0 1 8.3 11.95c0 2.262-.89 4.338-2.305 5.794a2.087 2.087 0 0 0-.473.374l-.57.569.604.527C7.28 20.722 9.551 21.7 12.05 21.7c2.5 0 4.771-.978 6.494-2.486l.84-.735-.999-.5a.562.562 0 0 1-.104-.065 1.239 1.239 0 0 1-.1-.094c-1.46-1.46-2.381-3.568-2.381-5.87 0-2.262.89-4.338 2.305-5.794Z", "key": "95681e75be62b7f309e1765f3a9841a53fb7b55f" }], ["path", { "fill": "currentColor", "d": "m6.035 4.204.53.5C8.498 6.53 9.8 9.122 9.8 12.05c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.01.01a2.103 2.103 0 0 1-.593.439l-.483.242-.382-.383a1.253 1.253 0 0 0-.101-.094.565.565 0 0 0-.104-.065l-.11-.055-.085-.086c-1.741-1.74-2.82-4.232-2.82-6.93 0-2.71 1.087-5.09 2.804-6.914l.008-.008.923-.924Zm.015 2.118C4.653 7.874 3.8 9.837 3.8 12.05c0 2.23.865 4.28 2.246 5.732 1.4-1.553 2.254-3.517 2.254-5.732 0-2.206-.875-4.204-2.25-5.728Z", "key": "1de758bc458ea9f84f881901a8d4530aab089b4b" }]]);
const Terminal = createMeisterIcons("terminal", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Zm5.22-.43a.75.75 0 0 1 1.06 0l2.1 2.1a1.716 1.716 0 0 1 0 2.46l-2.1 2.1a.75.75 0 0 1-1.06-1.06l2.1-2.1a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-2.1-2.1a.75.75 0 0 1 0-1.06ZM14 11.25a.75.75 0 0 0 0 1.5h3a.75.75 0 0 0 0-1.5h-3Z", "key": "a3a79ba1ae774219c6e67b45c6279fbd3a8e6378" }]]);
const TerminalB = createMeisterIcons("terminal-b", [["path", { "fill": "currentColor", "d": "M15 21H9c-3.3 0-6-2.7-6-6V9c0-3.3 2.7-6 6-6h6c3.3 0 6 2.7 6 6v6c0 3.3-2.7 6-6 6Z", "key": "dc820e371bc220a438a68fa9ad1fccc7d66c22d8" }], ["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25V9c0-2.886-2.364-5.25-5.25-5.25H9ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "4a34d49946eadcb59f995ab1f68d3337165bdbcf" }], ["path", { "fill": "#fff", "d": "M7.358 8.582a.75.75 0 0 1 1.06-.025l2.206 2.107.006.006a1.716 1.716 0 0 1 0 2.46l-2.1 2.1a.75.75 0 1 1-1.06-1.06l2.1-2.1a.24.24 0 0 0 .08-.17.237.237 0 0 0-.076-.165L7.382 9.642a.75.75 0 0 1-.024-1.06ZM13.25 12a.75.75 0 0 1 .75-.75h3a.75.75 0 0 1 0 1.5h-3a.75.75 0 0 1-.75-.75Z", "key": "f807b24349667d124678c7e2339b16d9b5024e07" }]]);
const Tetris1 = createMeisterIcons("tetris1", [["path", { "fill": "currentColor", "d": "M15.7 21.676H8.3v-7.4h7.4v7.4Zm-1.5-1.5v-4.4H9.8v4.4h4.4Z", "key": "41c6de149f4e9234ea4abac3c53aaf71b7d40417" }], ["path", { "fill": "currentColor", "d": "M15.7 15.7H8.3V8.3h7.4v7.4Zm-1.5-1.5V9.8H9.8v4.4h4.4Z", "key": "74c04b0dd98958c61d14c0394043b274fffe78ff" }], ["path", { "fill": "currentColor", "d": "M15.7 9.724H8.3v-7.4h7.4v7.4Zm-1.5-1.5v-4.4H9.8v4.4h4.4Z", "key": "11d343ffcfe9af222d38d5a9fa3a03d767e9bdae" }]]);
const Tetris1B = createMeisterIcons("tetris1-b", [["path", { "fill": "currentColor", "d": "M8.338 2.362h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "bbcd8ecf7a677c1916663dfc9534b484614829e4" }], ["path", { "fill": "currentColor", "d": "M14.95 9.05h-5.9v5.9h5.9v-5.9Z", "key": "53f5247f9f3892859541dc58a8d23e56f4bf88b3" }], ["path", { "fill": "currentColor", "d": "M8.3 8.3h7.4v7.4H8.3V8.3Zm1.5 1.5v4.4h4.4V9.8H9.8Z", "key": "90a7b1fd02a9ea3c79e19144e945e305f2593dbb" }], ["path", { "fill": "currentColor", "d": "M8.262 14.238h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "85b68a2b0724cdb079b90d66dc086e90100b6ad8" }]]);
const Tetris2 = createMeisterIcons("tetris2", [["path", { "fill": "currentColor", "d": "M2.362 15.662v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "05c34a884bfda4e8cae63591113fbea7ed93d5db" }], ["path", { "fill": "currentColor", "d": "M8.3 15.7V8.3h7.4v7.4H8.3Zm1.5-1.5h4.4V9.8H9.8v4.4Z", "key": "741b55e26613030886a583a0ad961d1b872c200e" }], ["path", { "fill": "currentColor", "d": "M14.238 15.738v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "0d8e127fc3f91cfe2d0fe614b201b9a79a92d4f8" }]]);
const Tetris2B = createMeisterIcons("tetris2-b", [["path", { "fill": "currentColor", "d": "M2.362 15.662v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "3783716b5a746156510fa37e7ceec39e9a9483f0" }], ["path", { "fill": "currentColor", "d": "M9.05 9.05v5.9h5.9v-5.9h-5.9Z", "key": "0301d3b26eb139bdfcba0dca4abf530076e13cef" }], ["path", { "fill": "currentColor", "d": "M8.3 15.7V8.3h7.4v7.4H8.3Zm1.5-1.5h4.4V9.8H9.8v4.4Z", "key": "fb5e3f0e82b941c4de3a6f60736330eb07e5fbc2" }], ["path", { "fill": "currentColor", "d": "M14.238 15.738v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "470acf42c5c623c3ad0644e477e388bad6cfa3c5" }]]);
const Tetris3 = createMeisterIcons("tetris3", [["path", { "fill": "currentColor", "d": "M5.35 11.25h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "d317795761039c7253d37be21b0a1b68de7286e2" }], ["path", { "fill": "currentColor", "d": "M5.35 5.35h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "6e8aa802a168dd4f5038188b62c54b62d068e92b" }], ["path", { "fill": "currentColor", "d": "M11.25 5.35h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "1f9ca3e6a954bae8b96ca4e81d6b2adb07909f2f" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "881564fc8ade8e7aa330d22330a9696d76fe3264" }]]);
const Tetris3B = createMeisterIcons("tetris3-b", [["path", { "fill": "currentColor", "d": "M5.35 11.25h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "47b21c40c842fb098feae1eb7e32421a0c05e89d" }], ["path", { "fill": "currentColor", "d": "M5.35 5.35h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "65815b169efbdb31f127aec4369435bcfd2f876b" }], ["path", { "fill": "currentColor", "d": "M11.25 5.35h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "0a6b46a8939c1b38f33a6b5eff8cc4035fac60d1" }], ["path", { "fill": "currentColor", "d": "M17.9 12H12v5.9h5.9V12Z", "key": "888bb3039905e8fa527ec82fbba0cc68a3748224" }], ["path", { "fill": "currentColor", "d": "M11.25 11.25h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "a0f207db1fd5bf69ead021136bea3bdec657283a" }]]);
const Tetris4 = createMeisterIcons("tetris4", [["path", { "fill": "currentColor", "d": "M5.35 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4Z", "key": "de326bcc63589b13e0696317a2c67e44dc61524e" }], ["path", { "fill": "currentColor", "d": "M5.35 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "da4ce20b69c02268c90c4554c777817631a8f643" }], ["path", { "fill": "currentColor", "d": "M11.25 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "29bb2e7f257e3ce2eeea4adc196761218f811be5" }], ["path", { "fill": "currentColor", "d": "M11.25 14.2h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "000e01e4e7e5e8a6e9d348ced0116fa8dccc16a9" }]]);
const Tetris4B = createMeisterIcons("tetris4-b", [["path", { "fill": "currentColor", "d": "M12 3.15H6.1v5.9H12v-5.9Z", "key": "a030643b47c1694c1129e0431d5b45b75fcecc6d" }], ["path", { "fill": "currentColor", "d": "M5.35 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4Z", "key": "8c2c257339a0f6ed2c0e8db19a29ea2b31d6478a" }], ["path", { "fill": "currentColor", "d": "M5.35 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "81d4a23017c0a0a37a5d4e84998c5f99659ac9f6" }], ["path", { "fill": "currentColor", "d": "M11.25 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "a240c1caf1b9813c054e3732448b13cc8395ff67" }], ["path", { "fill": "currentColor", "d": "M17.9 14.95H12v5.9h5.9v-5.9Z", "key": "461bf055a6ede74493485fe2abe9c15fb7a0e66a" }], ["path", { "fill": "currentColor", "d": "M11.25 14.2h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "ce843e97ec239dee29f4f3f8ab7d47cdc5d11133" }]]);
const Tetris5 = createMeisterIcons("tetris5", [["path", { "fill": "currentColor", "d": "M21.62 5.293v7.4h-7.4v-7.4h7.4Zm-1.5 1.5h-4.4v4.4h4.4v-4.4Z", "key": "e4d3838cadb2c296d762406043d91892f0b0c2ee" }], ["path", { "fill": "currentColor", "d": "M15.681 5.331v7.4h-7.4v-7.4h7.4Zm-1.5 1.5h-4.4v4.4h4.4v-4.4Z", "key": "c96ea3caf9980a26202a29f7d5071b6820b7cd66" }], ["path", { "fill": "currentColor", "d": "M15.72 11.27v7.4h-7.4v-7.4h7.4Zm-1.5 1.5h-4.4v4.4h4.4v-4.4Z", "key": "499f50d20a058caefae5868574ebdfbc42354ccd" }], ["path", { "fill": "currentColor", "d": "M9.781 11.307v7.4h-7.4v-7.4h7.4Zm-1.5 1.5h-4.4v4.4h4.4v-4.4Z", "key": "058e5cd185160e995d99b52092122086928a5bd2" }]]);
const Tetris5B = createMeisterIcons("tetris5-b", [["path", { "fill": "currentColor", "d": "M3.093 11.98v5.9h5.9v-5.9h-5.9Z", "key": "f6afa51bd99ec2f9fbdd2eff96a6c8a5de5cb589" }], ["path", { "fill": "currentColor", "d": "M2.343 18.63v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "71bfdde536fe03e3229b4c4d8e87edb2c4118489" }], ["path", { "fill": "currentColor", "d": "M8.28 18.669v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "14f2dd844351f4e5bc84a6dd5fc019098027c7bd" }], ["path", { "fill": "currentColor", "d": "M8.32 12.73v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "47cc2774df1471c4601e84e66f587634dd6d3699" }], ["path", { "fill": "currentColor", "d": "M15.007 6.119v5.9h5.9v-5.9h-5.9Z", "key": "0a2de9ccae2697bbcff4491dae71f925d396ce45" }], ["path", { "fill": "currentColor", "d": "M14.257 12.769v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "caa7b0b56d806de55f70242fe3ac1d1c5b79d740" }]]);
const Tetris6 = createMeisterIcons("tetris6", [["path", { "fill": "currentColor", "d": "M5.35 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4Z", "key": "f3525c5bd39aaeeafcd5a0a9629b5174b74e12a8" }], ["path", { "fill": "currentColor", "d": "M5.35 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "90b8877bb6016f1266c66fbd84ac3b9d3916c19e" }], ["path", { "fill": "currentColor", "d": "M11.25 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "e0b1623b90d3ff5ac7ba34613478a2e4f28bb774" }], ["path", { "fill": "currentColor", "d": "M5.35 14.2h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "3df1e47bbf634f146bf139e50f149f638b2219f5" }]]);
const Tetris6B = createMeisterIcons("tetris6-b", [["path", { "fill": "currentColor", "d": "M12 3.15H6.1v5.9H12v-5.9Z", "key": "2c9812f3f7a44e713feaf44a5c0c7b59017c187c" }], ["path", { "fill": "currentColor", "d": "M5.35 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4Z", "key": "874f587871b9fa9d8a3c90b76904e57c70e62154" }], ["path", { "fill": "currentColor", "d": "M5.35 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "4f977a99e2612a2692998d86e6ac6e42f8e05ea1" }], ["path", { "fill": "currentColor", "d": "M11.25 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "45565ccb385dfdb3da7eb6eb7e06bdbb3587d4ad" }], ["path", { "fill": "currentColor", "d": "M12 14.95H6.1v5.9H12v-5.9Z", "key": "3343c6f01e442a7475d4035dbab14882e5837f54" }], ["path", { "fill": "currentColor", "d": "M5.35 14.2h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "4f73e35bc2bd58044ef14d7a59c17589b633e597" }]]);
const Tetris7 = createMeisterIcons("tetris7", [["path", { "fill": "currentColor", "d": "M5.35 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4Z", "key": "460333e6212ada3baf6585d6d45ebf51973a2bfc" }], ["path", { "fill": "currentColor", "d": "M5.35 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "f37dd858d0fb928776d877e392ff4823af4b678e" }], ["path", { "fill": "currentColor", "d": "M11.25 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4Zm-7.4 10.3h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "f8b2eaee03a9f7b434c648b753bd1b073c619cdd" }]]);
const Tetris7B = createMeisterIcons("tetris7-b", [["path", { "fill": "currentColor", "d": "M5.35 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4Z", "key": "75a5a9d8ac2424133b756921052e297a3adf70dd" }], ["path", { "fill": "currentColor", "d": "M5.35 8.3h7.4v7.4h-7.4V8.3Zm1.5 1.5v4.4h4.4V9.8h-4.4Z", "key": "c0f1024e4eeb8d0318678fe5f437f53c08262374" }], ["path", { "fill": "currentColor", "d": "M17.9 3.15H12v5.9h5.9v-5.9Z", "key": "8dbec9b0ad7c64a0552092eb4c3ab12fe60e80d9" }], ["path", { "fill": "currentColor", "d": "M11.25 2.4h7.4v7.4h-7.4V2.4Zm1.5 1.5v4.4h4.4V3.9h-4.4ZM12 14.95H6.1v5.9H12v-5.9Z", "key": "017357b1334d696be0d3199a382fee5480fc8696" }], ["path", { "fill": "currentColor", "d": "M5.35 14.2h7.4v7.4h-7.4v-7.4Zm1.5 1.5v4.4h4.4v-4.4h-4.4Z", "key": "784baa812fda3ab97f11b7214fa02455a23875a4" }]]);
const Tetris8 = createMeisterIcons("tetris8", [["path", { "fill": "currentColor", "d": "M2.362 18.612v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "f65ab351ba6c5057ad3371d49cb545080dfa1aa2" }], ["path", { "fill": "currentColor", "d": "M8.3 18.65v-7.4h7.4v7.4H8.3Zm1.5-1.5h4.4v-4.4H9.8v4.4Z", "key": "b2eff849a1cceb71709ea66b7baef3e14d51696e" }], ["path", { "fill": "currentColor", "d": "M8.338 12.712v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "ea071fa437d7d08933999a357c3a068026cab1e9" }], ["path", { "fill": "currentColor", "d": "M14.238 18.688v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "7c3c25a508816b36f81fd88ca1b15e67d713b153" }]]);
const Tetris8B = createMeisterIcons("tetris8-b", [["path", { "fill": "currentColor", "d": "M3.112 11.962v5.9h5.9v-5.9h-5.9Z", "key": "0dc2833465154ec742add274c5fe3abbed0f196b" }], ["path", { "fill": "currentColor", "d": "M2.362 18.612v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "2363aff382eb280d7e9807afaf5e05d6cc36e905" }], ["path", { "fill": "currentColor", "d": "M8.3 18.65v-7.4h7.4v7.4H8.3Zm1.5-1.5h4.4v-4.4H9.8v4.4Z", "key": "83ef3c8473f735f87ee377699a746b9f9a37183c" }], ["path", { "fill": "currentColor", "d": "M8.338 12.712v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "bff64973cc3ac27bafa44a42b16aae638bf9bf42" }], ["path", { "fill": "currentColor", "d": "M14.988 12.038v5.9h5.9v-5.9h-5.9Z", "key": "214737a7e790a71549c628521e5646b1982d6fd1" }], ["path", { "fill": "currentColor", "d": "M14.238 18.688v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "d077a35cd7c921577ed8ea1045d9b07db022ee8b" }]]);
const Tetris9 = createMeisterIcons("tetris9", [["path", { "fill": "currentColor", "d": "M2.362 18.63v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "5ab16e5a70b84fce7b11b5e2f8ce8a00df6e95f6" }], ["path", { "fill": "currentColor", "d": "M8.3 18.669v-7.4h7.4v7.4H8.3Zm1.5-1.5h4.4v-4.4H9.8v4.4Z", "key": "956bfc087f461e59287112ed88d930f9b63f56bb" }], ["path", { "fill": "currentColor", "d": "M2.4 12.693v-7.4h7.4v7.4H2.4Zm1.5-1.5h4.4v-4.4H3.9v4.4Zm10.338 7.514v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "9d56803a39cba7755d781957412f2d9fce2c06eb" }]]);
const Tetris9B = createMeisterIcons("tetris9-b", [["path", { "fill": "currentColor", "d": "M2.362 18.63v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "d3ed6abf7250bb4104edc16a02a07d48ea90faea" }], ["path", { "fill": "currentColor", "d": "M8.3 18.669v-7.4h7.4v7.4H8.3Zm1.5-1.5h4.4v-4.4H9.8v4.4Z", "key": "cfa0bc90edc2d319737f46ce3ca778fec3ed1e53" }], ["path", { "fill": "currentColor", "d": "M3.15 6.043v5.9h5.9v-5.9h-5.9Z", "key": "76f3438c9af75fb3b53ee2d348245a5e5d2f98a8" }], ["path", { "fill": "currentColor", "d": "M2.4 12.693v-7.4h7.4v7.4H2.4Zm1.5-1.5h4.4v-4.4H3.9v4.4Zm11.088.864v5.9h5.9v-5.9h-5.9Z", "key": "589f956210d03484bc4b1c895e2c72e50907dafa" }], ["path", { "fill": "currentColor", "d": "M14.238 18.707v-7.4h7.4v7.4h-7.4Zm1.5-1.5h4.4v-4.4h-4.4v4.4Z", "key": "34c8275b7ac57839fa7183c57fd436cbe065d510" }]]);
const Tie = createMeisterIcons("tie", [["path", { "fill": "currentColor", "d": "M11.55 3.95A1.47 1.47 0 0 0 10.1 5.4c0 .786.664 1.45 1.45 1.45h1c.764 0 1.45-.742 1.45-1.45a1.47 1.47 0 0 0-1.45-1.45h-1ZM8.6 5.4a2.97 2.97 0 0 1 2.95-2.95h1A2.97 2.97 0 0 1 15.5 5.4c0 1.492-1.314 2.95-2.95 2.95h-1A2.97 2.97 0 0 1 8.6 5.4Z", "key": "6a7e1c2fd589709e8eb23191f9ca392a721bef5d" }], ["path", { "fill": "currentColor", "d": "M9.471 6.75h4.958L15.6 18.463v.037c0 .526-.14 1.119-.717 1.513l-1.902 1.401-.015.01c-.58.387-1.378.333-1.951.047l-.058-.029-1.94-1.43C8.42 19.603 8.3 18.89 8.3 18.5v-.037L9.471 6.75Zm1.358 1.5L9.8 18.53a.627.627 0 0 0 .037.188.2.2 0 0 0 .031.06l.012.008 1.852 1.364c.08.033.171.05.255.05.085 0 .13-.017.143-.023l1.888-1.391.015-.01a.127.127 0 0 0 .027-.022.07.07 0 0 0 .01-.018.59.59 0 0 0 .029-.202L13.07 8.25h-2.24Z", "key": "c62bd8a80fcfe813080858435f43e07a41f7ff19" }]]);
const TieAlt = createMeisterIcons("tie-alt", [["path", { "fill": "currentColor", "d": "M11.55 3.95A1.47 1.47 0 0 0 10.1 5.4c0 .786.664 1.45 1.45 1.45h1c.764 0 1.45-.742 1.45-1.45a1.47 1.47 0 0 0-1.45-1.45h-1ZM8.6 5.4a2.97 2.97 0 0 1 2.95-2.95h1A2.97 2.97 0 0 1 15.5 5.4c0 1.492-1.314 2.95-2.95 2.95h-1A2.97 2.97 0 0 1 8.6 5.4Z", "key": "ff53bbc640c9bd8a0aace70d376de255a51c4388" }], ["path", { "fill": "currentColor", "d": "M9.471 6.75h4.958L15.6 18.463v.037c0 .526-.14 1.119-.717 1.513l-1.902 1.401-.015.01c-.58.387-1.378.333-1.951.047l-.058-.029-1.94-1.43C8.42 19.603 8.3 18.89 8.3 18.5v-.037L9.471 6.75Zm1.358 1.5L9.8 18.53a.627.627 0 0 0 .037.188.2.2 0 0 0 .031.06l.012.008 1.852 1.364c.08.033.171.05.255.05.085 0 .13-.017.143-.023l1.888-1.391.015-.01a.127.127 0 0 0 .027-.022.07.07 0 0 0 .01-.018.59.59 0 0 0 .029-.202L13.07 8.25h-2.24Z", "key": "451fdce400d47146e05f3d452cd4922b4060f363" }], ["path", { "fill": "currentColor", "d": "M8.9 13.4a.75.75 0 0 1 .75-.75h2.1a.75.75 0 0 1 0 1.5h-2.1a.75.75 0 0 1-.75-.75Z", "key": "f6bef029e2608b6cb78f816533b0c6922785733f" }]]);
const TieB = createMeisterIcons("tie-b", [["path", { "fill": "currentColor", "d": "M11.55 3.95A1.47 1.47 0 0 0 10.1 5.4c0 .786.664 1.45 1.45 1.45h1c.764 0 1.45-.742 1.45-1.45a1.47 1.47 0 0 0-1.45-1.45h-1ZM8.6 5.4a2.97 2.97 0 0 1 2.95-2.95h1A2.97 2.97 0 0 1 15.5 5.4c0 1.492-1.314 2.95-2.95 2.95h-1A2.97 2.97 0 0 1 8.6 5.4Z", "key": "1de32f8ea69e2c3cc5578093e04a11588b6b5489" }], ["path", { "fill": "currentColor", "d": "m12.55 20.8 1.9-1.4c.3-.2.4-.5.4-.9l-1.1-11h-3.6l-1.1 11c0 .3.1.7.4.9l1.9 1.4c.4.2.9.2 1.2 0Z", "key": "757671c04352bc8b5adc1cdf70566f94e73d570c" }], ["path", { "fill": "currentColor", "d": "M9.471 6.75h4.958L15.6 18.463v.037c0 .526-.14 1.119-.717 1.513l-1.902 1.401-.015.01c-.58.387-1.378.333-1.951.047l-.058-.029-1.94-1.43C8.42 19.603 8.3 18.89 8.3 18.5v-.037L9.471 6.75Zm1.358 1.5L9.8 18.53a.627.627 0 0 0 .037.188.2.2 0 0 0 .031.06l.012.008 1.852 1.364c.08.033.171.05.255.05.085 0 .13-.017.143-.023l1.888-1.391.015-.01a.121.121 0 0 0 .026-.022.065.065 0 0 0 .01-.018.588.588 0 0 0 .03-.202L13.07 8.25h-2.24Z", "key": "aa39815f01707d5bf62ea1e282f4eab11bfc6215" }]]);
const TiePattern = createMeisterIcons("tie-pattern", [["path", { "fill": "currentColor", "d": "M11.55 3.95A1.47 1.47 0 0 0 10.1 5.4c0 .786.664 1.45 1.45 1.45h1c.764 0 1.45-.742 1.45-1.45a1.47 1.47 0 0 0-1.45-1.45h-1ZM8.6 5.4a2.97 2.97 0 0 1 2.95-2.95h1A2.97 2.97 0 0 1 15.5 5.4c0 1.492-1.314 2.95-2.95 2.95h-1A2.97 2.97 0 0 1 8.6 5.4Z", "key": "e78ce67e5ac915b1c119e9a85ca884f005c3b97b" }], ["path", { "fill": "currentColor", "d": "M9.471 6.75h4.958L15.6 18.463v.037c0 .526-.14 1.119-.717 1.513l-1.902 1.401-.015.01c-.58.387-1.378.333-1.951.047l-.058-.029-1.94-1.43C8.42 19.603 8.3 18.89 8.3 18.5v-.037L9.471 6.75Zm1.358 1.5L9.8 18.53a.627.627 0 0 0 .037.188.2.2 0 0 0 .031.06l.012.008 1.852 1.364c.08.033.171.05.255.05.085 0 .13-.017.143-.023l1.888-1.391.015-.01a.121.121 0 0 0 .026-.022.065.065 0 0 0 .01-.018.588.588 0 0 0 .03-.202L13.07 8.25h-2.24Z", "key": "e761520894af8a0b3fab5fb33071b340b0dd3fb3" }], ["path", { "fill": "currentColor", "d": "m14.25 11.8-4.6 1-.2 2.4 5-1.1-.2-2.3Z", "key": "18af850214c937d16c7d8eb5a5cd20b62e73d99a" }]]);
const TiePatternB = createMeisterIcons("tie-pattern-b", [["path", { "fill": "currentColor", "d": "M11.55 3.95A1.47 1.47 0 0 0 10.1 5.4c0 .786.664 1.45 1.45 1.45h1c.764 0 1.45-.742 1.45-1.45a1.47 1.47 0 0 0-1.45-1.45h-1ZM8.6 5.4a2.97 2.97 0 0 1 2.95-2.95h1A2.97 2.97 0 0 1 15.5 5.4c0 1.492-1.314 2.95-2.95 2.95h-1A2.97 2.97 0 0 1 8.6 5.4Z", "key": "65523b1faeb51554658324e447030958a4e0e1bd" }], ["path", { "fill": "currentColor", "d": "m12.55 20.8 1.9-1.4c.3-.2.4-.5.4-.9l-1.1-11h-3.6l-1.1 11c0 .3.1.7.4.9l1.9 1.4c.4.2.9.2 1.2 0Z", "key": "d8e6473ebbc5933b54a01e47c61eb25143eb9b79" }], ["path", { "fill": "currentColor", "d": "M9.471 6.75h4.958L15.6 18.463v.037c0 .526-.14 1.119-.717 1.513l-1.902 1.401-.015.01c-.58.387-1.378.333-1.951.047l-.058-.029-1.94-1.43C8.42 19.603 8.3 18.89 8.3 18.5v-.037L9.471 6.75Zm1.358 1.5L9.8 18.53a.627.627 0 0 0 .037.188.2.2 0 0 0 .031.06l.012.008 1.852 1.364c.08.033.171.05.255.05.085 0 .13-.017.143-.023l1.888-1.391.015-.01a.121.121 0 0 0 .026-.022.065.065 0 0 0 .01-.018.588.588 0 0 0 .03-.202L13.07 8.25h-2.24Z", "key": "7aa7ccdef9a6958b7b6243ad0e45f900d392477f" }], ["path", { "fill": "#fff", "d": "m14.25 11.8-4.6 1-.2 2.4 5-1.1-.2-2.3Z", "key": "66b976e953384dd61623e40ff8f8acd772e6d7bf" }]]);
const Tree = createMeisterIcons("tree", [["path", { "fill": "currentColor", "d": "M6.75 9a5.25 5.25 0 1 1 6 5.197v-.972l2.636-1.582a.75.75 0 0 0-.772-1.286l-1.864 1.119V9a.75.75 0 0 0-1.5 0v1.19l-.72-.72a.75.75 0 1 0-1.06 1.06l1.78 1.78v1.887A5.251 5.251 0 0 1 6.75 9Zm4.5 6.709a6.751 6.751 0 1 1 1.5 0V21a.75.75 0 0 1-1.5 0v-5.291Z", "key": "a312ff92c56b21024bf97f3a0308114eebd39431" }]]);
const Triangle = createMeisterIcons("triangle", [["path", { "fill": "currentColor", "d": "m13.46 4.966 7.092 12.287c.674 1.18-.153 2.622-1.452 2.622H4.9c-.687 0-1.21-.436-1.472-.918-.259-.479-.338-1.148.033-1.725l7.08-12.266c.313-.6.935-.841 1.46-.841.523 0 1.146.24 1.458.841Zm-1.589.694Zm0 0-.01.02-7.123 12.34-.014.021c-.011.018-.039.087.023.202.064.118.14.132.153.132h14.2c.102 0 .274-.158.15-.377L12.14 5.68l-.01-.02a.071.071 0 0 0-.017-.012.248.248 0 0 0-.113-.024c-.05 0-.09.012-.112.024a.076.076 0 0 0-.017.011Z", "key": "68220b389704d6e71b9ef2c41c82ac6bdd770929" }]]);
const TriangleAlt = createMeisterIcons("triangle-alt", [["path", { "fill": "currentColor", "d": "m13.232 4.692 7.572 13.253c.3.433.308.959.07 1.377a1.37 1.37 0 0 1-1.202.678h-15.4c-.528 0-.925-.325-1.126-.678a1.386 1.386 0 0 1-.045-1.307l.011-.023 7.803-13.304c.485-.919 1.834-.917 2.317.004Zm-1.162.991L4.554 18.5h14.84L12.07 5.683Z", "key": "af03a9c9b4759bea78af5532ab6c8332c60ca848" }], ["path", { "fill": "currentColor", "d": "m11.972 15.241 7.835 4.364a.75.75 0 1 0 .73-1.31l-7.915-4.408-.014-.008a1.386 1.386 0 0 0-1.271 0l-.015.008-7.915 4.408a.75.75 0 0 0 .73 1.31l7.835-4.364Z", "key": "c0f2d6ad4ff4bea9d58c7e73be60496ee8776740" }], ["path", { "fill": "currentColor", "d": "M12.072 4a.75.75 0 0 1 .75.75v9.6a.75.75 0 0 1-1.5 0v-9.6a.75.75 0 0 1 .75-.75Z", "key": "c9e822fbddb4b9870a82ed806fe0370cdaa466a7" }]]);
const TriangleB = createMeisterIcons("triangle-b", [["path", { "fill": "currentColor", "d": "m11.2 5.325-7.1 12.3c-.4.6.1 1.5.8 1.5h14.2c.7 0 1.2-.8.8-1.5l-7.1-12.3c-.3-.6-1.3-.6-1.6 0Z", "key": "5cd3befaf7f412cfa4723c064d4bac6c759bf5d2" }], ["path", { "fill": "currentColor", "d": "m13.46 4.966 7.092 12.287c.674 1.18-.153 2.622-1.452 2.622H4.9c-.687 0-1.21-.436-1.472-.918-.259-.479-.338-1.148.033-1.725l7.08-12.266c.313-.6.935-.841 1.46-.841.523 0 1.146.24 1.458.841Zm-1.589.694Zm0 0-.01.02-7.123 12.34-.014.021c-.011.018-.039.087.023.202.064.118.14.132.153.132h14.2c.102 0 .274-.158.15-.377L12.14 5.68l-.01-.02a.071.071 0 0 0-.017-.012.248.248 0 0 0-.113-.024c-.05 0-.09.012-.112.024a.076.076 0 0 0-.017.011Z", "key": "53aa2d445dadf86171ac1f31b98bc50a26de3b4f" }]]);
const TriangleReverse = createMeisterIcons("triangle-reverse", [["path", { "fill": "currentColor", "d": "M10.54 19.034 3.45 6.747c-.675-1.18.152-2.622 1.45-2.622h14.2c.688 0 1.212.436 1.473.918.259.479.338 1.148-.033 1.725l-7.08 12.266c-.313.6-.935.841-1.46.841-.523 0-1.146-.24-1.458-.841Zm1.589-.694Zm0 0 .01-.02 7.123-12.34.014-.021c.012-.018.039-.087-.023-.202-.064-.118-.14-.132-.153-.132H4.9c-.102 0-.274.158-.15.377l7.11 12.318.01.02a.073.073 0 0 0 .017.01.247.247 0 0 0 .113.025c.05 0 .09-.012.112-.024a.078.078 0 0 0 .017-.011Z", "key": "78e74ec93832c8525573eefdc412df730fd0824e" }]]);
const TriangleReverseB = createMeisterIcons("triangle-reverse-b", [["path", { "fill": "currentColor", "d": "m12.8 18.675 7.1-12.3c.4-.6-.1-1.5-.8-1.5H4.9c-.7 0-1.2.8-.8 1.5l7.1 12.3c.3.6 1.3.6 1.6 0Z", "key": "4520fc8ecd33ac484f4c7c2b93956e96b81f02ad" }], ["path", { "fill": "currentColor", "d": "M10.54 19.034 3.45 6.747c-.675-1.18.152-2.622 1.45-2.622h14.2c.688 0 1.212.436 1.473.918.259.479.338 1.148-.033 1.725l-7.08 12.266c-.313.6-.935.841-1.46.841-.523 0-1.146-.24-1.458-.841Zm1.589-.694Zm0 0 .01-.02 7.123-12.34.014-.021c.012-.018.039-.087-.023-.202-.064-.118-.14-.132-.153-.132H4.9c-.102 0-.274.158-.15.377l7.11 12.318.01.02a.073.073 0 0 0 .017.01.247.247 0 0 0 .113.025c.05 0 .09-.012.112-.024a.078.078 0 0 0 .017-.011Z", "key": "e2d33dc0a11a34cda2fffccfb53d212e41c8f49c" }]]);
const Tv = createMeisterIcons("tv", [["path", { "fill": "currentColor", "d": "M9.73 2.97a.75.75 0 0 0-1.06 1.06l1.72 1.72H7a4.762 4.762 0 0 0-4.75 4.75v6c0 2.602 2.024 4.75 4.75 4.75h10a4.762 4.762 0 0 0 4.75-4.75v-6A4.762 4.762 0 0 0 17 5.75h-3.69l1.72-1.72a.75.75 0 0 0-1.06-1.06l-2.12 2.12-2.12-2.12ZM3.75 10.5A3.262 3.262 0 0 1 7 7.25h10a3.262 3.262 0 0 1 3.25 3.25v6A3.262 3.262 0 0 1 17 19.75H7c-1.874 0-3.25-1.452-3.25-3.25v-6Z", "key": "5cb0ccb92d0838bac618f0368b007b9af06afc67" }]]);
const TvAlt = createMeisterIcons("tv-alt", [["path", { "fill": "currentColor", "d": "M8.67 2.97a.75.75 0 0 1 1.06 0l2.12 2.12 2.12-2.12a.75.75 0 0 1 1.06 1.06l-1.72 1.72H17a4.762 4.762 0 0 1 4.75 4.75v6A4.762 4.762 0 0 1 17 21.25H7c-2.726 0-4.75-2.148-4.75-4.75v-6A4.762 4.762 0 0 1 7 5.75h3.39L8.67 4.03a.75.75 0 0 1 0-1.06ZM7 7.25a3.262 3.262 0 0 0-3.25 3.25v6c0 1.798 1.376 3.25 3.25 3.25h7.75V7.25H7Zm9.25 0v12.5H17a3.262 3.262 0 0 0 3.25-3.25v-6A3.262 3.262 0 0 0 17 7.25h-.75Z", "key": "7db960663bb5cbaa1e6a6006e63424d7054bb2eb" }]]);
const TvAltB = createMeisterIcons("tv-alt-b", [["path", { "fill": "currentColor", "d": "M15.5 6.5v14H7c-2.2 0-4-1.8-4-4v-6c0-2.2 1.8-4 4-4h8.5Z", "key": "3cc016741a2b46570f94c8002f2b3547e867cdfe" }], ["path", { "fill": "currentColor", "d": "M7 7.25a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 19.75h7.75V7.25H7ZM2.25 10.5A4.762 4.762 0 0 1 7 5.75h9.25v15.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Z", "key": "f8ce37bb6ef53bc5ff17aad9dcf492d33ce917af" }], ["path", { "fill": "currentColor", "d": "M14.75 5.75H17c2.602 0 4.75 2.024 4.75 4.75v6A4.762 4.762 0 0 1 17 21.25h-2.25V5.75Zm1.5 1.5v12.5H17a3.262 3.262 0 0 0 3.25-3.25v-6c0-1.874-1.452-3.25-3.25-3.25h-.75ZM8.67 2.97a.75.75 0 0 1 1.06 0l2.12 2.12 2.12-2.12a.75.75 0 0 1 1.06 1.06l-2.4 2.4a.991.991 0 0 1-.43.247 1.28 1.28 0 0 1-.7 0 .991.991 0 0 1-.43-.247l-2.4-2.4a.75.75 0 0 1 0-1.06Z", "key": "ace4a31c27bd34039d5c6c3d94b9ee2ffc0504cc" }]]);
const TvAltVarB = createMeisterIcons("tv-alt-var-b", [["path", { "fill": "currentColor", "d": "M7 7.25a3.262 3.262 0 0 0-3.25 3.25v6A3.262 3.262 0 0 0 7 19.75h7.75V7.25H7ZM2.25 10.5A4.762 4.762 0 0 1 7 5.75h9.25v15.5H7a4.762 4.762 0 0 1-4.75-4.75v-6Z", "key": "4859ef970a859f7bfb90b6e9277072a5804141fd" }], ["path", { "fill": "currentColor", "d": "M21 10.5v6c0 2.2-1.8 4-4 4h-1.5v-14H17c2.2 0 4 1.7 4 4Z", "key": "b4fa571357c8507a3129d4188e170dc03ac3de29" }], ["path", { "fill": "currentColor", "d": "M14.75 5.75H17c2.602 0 4.75 2.024 4.75 4.75v6A4.762 4.762 0 0 1 17 21.25h-2.25V5.75Zm1.5 1.5v12.5H17a3.262 3.262 0 0 0 3.25-3.25v-6c0-1.874-1.452-3.25-3.25-3.25h-.75ZM8.67 2.97a.75.75 0 0 1 1.06 0l2.12 2.12 2.12-2.12a.75.75 0 0 1 1.06 1.06l-2.4 2.4a.991.991 0 0 1-.43.247 1.28 1.28 0 0 1-.7 0 .991.991 0 0 1-.43-.247l-2.4-2.4a.75.75 0 0 1 0-1.06Z", "key": "d0f715fabf18c6002c5fe1147b18e51a9bc4e01d" }]]);
const TvB = createMeisterIcons("tv-b", [["path", { "fill": "currentColor", "d": "M3.05 16.55v-6c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v6c0 2.2-1.8 4-4 4h-10c-2.3 0-4-1.8-4-4Z", "key": "ef4919be518bf3344e2da47932df181a5850619e" }], ["path", { "fill": "currentColor", "d": "M7.05 7.3a3.262 3.262 0 0 0-3.25 3.25v6c0 1.798 1.377 3.25 3.25 3.25h10a3.262 3.262 0 0 0 3.25-3.25v-6a3.262 3.262 0 0 0-3.25-3.25h-10ZM2.3 10.55A4.762 4.762 0 0 1 7.05 5.8h10a4.762 4.762 0 0 1 4.75 4.75v6a4.762 4.762 0 0 1-4.75 4.75h-10c-2.726 0-4.75-2.148-4.75-4.75v-6Z", "key": "b875074d51f7a1f0471936d3f326601ac4d32fc9" }], ["path", { "fill": "currentColor", "d": "M8.72 3.02a.75.75 0 0 1 1.06 0l2.12 2.12 2.12-2.12a.75.75 0 1 1 1.06 1.06l-2.4 2.4a.99.99 0 0 1-.43.247 1.282 1.282 0 0 1-.7 0 .99.99 0 0 1-.43-.247l-2.4-2.4a.75.75 0 0 1 0-1.06Z", "key": "c2854e2966e3729e218516a9b8a3acbd2057593f" }]]);
const TypeDotdot = createMeisterIcons("type-dotdot", [["path", { "fill": "currentColor", "d": "M13.265 4.62a.75.75 0 0 1 .366.995l-6.2 13.4a.75.75 0 1 1-1.362-.63l6.2-13.4a.75.75 0 0 1 .996-.366ZM11.05 19.3c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.1.2-.4.3-.7.3Zm3 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Zm3 0c-.3 0-.5-.1-.7-.3-.2-.2-.3-.4-.3-.7 0-.3.1-.5.3-.7.4-.4 1-.4 1.4 0 .2.2.3.4.3.7 0 .3-.1.5-.3.7-.2.2-.4.3-.7.3Z", "key": "e2dd04b0d59e71cd869340650f4fc19c7a76f929" }]]);
const Underline = createMeisterIcons("underline", [["path", { "fill": "currentColor", "d": "M5.882 4.022a.75.75 0 0 1 .546.91c-.076.3-.078.517-.078.918v4.2a5.524 5.524 0 0 0 5.55 5.55c3.194 0 5.65-2.472 5.65-5.55v-4.1c0-.4-.002-.617-.078-.918a.75.75 0 0 1 1.456-.364c.122.49.122.869.122 1.26v4.122c0 3.922-3.143 7.05-7.15 7.05a7.024 7.024 0 0 1-7.05-7.05V5.828c0-.391 0-.77.122-1.26a.75.75 0 0 1 .91-.546ZM4.95 19.15a.75.75 0 0 1 .75-.75h12.6a.75.75 0 0 1 0 1.5H5.7a.75.75 0 0 1-.75-.75Z", "key": "1643a85d5d2f84ac4a39180ec86afb8e4a09fbdf" }]]);
const Underpants = createMeisterIcons("underpants", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v6c0 .098.002.195.006.292A5.231 5.231 0 0 1 9.65 18.5a5.36 5.36 0 0 1-.24 1.594c.48.102.978.156 1.49.156H13a7.18 7.18 0 0 0 1.49-.155 5.363 5.363 0 0 1-.24-1.595 5.231 5.231 0 0 1 5.994-5.195A7.72 7.72 0 0 0 20.25 13V7A3.262 3.262 0 0 0 17 3.75H7Zm13.025 11.04a3.731 3.731 0 0 0-4.275 3.71c0 .409.062.785.168 1.133a7.31 7.31 0 0 0 4.107-4.844Zm-12.04 4.836a7.22 7.22 0 0 1-4.02-4.849A3.731 3.731 0 0 1 8.15 18.5c0 .406-.061.78-.166 1.126ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v6c0 4.814-3.936 8.75-8.75 8.75h-2.1c-4.826 0-8.65-3.948-8.65-8.75V7Z", "key": "34f50ba05d74103d04a213e641af6c02f5c6afa2" }]]);
const UnderpantsB = createMeisterIcons("underpants-b", [["path", { "fill": "currentColor", "d": "M7.05 4.8A3.262 3.262 0 0 0 3.8 8.05v4.293a5.231 5.231 0 0 1 5.9 5.207c0 .584-.092 1.122-.246 1.613.463.098.95.137 1.496.137h2.1a7.18 7.18 0 0 0 1.496-.137 5.358 5.358 0 0 1-.246-1.613 5.231 5.231 0 0 1 5.25-5.25h.064c.197 0 .434 0 .684.022.002-.085.002-.176.002-.272v-4c0-1.873-1.452-3.25-3.25-3.25h-10ZM2.3 8.05A4.762 4.762 0 0 1 7.05 3.3h10c2.602 0 4.75 2.024 4.75 4.75v4.031c0 .381 0 .86-.123 1.351l-.226.907-.837-.418c-.21-.105-.515-.121-1.064-.121a3.731 3.731 0 0 0-3.75 3.75c0 .67.167 1.256.42 1.765l.373.745-.78.292c-.91.341-1.805.448-2.763.448h-2.1c-.958 0-1.854-.107-2.763-.448l-.78-.292.372-.745c.254-.509.42-1.094.42-1.765a3.731 3.731 0 0 0-3.75-3.75c-.408 0-.839.083-1.217.178l-.932.233V8.05Z", "key": "9bc5582fd5da18fe2cf513a50ab90a12a5785016" }], ["path", { "fill": "currentColor", "d": "M9.05 17.55c0 .8-.2 1.5-.5 2.1-2.9-1-5-3.4-5.5-6.4.4-.2.9-.2 1.4-.2 2.5 0 4.6 2 4.6 4.5Z", "key": "3de27e8912532f99893561ec796f9dd4cfc25d89" }], ["path", { "fill": "currentColor", "d": "M3.937 13.81c.576 2.173 2.107 3.937 4.196 4.87.105-.347.167-.723.167-1.13 0-2.065-1.743-3.75-3.85-3.75-.201 0-.37.002-.513.01Zm.449-1.51h.064c2.893 0 5.35 2.314 5.35 5.25 0 .93-.233 1.744-.58 2.435l-.293.588-.622-.214c-3.148-1.086-5.448-3.703-5.995-6.986l-.09-.546.495-.248c.561-.28 1.22-.28 1.67-.28Zm16.564.95c-.4 3-2.6 5.5-5.4 6.4-.3-.6-.5-1.3-.5-2.1 0-2.5 2-4.5 4.5-4.5.4 0 .9 0 1.4.2Z", "key": "4c7d75bf85167d268dcd032ef47c0657a51256ce" }], ["path", { "fill": "currentColor", "d": "M20.083 13.816a6.246 6.246 0 0 0-.533-.016 3.731 3.731 0 0 0-3.75 3.75c0 .412.063.791.17 1.14 2.018-.88 3.596-2.699 4.113-4.874ZM19.58 12.3c.392 0 1.014 0 1.65.254l.541.216-.077.58c-.44 3.298-2.85 6.03-5.914 7.014l-.612.197-.288-.576a5.398 5.398 0 0 1-.58-2.435 5.231 5.231 0 0 1 5.25-5.25h.03Z", "key": "d6f4f5feb3405e1c661d12d395cb938e26f0e213" }]]);
const UnderpantsButton = createMeisterIcons("underpants-button", [["path", { "fill": "currentColor", "d": "M3.75 7A3.262 3.262 0 0 1 7 3.75h10A3.262 3.262 0 0 1 20.25 7v6c0 .102-.002.204-.006.305A5.231 5.231 0 0 0 14.25 18.5c0 .576.09 1.109.24 1.595a7.18 7.18 0 0 1-1.49.155h-2.1a7.13 7.13 0 0 1-1.49-.156 5.36 5.36 0 0 0 .24-1.594 5.231 5.231 0 0 0-5.894-5.208A7.509 7.509 0 0 1 3.75 13V7Zm15.75 7.75c.173 0 .35.015.525.04a7.31 7.31 0 0 1-4.107 4.843 3.865 3.865 0 0 1-.168-1.133 3.731 3.731 0 0 1 3.75-3.75Zm-15.535.027a7.22 7.22 0 0 0 4.02 4.849c.104-.346.165-.72.165-1.126a3.731 3.731 0 0 0-4.185-3.722ZM7 2.25A4.762 4.762 0 0 0 2.25 7v6c0 4.802 3.824 8.75 8.65 8.75H13c4.814 0 8.75-3.936 8.75-8.75V7A4.762 4.762 0 0 0 17 2.25H7ZM10.75 10a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0ZM12 7.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5Z", "key": "6a86434665f5bb4b00187fd60075b429e226ec5c" }]]);
const UnderpantsButtonB = createMeisterIcons("underpants-button-b", [["path", { "fill": "currentColor", "d": "M2.3 7.05A4.762 4.762 0 0 1 7.05 2.3h10c2.608 0 4.732 2.023 4.85 4.717v6.064c0 .381 0 .86-.122 1.351l-.182.728-.728-.182c-.378-.095-.809-.178-1.218-.178a3.731 3.731 0 0 0-3.75 3.75c0 .67.167 1.256.42 1.765l.373.745-.78.292c-.91.341-1.805.448-2.763.448h-2.1c-.958 0-1.854-.107-2.763-.448l-.78-.292.372-.745c.254-.509.42-1.094.42-1.765a3.731 3.731 0 0 0-3.75-3.75c-.548 0-.853.015-1.064.12l-.836.419-.227-.907c-.122-.49-.122-.97-.122-1.35V7.05ZM7.05 3.8A3.262 3.262 0 0 0 3.8 7.05v6l.001.272c.251-.023.488-.022.685-.022h.064a5.231 5.231 0 0 1 5.25 5.25c0 .584-.092 1.122-.246 1.613.463.098.95.137 1.496.137h2.1a7.18 7.18 0 0 0 1.496-.137 5.358 5.358 0 0 1-.246-1.613 5.231 5.231 0 0 1 5.998-5.194c.002-.096.002-.197.002-.306V7.067C20.31 5.17 18.837 3.8 17.05 3.8h-10Zm5 5c-.686 0-1.25.564-1.25 1.25s.564 1.25 1.25 1.25c.256 0 .575-.136.845-.405.27-.27.405-.589.405-.845 0-.686-.564-1.25-1.25-1.25ZM9.3 10.05a2.756 2.756 0 0 1 2.75-2.75 2.756 2.756 0 0 1 2.75 2.75c0 .744-.365 1.425-.845 1.905s-1.161.845-1.905.845a2.756 2.756 0 0 1-2.75-2.75Z", "key": "48c43aa29815aa82fc1a28cfefba4539fd01c8c6" }], ["path", { "fill": "currentColor", "d": "M9.05 18.55c0 .8-.2 1.5-.5 2.1-2.9-1-5-3.4-5.5-6.4.4-.2.9-.2 1.4-.2 2.5 0 4.6 2 4.6 4.5Z", "key": "191cb106c66976f2624a84231f58de55c5c79d85" }], ["path", { "fill": "currentColor", "d": "M3.937 14.81c.576 2.173 2.107 3.937 4.196 4.87.105-.347.167-.723.167-1.13 0-2.065-1.743-3.75-3.85-3.75-.201 0-.37.002-.513.01Zm.449-1.51h.064c2.893 0 5.35 2.314 5.35 5.25 0 .93-.233 1.744-.58 2.435l-.293.588-.622-.214c-3.148-1.086-5.448-3.703-5.995-6.986l-.09-.546.495-.248c.561-.28 1.22-.28 1.67-.28Zm16.564.95c-.4 3-2.6 5.5-5.4 6.4-.3-.6-.5-1.3-.5-2.1 0-2.5 2-4.5 4.5-4.5.4 0 .9 0 1.4.2Z", "key": "06a657310a616de46c3a23d929a1b986bb6aec95" }], ["path", { "fill": "currentColor", "d": "M20.083 14.816a6.246 6.246 0 0 0-.533-.016 3.731 3.731 0 0 0-3.75 3.75c0 .412.063.791.17 1.14 2.018-.88 3.596-2.699 4.113-4.874ZM19.58 13.3c.392 0 1.014 0 1.65.254l.541.216-.077.58c-.44 3.298-2.85 6.03-5.914 7.014l-.612.197-.288-.576a5.398 5.398 0 0 1-.58-2.435 5.231 5.231 0 0 1 5.25-5.25h.03Zm-7.53-1.25a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z", "key": "47a577de5580b9e5ecee44bf358ab4c8c0dde1a6" }], ["path", { "fill": "currentColor", "d": "M12.05 8.8a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5ZM9.3 10.05a2.75 2.75 0 1 1 5.5 0 2.75 2.75 0 0 1-5.5 0Z", "key": "8536ebf6f9b303c07e8398634357aad920814e91" }]]);
const UnderpantsVarB = createMeisterIcons("underpants-var-b", [["path", { "fill": "currentColor", "d": "M21.05 8.05v4c0 .4 0 .8-.1 1.2-.4-.2-.9-.2-1.4-.2-2.5 0-4.5 2-4.5 4.5 0 .8.2 1.5.5 2.1-.8.3-1.6.4-2.5.4h-2.1c-.9 0-1.7-.1-2.5-.4.3-.6.5-1.3.5-2.1 0-2.5-2-4.5-4.5-4.5-.5 0-1 .1-1.4.2v-5.2c0-2.2 1.8-4 4-4h10c2.2 0 4 1.7 4 4Z", "key": "57ba32c23db08c5aedf386fb5663b4656f972c66" }], ["path", { "fill": "currentColor", "d": "M7.05 4.8A3.262 3.262 0 0 0 3.8 8.05v4.293a5.231 5.231 0 0 1 5.9 5.207c0 .584-.092 1.122-.246 1.613.463.098.95.137 1.496.137h2.1a7.18 7.18 0 0 0 1.496-.137 5.358 5.358 0 0 1-.246-1.613 5.231 5.231 0 0 1 5.25-5.25h.064c.197 0 .434 0 .684.022.002-.085.002-.176.002-.272v-4c0-1.873-1.452-3.25-3.25-3.25h-10ZM2.3 8.05A4.762 4.762 0 0 1 7.05 3.3h10c2.602 0 4.75 2.024 4.75 4.75v4.031c0 .381 0 .86-.123 1.351l-.226.907-.837-.418c-.21-.105-.515-.121-1.064-.121a3.731 3.731 0 0 0-3.75 3.75c0 .67.167 1.256.42 1.765l.373.745-.78.292c-.91.341-1.805.448-2.763.448h-2.1c-.958 0-1.854-.107-2.763-.448l-.78-.292.372-.745c.254-.509.42-1.094.42-1.765a3.731 3.731 0 0 0-3.75-3.75c-.408 0-.839.083-1.217.178l-.932.233V8.05Z", "key": "5b6a08a4d5f684decf71a3bce0f3909de60c9882" }], ["path", { "fill": "currentColor", "d": "M3.937 13.81c.576 2.173 2.107 3.937 4.196 4.87.105-.347.167-.723.167-1.13 0-2.065-1.743-3.75-3.85-3.75-.201 0-.37.002-.513.01Zm.449-1.51h.064c2.893 0 5.35 2.314 5.35 5.25 0 .93-.233 1.744-.58 2.435l-.293.588-.622-.214c-3.148-1.086-5.448-3.703-5.995-6.986l-.09-.546.495-.248c.561-.28 1.22-.28 1.67-.28Zm15.697 1.516a6.246 6.246 0 0 0-.533-.016 3.731 3.731 0 0 0-3.75 3.75c0 .412.063.791.17 1.14 2.018-.88 3.596-2.699 4.113-4.874ZM19.58 12.3c.392 0 1.014 0 1.65.254l.541.216-.077.58c-.44 3.298-2.85 6.03-5.914 7.014l-.612.197-.288-.576a5.398 5.398 0 0 1-.58-2.435 5.231 5.231 0 0 1 5.25-5.25h.03Z", "key": "244f44b2287c2f1f1257b6a8f5b6baa677762942" }]]);
const Union = createMeisterIcons("union", [["path", { "fill": "currentColor", "d": "M3.3 12a5.15 5.15 0 0 1 7.454-4.607A6.628 6.628 0 0 0 8.9 12a6.63 6.63 0 0 0 1.854 4.607A5.15 5.15 0 0 1 3.3 12Zm8.7 5.624a6.65 6.65 0 1 1 0-11.248 6.65 6.65 0 1 1 0 11.248Zm1.246-10.231a5.15 5.15 0 1 1 0 9.214A6.628 6.628 0 0 0 15.1 12a6.628 6.628 0 0 0-1.854-4.607ZM12 8.269A5.135 5.135 0 0 1 13.6 12a5.135 5.135 0 0 1-1.6 3.731A5.136 5.136 0 0 1 10.4 12c0-1.468.614-2.793 1.6-3.731Z", "key": "0443e1965ee6635c88e1e68cddd391435853c0c4" }]]);
const Union3 = createMeisterIcons("union3", [["path", { "fill": "currentColor", "d": "M8.45 3.85a5.15 5.15 0 0 0-2.831 9.453A6.665 6.665 0 0 1 8.9 9.14a6.628 6.628 0 0 1 1.853-4.748A5.128 5.128 0 0 0 8.45 3.85Zm.684 6.905a5.154 5.154 0 0 0-2.126 3.19c.458.134.941.205 1.442.205a5.13 5.13 0 0 0 2.304-.543 6.641 6.641 0 0 1-1.62-2.852ZM5.4 14.91A6.65 6.65 0 1 1 12 3.376a6.65 6.65 0 1 1 6.698 11.483L18.7 15a6.65 6.65 0 1 1-13.3-.089Zm11.78.538a5.15 5.15 0 0 1-10.26.024 6.671 6.671 0 0 0 5.08-.847 6.666 6.666 0 0 0 5.18.824Zm1.285-2.204a5.15 5.15 0 0 0-5.22-8.852 6.628 6.628 0 0 1 1.853 4.696 6.666 6.666 0 0 1 3.367 4.156Zm-3.585-2.547a5.155 5.155 0 0 1 2.205 3.22 5.151 5.151 0 0 1-1.536.232 5.13 5.13 0 0 1-2.304-.543 6.641 6.641 0 0 0 1.635-2.91Zm-1.39-.643A5.142 5.142 0 0 1 12 12.73a5.143 5.143 0 0 1-1.486-2.648 5.16 5.16 0 0 1 2.978-.028Zm.088-1.529a6.668 6.668 0 0 0-3.16.025A5.135 5.135 0 0 1 12 5.27a5.136 5.136 0 0 1 1.579 3.257Z", "key": "65a3f0839fb50694f4422df337ea99365e11ed40" }]]);
const UnionB = createMeisterIcons("union-b", [["path", { "fill": "currentColor", "d": "M12 16.75c-1 .8-2.2 1.2-3.6 1.2-3.3 0-5.9-2.7-5.9-5.9 0-3.3 2.7-5.9 5.9-5.9 1.3 0 2.6.4 3.6 1.2-1.5 1-2.4 2.8-2.4 4.7 0 1.9.9 3.7 2.4 4.7Z", "key": "44cc58e2ed25029d887c1eff0e1b4bc55f57b2e6" }], ["path", { "fill": "currentColor", "d": "M8.4 6.9c-2.794 0-5.15 2.272-5.15 5.15 0 2.794 2.272 5.15 5.15 5.15.88 0 1.654-.176 2.333-.52-1.203-1.188-1.883-2.882-1.883-4.63 0-1.745.678-3.437 1.877-4.624A5.28 5.28 0 0 0 8.4 6.9Zm-6.65 5.15c0-3.722 3.044-6.65 6.65-6.65 1.447 0 2.918.444 4.069 1.364l.8.641-.853.57c-1.271.847-2.066 2.4-2.066 4.075 0 1.674.795 3.228 2.066 4.076l.853.569-.8.64C11.323 18.253 9.953 18.7 8.4 18.7c-3.722 0-6.65-3.044-6.65-6.65Z", "key": "2d6fcb36f15fe49c9c3e0f049ae2ea6beece0c8a" }], ["path", { "fill": "currentColor", "d": "M10.974 8.991c-.372.744-.624 1.825-.624 3.059 0 1.234.252 2.315.624 3.059.394.789.8.991 1.026.991.226 0 .632-.202 1.026-.991.372-.744.624-1.825.624-3.059 0-1.234-.252-2.315-.624-3.059C12.632 8.202 12.226 8 12 8c-.226 0-.632.202-1.026.991Zm-1.342-.67C10.106 7.371 10.9 6.5 12 6.5c1.1 0 1.894.872 2.368 1.82.496.994.782 2.313.782 3.73 0 1.417-.286 2.736-.782 3.73-.474.948-1.268 1.82-2.368 1.82-1.1 0-1.894-.872-2.368-1.82-.497-.994-.782-2.313-.782-3.73 0-1.417.285-2.736.782-3.73Z", "key": "e2c4dc0ec338b4c5138e7ea76f21b1a24e94b1ee" }], ["path", { "fill": "currentColor", "d": "M13.225 7.342c1.143 1.168 1.925 2.727 1.925 4.608 0 1.873-.776 3.502-1.925 4.7.714.363 1.538.55 2.375.55 2.794 0 5.15-2.272 5.15-5.15 0-2.87-2.35-5.156-5.162-5.25-.894.002-1.677.185-2.363.542Zm-1.694-.678C12.677 5.748 14.048 5.3 15.6 5.3h.023c3.583.112 6.627 3.023 6.627 6.75 0 3.723-3.044 6.65-6.65 6.65-1.447 0-2.918-.444-4.068-1.364l-.74-.591.745-.585c1.245-.978 2.113-2.472 2.113-4.21 0-1.725-.856-3.122-2.113-4.11l-.744-.585.739-.59Z", "key": "d62649669b7eb1da8ea2a899948e8fd052ce9ea6" }]]);
const UnionVarB = createMeisterIcons("union-var-b", [["path", { "fill": "currentColor", "d": "M8.4 6.9c-2.794 0-5.15 2.272-5.15 5.15 0 2.794 2.272 5.15 5.15 5.15.88 0 1.654-.176 2.333-.52-1.203-1.188-1.883-2.882-1.883-4.63 0-1.745.678-3.437 1.877-4.624A5.28 5.28 0 0 0 8.4 6.9Zm-6.65 5.15c0-3.722 3.044-6.65 6.65-6.65 1.447 0 2.918.444 4.069 1.364l.8.641-.853.57c-1.271.847-2.066 2.4-2.066 4.075 0 1.674.795 3.228 2.066 4.076l.853.569-.8.64C11.323 18.253 9.953 18.7 8.4 18.7c-3.722 0-6.65-3.044-6.65-6.65Z", "key": "98595c7a3ed6c2da68953deb46dcdbac54443483" }], ["path", { "fill": "currentColor", "d": "M10.974 8.991c-.372.744-.624 1.825-.624 3.059 0 1.234.252 2.315.624 3.059.394.789.8.991 1.026.991.226 0 .632-.202 1.026-.991.372-.744.624-1.825.624-3.059 0-1.234-.252-2.315-.624-3.059C12.632 8.202 12.226 8 12 8c-.226 0-.632.202-1.026.991Zm-1.342-.67C10.106 7.371 10.9 6.5 12 6.5c1.1 0 1.894.872 2.368 1.82.496.994.782 2.313.782 3.73 0 1.417-.286 2.736-.782 3.73-.474.948-1.268 1.82-2.368 1.82-1.1 0-1.894-.872-2.368-1.82-.497-.994-.782-2.313-.782-3.73 0-1.417.285-2.736.782-3.73Z", "key": "bde21427409d1f4110a03fff8f8e3fcd3d4f0788" }], ["path", { "fill": "currentColor", "d": "M21.5 12.05c0 3.3-2.7 5.9-5.9 5.9-1.3 0-2.6-.4-3.6-1.2 1.4-1.1 2.4-2.8 2.4-4.8s-1-3.6-2.4-4.7c1-.8 2.2-1.2 3.6-1.2 3.2.1 5.9 2.7 5.9 6Z", "key": "167b95ab995b21f0b9841ffa0644bbc89646b4b7" }], ["path", { "fill": "currentColor", "d": "M13.225 7.342c1.143 1.168 1.925 2.727 1.925 4.608 0 1.873-.776 3.502-1.925 4.7.714.363 1.538.55 2.375.55 2.794 0 5.15-2.272 5.15-5.15 0-2.87-2.35-5.156-5.162-5.25-.894.002-1.677.185-2.363.542Zm-1.694-.678C12.677 5.748 14.048 5.3 15.6 5.3h.023c3.583.112 6.627 3.023 6.627 6.75 0 3.723-3.044 6.65-6.65 6.65-1.447 0-2.918-.444-4.068-1.364l-.74-.591.745-.585c1.245-.978 2.113-2.472 2.113-4.21 0-1.725-.856-3.122-2.113-4.11l-.744-.585.739-.59Z", "key": "ee25d071db26c21112a9e28eff9f128cec94b0e1" }]]);
const Upload = createMeisterIcons("upload", [["path", { "fill": "currentColor", "d": "M20.6 11.725a.75.75 0 0 1 .75.75v2.5c0 2.13-1.752 3.75-3.75 3.75H6.4a.75.75 0 0 1 0-1.5h11.2c1.202 0 2.25-.98 2.25-2.25v-2.5a.75.75 0 0 1 .75-.75Z", "key": "3a73e032e6b1fddf386d268e01f14f20573c1c11" }], ["path", { "fill": "currentColor", "d": "M3.4 11.725a.75.75 0 0 1 .75.75v2.5c0 1.27 1.048 2.25 2.25 2.25h11.2a.75.75 0 0 1 0 1.5H6.4c-1.998 0-3.75-1.62-3.75-3.75v-2.5a.75.75 0 0 1 .75-.75Zm8.6-5.8a.75.75 0 0 1 .75.75v7.1a.75.75 0 1 1-1.5 0v-7.1a.75.75 0 0 1 .75-.75Z", "key": "0dbf706cdb4765260cf7b26b6e02436531e52b6b" }], ["path", { "fill": "currentColor", "d": "m12 6.836 2.77 2.77a.75.75 0 1 0 1.06-1.061l-2.9-2.9a1.316 1.316 0 0 0-.93-.37c-.299 0-.658.097-.93.37l-2.9 2.9a.75.75 0 0 0 1.06 1.06L12 6.835Z", "key": "9a3952b602f48ea5f3ac0cfa73af26ce7fc692e9" }]]);
const UsbDrive = createMeisterIcons("usb-drive", [["path", { "fill": "currentColor", "d": "M13.288 5.713c-.152 0-.243.052-.27.08l-7.6 7.6c-1.405 1.404-1.407 3.724-.008 5.132 1.53 1.436 3.846 1.39 5.131.024l.008-.009 7.608-7.608c.028-.027.08-.118.08-.27 0-.15-.052-.242-.08-.27l-4.6-4.6c-.027-.027-.118-.08-.27-.08Zm0-1.5c.448 0 .957.147 1.33.52l4.6 4.6c.372.372.52.88.52 1.33 0 .448-.148.957-.52 1.33l-7.592 7.592c-1.914 2.023-5.186 1.976-7.253.023l-.008-.008-.008-.007c-1.993-1.993-1.993-5.268 0-7.26l7.6-7.6c.373-.373.882-.52 1.33-.52Z", "key": "a9bae92b861d7873b47c2d5a9f829406c005202d" }], ["path", { "fill": "currentColor", "d": "M16.987 4.412a.24.24 0 0 0-.17.08l-1 1c-.067.068-.08.13-.08.158l.002.013.041.031 2.438 2.438c.06.06.12.08.182.08a.506.506 0 0 0 .291-.114l.866-.866a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-2.4-2.4a.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0l2.4 2.4a1.716 1.716 0 0 1 0 2.46l-.929.93-.032.026c-.739.591-1.778.666-2.499-.055L14.79 6.825c-.796-.644-.663-1.761-.032-2.393l1-1Z", "key": "a52d9463b0d03cd1e5ffa9400605cf52dee30267" }]]);
const UsbDriveB = createMeisterIcons("usb-drive-b", [["path", { "fill": "currentColor", "d": "M4.888 19.063c-1.7-1.7-1.7-4.5 0-6.2l7.6-7.6c.4-.4 1.2-.4 1.6 0l4.6 4.6c.4.4.4 1.2 0 1.6l-7.6 7.6c-1.6 1.7-4.4 1.7-6.2 0Z", "key": "245ff1c857428a5b4d5c35ce570bacb87fadcaf8" }], ["path", { "fill": "currentColor", "d": "M13.288 5.713c-.152 0-.243.052-.27.08l-7.6 7.6c-1.405 1.404-1.407 3.724-.008 5.132 1.53 1.436 3.846 1.39 5.131.024l.008-.009 7.608-7.608c.028-.027.08-.118.08-.27 0-.15-.052-.242-.08-.27l-4.6-4.6c-.027-.027-.118-.08-.27-.08Zm0-1.5c.448 0 .957.147 1.33.52l4.6 4.6c.372.372.52.88.52 1.33 0 .448-.148.957-.52 1.33l-7.592 7.592c-1.914 2.023-5.186 1.976-7.253.023l-.008-.008-.008-.007c-1.993-1.993-1.993-5.268 0-7.26l7.6-7.6c.373-.373.882-.52 1.33-.52Z", "key": "00316ac8088d30c84e2420363b6a087ad48e82e3" }], ["path", { "fill": "currentColor", "d": "M16.987 4.412a.24.24 0 0 0-.17.08l-1 1c-.067.068-.08.13-.08.158l.002.013.041.031 2.438 2.438c.06.06.12.08.182.08a.506.506 0 0 0 .291-.114l.866-.866a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-2.4-2.4a.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0l2.4 2.4a1.716 1.716 0 0 1 0 2.46l-.929.93-.032.026c-.739.591-1.778.666-2.499-.055L14.79 6.825c-.796-.644-.663-1.761-.032-2.393l1-1Z", "key": "1a245a0537d19566551775ac0906d2489e1b5193" }]]);
const UsbDriveVarB = createMeisterIcons("usb-drive-var-b", [["path", { "fill": "currentColor", "d": "M13.288 5.713c-.152 0-.243.052-.27.08l-7.6 7.6c-1.405 1.404-1.407 3.724-.008 5.132 1.53 1.436 3.846 1.39 5.131.024l.008-.009 7.608-7.608c.028-.027.08-.118.08-.27 0-.15-.052-.242-.08-.27l-4.6-4.6c-.027-.027-.118-.08-.27-.08Zm0-1.5c.448 0 .957.147 1.33.52l4.6 4.6c.372.372.52.88.52 1.33 0 .448-.148.957-.52 1.33l-7.592 7.592c-1.914 2.023-5.186 1.976-7.253.023l-.008-.008-.008-.007c-1.993-1.993-1.993-5.268 0-7.26l7.6-7.6c.373-.373.882-.52 1.33-.52Z", "key": "b5814cdd8c0cefc7ce6c1eb1f87ef9ac63636cf3" }], ["path", { "fill": "currentColor", "d": "m17.688 8.662-2.4-2.4c-.4-.3-.4-.9 0-1.3l1-1c.4-.4 1-.4 1.4 0l2.4 2.4c.4.4.4 1 0 1.4l-.9.9c-.5.4-1.1.4-1.5 0Z", "key": "e0164decd661a18c46312ad71da08a6b81a55be7" }], ["path", { "fill": "currentColor", "d": "M16.987 4.412a.24.24 0 0 0-.17.08l-1 1c-.067.068-.08.13-.08.158l.002.013.041.031 2.438 2.438c.06.06.12.08.182.08a.506.506 0 0 0 .291-.114l.866-.866a.24.24 0 0 0 .08-.17.24.24 0 0 0-.08-.17l-2.4-2.4a.24.24 0 0 0-.17-.08Zm-1.23-.98a1.716 1.716 0 0 1 2.46 0l2.4 2.4a1.716 1.716 0 0 1 0 2.46l-.929.93-.032.026c-.739.591-1.778.666-2.499-.055L14.79 6.825c-.796-.644-.663-1.761-.032-2.393l1-1Z", "key": "1f07268383573df064444ed9e3bf1c919d35cb22" }]]);
const User = createMeisterIcons("user", [["path", { "fill": "currentColor", "d": "M11.9 3.65a3.95 3.95 0 1 0 0 7.9 3.95 3.95 0 0 0 0-7.9ZM6.45 7.6a5.45 5.45 0 1 1 10.9 0 5.45 5.45 0 0 1-10.9 0Z", "key": "1b0e4509388c5ff9222fb9917eb0289e6a570743" }], ["path", { "fill": "currentColor", "d": "M10.4 13.05c-2.386 0-4.35 1.964-4.35 4.35A2.94 2.94 0 0 0 9 20.35h5.9c1.66 0 2.96-1.341 3.05-2.969-.01-2.377-1.97-4.331-4.35-4.331h-3.2ZM4.55 17.4c0-3.214 2.636-5.85 5.85-5.85h3.2c3.214 0 5.85 2.636 5.85 5.85v.037c-.12 2.365-2.016 4.413-4.55 4.413H9c-2.527 0-4.45-2.049-4.45-4.45Z", "key": "7d73eb00736f7b048cf6aae36f6e2c6e20ad4309" }]]);
const UserAdd = createMeisterIcons("user-add", [["path", { "fill": "currentColor", "d": "M9.5 3.65a3.95 3.95 0 1 0 0 7.9 3.95 3.95 0 0 0 0-7.9ZM4.05 7.6a5.45 5.45 0 1 1 10.9 0 5.45 5.45 0 0 1-10.9 0Z", "key": "4fdae01659c29a16d447f42e93d2fe79267fdcf2" }], ["path", { "fill": "currentColor", "d": "M8 13.05c-2.386 0-4.35 1.964-4.35 4.35a2.94 2.94 0 0 0 2.95 2.95h5.9c1.66 0 2.96-1.341 3.05-2.969-.01-2.377-1.97-4.331-4.35-4.331H8ZM2.15 17.4c0-3.214 2.636-5.85 5.85-5.85h3.2c3.214 0 5.85 2.636 5.85 5.85v.037c-.12 2.365-2.016 4.413-4.55 4.413H6.6c-2.527 0-4.45-2.049-4.45-4.45ZM18.7 7.75a.75.75 0 0 1 .75.75v4.9a.75.75 0 0 1-1.5 0V8.5a.75.75 0 0 1 .75-.75Z", "key": "fa3a951171ce81b9363406c3d8d8227d4bf9f350" }], ["path", { "fill": "currentColor", "d": "M15.45 11a.75.75 0 0 1 .75-.75h4.9a.75.75 0 0 1 0 1.5h-4.9a.75.75 0 0 1-.75-.75Z", "key": "566db80ae4ac8fe7a4ce4a6b9a8c70e9fba8543d" }]]);
const UserAddB = createMeisterIcons("user-add-b", [["path", { "fill": "currentColor", "d": "M9.487 12.302a4.724 4.724 0 1 0 0-9.448 4.724 4.724 0 0 0 0 9.448Z", "key": "dc6acd9880ad86846ab59b5880a351f34e627060" }], ["path", { "fill": "currentColor", "d": "M9.487 3.608a3.97 3.97 0 1 0 0 7.94 3.97 3.97 0 0 0 0-7.94ZM4.01 7.578a5.478 5.478 0 1 1 10.955 0 5.478 5.478 0 0 1-10.955 0Z", "key": "6a1ab147c075255883e34fa260fdef0c222b8461" }], ["path", { "fill": "currentColor", "d": "M12.503 21.146h-5.93a3.71 3.71 0 0 1-3.72-3.719c0-2.814 2.312-5.125 5.127-5.125h3.216c2.814 0 5.126 2.311 5.126 5.125-.1 2.01-1.709 3.72-3.82 3.72Z", "key": "591b63028f4e5eb41c2bc3950a99c2b637264fda" }], ["path", { "fill": "currentColor", "d": "M7.98 13.055c-2.398 0-4.372 1.975-4.372 4.372a2.956 2.956 0 0 0 2.965 2.965h5.93c1.668 0 2.974-1.348 3.065-2.984-.01-2.389-1.98-4.353-4.372-4.353H7.98ZM2.1 17.427c0-3.23 2.65-5.88 5.88-5.88h3.216c3.23 0 5.88 2.65 5.88 5.88v.02l-.001.018c-.12 2.376-2.026 4.435-4.572 4.435h-5.93c-2.54 0-4.473-2.06-4.473-4.473Zm16.634-9.699c.416 0 .754.338.754.754v4.925a.754.754 0 1 1-1.508 0V8.482c0-.416.338-.754.754-.754Z", "key": "3c785e2fb357bb2fcffdf82424106014332a9b2c" }], ["path", { "fill": "currentColor", "d": "M15.468 10.995c0-.416.337-.754.753-.754h4.925a.754.754 0 0 1 0 1.508h-4.925a.754.754 0 0 1-.754-.754Z", "key": "14b146e89ef709bd15adffcd4839f32414cecc0e" }]]);
const UserB = createMeisterIcons("user-b", [["path", { "fill": "currentColor", "d": "M11.9 12.302c2.596 0 4.7-2.115 4.7-4.724 0-2.61-2.104-4.724-4.7-4.724S7.2 4.969 7.2 7.578s2.104 4.724 4.7 4.724Z", "key": "c207281c1eed063ab0d67b775f7115c0836b3629" }], ["path", { "fill": "currentColor", "d": "M11.9 3.608c-2.182 0-3.95 1.777-3.95 3.97 0 2.192 1.768 3.97 3.95 3.97 2.182 0 3.95-1.778 3.95-3.97 0-2.193-1.768-3.97-3.95-3.97Zm-5.45 3.97C6.45 4.552 8.89 2.1 11.9 2.1c3.01 0 5.45 2.452 5.45 5.478 0 3.025-2.44 5.477-5.45 5.477-3.01 0-5.45-2.452-5.45-5.477Z", "key": "ddbecedcb1f98e88c11bba4b78251c161e5618d4" }], ["path", { "fill": "currentColor", "d": "M14.9 21.146H9c-2.1 0-3.7-1.708-3.7-3.719 0-2.814 2.3-5.125 5.1-5.125h3.2c2.8 0 5.1 2.311 5.1 5.125-.1 2.01-1.7 3.72-3.8 3.72Z", "key": "fef2d23053ec76a8e49820bd95b28cfdac07fb8f" }], ["path", { "fill": "currentColor", "d": "M10.4 13.055c-2.386 0-4.35 1.975-4.35 4.372 0 1.608 1.277 2.965 2.95 2.965h5.9c1.66 0 2.96-1.348 3.05-2.984-.01-2.389-1.97-4.353-4.35-4.353h-3.2Zm-5.85 4.372c0-3.23 2.636-5.88 5.85-5.88h3.2c3.214 0 5.85 2.65 5.85 5.88v.038c-.12 2.376-2.016 4.435-4.55 4.435H9c-2.527 0-4.45-2.06-4.45-4.473Z", "key": "285767cdf47e7df49992103cc0fdf9ac04ee147e" }]]);
const UserBlock = createMeisterIcons("user-block", [["path", { "fill": "currentColor", "d": "M13.144 17.837c-.644.73-.602 1.766-.014 2.355.585.586 1.61.63 2.339 0 .625-.725.586-1.74.014-2.328-.724-.64-1.748-.604-2.339-.027Zm-1.074-1.049c1.207-1.209 3.162-1.17 4.432-.027l.014.013.014.014c1.208 1.209 1.17 3.167.027 4.438l-.026.029-.03.026c-1.269 1.144-3.224 1.182-4.431-.027-1.208-1.209-1.17-3.167-.027-4.437l.013-.015.014-.014Z", "key": "093d4db6dd255f5a445744c1503a4a9b4079ae15" }], ["path", { "fill": "currentColor", "d": "m12.07 20.192 3.4-3.404 1.06 1.062-3.4 3.404-1.06-1.062Zm-.17-16.84a3.952 3.952 0 0 0-3.95 3.955 3.952 3.952 0 0 0 3.95 3.955 3.952 3.952 0 0 0 3.95-3.955 3.952 3.952 0 0 0-3.95-3.955ZM6.45 7.307A5.453 5.453 0 0 1 11.9 1.85c3.01 0 5.45 2.443 5.45 5.457a5.453 5.453 0 0 1-5.45 5.457 5.453 5.453 0 0 1-5.45-5.457Z", "key": "de99e95c6f8eee1d33d7815ce4afefe21f7977a7" }], ["path", { "fill": "currentColor", "d": "M10.4 12.764c-2.386 0-4.35 1.966-4.35 4.355A2.943 2.943 0 0 0 9 20.073a.75.75 0 0 1 0 1.501c-2.527 0-4.45-2.051-4.45-4.455 0-3.218 2.636-5.857 5.85-5.857h3.2c3.214 0 5.85 2.639 5.85 5.857a.75.75 0 1 1-1.5 0c0-2.389-1.964-4.355-4.35-4.355h-3.2Z", "key": "4325dd4674cb243fd9ec0a5ac000205b4a62e1b5" }]]);
const UserBlockB = createMeisterIcons("user-block-b", [["path", { "fill": "currentColor", "d": "M13.144 17.837c-.644.73-.602 1.766-.014 2.355.585.586 1.61.63 2.339 0 .625-.725.586-1.74.014-2.328-.724-.64-1.748-.604-2.339-.027Zm-1.074-1.049c1.207-1.209 3.162-1.17 4.432-.027l.014.013.014.014c1.208 1.209 1.17 3.167.027 4.438l-.026.029-.03.026c-1.269 1.144-3.224 1.182-4.431-.027-1.208-1.209-1.17-3.167-.027-4.437l.013-.015.014-.014Z", "key": "b0cc970d2c35095878c9231ebe08e32134eecf92" }], ["path", { "fill": "currentColor", "d": "m12.07 20.192 3.4-3.404 1.06 1.062-3.4 3.404-1.06-1.062Zm-.17-8.179c2.596 0 4.7-2.107 4.7-4.706A4.703 4.703 0 0 0 11.9 2.6a4.703 4.703 0 0 0-4.7 4.706 4.703 4.703 0 0 0 4.7 4.705Z", "key": "e3ab7522fc6fe13c3f1609277edce6b67180b090" }], ["path", { "fill": "currentColor", "d": "M11.9 3.352a3.952 3.952 0 0 0-3.95 3.955 3.952 3.952 0 0 0 3.95 3.955 3.952 3.952 0 0 0 3.95-3.955 3.952 3.952 0 0 0-3.95-3.955ZM6.45 7.307A5.453 5.453 0 0 1 11.9 1.85c3.01 0 5.45 2.443 5.45 5.457a5.453 5.453 0 0 1-5.45 5.457 5.453 5.453 0 0 1-5.45-5.457Z", "key": "1417e449d38da75822d3ee37c70e6fb0caee357a" }], ["path", { "fill": "currentColor", "d": "M10.4 12.764c-2.386 0-4.35 1.966-4.35 4.355A2.943 2.943 0 0 0 9 20.073a.75.75 0 0 1 0 1.501c-2.527 0-4.45-2.051-4.45-4.455 0-3.218 2.636-5.857 5.85-5.857h3.2c3.214 0 5.85 2.639 5.85 5.857a.75.75 0 1 1-1.5 0c0-2.389-1.964-4.355-4.35-4.355h-3.2Z", "key": "1e7cc1791e56dbb26f1327f27ec31b95ca7c8ff0" }]]);
const UserCheck = createMeisterIcons("user-check", [["path", { "fill": "currentColor", "d": "M10.5 3.513a3.95 3.95 0 1 0 0 7.9 3.95 3.95 0 0 0 0-7.9Zm-5.45 3.95a5.45 5.45 0 1 1 10.9 0 5.45 5.45 0 0 1-10.9 0Z", "key": "0b65c20e5d7433b1adf27f2aa969c11b86cd09c2" }], ["path", { "fill": "currentColor", "d": "M9 12.913c-2.386 0-4.35 1.964-4.35 4.35a2.941 2.941 0 0 0 2.95 2.95h5.9a.75.75 0 0 1 0 1.5H7.6c-2.527 0-4.45-2.05-4.45-4.45 0-3.215 2.636-5.85 5.85-5.85h3.2c3.214 0 5.85 2.635 5.85 5.85a.75.75 0 1 1-1.5 0c0-2.386-1.964-4.35-4.35-4.35H9Z", "key": "107ddf53e8ad9e25858599fd98adffba55b3434a" }], ["path", { "fill": "currentColor", "d": "M20.638 17.44a.75.75 0 0 1-.016 1.061l-3.206 3.108a.832.832 0 0 1-.256.248.901.901 0 0 1-.473.13 1.02 1.02 0 0 1-.717-.294l-.038-.038-1.232-1.643a.75.75 0 0 1 1.2-.9l.815 1.088 2.863-2.776a.75.75 0 0 1 1.06.016Z", "key": "bb2a9525d91291ec32c4d4a5bc4cf3b5bc8d740b" }]]);
const UserCircle = createMeisterIcons("user-circle", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 2.214.854 4.213 2.253 5.688.773-1.328 1.95-2.397 3.41-2.973a3.75 3.75 0 1 1 5.119.051 6.725 6.725 0 0 1 3.331 2.985c1.47-1.497 2.387-3.536 2.387-5.751A8.213 8.213 0 0 0 12 3.75Zm4.689 14.998c-.824-1.75-2.618-2.998-4.789-2.998-2.127 0-3.84 1.204-4.741 2.948A8.241 8.241 0 0 0 12 20.25a8.137 8.137 0 0 0 4.689-1.502ZM2.25 12A9.713 9.713 0 0 1 12 2.25 9.713 9.713 0 0 1 21.75 12c0 5.314-4.436 9.75-9.75 9.75A9.713 9.713 0 0 1 2.25 12ZM12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "1c33d7ee21de7e4bf4bf404d4dafc3f2a1afaa34" }]]);
const UserCircleAdd = createMeisterIcons("user-circle-add", [["path", { "fill": "currentColor", "d": "M12 3.75A8.213 8.213 0 0 0 3.75 12c0 2.214.854 4.213 2.253 5.688.773-1.328 1.95-2.397 3.41-2.973a3.75 3.75 0 1 1 5.119.051A6.724 6.724 0 0 1 17.89 17.8a8.225 8.225 0 0 0 2.36-5.8.75.75 0 0 1 1.5 0A9.713 9.713 0 0 1 12 21.75 9.713 9.713 0 0 1 2.25 12 9.713 9.713 0 0 1 12 2.25a.75.75 0 0 1 0 1.5Zm4.709 15.042c-.814-1.773-2.62-3.042-4.809-3.042-2.127 0-3.84 1.204-4.741 2.948A8.241 8.241 0 0 0 12 20.25a8.244 8.244 0 0 0 4.709-1.458Zm-4.71-9.042a2.25 2.25 0 1 0 .001 4.5 2.25 2.25 0 0 0 0-4.5ZM18 2.25a.75.75 0 0 1 .75.75v2.25H21a.75.75 0 0 1 0 1.5h-2.25V9a.75.75 0 0 1-1.5 0V6.75H15a.75.75 0 0 1 0-1.5h2.25V3a.75.75 0 0 1 .75-.75Z", "key": "15722f3eedd4539230bcc38f149aaef027f56838" }]]);
const UserCircleAddB = createMeisterIcons("user-circle-add-b", [["path", { "fill": "currentColor", "d": "M6.138 6.122C7.598 4.668 9.703 3.75 12 3.75a.75.75 0 0 0 0-1.5c-2.699 0-5.19 1.079-6.93 2.82l-.008.008-.008.008C3.337 6.91 2.25 9.289 2.25 12c0 2.698 1.079 5.19 2.82 6.93l.01.01c.198.199.442.443.804.684a.75.75 0 1 0 .832-1.248 3.638 3.638 0 0 1-.586-.506C4.671 16.41 3.75 14.302 3.75 12c0-2.285.91-4.303 2.388-5.878ZM21 11.25a.75.75 0 0 1 .75.75c0 3.029-1.405 5.852-3.695 7.597a.75.75 0 0 1-.91-1.194c1.91-1.455 3.105-3.832 3.105-6.403a.75.75 0 0 1 .75-.75Z", "key": "9f125667004b0467b5a17d24ef9acbbcec4c035b" }], ["path", { "fill": "currentColor", "d": "M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "8e34ce8b1f5d1aa4bbbe8c2a5fa17693ca8819d1" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "e5d9b756a49333bc703be9e552d5dbb811775150" }], ["path", { "fill": "currentColor", "d": "M17.6 19c-1.5 1.3-3.5 2-5.7 2s-4.1-.8-5.7-2c.8-2.3 3-4 5.7-4s4.9 1.6 5.7 4Z", "key": "03fe3706c56bcc3a5e2ce108bd36a94c40aca5fe" }], ["path", { "fill": "currentColor", "d": "M7.119 18.733c1.39.932 2.98 1.517 4.781 1.517 1.843 0 3.505-.529 4.803-1.491-.812-1.818-2.603-3.01-4.803-3.01-2.165 0-3.954 1.242-4.781 2.984Zm-1.627.02c.902-2.593 3.38-4.503 6.408-4.503 3.013 0 5.506 1.797 6.411 4.513l.159.475-.379.329C16.44 20.998 14.26 21.75 11.9 21.75c-2.394 0-4.448-.873-6.15-2.15l-.438-.329.18-.518ZM18 2.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0V3a.75.75 0 0 1 .75-.75Z", "key": "63445bf29d39bd8536eb597cf31f2f9b8aab6ef1" }], ["path", { "fill": "currentColor", "d": "M14.25 6a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "427f0e0b8f746c27c9eb45eaa533acf5a66925e8" }]]);
const UserCircleB = createMeisterIcons("user-circle-b", [["path", { "fill": "currentColor", "d": "M17.6 19c-1.5 1.3-3.5 2-5.7 2s-4.1-.8-5.7-2c.8-2.3 3-4 5.7-4s4.9 1.6 5.7 4Z", "key": "c622f8c28165e84d0ee7e570c842d58b1edd11fc" }], ["path", { "fill": "currentColor", "d": "M7.119 18.733c1.39.932 2.98 1.517 4.781 1.517 1.843 0 3.505-.529 4.803-1.491-.812-1.818-2.603-3.009-4.803-3.009-2.165 0-3.954 1.24-4.781 2.983Zm-1.627.02c.902-2.593 3.38-4.503 6.408-4.503 3.013 0 5.506 1.797 6.411 4.513l.159.475-.379.329C16.44 20.998 14.26 21.75 11.9 21.75c-2.394 0-4.448-.873-6.15-2.15l-.438-.329.18-.517Z", "key": "52d049b7e686e0c75e54008a8ae969ca3ccaed3a" }], ["path", { "fill": "currentColor", "d": "M6.138 6.122C4.66 7.697 3.75 9.715 3.75 12c0 2.212.887 4.227 2.319 5.748C7.236 15.699 9.357 14.25 12 14.25c2.627 0 4.84 1.438 5.97 3.511 1.414-1.557 2.28-3.532 2.28-5.761 0-2.274-1-4.39-2.381-5.87C16.295 4.656 14.28 3.75 12 3.75c-2.297 0-4.403.918-5.862 2.372ZM5.07 5.07C6.81 3.329 9.3 2.25 12 2.25c2.71 0 5.09 1.087 6.914 2.804l.017.016.016.017C20.558 6.805 21.75 9.283 21.75 12c0 2.71-1.087 5.09-2.804 6.914l-.008.008-.008.008c-.13.13-.282.253-.398.345l-.014.01c-.133.107-.223.18-.288.245l-.845.846-.393-1.13c-.698-2.006-2.62-3.496-4.992-3.496-2.353 0-4.2 1.474-5.002 3.523l-.383.98-.8-.681C3.661 17.742 2.25 15.039 2.25 12c0-2.71 1.087-5.09 2.804-6.914l.008-.008.008-.008Z", "key": "eb585ecdb22288f9c3d4d553e560a36af212a22e" }], ["path", { "fill": "currentColor", "d": "M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "c5fa182fcad0979d64dc16d87c57e2ca50a9db16" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "4c7d2b84fd1429f17449f0e02b0d8487d0087ea9" }]]);
const UserCircleBlock = createMeisterIcons("user-circle-block", [["path", { "fill": "currentColor", "d": "M16.055 4.055c.928-.927 2.26-1.065 3.255-.476l-3.717 3.717c-.618-1.066-.45-2.393.442-3.221l.01-.01.01-.01Zm3.82 3.86c-.834.898-2.215 1.05-3.233.454l3.715-3.715c.618 1.066.45 2.393-.442 3.221l-.02.02-.02.02Zm1.09-4.91c-1.605-1.718-4.282-1.689-5.96-.02-1.718 1.605-1.689 4.282-.02 5.96 1.592 1.703 4.374 1.707 5.97.01 1.708-1.606 1.675-4.275.01-5.95Zm-17.69 9.52a8.213 8.213 0 0 1 8.25-8.25.75.75 0 0 0 0-1.5 9.713 9.713 0 0 0-9.75 9.75 9.713 9.713 0 0 0 9.75 9.75 9.713 9.713 0 0 0 9.75-9.75.75.75 0 0 0-1.5 0c0 2.27-.898 4.314-2.36 5.8a6.723 6.723 0 0 0-3.358-3.034 3.75 3.75 0 1 0-5.119-.051c-1.46.576-2.637 1.645-3.41 2.973a8.226 8.226 0 0 1-2.253-5.688Zm3.409 6.698a8.242 8.242 0 0 0 4.841 1.552 8.245 8.245 0 0 0 4.709-1.458c-.814-1.773-2.62-3.042-4.809-3.042-2.127 0-3.84 1.204-4.741 2.948Zm4.84-8.948a2.25 2.25 0 1 0 .001 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "456c0bfbe685241c13cf9cbdfc8edaa094586571" }]]);
const UserCircleBlockB = createMeisterIcons("user-circle-block-b", [["path", { "fill": "currentColor", "d": "M19.895 4.055c-.995-1.067-2.709-1.096-3.83.02l-.01.01-.01.009c-1.072.99-1.101 2.695.02 3.81l.01.01.01.01c1.005 1.078 2.804 1.078 3.81 0l.019-.02.02-.019c1.072-.99 1.101-2.695-.02-3.81l-.01-.01-.01-.01Zm1.092-1.029c-1.61-1.713-4.292-1.684-5.975-.02-1.722 1.602-1.693 4.272-.02 5.947 1.596 1.698 4.385 1.702 5.985.01 1.712-1.602 1.68-4.265.01-5.937Z", "key": "068b4ffe085373e3dd23cd3c7c26bc8499b57df9" }], ["path", { "fill": "currentColor", "d": "m15.002 7.905 4.912-4.888 1.063 1.058-4.912 4.888-1.063-1.058ZM5.648 6.66C7.11 5.21 9.22 4.294 11.524 4.294a.75.75 0 0 0 .752-.748.75.75 0 0 0-.752-.749c-2.705 0-5.202 1.077-6.947 2.813l-.008.008-.008.009C2.84 7.447 1.75 9.819 1.75 12.524c0 2.692 1.081 5.177 2.827 6.913l.009.01c.2.198.444.442.807.682a.754.754 0 0 0 1.042-.207.746.746 0 0 0-.208-1.038 3.636 3.636 0 0 1-.587-.505c-1.463-1.455-2.386-3.56-2.386-5.855 0-2.28.912-4.293 2.394-5.864Zm14.898 5.116a.75.75 0 0 1 .752.748c0 3.021-1.409 5.837-3.705 7.578a.754.754 0 0 1-1.053-.142.746.746 0 0 1 .142-1.049c1.914-1.451 3.112-3.823 3.112-6.387a.75.75 0 0 1 .752-.748Z", "key": "af641dbaf9f7709c0c942ffca8c17dbba21e129f" }], ["path", { "fill": "currentColor", "d": "M11.524 15.516a3 3 0 0 0 3.007-2.992 3 3 0 0 0-3.007-2.993 3 3 0 0 0-3.008 2.993 3 3 0 0 0 3.008 2.992Z", "key": "657410d3990455d5046748c59d34cd7d86587bbe" }], ["path", { "fill": "currentColor", "d": "M11.524 10.28a2.25 2.25 0 0 0-2.256 2.244 2.25 2.25 0 0 0 2.256 2.244 2.25 2.25 0 0 0 2.255-2.244 2.25 2.25 0 0 0-2.255-2.245Zm-3.76 2.244a3.75 3.75 0 0 1 3.76-3.741 3.75 3.75 0 0 1 3.759 3.74 3.75 3.75 0 0 1-3.76 3.742 3.75 3.75 0 0 1-3.758-3.741Z", "key": "b919979d2bfd7934e1d9971a0b39e3a91178d4f7" }], ["path", { "fill": "currentColor", "d": "M17.138 19.507c-1.504 1.296-3.51 1.995-5.715 1.995s-4.11-.798-5.713-1.995c.802-2.295 3.007-3.99 5.714-3.99 2.706 0 4.912 1.596 5.714 3.99Z", "key": "3bca4757403d26b95448266577a115a59e1d62c5" }], ["path", { "fill": "currentColor", "d": "M6.63 19.24c1.394.93 2.989 1.514 4.794 1.514 1.847 0 3.513-.528 4.814-1.488-.813-1.813-2.61-3.001-4.814-3.001-2.17 0-3.964 1.237-4.793 2.975ZM5 19.26c.904-2.586 3.388-4.492 6.424-4.492 3.02 0 5.52 1.793 6.427 4.502l.159.474-.38.328c-1.656 1.428-3.842 2.178-6.206 2.178-2.4 0-4.459-.871-6.165-2.145l-.44-.328.18-.516Z", "key": "2bad7c5ffadeed41811e7d1089be696139453cff" }]]);
const UserCircleCheck = createMeisterIcons("user-circle-check", [["path", { "fill": "currentColor", "d": "M3.75 12A8.213 8.213 0 0 1 12 3.75a.75.75 0 0 0 0-1.5A9.713 9.713 0 0 0 2.25 12 9.713 9.713 0 0 0 12 21.75 9.713 9.713 0 0 0 21.75 12a.75.75 0 0 0-1.5 0c0 2.27-.898 4.314-2.36 5.8a6.76 6.76 0 0 0-3.348-3.043 3.75 3.75 0 1 0-5.085 0 6.76 6.76 0 0 0-3.347 3.042A8.224 8.224 0 0 1 3.75 12ZM12 15.75c2.09 0 3.893 1.264 4.709 3.042A8.245 8.245 0 0 1 12 20.25a8.245 8.245 0 0 1-4.709-1.458C8.107 17.013 9.91 15.75 12 15.75ZM9.75 12a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm11.774-7.463a.75.75 0 0 0-1.048-1.074l-3.72 3.63L15.6 5.55a.75.75 0 1 0-1.2.9l1.532 2.043.038.037c.222.223.506.295.73.295.222 0 .504-.071.726-.29l4.098-3.998Z", "key": "07770187accede1f6b46a755e2b721fa4e63d14f" }]]);
const UserCircleCheckB = createMeisterIcons("user-circle-check-b", [["path", { "fill": "currentColor", "d": "M6.052 5.921c1.46-1.454 3.565-2.372 5.862-2.372a.75.75 0 0 0 0-1.5c-2.698 0-5.19 1.078-6.93 2.82l-.008.007-.008.009c-1.717 1.824-2.804 4.203-2.804 6.914 0 2.698 1.079 5.19 2.82 6.93l.01.01c.198.199.442.442.804.684a.75.75 0 1 0 .832-1.248 3.639 3.639 0 0 1-.586-.507c-1.459-1.459-2.38-3.568-2.38-5.87 0-2.284.91-4.302 2.388-5.877Zm14.862 5.128a.75.75 0 0 1 .75.75c0 3.029-1.405 5.851-3.695 7.596a.75.75 0 0 1-.91-1.193c1.91-1.455 3.105-3.832 3.105-6.403a.75.75 0 0 1 .75-.75Z", "key": "08c6924d4a8b43e31793efb49b0d10a3ea56e293" }], ["path", { "fill": "currentColor", "d": "M11.914 14.799a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "5fbc17cd208598a27b3845d5bb6e8c5a9912891c" }], ["path", { "fill": "currentColor", "d": "M11.914 9.549a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm-3.75 2.25a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "7ebbb14edeb949b72219d1bfebb52e02fe81fc07" }], ["path", { "fill": "currentColor", "d": "M17.514 18.799c-1.5 1.3-3.5 2-5.7 2s-4.1-.8-5.7-2c.8-2.3 3-4 5.7-4s4.9 1.6 5.7 4Z", "key": "4e7e326c155dd4f43ab6b4b47fe50c8104881b3d" }], ["path", { "fill": "currentColor", "d": "M7.033 18.532c1.39.931 2.98 1.517 4.781 1.517 1.843 0 3.505-.529 4.803-1.491-.812-1.818-2.603-3.01-4.803-3.01-2.165 0-3.954 1.241-4.781 2.984Zm-1.627.02c.902-2.593 3.38-4.503 6.408-4.503 3.013 0 5.506 1.797 6.412 4.512l.158.476-.379.328c-1.652 1.432-3.832 2.184-6.19 2.184-2.395 0-4.449-.874-6.15-2.15l-.44-.33.18-.517ZM21.45 3.275a.75.75 0 0 1-.012 1.06L17.34 8.334c-.222.22-.503.29-.726.29-.224 0-.508-.071-.73-.294l-.038-.038-1.532-2.042a.75.75 0 1 1 1.2-.9l1.157 1.542 3.72-3.63a.75.75 0 0 1 1.06.014Z", "key": "1a6b6e5941a89aa7ef9d59373dde6766844e90d7" }]]);
const UserCircleCode = createMeisterIcons("user-circle-code", [["path", { "fill": "currentColor", "d": "M11.787 3.75A8.213 8.213 0 0 0 3.537 12c0 2.27.898 4.314 2.36 5.8a6.76 6.76 0 0 1 3.348-3.043 3.75 3.75 0 1 1 5.085 0 6.76 6.76 0 0 1 3.347 3.042A8.224 8.224 0 0 0 20.037 12a.75.75 0 0 1 1.5 0 9.713 9.713 0 0 1-9.75 9.75A9.713 9.713 0 0 1 2.037 12a9.713 9.713 0 0 1 9.75-9.75.75.75 0 1 1 0 1.5Zm4.71 15.042c-.816-1.779-2.619-3.042-4.71-3.042-2.09 0-3.893 1.264-4.708 3.042a8.245 8.245 0 0 0 4.708 1.458 8.245 8.245 0 0 0 4.71-1.458Zm-4.71-9.042a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm7.27-6.28a.75.75 0 0 1 1.06 0l1.4 1.4c.271.27.445.63.445 1.03s-.174.76-.444 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.369-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64 1.16a.75.75 0 1 0-1.06-1.06l-1.4 1.4c-.27.27-.445.63-.445 1.03s.175.76.445 1.03l1.4 1.4a.75.75 0 0 0 1.06-1.06L15.049 6l1.37-1.37Z", "key": "35b0c8c21845be8f7ecba42759e94fe9842f2750" }]]);
const UserCircleCodeB = createMeisterIcons("user-circle-code-b", [["path", { "fill": "currentColor", "d": "M5.653 6.122C7.117 4.668 9.231 3.75 11.537 3.75a.751.751 0 0 0 .752-.75.751.751 0 0 0-.752-.75c-2.709 0-5.21 1.079-6.957 2.82l-.008.008-.008.008C2.841 6.91 1.75 9.289 1.75 12c0 2.698 1.083 5.19 2.83 6.93l.01.01c.2.199.444.443.808.684a.754.754 0 0 0 1.044-.208.748.748 0 0 0-.21-1.04 3.648 3.648 0 0 1-.587-.506c-1.465-1.46-2.39-3.568-2.39-5.87 0-2.285.914-4.303 2.398-5.878ZM20.57 11.25c.416 0 .753.336.753.75 0 3.029-1.41 5.852-3.709 7.597a.755.755 0 0 1-1.055-.143.748.748 0 0 1 .142-1.05c1.918-1.456 3.117-3.833 3.117-6.404 0-.414.337-.75.753-.75Z", "key": "16c860523266a03a04acd6b2279383dfd627c92c" }], ["path", { "fill": "currentColor", "d": "M11.537 15a3.006 3.006 0 0 0 3.011-3c0-1.657-1.348-3-3.011-3a3.006 3.006 0 0 0-3.012 3c0 1.657 1.349 3 3.012 3Z", "key": "5227fac6fa24bdac54b83df3390d63050f32e0bb" }], ["path", { "fill": "currentColor", "d": "M11.537 9.75A2.254 2.254 0 0 0 9.278 12a2.254 2.254 0 0 0 2.259 2.25A2.254 2.254 0 0 0 13.795 12a2.254 2.254 0 0 0-2.258-2.25ZM7.773 12a3.757 3.757 0 0 1 3.764-3.75A3.757 3.757 0 0 1 15.3 12a3.757 3.757 0 0 1-3.764 3.75A3.757 3.757 0 0 1 7.773 12Z", "key": "d2657fdc4947a66cb60147251a7a17a5b8a3b839" }], ["path", { "fill": "currentColor", "d": "M17.158 19c-1.506 1.3-3.513 2-5.722 2-2.208 0-4.115-.8-5.721-2 .803-2.3 3.011-4 5.721-4s4.919 1.6 5.722 4Z", "key": "dd92a5f2ad59f09d71e1358ce5340080ad7b0d3e" }], ["path", { "fill": "currentColor", "d": "M6.637 18.733c1.395.932 2.992 1.517 4.8 1.517 1.85 0 3.518-.529 4.82-1.491-.815-1.818-2.613-3.01-4.82-3.01-2.174 0-3.97 1.242-4.8 2.984Zm-1.633.02c.905-2.593 3.393-4.503 6.432-4.503 3.025 0 5.527 1.797 6.436 4.513l.16.475-.381.329c-1.658 1.431-3.847 2.183-6.215 2.183-2.402 0-4.464-.873-6.173-2.15l-.44-.329.18-.518ZM18.852 3.452a.755.755 0 0 1 1.064.036l1.398 1.492c.266.27.436.624.436 1.02 0 .4-.175.76-.446 1.03l-1.406 1.4a.755.755 0 0 1-1.064 0 .748.748 0 0 1 0-1.06L20.209 6l-1.393-1.488a.748.748 0 0 1 .036-1.06Zm-2.667.118a.748.748 0 0 1 0 1.06L14.81 6l1.374 1.37a.748.748 0 0 1 0 1.06.755.755 0 0 1-1.064 0l-1.405-1.4A1.453 1.453 0 0 1 13.268 6c0-.4.175-.76.446-1.03l1.406-1.4a.755.755 0 0 1 1.065 0Z", "key": "c389555e2396652f6385f7e1bcdbdf43e49898eb" }]]);
const UserCircleCross = createMeisterIcons("user-circle-cross", [["path", { "fill": "currentColor", "d": "M21.58 2.37a.75.75 0 0 1 0 1.06l-1.62 1.62 1.62 1.62a.75.75 0 1 1-1.06 1.06L18.9 6.11l-1.62 1.62a.75.75 0 1 1-1.06-1.06l1.62-1.62-1.62-1.62a.75.75 0 0 1 1.06-1.06l1.62 1.62 1.62-1.62a.75.75 0 0 1 1.06 0Zm-9.63 1.48A8.213 8.213 0 0 0 3.7 12.1c0 2.214.854 4.213 2.253 5.688.773-1.328 1.95-2.397 3.41-2.973a3.75 3.75 0 1 1 5.119.051A6.723 6.723 0 0 1 17.84 17.9a8.224 8.224 0 0 0 2.36-5.8.75.75 0 1 1 1.5 0 9.713 9.713 0 0 1-9.75 9.75A9.713 9.713 0 0 1 2.2 12.1a9.713 9.713 0 0 1 9.75-9.75.75.75 0 0 1 0 1.5Zm4.709 15.042c-.814-1.773-2.62-3.042-4.81-3.042-2.126 0-3.839 1.204-4.74 2.948a8.242 8.242 0 0 0 4.841 1.552 8.245 8.245 0 0 0 4.709-1.458Zm-4.71-9.042a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "a672ba66ebb723953576ce4a666024f04754709f" }]]);
const UserCircleCrossB = createMeisterIcons("user-circle-cross-b", [["path", { "fill": "currentColor", "d": "M6.088 6.172C7.548 4.718 9.653 3.8 11.95 3.8a.75.75 0 0 0 0-1.5c-2.699 0-5.19 1.079-6.93 2.82l-.008.008-.008.008C3.287 6.96 2.2 9.339 2.2 12.05c0 2.699 1.079 5.19 2.82 6.93l.01.01c.198.199.442.443.804.684a.75.75 0 1 0 .832-1.248 3.628 3.628 0 0 1-.586-.506c-1.459-1.46-2.38-3.57-2.38-5.87 0-2.285.91-4.303 2.388-5.878ZM20.95 11.3a.75.75 0 0 1 .75.75c0 3.042-1.415 5.75-3.678 7.583a.75.75 0 0 1-.944-1.166C19.015 16.9 20.2 14.608 20.2 12.05a.75.75 0 0 1 .75-.75Z", "key": "c1dbf3432f0afe0c01644d8c4df675593eec9335" }], ["path", { "fill": "currentColor", "d": "M11.95 15.05a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "790db843f3fde70fe20c7bd5ae15f8500870b5f2" }], ["path", { "fill": "currentColor", "d": "M11.95 9.8a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.2 12.05a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "ab8ae6f824910c3a1cdf645fa272e5dce69235d8" }], ["path", { "fill": "currentColor", "d": "M17.55 19.05c-1.5 1.3-3.5 2-5.7 2s-4.1-.8-5.7-2c.8-2.3 3-4 5.7-4s4.9 1.6 5.7 4Z", "key": "d9653b6df9e130e95ddd5bf0cabd9ce84ba34198" }], ["path", { "fill": "currentColor", "d": "M7.069 18.783c1.39.932 2.98 1.517 4.781 1.517 1.843 0 3.505-.529 4.803-1.491-.812-1.818-2.603-3.009-4.803-3.009-2.165 0-3.954 1.24-4.781 2.983Zm-1.627.02c.902-2.593 3.38-4.503 6.408-4.503 3.013 0 5.506 1.797 6.412 4.513l.158.475-.379.329C16.39 21.048 14.21 21.8 11.85 21.8c-2.394 0-4.448-.873-6.15-2.15l-.438-.329.18-.517ZM21.587 2.426a.75.75 0 0 1-.013 1.06l-4.3 4.2a.75.75 0 1 1-1.048-1.073l4.3-4.2a.75.75 0 0 1 1.06.013Z", "key": "e4dd329aeb67b819a089d158e62a2e20e1032308" }], ["path", { "fill": "currentColor", "d": "M16.214 2.426a.75.75 0 0 1 1.06-.013l4.3 4.2a.75.75 0 0 1-1.048 1.074l-4.3-4.2a.75.75 0 0 1-.012-1.061Z", "key": "2c1cbcb54f645d23b923a7333ae85b6332bbc54d" }]]);
const UserCircleHeart = createMeisterIcons("user-circle-heart", [["path", { "fill": "currentColor", "d": "M16.751 4.03a.887.887 0 0 0-.663.284c-.304.312-.304.947 0 1.258l2 2.051 1.702-1.746.159-.163c.24-.34.316-.569.316-.72 0-.21-.021-.336-.052-.418a.4.4 0 0 0-.146-.191l-.042-.033-.037-.038c-.304-.312-.923-.312-1.227 0l-.926.95-.478-.979c-.279-.193-.473-.256-.606-.256Zm1.317-1.088c-.38-.243-.824-.436-1.317-.436-.712 0-1.292.3-1.713.731-.883.907-.883 2.506 0 3.412l2.038 2.09c.239.32.595.494.974.494.392 0 .746-.182 1.008-.451l2.017-2.07.032-.043c.329-.45.643-1.02.643-1.675 0-.603-.12-1.286-.75-1.795-.778-.76-2.044-.845-2.932-.257Zm-.08 4.78h.001-.001Z", "key": "771c729674995252abe4e3f031c558a24a6f1841" }], ["path", { "fill": "currentColor", "d": "M11.901 3.623c-4.54 0-8.166 3.72-8.166 8.377 0 4.656 3.627 8.377 8.166 8.377 4.54 0 8.166-3.72 8.166-8.377 0-.42.333-.761.743-.761s.742.34.742.761c0 5.497-4.292 9.9-9.651 9.9-5.36 0-9.651-4.402-9.651-9.9 0-5.497 4.292-9.9 9.651-9.9.41 0 .742.341.742.762 0 .42-.332.761-.742.761Z", "key": "ff473f73b5aa26d782c21c1de66e3286f43a5740" }], ["path", { "fill": "currentColor", "d": "M11.901 9.715c-1.23 0-2.227 1.023-2.227 2.285 0 1.262.997 2.285 2.227 2.285s2.227-1.023 2.227-2.285c0-1.262-.997-2.285-2.227-2.285ZM8.189 12c0-2.103 1.662-3.808 3.712-3.808 2.05 0 3.712 1.705 3.712 3.808 0 2.103-1.662 3.808-3.712 3.808-2.05 0-3.712-1.705-3.712-3.808Z", "key": "0a8793b94b64d7dc4e5281749b9a876aab998a22" }], ["path", { "fill": "currentColor", "d": "M5.568 18.83c.99-2.597 3.423-4.545 6.333-4.545 2.905 0 5.354 1.947 6.244 4.573l-1.402.5c-.693-2.045-2.6-3.55-4.842-3.55-2.237 0-4.16 1.503-4.95 3.577l-1.383-.555Z", "key": "5b6f025f5faaa85b4b4ad88836ac83908922eef4" }]]);
const UserCircleHeartB = createMeisterIcons("user-circle-heart-b", [["path", { "fill": "currentColor", "d": "M16.751 4.03a.887.887 0 0 0-.663.284c-.304.312-.304.947 0 1.258l2 2.051 1.702-1.746.159-.163c.24-.34.316-.569.316-.72 0-.21-.021-.336-.052-.418a.4.4 0 0 0-.146-.191l-.042-.033-.037-.038c-.304-.312-.923-.312-1.227 0l-.926.95-.478-.979c-.279-.193-.473-.256-.606-.256Zm1.317-1.088c-.38-.243-.824-.436-1.317-.436-.712 0-1.292.3-1.713.731-.883.907-.883 2.506 0 3.412l2.038 2.09c.239.32.595.494.974.494.392 0 .746-.182 1.008-.451l2.017-2.07.032-.043c.329-.45.643-1.02.643-1.675 0-.603-.12-1.286-.75-1.795-.778-.76-2.044-.845-2.932-.257Zm-.08 4.78h.001-.001ZM6.099 6.032C7.543 4.555 9.627 3.623 11.9 3.623c.41 0 .742-.34.742-.761A.752.752 0 0 0 11.9 2.1c-2.671 0-5.137 1.095-6.86 2.863l-.008.008-.008.009C3.326 6.832 2.25 9.247 2.25 12c0 2.74 1.068 5.27 2.791 7.037l.01.01c.196.202.438.45.796.694a.731.731 0 0 0 1.03-.21.774.774 0 0 0-.206-1.057 3.623 3.623 0 0 1-.58-.514C4.647 16.478 3.735 14.337 3.735 12c0-2.32.9-4.369 2.364-5.968Zm14.711 5.207c.41 0 .742.34.742.761 0 3.076-1.39 5.942-3.658 7.714a.73.73 0 0 1-1.04-.145.775.775 0 0 1 .14-1.067c1.89-1.477 3.073-3.891 3.073-6.502 0-.42.333-.761.743-.761Z", "key": "82d0e5929f3017a638e46f417ee10a66187db2b1" }], ["path", { "fill": "currentColor", "d": "M11.901 15.046c1.64 0 2.97-1.364 2.97-3.046 0-1.682-1.33-3.046-2.97-3.046-1.64 0-2.97 1.364-2.97 3.046 0 1.682 1.33 3.046 2.97 3.046Z", "key": "fc9c831d021bf56b855e60c34d7d0e4011e61853" }], ["path", { "fill": "currentColor", "d": "M11.901 9.715c-1.23 0-2.227 1.023-2.227 2.285 0 1.262.997 2.285 2.227 2.285s2.227-1.023 2.227-2.285c0-1.262-.997-2.285-2.227-2.285ZM8.189 12c0-2.103 1.662-3.808 3.712-3.808 2.05 0 3.712 1.705 3.712 3.808 0 2.103-1.662 3.808-3.712 3.808-2.05 0-3.712-1.705-3.712-3.808Z", "key": "8fa337c560b05876a57f2d4d84a95ea8ec1f398b" }], ["path", { "fill": "currentColor", "d": "M17.444 19.108c-1.485 1.32-3.464 2.03-5.543 2.03-2.178 0-4.058-.812-5.642-2.03.792-2.336 2.97-4.062 5.642-4.062 2.574 0 4.751 1.625 5.543 4.062Z", "key": "4e8343c09763d8a2ae8e60ac011152b73087b49e" }], ["path", { "fill": "currentColor", "d": "M7.168 18.837c1.376.946 2.95 1.54 4.733 1.54 1.731 0 3.369-.535 4.655-1.514-.805-1.851-2.575-3.055-4.655-3.055-2.143 0-3.914 1.26-4.733 3.029Zm-1.61.02c.893-2.633 3.346-4.572 6.343-4.572 2.89 0 5.354 1.832 6.247 4.582l.157.483-.375.333c-1.632 1.451-3.789 2.217-6.029 2.217-2.37 0-4.403-.887-6.088-2.183l-.434-.334.179-.525Z", "key": "1ffba5c0034a729c7eb39c00b7c4359eb767ae78" }]]);
const UserCross = createMeisterIcons("user-cross", [["path", { "fill": "currentColor", "d": "M9.85 3.65a3.95 3.95 0 1 0 0 7.9 3.95 3.95 0 0 0 0-7.9ZM4.4 7.6a5.45 5.45 0 1 1 10.9 0 5.45 5.45 0 0 1-10.9 0Z", "key": "56f3a0eacb9c472546e831895fd20f63fe3c08ff" }], ["path", { "fill": "currentColor", "d": "M8.35 13.05C5.964 13.05 4 15.014 4 17.4a2.94 2.94 0 0 0 2.95 2.95h5.9c1.66 0 2.96-1.341 3.05-2.969-.01-2.377-1.97-4.331-4.35-4.331h-3.2ZM2.5 17.4c0-3.214 2.636-5.85 5.85-5.85h3.2c3.214 0 5.85 2.636 5.85 5.85v.037c-.12 2.365-2.016 4.413-4.55 4.413h-5.9c-2.527 0-4.45-2.049-4.45-4.45Zm18.78-8.73a.75.75 0 0 1 0 1.06l-3.5 3.5a.75.75 0 1 1-1.06-1.06l3.5-3.5a.75.75 0 0 1 1.06 0Z", "key": "105311d57908666824129474a325b81478908c88" }], ["path", { "fill": "currentColor", "d": "M16.72 8.67a.75.75 0 0 1 1.06 0l3.5 3.5a.75.75 0 1 1-1.06 1.06l-3.5-3.5a.75.75 0 0 1 0-1.06Z", "key": "476c7001fe8c9db27779566f2a004d1f0f8f9ab3" }]]);
const UserCrossB = createMeisterIcons("user-cross-b", [["path", { "fill": "currentColor", "d": "M9.839 12.302a4.724 4.724 0 1 0 0-9.449 4.724 4.724 0 0 0 0 9.449Z", "key": "5c85af7af7a66bdf31ed576915567a1b6039d3cf" }], ["path", { "fill": "currentColor", "d": "M9.839 3.608a3.97 3.97 0 1 0-.001 7.94 3.97 3.97 0 0 0 0-7.94ZM4.36 7.578a5.478 5.478 0 1 1 10.956 0 5.478 5.478 0 0 1-10.956 0Z", "key": "16f07b25a00fc0db34cbf4e74031f6ccc1dce657" }], ["path", { "fill": "currentColor", "d": "M12.855 21.146H6.922a3.71 3.71 0 0 1-3.719-3.719c0-2.814 2.312-5.125 5.127-5.125h3.217c2.814 0 5.126 2.311 5.126 5.125-.1 2.01-1.708 3.72-3.82 3.72Z", "key": "49621786b221f49c2745f80869581633955059a6" }], ["path", { "fill": "currentColor", "d": "M8.33 13.055c-2.398 0-4.372 1.975-4.372 4.372a2.957 2.957 0 0 0 2.965 2.965h5.932c1.668 0 2.974-1.348 3.066-2.984-.01-2.389-1.981-4.353-4.373-4.353H8.33Zm-5.88 4.372c0-3.23 2.65-5.88 5.88-5.88h3.218c3.23 0 5.88 2.65 5.88 5.88v.038c-.12 2.376-2.027 4.435-4.574 4.435h-5.93c-2.541 0-4.474-2.06-4.474-4.473Zm18.88-8.774a.754.754 0 0 1 0 1.066l-3.52 3.518a.754.754 0 0 1-1.065-1.066l3.518-3.518a.754.754 0 0 1 1.066 0Z", "key": "d956360f1c37c0ddae68255baf69abb151471d09" }], ["path", { "fill": "currentColor", "d": "M16.745 8.653a.754.754 0 0 1 1.066 0l3.518 3.518a.754.754 0 1 1-1.066 1.066l-3.519-3.518a.754.754 0 0 1 0-1.066Z", "key": "eee1df2f12b4f0581eee95fd13de3e5842d499ca" }]]);
const UserDownload = createMeisterIcons("user-download", [["path", { "fill": "currentColor", "d": "M9.6 3.608c-2.181 0-3.95 1.777-3.95 3.97 0 2.192 1.768 3.97 3.95 3.97 2.182 0 3.95-1.778 3.95-3.97 0-2.193-1.768-3.97-3.95-3.97Zm-5.45 3.97C4.15 4.552 6.59 2.1 9.6 2.1c3.01 0 5.45 2.452 5.45 5.478 0 3.025-2.44 5.477-5.45 5.477-3.01 0-5.45-2.452-5.45-5.477Z", "key": "1d106c9694a42ebeda1370051604e990f7c4054c" }], ["path", { "fill": "currentColor", "d": "M8.1 13.055c-2.386 0-4.35 1.975-4.35 4.372 0 1.608 1.277 2.965 2.95 2.965h5.9c1.66 0 2.96-1.348 3.05-2.984-.01-2.389-1.97-4.353-4.35-4.353H8.1Zm-5.85 4.372c0-3.23 2.636-5.88 5.85-5.88h3.2c3.214 0 5.85 2.65 5.85 5.88v.038c-.12 2.376-2.016 4.435-4.55 4.435H6.7c-2.527 0-4.45-2.06-4.45-4.473ZM19.1 4.512c.414 0 .75.338.75.754v4.12a.752.752 0 0 1-.75.755.752.752 0 0 1-.75-.754V5.266c0-.416.336-.754.75-.754Z", "key": "e50bcdec260410316793c756d27ff8e0e37e9748" }], ["path", { "fill": "currentColor", "d": "M16.57 7.547a.747.747 0 0 1 1.06 0l1.42 1.427 1.42-1.427a.747.747 0 0 1 1.06 0 .757.757 0 0 1 0 1.066l-1.7 1.709a1.038 1.038 0 0 1-.742.296c-.225 0-.44-.062-.623-.155l-.11-.055-1.785-1.795a.757.757 0 0 1 0-1.066Z", "key": "3700b563848b26b0ffc782f472fde2abcc423d72" }]]);
const UserDownloadB = createMeisterIcons("user-download-b", [["path", { "fill": "currentColor", "d": "M9.6 12.302c2.596 0 4.7-2.115 4.7-4.724 0-2.61-2.104-4.724-4.7-4.724S4.9 4.969 4.9 7.578s2.104 4.724 4.7 4.724Z", "key": "cff692ab671731d7e205cc614b2778a824df549b" }], ["path", { "fill": "currentColor", "d": "M9.6 3.608c-2.182 0-3.95 1.777-3.95 3.97 0 2.192 1.768 3.97 3.95 3.97 2.182 0 3.95-1.778 3.95-3.97 0-2.193-1.769-3.97-3.95-3.97Zm-5.45 3.97C4.15 4.552 6.59 2.1 9.6 2.1c3.01 0 5.45 2.452 5.45 5.478 0 3.025-2.44 5.477-5.45 5.477-3.01 0-5.45-2.452-5.45-5.477Z", "key": "0ebacf5975d03a7f3bd30cbc322b42d267557fd1" }], ["path", { "fill": "currentColor", "d": "M12.6 21.146H6.7c-2.1 0-3.7-1.708-3.7-3.719 0-2.814 2.3-5.125 5.1-5.125h3.2c2.8 0 5.1 2.311 5.1 5.125-.1 2.01-1.7 3.72-3.8 3.72Z", "key": "14fbec549be622413f638d4e7db1b9a289a43f27" }], ["path", { "fill": "currentColor", "d": "M8.1 13.055c-2.386 0-4.35 1.975-4.35 4.372 0 1.608 1.277 2.965 2.95 2.965h5.9c1.66 0 2.96-1.348 3.05-2.984-.01-2.389-1.97-4.353-4.35-4.353H8.1Zm-5.85 4.372c0-3.23 2.636-5.88 5.85-5.88h3.2c3.214 0 5.85 2.65 5.85 5.88v.038c-.12 2.376-2.016 4.435-4.55 4.435H6.7c-2.527 0-4.45-2.06-4.45-4.473ZM19.1 4.512c.414 0 .75.338.75.754v4.12a.752.752 0 0 1-.75.755.752.752 0 0 1-.75-.754V5.266c0-.416.336-.754.75-.754Z", "key": "89452ac8d2fd7669ba42959935a92f0a140c97db" }], ["path", { "fill": "currentColor", "d": "M16.57 7.547a.747.747 0 0 1 1.06 0l1.42 1.427 1.42-1.427a.747.747 0 0 1 1.06 0 .757.757 0 0 1 0 1.066l-1.7 1.709a1.038 1.038 0 0 1-.742.296c-.225 0-.44-.062-.623-.155l-.11-.055-1.785-1.795a.757.757 0 0 1 0-1.066Z", "key": "87501184d2f40d588e3603609b8c336959abe8b9" }]]);
const UserHeart = createMeisterIcons("user-heart", [["path", { "fill": "currentColor", "d": "M14.69 17.08c-.343.018-.623.147-.76.284l-.46.464-.52-.394c-.357-.27-.595-.353-.75-.353a.903.903 0 0 0-.67.283c-.307.31-.307.94 0 1.25l1.92 1.936 1.72-1.734.16-.162c.244-.337.32-.565.32-.715 0-.145-.019-.281-.057-.392a.432.432 0 0 0-.143-.213l-.043-.033-.037-.038c-.1-.1-.334-.201-.68-.183Zm-1.34 3.569v-.001Zm3.042-4.493c-.498-.475-1.193-.618-1.781-.587-.41.022-.847.131-1.23.343-.349-.198-.746-.344-1.181-.344-.72 0-1.305.297-1.73.726-.893.9-.893 2.49 0 3.39l.2.202 1.758 1.773c.241.317.601.491.984.491a1.44 1.44 0 0 0 1.018-.449l2.038-2.055.032-.043c.332-.447.65-1.014.65-1.664 0-.475-.11-1.263-.758-1.783ZM11.9 3.363c-2.182 0-3.95 1.784-3.95 3.984s1.768 3.985 3.95 3.985c2.182 0 3.95-1.784 3.95-3.985 0-2.2-1.768-3.984-3.95-3.984ZM6.45 7.347c0-3.036 2.44-5.497 5.45-5.497 3.01 0 5.45 2.461 5.45 5.497 0 3.037-2.44 5.498-5.45 5.498-3.01 0-5.45-2.461-5.45-5.498Z", "key": "90f37398e56404b3d62798d79f095a3ae33e93db" }], ["path", { "fill": "currentColor", "d": "M10.4 12.845c-2.386 0-4.35 1.981-4.35 4.388 0 1.613 1.277 2.975 2.95 2.975.414 0 .75.339.75.757a.753.753 0 0 1-.75.756c-2.527 0-4.45-2.067-4.45-4.488 0-3.243 2.636-5.901 5.85-5.901h3.2c3.214 0 5.85 2.658 5.85 5.9a.753.753 0 0 1-.75.757.753.753 0 0 1-.75-.756c0-2.407-1.964-4.388-4.35-4.388h-3.2Z", "key": "cb3d2bf639212eec4f2a5d17934d4d8659cf85d2" }]]);
const UserHeartB = createMeisterIcons("user-heart-b", [["path", { "fill": "currentColor", "d": "M14.69 17.08c-.343.018-.623.147-.76.284l-.46.464-.52-.394c-.357-.27-.595-.353-.75-.353a.903.903 0 0 0-.67.283c-.307.31-.307.94 0 1.25l1.92 1.936 1.72-1.734.16-.162c.244-.337.32-.565.32-.715 0-.145-.019-.281-.057-.392a.432.432 0 0 0-.143-.213l-.043-.033-.037-.038c-.1-.1-.334-.201-.68-.183Zm-1.34 3.569v-.001Zm3.042-4.493c-.498-.475-1.193-.618-1.781-.587-.41.022-.847.131-1.23.343-.349-.198-.746-.344-1.181-.344-.72 0-1.305.297-1.73.726-.893.9-.893 2.49 0 3.39l.2.202 1.758 1.773c.241.317.601.491.984.491a1.44 1.44 0 0 0 1.018-.449l2.038-2.055.032-.043c.332-.447.65-1.014.65-1.664 0-.475-.11-1.263-.758-1.783ZM11.9 12.088c2.596 0 4.7-2.122 4.7-4.74 0-2.619-2.104-4.741-4.7-4.741s-4.7 2.122-4.7 4.74c0 2.619 2.104 4.741 4.7 4.741Z", "key": "baf8263c44f36360a8759a07d93caa4048764e53" }], ["path", { "fill": "currentColor", "d": "M11.9 3.363c-2.182 0-3.95 1.784-3.95 3.984s1.768 3.985 3.95 3.985c2.182 0 3.95-1.784 3.95-3.985 0-2.2-1.768-3.984-3.95-3.984ZM6.45 7.347c0-3.036 2.44-5.497 5.45-5.497 3.01 0 5.45 2.461 5.45 5.497 0 3.037-2.44 5.498-5.45 5.498-3.01 0-5.45-2.461-5.45-5.498Z", "key": "6894df9c38a0abdf19c2aa8a587e502efcb127ef" }], ["path", { "fill": "currentColor", "d": "M10.4 12.845c-2.386 0-4.35 1.981-4.35 4.388 0 1.613 1.277 2.975 2.95 2.975.414 0 .75.339.75.757a.753.753 0 0 1-.75.756c-2.527 0-4.45-2.067-4.45-4.488 0-3.243 2.636-5.901 5.85-5.901h3.2c3.214 0 5.85 2.658 5.85 5.9a.753.753 0 0 1-.75.757.753.753 0 0 1-.75-.756c0-2.407-1.964-4.388-4.35-4.388h-3.2Z", "key": "3a132887db5fdd5ac6adb643c0614b90bb1fb58a" }]]);
const Users = createMeisterIcons("users", [["path", { "fill": "currentColor", "d": "M7.8 9.55a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm2.25-3.75a3.75 3.75 0 0 0-2.578 6.473c-2.123.841-3.746 2.727-4.16 5.045a.75.75 0 1 0 1.476.264C5.224 15.142 7.41 13.3 9.95 13.3s4.726 1.842 5.162 4.282a.75.75 0 1 0 1.476-.264 6.67 6.67 0 0 0-2.396-4.016c2.479.067 4.592 1.886 5.02 4.28a.75.75 0 1 0 1.476-.264c-.407-2.284-1.99-4.149-4.067-5.007A3.734 3.734 0 0 0 17.8 9.55c0-2.114-1.636-3.75-3.75-3.75-.74 0-1.425.208-1.993.582A3.732 3.732 0 0 0 10.05 5.8Zm4 6c-.323 0-.617-.064-.875-.176A3.732 3.732 0 0 0 13.8 9.55c0-.767-.23-1.48-.625-2.074.258-.113.552-.176.875-.176 1.286 0 2.25.964 2.25 2.25s-.964 2.25-2.25 2.25Z", "key": "e1195b416c097bc4a627fb1de7f32798da658c0d" }]]);
const UsersB = createMeisterIcons("users-b", [["path", { "fill": "currentColor", "d": "M13 9.55c0 .9-.4 1.7-1 2.2-.5.5-1.2.8-2 .8-1.7 0-3-1.3-3-3s1.3-3 3-3c.8 0 1.5.3 2 .8.7.5 1 1.3 1 2.2Z", "key": "84271cb9dd6bec52357d0edbea0436a10e531904" }], ["path", { "fill": "currentColor", "d": "M10 7.3c-1.286 0-2.25.964-2.25 2.25S8.714 11.8 10 11.8c.607 0 1.115-.226 1.47-.58l.024-.025.026-.021c.428-.357.73-.945.73-1.624 0-.737-.24-1.271-.686-1.59l-.05-.036-.044-.044c-.355-.355-.863-.58-1.47-.58ZM6.25 9.55C6.25 7.436 7.886 5.8 10 5.8c.97 0 1.845.358 2.486.976.916.683 1.264 1.73 1.264 2.774 0 1.108-.487 2.11-1.244 2.754-.643.63-1.526.996-2.506.996-2.114 0-3.75-1.636-3.75-3.75Z", "key": "87992e01b5389a434a6c3e2b9fc79fa31f2eeec3" }], ["path", { "fill": "currentColor", "d": "M3.362 17.318C3.926 14.158 6.74 11.8 10 11.8s6.074 2.357 6.638 5.518a.75.75 0 1 1-1.476.264C14.726 15.142 12.54 13.3 10 13.3s-4.726 1.842-5.162 4.282a.75.75 0 1 1-1.476-.264Z", "key": "81508b14a01837f46ade13e6e7e75850d0fbcee3" }], ["path", { "fill": "currentColor", "d": "M17 9.55c0 1.7-1.3 3-3 3-.8 0-1.5-.3-2-.8.6-.5 1-1.3 1-2.2 0-.9-.4-1.7-1-2.2.5-.5 1.2-.8 2-.8 1.7 0 3 1.3 3 3Z", "key": "71a0a41a27b51516fef4a8dabced02578d8ba780" }], ["path", { "fill": "currentColor", "d": "M13.118 7.48c.397.582.632 1.3.632 2.07 0 .77-.235 1.488-.632 2.07.26.115.557.18.882.18 1.286 0 2.25-.964 2.25-2.25S15.286 7.3 14 7.3a2.17 2.17 0 0 0-.882.18Zm-1.648-.66c.645-.645 1.537-1.02 2.53-1.02 2.114 0 3.75 1.636 3.75 3.75S16.114 13.3 14 13.3c-.993 0-1.885-.375-2.53-1.02l-.581-.58.63-.526c.429-.357.731-.945.731-1.624 0-.679-.302-1.267-.73-1.624l-.631-.526.58-.58Z", "key": "1a65e4c30efea96425497e13d9c796e73e39ab32" }], ["path", { "fill": "currentColor", "d": "M13.25 12.55a.75.75 0 0 1 .75-.75c3.26 0 6.074 2.357 6.638 5.518a.75.75 0 1 1-1.476.264C18.726 15.142 16.54 13.3 14 13.3a.75.75 0 0 1-.75-.75Z", "key": "81db87eef9f6da0d777c4f8ed3180faea24f54f7" }]]);
const UserSqaureBlock = createMeisterIcons("user-sqaure-block", [["path", { "fill": "currentColor", "d": "M16.33 4.43c.725-.724 1.75-.857 2.54-.46l-2.985 2.984c-.427-.853-.265-1.872.422-2.501l.012-.011.011-.012Zm3.14 3.14c-.62.62-1.634.776-2.49.41l2.935-2.934c.426.853.264 1.872-.422 2.501l-.012.011-.011.012Zm1.072-4.189c-1.408-1.521-3.784-1.487-5.26-.023-1.526 1.411-1.488 3.797-.012 5.272l.011.012.012.01c1.47 1.348 3.82 1.383 5.226-.01 1.521-1.407 1.487-3.784.023-5.26ZM9 2.25C5.286 2.25 2.25 5.286 2.25 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75v-2a.75.75 0 0 0-1.5 0v2c0 1.592-.72 3.025-1.849 3.99a6.66 6.66 0 0 0-3.863-4.23 3.75 3.75 0 1 0-5.124-.046A6.817 6.817 0 0 0 5.45 18.86 5.24 5.24 0 0 1 3.75 15V9c0-2.886 2.364-5.25 5.25-5.25h3a.75.75 0 0 0 0-1.5H9ZM6.752 19.74c.683.327 1.445.51 2.248.51h6c.734 0 1.435-.153 2.071-.429-.536-2.376-2.612-4.071-5.171-4.071a5.303 5.303 0 0 0-5.148 3.99ZM12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "9da66cc740609430399e6c4b8aef077d6c02ceb1" }]]);
const UserSqaureBlockB = createMeisterIcons("user-sqaure-block-b", [["path", { "fill": "currentColor", "d": "M19.447 4.407c-.79-.863-2.196-.897-3.117.023l-.011.012-.012.01c-.859.788-.897 2.185.012 3.106.927.838 2.36.803 3.15.012l.012-.012.012-.01c.863-.791.897-2.197-.023-3.118l-.012-.011-.01-.012Zm1.095-1.026c-1.408-1.521-3.784-1.487-5.26-.023-1.526 1.411-1.488 3.797-.012 5.272l.011.012.012.01c1.47 1.348 3.82 1.383 5.226-.01 1.521-1.407 1.487-3.784.023-5.26Z", "key": "5d366a39875248129cce3da45bb622fa8ed70426" }], ["path", { "fill": "currentColor", "d": "m15.27 7.57 4.3-4.3 1.06 1.06-4.3 4.3-1.06-1.06ZM21 12.25a.75.75 0 0 1 .75.75v2c0 2.473-1.35 4.731-3.5 5.864a.75.75 0 1 1-.7-1.328c1.65-.867 2.7-2.609 2.7-4.536v-2a.75.75 0 0 1 .75-.75ZM9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 1.932 1.056 3.679 2.614 4.544a.75.75 0 1 1-.728 1.312C3.594 19.72 2.25 17.468 2.25 15V9c0-3.714 3.036-6.75 6.75-6.75h3a.75.75 0 0 1 0 1.5H9Z", "key": "10fb6ef74b0772cf44b8baf10e865a17aa6462d1" }], ["path", { "fill": "currentColor", "d": "M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "556597adaa1e2bfdcf07c12e0d5b1ad3e6e6a79e" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "fa76766b254de2da625627993d05d0d62bc53424" }], ["path", { "fill": "currentColor", "d": "M17.9 20.2c-.9.5-1.9.8-2.9.8H9c-1.1 0-2.1-.3-2.9-.8.4-3 2.9-5.2 5.9-5.2 3 0 5.5 2.2 5.9 5.2Z", "key": "38b778146c1f408a0367b4e801306cf12f30990b" }], ["path", { "fill": "currentColor", "d": "M6.933 19.802A4.837 4.837 0 0 0 9 20.25h6c.688 0 1.391-.167 2.062-.468A5.178 5.178 0 0 0 12 15.75a5.179 5.179 0 0 0-5.067 4.052Zm-1.576.299C5.806 16.732 8.62 14.25 12 14.25s6.194 2.482 6.643 5.85l.068.507-.447.249c-.991.55-2.115.894-3.264.894H9c-1.236 0-2.374-.337-3.297-.914l-.41-.256.064-.48Z", "key": "9404f1032ef0f36981e865c3ed51ad3511cc6de3" }]]);
const UserSqaureCheck = createMeisterIcons("user-sqaure-check", [["path", { "fill": "currentColor", "d": "M8.5 2.25C4.786 2.25 1.75 5.286 1.75 9v6c0 3.714 3.036 6.75 6.75 6.75h6c3.714 0 6.75-3.036 6.75-6.75v-4a.75.75 0 0 0-1.5 0v4c0 1.595-.722 3.03-1.855 3.996a6.816 6.816 0 0 0-3.87-4.224 3.75 3.75 0 1 0-5.113-.056 6.817 6.817 0 0 0-3.962 4.142A5.24 5.24 0 0 1 3.25 15V9c0-2.886 2.364-5.25 5.25-5.25h6a.75.75 0 0 0 0-1.5h-6Zm2.9 13.5a5.302 5.302 0 0 1 5.168 4.073 5.197 5.197 0 0 1-2.068.427h-6a5.198 5.198 0 0 1-2.248-.51 5.303 5.303 0 0 1 5.148-3.99ZM9.25 12a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0Zm12.774-7.463a.75.75 0 0 0-1.048-1.074l-3.72 3.63L16.1 5.55a.75.75 0 1 0-1.2.9l1.532 2.043.038.037c.222.223.506.295.73.295.222 0 .504-.071.726-.29l4.098-3.998Z", "key": "3772f51470e36db4efcf15e451a5917503de1c8f" }]]);
const UserSqaureCheckB = createMeisterIcons("user-sqaure-check-b", [["path", { "fill": "currentColor", "d": "M20.5 10.25a.75.75 0 0 1 .75.75v4c0 2.473-1.35 4.731-3.5 5.864a.75.75 0 1 1-.7-1.328c1.65-.867 2.7-2.609 2.7-4.536v-4a.75.75 0 0 1 .75-.75Zm-12-6.5C5.614 3.75 3.25 6.114 3.25 9v6c0 1.932 1.056 3.679 2.614 4.544a.75.75 0 1 1-.728 1.312C3.094 19.72 1.75 17.468 1.75 15V9c0-3.714 3.036-6.75 6.75-6.75h6a.75.75 0 0 1 0 1.5h-6Z", "key": "f66db64c4902adaaf38a6efc047560fda63595bf" }], ["path", { "fill": "currentColor", "d": "M11.5 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "302c2b22c5188c6f7e9b940946abf4fa49a5a53b" }], ["path", { "fill": "currentColor", "d": "M11.5 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM7.75 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "10a83eee414a074f52b8dd503c9353d4a6aa7476" }], ["path", { "fill": "currentColor", "d": "M17.4 20.2c-.9.5-1.9.8-2.9.8h-6c-1.1 0-2.1-.3-2.9-.8.4-3 2.9-5.2 5.9-5.2 3 0 5.5 2.2 5.9 5.2Z", "key": "7bed8c82ea3ebe1b47a0ae7af0f3b154993ccad4" }], ["path", { "fill": "currentColor", "d": "M6.433 19.802a4.837 4.837 0 0 0 2.067.448h6c.688 0 1.391-.167 2.062-.468A5.178 5.178 0 0 0 11.5 15.75a5.179 5.179 0 0 0-5.067 4.052Zm-1.576.299c.449-3.369 3.263-5.851 6.643-5.851s6.194 2.482 6.643 5.85l.068.507-.447.249c-.991.55-2.115.894-3.264.894h-6c-1.236 0-2.374-.337-3.297-.914l-.41-.256.064-.48Zm17.18-16.625a.75.75 0 0 1-.013 1.06l-4.098 3.999c-.222.219-.504.29-.726.29a1.03 1.03 0 0 1-.73-.295l-.038-.037L14.9 6.45a.75.75 0 0 1 1.2-.9l1.157 1.542 3.72-3.629a.75.75 0 0 1 1.06.013Z", "key": "e4eaa4882724f69b34a296cf09cb420e8c2fab25" }]]);
const UserSqaureCode = createMeisterIcons("user-sqaure-code", [["path", { "fill": "currentColor", "d": "M2.037 9c0-3.714 3.036-6.75 6.75-6.75h2a.75.75 0 1 1 0 1.5h-2c-2.885 0-5.25 2.364-5.25 5.25v6a5.24 5.24 0 0 0 1.7 3.858 6.817 6.817 0 0 1 3.964-4.143 3.75 3.75 0 1 1 5.124.046 6.66 6.66 0 0 1 3.864 4.229A5.244 5.244 0 0 0 20.037 15v-3a.75.75 0 0 1 1.5 0v3c0 3.714-3.035 6.75-6.75 6.75h-6c-3.714 0-6.75-3.036-6.75-6.75V9ZM16.86 19.821c-.536-2.376-2.612-4.071-5.172-4.071a5.303 5.303 0 0 0-5.147 3.99c.682.327 1.445.51 2.247.51h6c.735 0 1.435-.153 2.072-.429ZM11.787 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm7.27-6.28a.75.75 0 0 1 1.06 0l1.4 1.4c.271.27.446.63.446 1.03s-.175.76-.445 1.03l-1.4 1.4a.75.75 0 0 1-1.06-1.06l1.369-1.37-1.37-1.37a.75.75 0 0 1 0-1.06Zm-2.64 1.16a.75.75 0 1 0-1.06-1.06l-1.4 1.4c-.27.27-.445.63-.445 1.03s.175.76.445 1.03l1.4 1.4a.75.75 0 0 0 1.06-1.06L15.049 6l1.37-1.37Z", "key": "d5bf2568d245af74b8957a5ea4d60b1d0a76df0e" }]]);
const UserSqaureCodeB = createMeisterIcons("user-sqaure-code-b", [["path", { "fill": "currentColor", "d": "M20.82 11.27c.416 0 .753.326.753.73v2.923c0 2.41-1.354 4.61-3.514 5.713a.764.764 0 0 1-1.016-.306.72.72 0 0 1 .315-.987 4.96 4.96 0 0 0 2.71-4.42V12c0-.404.337-.73.753-.73ZM8.775 3.962c-2.896 0-5.27 2.303-5.27 5.115v5.846a5.06 5.06 0 0 0 2.625 4.428.72.72 0 0 1 .292.994.765.765 0 0 1-1.023.284A6.515 6.515 0 0 1 2 14.923V9.077C2 5.458 5.047 2.5 8.775 2.5h2.008c.416 0 .753.327.753.73a.743.743 0 0 1-.753.732H8.775Z", "key": "d0384d7d0808453410be2b7dfefd86e258a70303" }], ["path", { "fill": "currentColor", "d": "M11.787 14.923c1.663 0 3.01-1.309 3.01-2.923s-1.347-2.923-3.01-2.923c-1.664 0-3.012 1.309-3.012 2.923s1.348 2.923 3.012 2.923Z", "key": "29889db655192d57c417c4106e29cb9edc99135e" }], ["path", { "fill": "currentColor", "d": "M11.787 9.808c-1.248 0-2.259.981-2.259 2.192 0 1.21 1.011 2.192 2.259 2.192 1.247 0 2.258-.981 2.258-2.192 0-1.21-1.011-2.192-2.258-2.192ZM8.023 12c0-2.018 1.685-3.654 3.764-3.654 2.079 0 3.764 1.636 3.764 3.654s-1.685 3.654-3.764 3.654c-2.08 0-3.764-1.636-3.764-3.654Z", "key": "245211aff1f97b15d55b754c4dff4bf511c774a7" }], ["path", { "fill": "currentColor", "d": "M17.709 19.99c-.904.487-1.907.78-2.911.78H8.775c-1.104 0-2.108-.293-2.91-.78.4-2.923 2.91-5.067 5.922-5.067 3.01 0 5.52 2.144 5.922 5.067Z", "key": "3214b2d653908ff57333b775ba665d465c14d3c2" }], ["path", { "fill": "currentColor", "d": "M6.7 19.602a4.98 4.98 0 0 0 2.075.436h6.023a5.22 5.22 0 0 0 2.07-.456c-.552-2.3-2.627-3.928-5.081-3.928-2.461 0-4.54 1.636-5.086 3.948Zm-1.582.291c.451-3.282 3.276-5.7 6.669-5.7 3.392 0 6.217 2.418 6.668 5.7l.068.494-.448.241c-.996.537-2.124.872-3.277.872H8.775c-1.24 0-2.383-.328-3.31-.89l-.41-.25.063-.467ZM19.102 3.67a.769.769 0 0 1 1.064.037l1.398 1.453c.266.263.436.608.436.994 0 .39-.175.74-.446 1.004l-1.406 1.364a.769.769 0 0 1-1.064 0 .716.716 0 0 1 0-1.034l1.375-1.335-1.393-1.45a.716.716 0 0 1 .036-1.032Zm-2.667.116a.716.716 0 0 1 0 1.033L15.06 6.154l1.374 1.334a.716.716 0 0 1 0 1.034.77.77 0 0 1-1.064 0l-1.405-1.364a1.399 1.399 0 0 1-.447-1.004c0-.39.175-.74.447-1.004l1.405-1.364a.77.77 0 0 1 1.065 0Z", "key": "2d004252f562063c394765d152b106edbb1990f6" }]]);
const UserSquare = createMeisterIcons("user-square", [["path", { "fill": "currentColor", "d": "M9 3.75C6.114 3.75 3.75 6.114 3.75 9v6a5.24 5.24 0 0 0 1.7 3.858 6.817 6.817 0 0 1 3.963-4.143 3.75 3.75 0 1 1 5.113.056 6.816 6.816 0 0 1 3.869 4.225A5.244 5.244 0 0 0 20.25 15V9c0-2.886-2.364-5.25-5.25-5.25H9Zm8.068 16.073A5.302 5.302 0 0 0 11.9 15.75a5.303 5.303 0 0 0-5.148 3.99c.683.327 1.445.51 2.248.51h6c.733 0 1.432-.152 2.068-.427ZM2.25 9c0-3.714 3.036-6.75 6.75-6.75h6c3.714 0 6.75 3.036 6.75 6.75v6c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Zm9.75.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Z", "key": "2c9802bd37aec9c1778d4d4867dcd1c3b6047342" }]]);
const UserSquareAdd = createMeisterIcons("user-square-add", [["path", { "fill": "currentColor", "d": "M2.25 9c0-3.714 3.036-6.75 6.75-6.75h6a.75.75 0 0 1 0 1.5H9C6.114 3.75 3.75 6.114 3.75 9v6a5.24 5.24 0 0 0 1.7 3.858 6.817 6.817 0 0 1 3.963-4.143 3.75 3.75 0 1 1 5.113.056 6.816 6.816 0 0 1 3.869 4.225A5.244 5.244 0 0 0 20.25 15v-4a.75.75 0 0 1 1.5 0v4c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Zm14.818 10.823A5.302 5.302 0 0 0 11.9 15.75a5.303 5.303 0 0 0-5.148 3.99c.683.327 1.445.51 2.248.51h6c.733 0 1.432-.152 2.068-.427ZM12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5Zm6-6.5a.75.75 0 0 1 .75.75v2.25H21a.75.75 0 0 1 0 1.5h-2.25V10a.75.75 0 0 1-1.5 0V7.75H15a.75.75 0 0 1 0-1.5h2.25V4a.75.75 0 0 1 .75-.75Z", "key": "3ee1c7c6218742a793436a4456a05a46516e24ae" }]]);
const UserSquareAddB = createMeisterIcons("user-square-add-b", [["path", { "fill": "currentColor", "d": "M21 10.25a.75.75 0 0 1 .75.75v4c0 2.473-1.35 4.731-3.5 5.864a.75.75 0 1 1-.7-1.328c1.65-.867 2.7-2.609 2.7-4.536v-4a.75.75 0 0 1 .75-.75ZM9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 1.932 1.056 3.679 2.614 4.544a.75.75 0 1 1-.728 1.312C3.594 19.72 2.25 17.468 2.25 15V9c0-3.714 3.036-6.75 6.75-6.75h6a.75.75 0 0 1 0 1.5H9Z", "key": "c7fe8bccc4af35f699034969c64c8e53525f1d40" }], ["path", { "fill": "currentColor", "d": "M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "743a18df662330c33cd76fe468b8fb8dd7b8ff39" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "cd85d249406f475464164f5ef55fed07065c16cc" }], ["path", { "fill": "currentColor", "d": "M17.9 20.2c-.9.5-1.9.8-2.9.8H9c-1.1 0-2.1-.3-2.9-.8.4-3 2.9-5.2 5.9-5.2 3 0 5.5 2.2 5.9 5.2Z", "key": "92290f02402aed87cbd93c528dfc3a783733c314" }], ["path", { "fill": "currentColor", "d": "M6.933 19.802A4.837 4.837 0 0 0 9 20.25h6c.688 0 1.391-.167 2.062-.468A5.178 5.178 0 0 0 12 15.75a5.179 5.179 0 0 0-5.067 4.052Zm-1.576.299C5.806 16.732 8.62 14.25 12 14.25s6.194 2.482 6.643 5.85l.068.507-.447.249c-.991.55-2.115.894-3.264.894H9c-1.236 0-2.374-.337-3.297-.914l-.41-.256.064-.48ZM18 3.25a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0V4a.75.75 0 0 1 .75-.75Z", "key": "eea61d47c917cf850b74177af13230b60dfc0a54" }], ["path", { "fill": "currentColor", "d": "M14.25 7a.75.75 0 0 1 .75-.75h6a.75.75 0 0 1 0 1.5h-6a.75.75 0 0 1-.75-.75Z", "key": "e8304559867833f792918d5d30ab047e68fe811b" }]]);
const UserSquareB = createMeisterIcons("user-square-b", [["path", { "fill": "currentColor", "d": "M17.92 20.2c-.896.5-1.89.8-2.886.8H9.065c-1.094 0-2.09-.3-2.885-.8.398-3 2.885-5.2 5.87-5.2 2.984 0 5.472 2.2 5.87 5.2Z", "key": "012e41dd75f65954439e499b8e5a0d26f148fd03" }], ["path", { "fill": "currentColor", "d": "M7.009 19.802a4.791 4.791 0 0 0 2.056.448h5.97c.684 0 1.383-.167 2.051-.468-.547-2.362-2.604-4.032-5.036-4.032-2.44 0-4.5 1.68-5.041 4.052ZM5.44 20.1c.447-3.369 3.247-5.851 6.61-5.851 3.362 0 6.162 2.482 6.61 5.85l.067.507-.445.249c-.986.55-2.105.894-3.248.894H9.065c-1.23 0-2.362-.337-3.28-.914l-.408-.256.063-.48Z", "key": "c48ba0002ffbe14cc0e87669d75d661ee41a7c57" }], ["path", { "fill": "currentColor", "d": "M8.966 3.75C6.095 3.75 3.742 6.114 3.742 9v6c0 1.544.74 2.99 1.855 3.951.881-2.778 3.498-4.701 6.453-4.701 2.975 0 5.51 1.943 6.364 4.724A5.153 5.153 0 0 0 20.258 15V9c0-2.97-2.336-5.25-5.323-5.25h-5.97ZM2.25 9c0-3.714 3.02-6.75 6.716-6.75h5.969c3.778 0 6.815 2.92 6.815 6.75v6c0 2.473-1.343 4.731-3.483 5.864l-.946.5-.141-1.065c-.35-2.631-2.524-4.549-5.13-4.549-2.622 0-4.883 1.933-5.23 4.55l-.145 1.09-.957-.534C3.708 19.733 2.25 17.49 2.25 15V9Z", "key": "17fe4a3a63f922f812dd84e43c1aa85b4f088121" }], ["path", { "fill": "currentColor", "d": "M12.05 15a2.992 2.992 0 0 0 2.984-3c0-1.657-1.336-3-2.984-3a2.992 2.992 0 0 0-2.985 3c0 1.657 1.336 3 2.985 3Z", "key": "5796419c785602e928b3ef2c0253f201622f415f" }], ["path", { "fill": "currentColor", "d": "M12.05 9.75A2.244 2.244 0 0 0 9.81 12a2.244 2.244 0 0 0 2.239 2.25A2.244 2.244 0 0 0 14.288 12a2.244 2.244 0 0 0-2.238-2.25ZM8.319 12c0-2.071 1.67-3.75 3.73-3.75A3.741 3.741 0 0 1 15.781 12c0 2.071-1.67 3.75-3.731 3.75-2.06 0-3.731-1.679-3.731-3.75Z", "key": "ba1c271041147e58eda254a83ea4867aa27e9db4" }]]);
const UserSquareHeart = createMeisterIcons("user-square-heart", [["path", { "fill": "currentColor", "d": "M16.2 3.75a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l.193.193 1.825 1.728L19.43 5.31c.244-.334.32-.56.32-.709 0-.146-.02-.292-.053-.401a.45.45 0 0 0-.038-.091l-.037-.025-.052-.053c-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.207.207 1.859 1.761c.241.308.597.477.976.477.396 0 .753-.18 1.018-.445l1.8-1.8.238-.237.032-.043c.332-.443.65-1.005.65-1.65 0-.254-.03-.558-.122-.849-.08-.259-.236-.593-.545-.828-.802-.753-2.106-.824-3.002-.211Zm-.13 4.575v-.001Z", "key": "4ea9f58168d40dff2dff6dcf3e81b1412f26299a" }], ["path", { "fill": "currentColor", "d": "M2.25 9c0-3.714 3.036-6.75 6.75-6.75h2a.75.75 0 0 1 0 1.5H9C6.114 3.75 3.75 6.114 3.75 9v6c0 2.886 2.364 5.25 5.25 5.25h6c2.886 0 5.25-2.364 5.25-5.25v-3a.75.75 0 0 1 1.5 0v3c0 3.714-3.036 6.75-6.75 6.75H9c-3.714 0-6.75-3.036-6.75-6.75V9Z", "key": "6e71706722d4c843aced1b5dd9505faf828ecc28" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "7b66714110bbcfcefedf58db2736c75d715d6f29" }], ["path", { "fill": "currentColor", "d": "M5.257 20.1c.45-3.383 3.379-5.85 6.743-5.85 3.39 0 6.194 2.592 6.643 5.848l-1.486.204C16.806 17.758 14.61 15.75 12 15.75c-2.636 0-4.908 1.933-5.257 4.55l-1.486-.2Z", "key": "cb0aade6370b02b9b3cb2e9e620c9267451bf2f2" }]]);
const UserSquareHeartB = createMeisterIcons("user-square-heart-b", [["path", { "fill": "currentColor", "d": "M16.2 3.75a.907.907 0 0 0-.67.28c-.307.307-.307.933 0 1.24l.193.193 1.825 1.728L19.43 5.31c.244-.334.32-.56.32-.709 0-.146-.02-.292-.053-.401a.442.442 0 0 0-.038-.091l-.037-.025-.052-.053c-.307-.307-.933-.307-1.24 0l-.73.73-.69-.69c-.335-.244-.56-.32-.71-.32Zm1.38-1.038c-.393-.255-.86-.462-1.38-.462-.72 0-1.305.294-1.73.72-.893.893-.893 2.467 0 3.36l.207.207 1.858 1.761c.242.308.598.477.977.477.396 0 .753-.18 1.018-.445l1.8-1.8.238-.237.032-.043c.332-.443.65-1.005.65-1.65a2.9 2.9 0 0 0-.122-.849c-.08-.259-.236-.593-.545-.828-.802-.753-2.106-.824-3.002-.211Zm-.13 4.575v-.001ZM21 11.25a.75.75 0 0 1 .75.75v3c0 2.473-1.35 4.731-3.5 5.864a.75.75 0 1 1-.7-1.328c1.65-.867 2.7-2.609 2.7-4.536v-3a.75.75 0 0 1 .75-.75ZM9 3.75C6.114 3.75 3.75 6.114 3.75 9v6c0 1.932 1.056 3.679 2.614 4.544a.75.75 0 1 1-.728 1.312C3.594 19.72 2.25 17.468 2.25 15V9c0-3.714 3.036-6.75 6.75-6.75h2a.75.75 0 0 1 0 1.5H9Z", "key": "dfa1c27ec22acfa573037f2561af6dd8831afd42" }], ["path", { "fill": "currentColor", "d": "M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z", "key": "93fae9cc07a1d041c49cd082cc6363b4f446423a" }], ["path", { "fill": "currentColor", "d": "M12 9.75a2.25 2.25 0 1 0 0 4.5 2.25 2.25 0 0 0 0-4.5ZM8.25 12a3.75 3.75 0 1 1 7.5 0 3.75 3.75 0 0 1-7.5 0Z", "key": "db65cd4dcea42a0df18dbb88f910bd68ffff9c92" }], ["path", { "fill": "currentColor", "d": "M17.9 20.2c-.9.5-1.9.8-3 .8h-6c-1.1 0-2.1-.3-3-.8.4-3 2.9-5.2 6-5.2s5.6 2.2 6 5.2Z", "key": "5c3355a59aa05a6b46d6aed046c0f35efa4e77f6" }], ["path", { "fill": "currentColor", "d": "M6.738 19.782c.67.299 1.39.468 2.162.468h6a5.25 5.25 0 0 0 2.162-.468c-.55-2.356-2.617-4.032-5.162-4.032s-4.612 1.676-5.162 4.032Zm-1.581.319c.45-3.376 3.27-5.851 6.743-5.851 3.472 0 6.293 2.475 6.743 5.85l.068.507-.447.249c-.997.554-2.122.894-3.364.894h-6c-1.242 0-2.367-.34-3.364-.894l-.447-.249.068-.506Z", "key": "b477eab9c607eaf950421405b69d979f68930f00" }]]);
const UserUpload = createMeisterIcons("user-upload", [["path", { "fill": "currentColor", "d": "M9.514 3.558c-2.181 0-3.95 1.778-3.95 3.97 0 2.193 1.769 3.97 3.95 3.97 2.182 0 3.95-1.777 3.95-3.97 0-2.192-1.768-3.97-3.95-3.97Zm-5.45 3.97c0-3.025 2.44-5.478 5.45-5.478 3.01 0 5.45 2.453 5.45 5.478s-2.44 5.478-5.45 5.478c-3.01 0-5.45-2.453-5.45-5.478Z", "key": "ef5ea48cc241e596ef0ecfd6e356251c3b2f265a" }], ["path", { "fill": "currentColor", "d": "M8.014 13.006c-2.386 0-4.35 1.974-4.35 4.372 0 1.607 1.277 2.965 2.95 2.965h5.9c1.66 0 2.96-1.349 3.05-2.984-.01-2.39-1.97-4.353-4.35-4.353h-3.2Zm-5.85 4.372c0-3.23 2.636-5.88 5.85-5.88h3.2c3.214 0 5.85 2.65 5.85 5.88v.038c-.119 2.376-2.016 4.435-4.55 4.435h-5.9c-2.527 0-4.45-2.06-4.45-4.473Zm16.85-12.513c.414 0 .75.337.75.753V9.74a.752.752 0 0 1-.75.754.752.752 0 0 1-.75-.754V5.62c0-.417.336-.754.75-.754Z", "key": "7b9a8d4b76bb5e999a71f4b54f5a3bac412c287a" }], ["path", { "fill": "currentColor", "d": "m18.964 6.132 1.42 1.427a.747.747 0 0 0 1.06 0 .756.756 0 0 0 0-1.066l-1.786-1.796-.109-.054a1.398 1.398 0 0 0-.622-.155c-.22 0-.511.063-.743.296l-1.7 1.709a.756.756 0 0 0 0 1.066.747.747 0 0 0 1.06 0l1.42-1.427Z", "key": "82d14a60bd639fa12c21a6e8831ae253e9d6dbc3" }]]);
const UserUploadB = createMeisterIcons("user-upload-b", [["path", { "fill": "currentColor", "d": "M9.6 12.302c2.596 0 4.7-2.115 4.7-4.724 0-2.61-2.104-4.724-4.7-4.724S4.9 4.969 4.9 7.578s2.104 4.724 4.7 4.724Z", "key": "02ced5c80fb97af26909aadca17f52b1968f1a39" }], ["path", { "fill": "currentColor", "d": "M9.6 3.608c-2.182 0-3.95 1.777-3.95 3.97 0 2.192 1.768 3.97 3.95 3.97 2.182 0 3.95-1.778 3.95-3.97 0-2.193-1.769-3.97-3.95-3.97Zm-5.45 3.97C4.15 4.552 6.59 2.1 9.6 2.1c3.01 0 5.45 2.452 5.45 5.478 0 3.025-2.44 5.477-5.45 5.477-3.01 0-5.45-2.452-5.45-5.477Z", "key": "3f61fec6c998184c30fca52f6276a6dfcf8c3486" }], ["path", { "fill": "currentColor", "d": "M12.6 21.146H6.7c-2.1 0-3.7-1.708-3.7-3.719 0-2.814 2.3-5.125 5.1-5.125h3.2c2.8 0 5.1 2.311 5.1 5.125-.1 2.01-1.7 3.72-3.8 3.72Z", "key": "577a062f849fe602996e16a64fedfecbabc49dab" }], ["path", { "fill": "currentColor", "d": "M8.1 13.055c-2.386 0-4.35 1.975-4.35 4.372 0 1.608 1.277 2.965 2.95 2.965h5.9c1.66 0 2.96-1.348 3.05-2.984-.01-2.389-1.97-4.353-4.35-4.353H8.1Zm-5.85 4.372c0-3.23 2.636-5.88 5.85-5.88h3.2c3.214 0 5.85 2.65 5.85 5.88v.038c-.12 2.376-2.016 4.435-4.55 4.435H6.7c-2.527 0-4.45-2.06-4.45-4.473ZM19.1 4.914c.414 0 .75.338.75.754v4.12a.752.752 0 0 1-.75.755.752.752 0 0 1-.75-.754v-4.12c0-.417.336-.755.75-.755Z", "key": "99ae2ad50badd0ec183d76fdac7bf1ad5c99e91b" }], ["path", { "fill": "currentColor", "d": "m19.05 6.181 1.42 1.427a.747.747 0 0 0 1.06 0 .756.756 0 0 0 0-1.066l-1.786-1.795-.109-.055a1.398 1.398 0 0 0-.623-.155c-.219 0-.51.063-.742.297l-1.7 1.708a.756.756 0 0 0 0 1.066.747.747 0 0 0 1.06 0l1.42-1.427Z", "key": "4c5e5316170045f82f5a7fc57aa6dc18d1899020" }]]);
const Verify = createMeisterIcons("verify", [["path", { "fill": "currentColor", "d": "M13.788 4.57c-1.053.916-2.583.969-3.592-.014-.858-.702-2.086-.147-2.147.888l-.001.015-.002.016a2.88 2.88 0 0 1-2.564 2.57c-1.139.138-1.597 1.355-.91 2.17.853.997.813 2.489.028 3.535l-.013.018-.014.016c-.727.86-.172 2.106.871 2.167l.015.001.016.002a2.88 2.88 0 0 1 2.57 2.564c.138 1.139 1.355 1.597 2.17.91.997-.853 2.489-.813 3.535-.028l.018.013.016.014c.86.727 2.106.172 2.167-.871l.001-.015.002-.016a2.88 2.88 0 0 1 2.564-2.57c1.139-.138 1.598-1.355.91-2.169-.853-.998-.813-2.49-.028-3.536l.013-.018.014-.016c.727-.86.172-2.106-.871-2.167l-.015-.001-.015-.002a2.88 2.88 0 0 1-2.572-2.564c-.137-1.137-1.352-1.596-2.166-.913Zm-.972-1.143c1.785-1.51 4.363-.371 4.629 1.885l.002.013a1.38 1.38 0 0 0 1.215 1.227c2.336.151 3.372 2.875 1.927 4.613-.403.55-.361 1.248-.02 1.647l.004.004c1.51 1.785.371 4.363-1.885 4.629l-.013.001a1.38 1.38 0 0 0-1.227 1.216c-.151 2.335-2.875 3.372-4.613 1.927-.55-.403-1.248-.361-1.647-.02l-.004.004c-1.785 1.51-4.363.371-4.629-1.885l-.001-.013a1.38 1.38 0 0 0-1.216-1.227c-2.335-.151-3.372-2.875-1.927-4.613.403-.55.361-1.248.02-1.647l-.003-.004C1.918 9.4 3.056 6.821 5.312 6.556l.013-.001a1.38 1.38 0 0 0 1.227-1.216c.152-2.344 2.896-3.38 4.633-1.91l.023.02.022.022c.39.389 1.038.436 1.576-.034l.01-.009Z", "key": "89b7c49485ec365c919bed2b858e61147339ff33" }]]);
const VerifyA = createMeisterIcons("verify-a", [["path", { "fill": "currentColor", "d": "m8.198 4.406-.1 1.614-.004.023c-.147 1.178-1.047 1.908-2.038 2.05l-.03.004-1.62.101c-.62.056-.857.747-.495 1.154l.007.009.989 1.185c.788.817.72 2.044.02 2.884l-1.009 1.21-.007.008c-.362.407-.125 1.098.495 1.154l1.614.1.023.004c1.178.147 1.908 1.047 2.05 2.038l.004.03.101 1.62c.056.62.747.857 1.154.495l.009-.008 1.185-.988c.817-.788 2.044-.72 2.884-.02l1.21 1.008.008.008c.407.362 1.098.125 1.154-.495l.1-1.614.004-.023c.147-1.178 1.047-1.908 2.038-2.05l.03-.004 1.62-.101c.62-.056.857-.747.495-1.154l-.008-.009-.988-1.185c-.788-.817-.72-2.044-.02-2.884l1.008-1.21.009-.008c.361-.407.124-1.098-.496-1.154l-1.614-.1-.023-.004c-1.178-.147-1.908-1.047-2.05-2.038l-.004-.03-.101-1.62c-.056-.62-.747-.857-1.154-.495l-.009.008-1.186.988c-.788.757-2.118.757-2.906 0L9.36 3.919l-.01-.008c-.406-.362-1.097-.125-1.153.495Zm2.14-1.625c-1.39-1.224-3.488-.265-3.634 1.507l-.001.007-.099 1.582c-.058.402-.344.662-.733.727l-1.575.098h-.007C2.516 6.85 1.557 8.948 2.78 10.34l1.015 1.217.024.024c.183.184.246.54-.046.89L2.78 13.66c-1.224 1.393-.265 3.489 1.507 3.636l.007.001 1.582.099c.402.058.662.344.727.733l.098 1.575v.007c.148 1.772 2.244 2.731 3.637 1.507l1.217-1.015.024-.024c.184-.183.54-.246.89.046l1.191.993c1.393 1.224 3.489.265 3.636-1.507l.001-.008.099-1.58c.058-.403.344-.663.733-.728l1.575-.098h.007c1.772-.148 2.731-2.244 1.507-3.636l-1.015-1.218-.024-.024c-.183-.184-.246-.54.046-.89l.993-1.191c1.224-1.392.265-3.489-1.507-3.636l-.007-.001-1.582-.099c-.402-.058-.662-.344-.727-.733l-.098-1.575v-.007c-.148-1.772-2.244-2.731-3.636-1.507l-1.218 1.015-.024.024c-.207.207-.633.207-.84 0l-.024-.024L10.34 2.78Z", "key": "b8dc9e448ac458965279e963a93dddc83166b2e3" }]]);
const VerifyAb = createMeisterIcons("verify-ab", [["path", { "fill": "currentColor", "d": "m13 4.4 1.2-1c.9-.8 2.3-.2 2.4 1l.1 1.6c.1.7.7 1.3 1.4 1.3l1.6.1c1.2.1 1.8 1.5 1 2.4l-1 1.2c-.5.6-.5 1.4 0 1.9l1 1.2c.8.9.2 2.3-1 2.4l-1.6.1c-.7.1-1.3.6-1.4 1.4l-.1 1.6c-.1 1.2-1.5 1.8-2.4 1l-1.2-1c-.6-.5-1.4-.5-1.9 0l-1.2 1c-.9.8-2.3.2-2.4-1l-.2-1.5c-.1-.7-.6-1.3-1.4-1.4l-1.6-.1c-1.2-.1-1.8-1.5-1-2.4l1-1.2c.5-.6.5-1.4 0-1.9l-1-1.2c-.8-.9-.2-2.3 1-2.4L6 7.3c.7 0 1.3-.6 1.3-1.3l.1-1.6c.1-1.2 1.5-1.8 2.4-1l1.2 1c.6.5 1.5.5 2 0Z", "key": "7ae8460aec8b24051205edbb68c172816569b35d" }], ["path", { "fill": "currentColor", "d": "m8.148 4.456-.098 1.57a2.075 2.075 0 0 1-2 2.023l-1.675.197-.013.001c-.624.052-.864.747-.501 1.155l.008.009.988 1.185c.788.817.72 2.044.02 2.884l-1.008 1.21-.008.008c-.362.407-.125 1.098.495 1.154l1.614.1.023.004c1.178.147 1.908 1.047 2.05 2.038V18l.203 1.518.001.019c.052.624.747.864 1.155.501l.009-.008 1.186-.988c.816-.789 2.043-.72 2.883-.02l1.21 1.008.008.008c.407.362 1.098.125 1.154-.495l.1-1.614.004-.023c.147-1.178 1.047-1.908 2.038-2.05l.03-.004 1.62-.101c.62-.056.857-.747.495-1.154l-.008-.009-.988-1.186c-.788-.816-.72-2.043-.02-2.883l1.008-1.21.008-.008c.362-.407.125-1.098-.495-1.154l-1.57-.098c-1.119-.014-1.974-.943-2.117-1.944l-.004-.03-.101-1.62c-.056-.62-.747-.857-1.154-.496l-.009.008-1.186.989c-.819.788-2.143.72-2.983.02L9.31 3.967l-.008-.008c-.407-.361-1.098-.124-1.154.496Zm2.14-1.625C8.898 1.607 6.8 2.566 6.654 4.338l-.001.007-.102 1.632V6c0 .286-.264.55-.55.55h-.044l-1.732.204C2.46 6.91 1.51 9 2.73 10.388l1.015 1.218.024.024c.183.184.246.54-.046.89l-.993 1.19c-1.224 1.392-.265 3.489 1.507 3.636l.007.001 1.582.099c.41.06.672.355.73.756l.197 1.48c.162 1.758 2.248 2.706 3.635 1.486l1.217-1.015.024-.024c.184-.183.54-.246.89.046l1.191.993c1.393 1.224 3.489.265 3.636-1.507l.001-.008.099-1.58c.058-.403.344-.663.733-.728l1.575-.098h.007c1.772-.148 2.731-2.245 1.507-3.637l-1.015-1.217-.024-.024c-.183-.184-.246-.54.046-.89l.993-1.192c1.224-1.392.265-3.488-1.507-3.635l-.008-.001-1.63-.102H18.1c-.263 0-.588-.254-.654-.631l-.098-1.574v-.007c-.148-1.772-2.244-2.731-3.636-1.507l-1.218 1.015-.024.024c-.184.183-.64.246-.99-.046l-1.19-.993Z", "key": "7c33c00754021e2315ff7a65b7cc1bc463b60001" }]]);
const VerifyB = createMeisterIcons("verify-b", [["path", { "fill": "currentColor", "d": "M13.297 4c1.3-1.1 3.2-.3 3.4 1.4.1 1 .9 1.8 1.9 1.9 1.7.1 2.5 2.1 1.4 3.4-.6.8-.6 1.9 0 2.6 1.1 1.3.3 3.2-1.4 3.4-1 .1-1.8.9-1.9 1.9-.1 1.7-2.1 2.5-3.4 1.4-.8-.6-1.9-.6-2.6 0-1.3 1.1-3.2.3-3.4-1.4-.1-1-.9-1.8-1.9-1.9-1.7-.1-2.5-2.1-1.4-3.4.6-.8.6-1.9 0-2.6-1-1.3-.2-3.3 1.4-3.4 1-.1 1.8-.9 1.9-1.9.1-1.6 2.1-2.4 3.4-1.4.7.7 1.8.7 2.6 0Z", "key": "90a3fc57098982c5db4b761ba204f5e29f86ad72" }], ["path", { "fill": "currentColor", "d": "M13.785 4.57c-1.047.912-2.568.968-3.577 0a1.425 1.425 0 0 0-1.378-.15c-.453.184-.755.56-.785 1.027v.014l-.002.014a2.88 2.88 0 0 1-2.572 2.571l-.013.002h-.014c-.468.03-.843.332-1.028.785-.183.451-.145.983.166 1.397.84.998.795 2.48.015 3.52l-.013.018-.015.016c-.727.86-.171 2.106.872 2.167l.015.001.015.002a2.88 2.88 0 0 1 2.571 2.564c.138 1.139 1.355 1.597 2.169.91.998-.853 2.49-.813 3.536-.028l.018.013.016.014c.86.727 2.106.172 2.167-.871l.001-.015.002-.016a2.88 2.88 0 0 1 2.564-2.57c1.138-.138 1.597-1.355.91-2.169-.853-.998-.813-2.49-.028-3.536l.013-.018.014-.016c.727-.86.172-2.106-.871-2.167l-.015-.001-.016-.002a2.88 2.88 0 0 1-2.57-2.564c-.138-1.137-1.353-1.596-2.167-.913Zm-.973-1.143c1.785-1.51 4.364-.371 4.63 1.885l.001.013a1.38 1.38 0 0 0 1.216 1.227c2.335.151 3.372 2.875 1.927 4.613-.403.55-.361 1.248-.02 1.647l.003.004c1.51 1.785.372 4.363-1.884 4.629l-.013.001a1.38 1.38 0 0 0-1.228 1.216c-.15 2.335-2.874 3.372-4.612 1.927-.55-.403-1.249-.361-1.647-.02l-.004.004c-1.785 1.51-4.364.371-4.629-1.885l-.002-.013a1.38 1.38 0 0 0-1.215-1.227c-2.336-.151-3.372-2.875-1.927-4.613.403-.55.36-1.248.02-1.647l-.014-.015-.012-.016c-.68-.884-.739-1.996-.375-2.89.364-.893 1.183-1.637 2.307-1.714a1.38 1.38 0 0 0 1.215-1.216c.077-1.124.822-1.943 1.715-2.307.894-.364 2.006-.305 2.89.376l.039.03.034.034c.39.389 1.038.436 1.576-.034l.01-.009Z", "key": "8a7661769e4290771702fba67afa2e028ba1678b" }]]);
const Wallet = createMeisterIcons("wallet", [["path", { "fill": "currentColor", "d": "M4.7 6.825V17.8c0 .786.664 1.45 1.45 1.45h11.7a1.47 1.47 0 0 0 1.45-1.45v-11c0-1.168-.947-2.05-2.05-2.05H6.85c-1.171 0-2.064.856-2.15 2.075Zm-1.498-.072C3.325 4.784 4.828 3.25 6.85 3.25h10.4c1.897 0 3.55 1.518 3.55 3.55v11a2.97 2.97 0 0 1-2.95 2.95H6.15A2.97 2.97 0 0 1 3.2 17.8V6.777l.002-.024Z", "key": "759940827dc544d5c164beeaf334a13f5cabaf78" }], ["path", { "fill": "currentColor", "d": "M15.65 10.05a1.47 1.47 0 0 0-1.45 1.45v1c0 .786.664 1.45 1.45 1.45h3.65v-3.9h-3.65ZM12.7 11.5a2.97 2.97 0 0 1 2.95-2.95h5.15v6.9h-5.15a2.97 2.97 0 0 1-2.95-2.95v-1Z", "key": "48663fe8f9c26a3265442974202d792ceb1e2fba" }], ["path", { "fill": "currentColor", "d": "M16.55 13c-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.3.1-.6.3-.7.4-.4 1.1-.4 1.5 0 .2.2.3.5.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.8.3Z", "key": "51fdfad3d5cdb1a63133c8b41d60b2d4fd1c1b79" }]]);
const WalletB = createMeisterIcons("wallet-b", [["path", { "fill": "currentColor", "d": "M4.65 6.825V17.8c0 .786.664 1.45 1.45 1.45h11.7a1.47 1.47 0 0 0 1.45-1.45v-2.35H15.6a2.97 2.97 0 0 1-2.95-2.95v-1c0-1.74 1.37-2.966 3.077-2.85h3.623V6.9c0-1.186-.964-2.15-2.15-2.15H6.8c-1.171 0-2.064.856-2.15 2.075Zm-1.499-.072C3.275 4.784 4.778 3.25 6.8 3.25h10.4a3.652 3.652 0 0 1 3.65 3.65v3.25h-5.179l-.028-.002c-.879-.068-1.493.502-1.493 1.352v1c0 .786.664 1.45 1.45 1.45h5.15v3.85a2.97 2.97 0 0 1-2.95 2.95H6.1a2.97 2.97 0 0 1-2.95-2.95V6.777l.001-.024Z", "key": "904ee518480e2b955f4393077d8bcb4d7fc50845" }], ["path", { "fill": "currentColor", "d": "M15.6 10.05a1.47 1.47 0 0 0-1.45 1.45v1c0 .786.664 1.45 1.45 1.45h3.65v-3.9H15.6Zm-2.95 1.45a2.97 2.97 0 0 1 2.95-2.95h5.15v6.9H15.6a2.97 2.97 0 0 1-2.95-2.95v-1Z", "key": "aab8f8f5a2cc70c04cb8952535975733a765f68a" }], ["path", { "fill": "currentColor", "d": "M20 9.3v5.4h-4.4c-1.2 0-2.2-1-2.2-2.2v-1c0-1.2 1-2.2 2.2-2.2H20Z", "key": "34c12f64d144ba33947c40abe20370e3b937b00d" }], ["path", { "fill": "currentColor", "d": "M15.6 10.05a1.47 1.47 0 0 0-1.45 1.45v1c0 .786.664 1.45 1.45 1.45h3.65v-3.9H15.6Zm-2.95 1.45a2.97 2.97 0 0 1 2.95-2.95h5.15v6.9H15.6a2.97 2.97 0 0 1-2.95-2.95v-1Z", "key": "e3c4940fce76181b18da5ecf9574f1f2e04102da" }], ["path", { "fill": "#fff", "d": "M16.5 13c-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7 0-.3.1-.6.3-.7.4-.4 1.1-.4 1.5 0 .2.2.3.5.3.7 0 .3-.1.5-.3.7-.2.2-.5.3-.8.3Z", "key": "d1ec250fcb776af8b76b140c6e547739147743af" }]]);
const Warning = createMeisterIcons("warning", [["path", { "fill": "currentColor", "d": "M12 14.725c-.4 0-.8-.3-.8-.8v-5c0-.4.3-.8.8-.8s.8.3.8.8v5c-.1.5-.4.8-.8.8Zm0 3c-.2 0-.4-.1-.5-.2-.1-.1-.2-.3-.2-.5s.1-.4.2-.5l.2-.2c.3-.1.6-.1.8.2.1.1.2.3.2.5 0 .1 0 .2-.1.3 0 .1-.1.2-.2.2 0 .1-.2.2-.4.2Z", "key": "82151f4a8e9c7484d53a1b45e3545300ec5ad286" }], ["path", { "fill": "currentColor", "d": "M13.458 4.165c-.315-.604-.94-.84-1.47-.84-.542 0-1.149.239-1.512.784l-.014.02L2.45 18.051l-.001.002c-.706 1.236.217 2.622 1.551 2.622h16c1.334 0 2.258-1.386 1.551-2.622L13.458 4.165Zm-1.725.764L3.75 18.797c-.062.108-.046.192-.01.25.038.064.12.128.259.128h16c.139 0 .22-.064.26-.128.035-.058.05-.14-.01-.248l-.001-.002-8.11-13.915-.01-.021a.07.07 0 0 0-.015-.01.28.28 0 0 0-.127-.026.327.327 0 0 0-.254.104Z", "key": "217e2fe71b25045b9a598cf1590937904ca83621" }]]);
const WarningB = createMeisterIcons("warning-b", [["path", { "fill": "currentColor", "d": "m11.1 4.562-8 13.9c-.4.7.1 1.5.9 1.5h16c.8 0 1.3-.8.9-1.5l-8-13.9c-.5-.7-1.4-.7-1.8 0Z", "key": "6e886d9f2246ae017ce9572fb61f92eaf5639ef3" }], ["path", { "fill": "currentColor", "d": "M11.963 3.287c.604 0 1.172.314 1.547.84l.022.03 8.02 13.933c.706 1.236-.218 2.622-1.552 2.622H4c-1.334 0-2.257-1.386-1.551-2.622l.001-.002L10.449 4.19c.33-.577.9-.903 1.514-.903Zm0 1.5c-.061 0-.141.024-.212.148l-.001.002-7.999 13.898c-.062.108-.046.192-.01.25.038.063.12.127.259.127h16c.139 0 .22-.064.26-.127.035-.058.05-.141-.01-.25L12.27 4.974c-.119-.153-.242-.187-.309-.187Z", "key": "a44f80b0dcaf131f6d7e7f20c9ed134fc8b5f733" }], ["path", { "fill": "#fff", "d": "M12 14.663c-.4 0-.8-.3-.8-.8v-5c0-.4.3-.8.8-.8s.8.3.8.8v5c-.1.5-.4.8-.8.8Zm0 2.999c-.1 0-.2 0-.3-.1-.1 0-.2-.1-.2-.2-.2 0-.3-.2-.3-.4 0-.1 0-.2.1-.3 0-.1.1-.2.2-.2 0-.1.1-.2.2-.2.3-.1.6-.1.8.2l.2.2c0 .1.1.2.1.3 0 .2-.1.4-.2.5-.3.2-.4.2-.6.2Z", "key": "71f95eb92062e49d2e0b474f66512d6f093b5082" }]]);
const Webcam = createMeisterIcons("webcam", [["path", { "fill": "currentColor", "d": "M12 3.8a6.35 6.35 0 1 0 0 12.7 6.35 6.35 0 0 0 0-12.7Zm-7.85 6.35a7.85 7.85 0 1 1 15.7 0 7.85 7.85 0 0 1-15.7 0Z", "key": "5ab9baf35365945968d0453ea75e8d7774f2e68d" }], ["path", { "fill": "currentColor", "d": "M12 7.8a2.35 2.35 0 1 0 0 4.7 2.35 2.35 0 0 0 0-4.7Zm-3.85 2.35a3.85 3.85 0 1 1 7.7 0 3.85 3.85 0 0 1-7.7 0Zm3.1 10.8v-3.7h1.5v3.7h-1.5Z", "key": "8487ffb8336bb069b1f8a439e26cb560c1b067c8" }], ["path", { "fill": "currentColor", "d": "M7.55 20.95a.75.75 0 0 1 .75-.75h7.4a.75.75 0 1 1 0 1.5H8.3a.75.75 0 0 1-.75-.75Z", "key": "2f3d949c6f25fdad76e4ce654f4673a22f247917" }]]);
const WebcamB = createMeisterIcons("webcam-b", [["path", { "fill": "currentColor", "d": "M4.15 10.15C4.15 5.843 7.579 2.3 12 2.3c4.314 0 7.85 3.536 7.85 7.85 0 4.3-3.522 7.95-7.85 7.95-4.321 0-7.85-3.543-7.85-7.95ZM12 3.8c-3.579 0-6.35 2.857-6.35 6.35 0 3.593 2.871 6.45 6.35 6.45 3.472 0 6.35-2.95 6.35-6.45 0-3.486-2.864-6.35-6.35-6.35Zm0 4a2.366 2.366 0 0 0-2.35 2.35A2.366 2.366 0 0 0 12 12.5a2.366 2.366 0 0 0 2.35-2.35A2.366 2.366 0 0 0 12 7.8Zm-3.85 2.35A3.866 3.866 0 0 1 12 6.3a3.866 3.866 0 0 1 3.85 3.85A3.866 3.866 0 0 1 12 14a3.866 3.866 0 0 1-3.85-3.85Z", "key": "a0b8bab629ab65c3b27e49c16546826babe8186f" }], ["path", { "fill": "currentColor", "d": "M15.1 10.15c0 1.7-1.4 3.1-3.1 3.1-1.7 0-3.1-1.4-3.1-3.1 0-1.7 1.4-3.1 3.1-3.1 1.7 0 3.1 1.4 3.1 3.1Z", "key": "547ab68437799c42fb65aed662a510a03e137819" }], ["path", { "fill": "currentColor", "d": "M12 7.8a2.366 2.366 0 0 0-2.35 2.35A2.366 2.366 0 0 0 12 12.5a2.366 2.366 0 0 0 2.35-2.35A2.366 2.366 0 0 0 12 7.8Zm-3.85 2.35A3.866 3.866 0 0 1 12 6.3a3.866 3.866 0 0 1 3.85 3.85A3.866 3.866 0 0 1 12 14a3.866 3.866 0 0 1-3.85-3.85Zm3.1 10.8v-3.7h1.5v3.7h-1.5Z", "key": "44f3ebc09804f410113f0a1ec0bb59b9899514e0" }], ["path", { "fill": "currentColor", "d": "M7.55 20.95a.75.75 0 0 1 .75-.75h7.4a.75.75 0 1 1 0 1.5H8.3a.75.75 0 0 1-.75-.75Z", "key": "99477e3b2649bf54173d2da16e2d43c551c0db4c" }]]);
const Weighingmachine = createMeisterIcons("weighingmachine", [["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Zm4.5 3a.75.75 0 0 1 .75-.75h3.099L9.376 7.416a.75.75 0 1 1 1.248-.832l1.777 2.666H16.5a.75.75 0 0 1 0 1.5h-4.484a.8.8 0 0 1-.03 0H7.5a.75.75 0 0 1-.75-.75Z", "key": "d75382cf9a96f1a88adb5eba52ba3b07d0be9bdd" }]]);
const WeighingmachineB = createMeisterIcons("weighingmachine-b", [["path", { "fill": "currentColor", "d": "M3 17V7c0-2.2 1.8-4 4-4h10c2.2 0 4 1.8 4 4v10c0 2.2-1.8 4-4 4H7c-2.3 0-4-1.8-4-4Z", "key": "55aa3283f002866cd84d0004820875eb54966338" }], ["path", { "fill": "currentColor", "d": "M7 3.75A3.262 3.262 0 0 0 3.75 7v10c0 1.798 1.376 3.25 3.25 3.25h10A3.262 3.262 0 0 0 20.25 17V7A3.262 3.262 0 0 0 17 3.75H7ZM2.25 7A4.762 4.762 0 0 1 7 2.25h10A4.762 4.762 0 0 1 21.75 7v10A4.762 4.762 0 0 1 17 21.75H7c-2.726 0-4.75-2.148-4.75-4.75V7Z", "key": "e5795fbc2efbc58cee4c13474909e42bf46ad040" }], ["path", { "fill": "#fff", "d": "M6.75 10a.75.75 0 0 1 .75-.75h9a.75.75 0 0 1 0 1.5h-9a.75.75 0 0 1-.75-.75Z", "key": "332a3d6f54f9d79375d58cd22d7b5a6bda345746" }], ["path", { "fill": "#fff", "d": "M9.584 6.376a.75.75 0 0 1 1.04.208l2 3a.75.75 0 0 1-1.248.832l-2-3a.75.75 0 0 1 .208-1.04Z", "key": "8ec7e682988a7d04e35830aa3576d734fab761ad" }]]);
const Wine = createMeisterIcons("wine", [["path", { "fill": "currentColor", "d": "M5.905 2.665a.75.75 0 0 1 .38.99c-.368.828-.635 1.824-.635 2.795 0 3.486 2.864 6.35 6.35 6.35 3.486 0 6.35-2.864 6.35-6.35 0-1-.18-1.883-.62-2.765a.75.75 0 0 1 1.34-.67c.56 1.118.78 2.235.78 3.435 0 4.314-3.536 7.85-7.85 7.85s-7.85-3.536-7.85-7.85c0-1.229.333-2.433.765-3.405a.75.75 0 0 1 .99-.38Z", "key": "dc83befbd1917c1198b13fa81517e9b229316141" }], ["path", { "fill": "currentColor", "d": "M4.85 3.35a.75.75 0 0 1 .75-.75h12.8a.75.75 0 0 1 0 1.5H5.6a.75.75 0 0 1-.75-.75ZM12 12.8a.75.75 0 0 1 .75.75v7.1a.75.75 0 1 1-1.5 0v-7.1a.75.75 0 0 1 .75-.75Z", "key": "03a277369099c36b74e1466be0355e9a6ae40d9b" }], ["path", { "fill": "currentColor", "d": "M7.85 20.65a.75.75 0 0 1 .75-.75h6.7a.75.75 0 1 1 0 1.5H8.6a.75.75 0 0 1-.75-.75Z", "key": "8770dc60d90afd01838532cec0173b89dac28f6d" }]]);
const WineB = createMeisterIcons("wine-b", [["path", { "fill": "currentColor", "d": "M19.1 6.45c0 3.9-3.2 7.1-7.1 7.1-3.9 0-7.1-3.2-7.1-7.1 0-1.1.3-2.2.7-3.1h12.8c.5.9.7 2 .7 3.1Z", "key": "6e68ac13b636a37ee7df05b9a9b5589464aea585" }], ["path", { "fill": "currentColor", "d": "M5.113 2.6H18.84l.215.386c.581 1.046.794 2.284.794 3.464 0 4.314-3.536 7.85-7.85 7.85s-7.85-3.536-7.85-7.85c0-1.229.333-2.433.765-3.405l.198-.445Zm.99 1.5c-.27.728-.453 1.547-.453 2.35 0 3.486 2.864 6.35 6.35 6.35 3.486 0 6.35-2.864 6.35-6.35 0-.853-.13-1.666-.419-2.35H6.104Z", "key": "6831cebe3c814552970ecc92e041e629e5730073" }], ["path", { "fill": "currentColor", "d": "M12 12.8a.75.75 0 0 1 .75.75v7.1a.75.75 0 1 1-1.5 0v-7.1a.75.75 0 0 1 .75-.75Z", "key": "b0eae20a4b12f31d279dbf5282c773f2d54bb045" }], ["path", { "fill": "currentColor", "d": "M7.85 20.65a.75.75 0 0 1 .75-.75h6.8a.75.75 0 0 1 0 1.5H8.6a.75.75 0 0 1-.75-.75Z", "key": "43c647deea1da82fd92ce8c66f2044ca4b47845b" }]]);
const WineHalf = createMeisterIcons("wine-half", [["path", { "fill": "currentColor", "d": "M4.092 7.7h15.716l-.29.965C18.526 11.972 15.542 14.3 12 14.3c-3.53 0-6.623-2.316-7.618-5.635l-.29-.965Zm2.105 1.5A6.467 6.467 0 0 0 12 12.8c2.502 0 4.665-1.435 5.707-3.6H6.197Z", "key": "118bf4d4d3ad8723f0bef1b7bf882a0e8926e653" }], ["path", { "fill": "currentColor", "d": "M5.1 8.45c-.2-.6-.3-1.3-.3-2 0-1.1.3-2.2.7-3.1", "key": "caf90b01c045217edcc160267341f6e3640aede5" }], ["path", { "fill": "currentColor", "d": "M5.805 2.665a.75.75 0 0 1 .38.99c-.368.828-.635 1.824-.635 2.795 0 .634.091 1.252.262 1.763a.75.75 0 0 1-1.424.474c-.23-.689-.338-1.47-.338-2.237 0-1.229.333-2.433.765-3.405a.75.75 0 0 1 .99-.38ZM18.4 3.35c.5 1 .7 2 .7 3.1 0 .7-.1 1.4-.3 2", "key": "470bb4b46177c3646f6080484783d052c465e065" }], ["path", { "fill": "currentColor", "d": "M18.065 2.68a.75.75 0 0 1 1.006.335c.559 1.118.779 2.235.779 3.435 0 .766-.109 1.548-.338 2.237a.75.75 0 1 1-1.424-.474c.17-.511.262-1.129.262-1.763 0-1-.18-1.883-.62-2.765a.75.75 0 0 1 .335-1.006Z", "key": "9c247eb5c614a4153e6394d04f0ba06d627d5ada" }], ["path", { "fill": "currentColor", "d": "M4.85 3.35a.75.75 0 0 1 .75-.75h12.8a.75.75 0 0 1 0 1.5H5.6a.75.75 0 0 1-.75-.75ZM12 12.8a.75.75 0 0 1 .75.75v7.1a.75.75 0 1 1-1.5 0v-7.1a.75.75 0 0 1 .75-.75Z", "key": "eee083a83a251e73ceb34a83cc0f9deabd6afe94" }], ["path", { "fill": "currentColor", "d": "M7.85 20.65a.75.75 0 0 1 .75-.75h6.8a.75.75 0 0 1 0 1.5H8.6a.75.75 0 0 1-.75-.75Z", "key": "af58f1ef068cd04b4f4f709f0c47ded0696afbe8" }]]);
const WineHalfB = createMeisterIcons("wine-half-b", [["path", { "fill": "currentColor", "d": "M18.8 8.45c-.9 3-3.6 5.1-6.8 5.1-3.2 0-6-2.1-6.9-5.1h13.7Z", "key": "f62367153048b25b4e6ad500c559a9cc1cf8305d" }], ["path", { "fill": "currentColor", "d": "M4.092 7.7h15.716l-.29.965C18.526 11.972 15.542 14.3 12 14.3c-3.53 0-6.623-2.316-7.618-5.635l-.29-.965Zm2.105 1.5A6.467 6.467 0 0 0 12 12.8c2.502 0 4.665-1.435 5.707-3.6H6.197Z", "key": "ea66cd9ecd241340091367e22db326138bef4aa4" }], ["path", { "fill": "currentColor", "d": "M5.1 8.45c-.2-.6-.3-1.3-.3-2 0-1.1.3-2.2.7-3.1", "key": "ac3d79d65f84aed17492169cb59175980e6c8513" }], ["path", { "fill": "currentColor", "d": "M5.805 2.665a.75.75 0 0 1 .38.99c-.368.828-.635 1.824-.635 2.795 0 .634.091 1.252.261 1.763a.75.75 0 1 1-1.423.474c-.23-.689-.338-1.47-.338-2.237 0-1.229.333-2.433.765-3.405a.75.75 0 0 1 .99-.38ZM18.4 3.35c.5 1 .7 2 .7 3.1 0 .7-.1 1.4-.3 2", "key": "4afb1532f42c2b498f929edf9011bb68b7d6eda4" }], ["path", { "fill": "currentColor", "d": "M18.065 2.68a.75.75 0 0 1 1.006.335c.559 1.118.779 2.235.779 3.435 0 .766-.109 1.548-.338 2.237a.75.75 0 1 1-1.424-.474c.17-.511.262-1.129.262-1.763 0-1-.18-1.883-.62-2.765a.75.75 0 0 1 .335-1.006Z", "key": "4f8d27dee1a0f2ca018e6986b6a2dc9e043d9bc0" }], ["path", { "fill": "currentColor", "d": "M4.85 3.35a.75.75 0 0 1 .75-.75h12.8a.75.75 0 0 1 0 1.5H5.6a.75.75 0 0 1-.75-.75ZM12 12.8a.75.75 0 0 1 .75.75v7.1a.75.75 0 1 1-1.5 0v-7.1a.75.75 0 0 1 .75-.75Z", "key": "411c863db9c302562c9a4ff600373bc8d71a5ab9" }], ["path", { "fill": "currentColor", "d": "M7.85 20.65a.75.75 0 0 1 .75-.75h6.8a.75.75 0 0 1 0 1.5H8.6a.75.75 0 0 1-.75-.75Z", "key": "a533d14d16747a3f75861904a11e01418a199d21" }]]);
const YogaMat = createMeisterIcons("yoga-mat", [["path", { "fill": "currentColor", "d": "M6.5 4C5.014 4 3.75 5.264 3.75 6.75v7.26A4.233 4.233 0 0 1 6.5 13a4.23 4.23 0 0 1 2.75 1.01V6.756a.78.78 0 0 1 0-.007v-.006C9.247 5.261 7.984 4 6.5 4Zm4.181 2C10.318 4.032 8.56 2.5 6.5 2.5c-2.314 0-4.25 1.936-4.25 4.25v10.5a4.25 4.25 0 0 0 5.59 4.035c.376.14.764.215 1.16.215h9c2.114 0 3.75-1.636 3.75-3.75v-8C21.75 7.636 20.114 6 18 6h-7.319Zm.069 1.5v9.75A4.23 4.23 0 0 1 9.74 20H18c1.286 0 2.25-.964 2.25-2.25v-8c0-1.286-.964-2.25-2.25-2.25h-7.25ZM7.715 19.705c.9-.46 1.535-1.401 1.535-2.455a2.75 2.75 0 1 0-5.5 0C3.75 18.736 5.014 20 6.5 20c.287 0 .566-.047.83-.134a.752.752 0 0 1 .385-.161Z", "key": "81a1cba42d50c858c69e88add706b52203cbe8ec" }]]);
const YogaMatB = createMeisterIcons("yoga-mat-b", [["path", { "fill": "currentColor", "d": "M6.55 14.65c-1.486 0-2.75 1.264-2.75 2.75s1.264 2.75 2.75 2.75c.384 0 .67-.073.965-.22l.01-.006.01-.005C8.609 19.424 9.3 18.469 9.3 17.3c0-1.544-1.22-2.65-2.75-2.65ZM2.3 17.4c0-2.314 1.936-4.25 4.25-4.25 2.27 0 4.25 1.694 4.25 4.15 0 1.828-1.103 3.27-2.625 3.976a3.516 3.516 0 0 1-1.625.374c-2.314 0-4.25-1.936-4.25-4.25Z", "key": "db82ad7dcf408ce90d053b1b0fd84dde7d6fff67" }], ["path", { "fill": "currentColor", "d": "M6.55 4.05C5.064 4.05 3.8 5.314 3.8 6.8v10.6c0 1.486 1.264 2.75 2.75 2.75.384 0 .67-.073.965-.22l.01-.006.01-.005C8.609 19.424 9.3 18.469 9.3 17.3V6.8c0-.792-.313-1.492-.76-1.95-.598-.506-1.226-.8-1.99-.8ZM2.3 6.8c0-2.314 1.936-4.25 4.25-4.25 1.226 0 2.193.499 2.988 1.18l.022.02.02.02c.743.742 1.22 1.833 1.22 3.03v10.5c0 1.828-1.103 3.27-2.625 3.976a3.516 3.516 0 0 1-1.625.374c-2.314 0-4.25-1.936-4.25-4.25V6.8Z", "key": "adf1469d0e4e121951852961c2978b0d5c26e6fe" }], ["path", { "fill": "currentColor", "d": "M21.05 9.8v8c0 1.7-1.3 3-3 3h-9c-.4 0-.8-.1-1.2-.3 1.3-.5 2.2-1.8 2.2-3.3V6.8h8c1.6 0 3 1.3 3 3Z", "key": "a61bfb75cc9d77b6efef741f849371946feabc8e" }], ["path", { "fill": "currentColor", "d": "M9.3 6.05h8.75c1.998 0 3.75 1.62 3.75 3.75v8c0 2.114-1.636 3.75-3.75 3.75h-9a3.41 3.41 0 0 1-1.535-.38l-1.521-.76 1.587-.61c1-.385 1.719-1.4 1.719-2.6V6.05Zm1.5 1.5v9.65a4.351 4.351 0 0 1-1.05 2.85h8.3c1.286 0 2.25-.964 2.25-2.25v-8c0-1.27-1.048-2.25-2.25-2.25H10.8Z", "key": "05b514d32bbd4f814114e63b74df260e196e3690" }]]);
var index = /*#__PURE__*/Object.freeze({
__proto__: null,
Add: Add,
AddBlock: AddBlock,
AddBlockB: AddBlockB,
AddSqaure: AddSqaure,
AddSqaureB: AddSqaureB,
AirpodSingle: AirpodSingle,
AirpodSingleB: AirpodSingleB,
Airpods: Airpods,
AirpodsAlt: AirpodsAlt,
AirpodsAltB: AirpodsAltB,
AirpodsB: AirpodsB,
AirpodsDot: AirpodsDot,
Alarm: Alarm,
AlarmAdd: AlarmAdd,
AlarmAddB: AlarmAddB,
AlarmArrowDown: AlarmArrowDown,
AlarmArrowDownB: AlarmArrowDownB,
AlarmArrowLeft: AlarmArrowLeft,
AlarmArrowLeftB: AlarmArrowLeftB,
AlarmArrowRight: AlarmArrowRight,
AlarmArrowRightB: AlarmArrowRightB,
AlarmArrowUp: AlarmArrowUp,
AlarmArrowUpB: AlarmArrowUpB,
AlarmB: AlarmB,
AlarmCross: AlarmCross,
AlarmCrossB: AlarmCrossB,
AlarmHeart: AlarmHeart,
AlarmMinus: AlarmMinus,
AlarmMinusB: AlarmMinusB,
AlarmStar: AlarmStar,
AlarmStarB: AlarmStarB,
AlarmTime: AlarmTime,
AlarmTimeB: AlarmTimeB,
AlignBottom: AlignBottom,
AlignBottomB: AlignBottomB,
AlignCenter: AlignCenter,
AlignJustify: AlignJustify,
AlignLeft: AlignLeft,
AlignRight: AlignRight,
AlignTop: AlignTop,
AlignTopB: AlignTopB,
AndroidPhone: AndroidPhone,
AndroidPhoneB: AndroidPhoneB,
Apps: Apps,
AppsA: AppsA,
AppsAb: AppsAb,
AppsAdd: AppsAdd,
AppsAddA: AppsAddA,
AppsAddAb: AppsAddAb,
AppsAddB: AppsAddB,
AppsB: AppsB,
AppsCross: AppsCross,
AppsCrossB: AppsCrossB,
Archive: Archive,
ArchiveAdd: ArchiveAdd,
ArchiveAddB: ArchiveAddB,
ArchiveB: ArchiveB,
ArchiveCross: ArchiveCross,
ArchiveCrossB: ArchiveCrossB,
ArrowBlockDown: ArrowBlockDown,
ArrowBlockDownB: ArrowBlockDownB,
ArrowBlockDownleft: ArrowBlockDownleft,
ArrowBlockDownleftB: ArrowBlockDownleftB,
ArrowBlockDownright: ArrowBlockDownright,
ArrowBlockDownrightB: ArrowBlockDownrightB,
ArrowBlockLeft: ArrowBlockLeft,
ArrowBlockLeftB: ArrowBlockLeftB,
ArrowBlockRight: ArrowBlockRight,
ArrowBlockRightB: ArrowBlockRightB,
ArrowBlockTopleft: ArrowBlockTopleft,
ArrowBlockTopleftB: ArrowBlockTopleftB,
ArrowBlockTopright: ArrowBlockTopright,
ArrowBlockToprightB: ArrowBlockToprightB,
ArrowBlockUp: ArrowBlockUp,
ArrowBlockUpB: ArrowBlockUpB,
ArrowBreakDown: ArrowBreakDown,
ArrowBreakLeft: ArrowBreakLeft,
ArrowBreakRight: ArrowBreakRight,
ArrowBreakTop: ArrowBreakTop,
ArrowCircleDown: ArrowCircleDown,
ArrowCircleDownB: ArrowCircleDownB,
ArrowCircleDownleft: ArrowCircleDownleft,
ArrowCircleDownleftB: ArrowCircleDownleftB,
ArrowCircleDownright: ArrowCircleDownright,
ArrowCircleDownrightB: ArrowCircleDownrightB,
ArrowCircleLeft: ArrowCircleLeft,
ArrowCircleLeftB: ArrowCircleLeftB,
ArrowCircleRight: ArrowCircleRight,
ArrowCircleRightB: ArrowCircleRightB,
ArrowCircleTop: ArrowCircleTop,
ArrowCircleTopB: ArrowCircleTopB,
ArrowCircleTopleft: ArrowCircleTopleft,
ArrowCircleTopleftB: ArrowCircleTopleftB,
ArrowCircleTopright: ArrowCircleTopright,
ArrowCircleToprightB: ArrowCircleToprightB,
ArrowCrashDown: ArrowCrashDown,
ArrowCrashLeft: ArrowCrashLeft,
ArrowCrashRight: ArrowCrashRight,
ArrowCrashTop: ArrowCrashTop,
ArrowCurvedDownright: ArrowCurvedDownright,
ArrowDoubleheadD: ArrowDoubleheadD,
ArrowDoubleheadDa: ArrowDoubleheadDa,
ArrowDoubleheadH: ArrowDoubleheadH,
ArrowDoubleheadV: ArrowDoubleheadV,
ArrowDown: ArrowDown,
ArrowDownleft: ArrowDownleft,
ArrowDownright: ArrowDownright,
ArrowDownwards: ArrowDownwards,
ArrowDuoDown: ArrowDuoDown,
ArrowDuoLeft: ArrowDuoLeft,
ArrowDuoRight: ArrowDuoRight,
ArrowDuoTop: ArrowDuoTop,
ArrowFullscreen: ArrowFullscreen,
ArrowLeft: ArrowLeft,
ArrowLoopLeft: ArrowLoopLeft,
ArrowLoopRight: ArrowLoopRight,
ArrowReverseDownleft: ArrowReverseDownleft,
ArrowReverseLongh: ArrowReverseLongh,
ArrowReverseLongv: ArrowReverseLongv,
ArrowReverseShorth: ArrowReverseShorth,
ArrowReverseShortv: ArrowReverseShortv,
ArrowReverseTopleft: ArrowReverseTopleft,
ArrowReverseTopright: ArrowReverseTopright,
ArrowRight: ArrowRight,
ArrowRoundedDownleft: ArrowRoundedDownleft,
ArrowRoundedDownright: ArrowRoundedDownright,
ArrowRoundedTopleft: ArrowRoundedTopleft,
ArrowRoundedTopright: ArrowRoundedTopright,
ArrowSort: ArrowSort,
ArrowSortB: ArrowSortB,
ArrowSquareDown: ArrowSquareDown,
ArrowSquareDownB: ArrowSquareDownB,
ArrowSquareDownleft: ArrowSquareDownleft,
ArrowSquareDownleftB: ArrowSquareDownleftB,
ArrowSquareDownright: ArrowSquareDownright,
ArrowSquareDownrightB: ArrowSquareDownrightB,
ArrowSquareLeft: ArrowSquareLeft,
ArrowSquareLeftB: ArrowSquareLeftB,
ArrowSquareRight: ArrowSquareRight,
ArrowSquareRightB: ArrowSquareRightB,
ArrowSquareTop: ArrowSquareTop,
ArrowSquareTopB: ArrowSquareTopB,
ArrowSquareTopleft: ArrowSquareTopleft,
ArrowSquareTopleftB: ArrowSquareTopleftB,
ArrowSquareTopright: ArrowSquareTopright,
ArrowSquareToprightB: ArrowSquareToprightB,
ArrowTop: ArrowTop,
ArrowTopleft: ArrowTopleft,
ArrowTopright: ArrowTopright,
ArrowTv: ArrowTv,
ArrowTvDouble: ArrowTvDouble,
ArrowTvTriple: ArrowTvTriple,
ArrowUpwards: ArrowUpwards,
Atom: Atom,
Award: Award,
AwardB: AwardB,
AwardMinimal: AwardMinimal,
AwardMinimalB: AwardMinimalB,
BabyCarriage: BabyCarriage,
BabyCarriageB: BabyCarriageB,
Badge: Badge,
BadgeB: BadgeB,
BadgeVarB: BadgeVarB,
Bag: Bag,
BagAdd: BagAdd,
BagAddB: BagAddB,
BagAlt: BagAlt,
BagAltB: BagAltB,
BagB: BagB,
BagBlock: BagBlock,
BagBlockB: BagBlockB,
BagCheck: BagCheck,
BagCheckB: BagCheckB,
BagCircle: BagCircle,
BagCircle1: BagCircle1,
BagCircleAdd: BagCircleAdd,
BagCircleB: BagCircleB,
BagCircleB1: BagCircleB1,
BagCircleBlock: BagCircleBlock,
BagCircleCheck: BagCircleCheck,
BagCircleCode: BagCircleCode,
BagCircleCross: BagCircleCross,
BagCode: BagCode,
BagCodeB: BagCodeB,
BagCross: BagCross,
BagCrossB: BagCrossB,
Bandaid: Bandaid,
BandaidB: BandaidB,
BandaidVarB: BandaidVarB,
Bank: Bank,
BankB: BankB,
Barchart: Barchart,
BarchartB: BarchartB,
BarchartH: BarchartH,
BarchartHb: BarchartHb,
Battery1: Battery1,
Battery1B: Battery1B,
Battery2: Battery2,
Battery2B: Battery2B,
Battery3: Battery3,
Battery3B: Battery3B,
Battery4: Battery4,
Battery4B: Battery4B,
Beaker: Beaker,
BeakerB: BeakerB,
BeakerHalf: BeakerHalf,
BeakerHalfB: BeakerHalfB,
Bed: Bed,
BedB: BedB,
Bell: Bell,
BellB: BellB,
Board: Board,
BoardAdd: BoardAdd,
BoardB: BoardB,
BoardBlock: BoardBlock,
BoardChart: BoardChart,
BoardChartB: BoardChartB,
BoardCheck: BoardCheck,
BoardCode: BoardCode,
BoardCodeB: BoardCodeB,
BoardCross: BoardCross,
BoardHeart: BoardHeart,
Bookmark: Bookmark,
BookmarkA: BookmarkA,
BookmarkAb: BookmarkAb,
BookmarkAdd: BookmarkAdd,
BookmarkB: BookmarkB,
BookmarkCross: BookmarkCross,
BookmarkMinus: BookmarkMinus,
Bookmarks: Bookmarks,
BookmarksB: BookmarksB,
BookmarksBvarB: BookmarksBvarB,
Bowl: Bowl,
BowlB: BowlB,
Bowling: Bowling,
BowlingB: BowlingB,
Box: Box,
BoxAdd: BoxAdd,
BoxAddB: BoxAddB,
BoxArrowDownleft: BoxArrowDownleft,
BoxArrowDownleftB: BoxArrowDownleftB,
BoxArrowTopleft: BoxArrowTopleft,
BoxArrowTopleftB: BoxArrowTopleftB,
BoxB: BoxB,
BoxBlock: BoxBlock,
BoxBlockB: BoxBlockB,
BoxCheck: BoxCheck,
BoxCheckB: BoxCheckB,
BoxCross: BoxCross,
BoxCrossB: BoxCrossB,
BoxCursor: BoxCursor,
BoxCursorB: BoxCursorB,
BoxDownload: BoxDownload,
BoxDownloadB: BoxDownloadB,
BoxHeart: BoxHeart,
BoxHeartB: BoxHeartB,
BoxUp: BoxUp,
BoxUpB: BoxUpB,
Braces: Braces,
Branch: Branch,
BranchAdd: BranchAdd,
BranchAddB: BranchAddB,
BranchB: BranchB,
BranchCheck: BranchCheck,
BranchCheckB: BranchCheckB,
BranchCross: BranchCross,
BranchCrossB: BranchCrossB,
Bread: Bread,
BreadB: BreadB,
Breadloaf: Breadloaf,
BringBack: BringBack,
BringFont: BringFont,
BringFontB: BringFontB,
Bug: Bug,
BugB: BugB,
Bulb: Bulb,
BulbB: BulbB,
Bullseye: Bullseye,
BullseyeB: BullseyeB,
Burger: Burger,
BurgerB: BurgerB,
Button: Button,
ButtonB: ButtonB,
Cake: Cake,
Calculator: Calculator,
CalculatorB: CalculatorB,
Calendar: Calendar,
Calendar7: Calendar7,
Calendar7B: Calendar7B,
CalendarA: CalendarA,
CalendarAadd: CalendarAadd,
CalendarAaddB: CalendarAaddB,
CalendarAb: CalendarAb,
CalendarAcheck: CalendarAcheck,
CalendarAcheckB: CalendarAcheckB,
CalendarAcross: CalendarAcross,
CalendarAcrossB: CalendarAcrossB,
CalendarAdd: CalendarAdd,
CalendarAddB: CalendarAddB,
CalendarAdot: CalendarAdot,
CalendarAdotB: CalendarAdotB,
CalendarAdots: CalendarAdots,
CalendarAdotsB: CalendarAdotsB,
CalendarAgrid: CalendarAgrid,
CalendarAgridB: CalendarAgridB,
CalendarAheart: CalendarAheart,
CalendarB: CalendarB,
CalendarCheck: CalendarCheck,
CalendarCheckB: CalendarCheckB,
CalendarCode: CalendarCode,
CalendarCodeB: CalendarCodeB,
CalendarCross: CalendarCross,
CalendarCrossB: CalendarCrossB,
CalendarDash: CalendarDash,
CalendarDashB: CalendarDashB,
CalendarDot: CalendarDot,
CalendarDotB: CalendarDotB,
CalendarHeart: CalendarHeart,
CalendarLines: CalendarLines,
CalendarLinesB: CalendarLinesB,
CalendarStar: CalendarStar,
CalendarStarB: CalendarStarB,
Camera: Camera,
Camera1: Camera1,
Camera1B: Camera1B,
Camera2: Camera2,
Camera2B: Camera2B,
CameraB: CameraB,
CameraMinimal: CameraMinimal,
CameraMinimalB: CameraMinimalB,
CameraPaper: CameraPaper,
CameraPaperB: CameraPaperB,
Candy: Candy,
CandyB: CandyB,
Car: Car,
CarB: CarB,
Card: Card,
CardAdd: CardAdd,
CardAddB: CardAddB,
CardAlt: CardAlt,
CardAltB: CardAltB,
CardAltVarB: CardAltVarB,
CardB: CardB,
CardBlock: CardBlock,
CardBlockB: CardBlockB,
CardCheck: CardCheck,
CardCheckB: CardCheckB,
CardCode: CardCode,
CardCodeB: CardCodeB,
CardCross: CardCross,
CardCrossB: CardCrossB,
CardDiamond: CardDiamond,
CardDiamondAlt: CardDiamondAlt,
CardDiamondAltB: CardDiamondAltB,
CardDiamondB: CardDiamondB,
CardDownload: CardDownload,
CardDownloadB: CardDownloadB,
CardHeart: CardHeart,
CardHeartAlt: CardHeartAlt,
CardUpload: CardUpload,
CardUploadB: CardUploadB,
CardVarB: CardVarB,
CaretDoubleDownleft: CaretDoubleDownleft,
CaretDoubleDownleftB: CaretDoubleDownleftB,
CaretDoubleDownright: CaretDoubleDownright,
CaretDoubleDownrightB: CaretDoubleDownrightB,
CaretDoubleLeft: CaretDoubleLeft,
CaretDoubleLeftB: CaretDoubleLeftB,
CaretDoubleRight: CaretDoubleRight,
CaretDoubleRight1: CaretDoubleRight1,
CaretDoubleRightB: CaretDoubleRightB,
CaretDoubleRightB1: CaretDoubleRightB1,
CaretDoubleTop: CaretDoubleTop,
CaretDoubleTopB: CaretDoubleTopB,
CaretDoubleTopleft: CaretDoubleTopleft,
CaretDoubleTopleftB: CaretDoubleTopleftB,
CaretDoubleTopright: CaretDoubleTopright,
CaretDoubleToprightB: CaretDoubleToprightB,
Cart: Cart,
CartB: CartB,
Chalkboard: Chalkboard,
ChalkboardB: ChalkboardB,
ChartSquare: ChartSquare,
ChartSquareB: ChartSquareB,
ChartSquareH: ChartSquareH,
ChartSquareHb: ChartSquareHb,
CheckCircle: CheckCircle,
CheckCircleB: CheckCircleB,
CheckSquare: CheckSquare,
CheckSquareB: CheckSquareB,
Checklist: Checklist,
ChecklistB: ChecklistB,
ChevronBreakDown: ChevronBreakDown,
ChevronBreakLeft: ChevronBreakLeft,
ChevronBreakRight: ChevronBreakRight,
ChevronBreakTop: ChevronBreakTop,
ChevronCircleDown: ChevronCircleDown,
ChevronCircleLeft: ChevronCircleLeft,
ChevronCircleRight: ChevronCircleRight,
ChevronCircleTop: ChevronCircleTop,
ChevronDoubleDown: ChevronDoubleDown,
ChevronDoubleDownleft: ChevronDoubleDownleft,
ChevronDoubleDownright: ChevronDoubleDownright,
ChevronDoubleLeft: ChevronDoubleLeft,
ChevronDoubleRight: ChevronDoubleRight,
ChevronDoubleTop: ChevronDoubleTop,
ChevronDoubleTopleft: ChevronDoubleTopleft,
ChevronDoubleTopright: ChevronDoubleTopright,
ChevronDown: ChevronDown,
ChevronLeft: ChevronLeft,
ChevronRight: ChevronRight,
ChevronSquareDown: ChevronSquareDown,
ChevronSquareDownB: ChevronSquareDownB,
ChevronSquareLeft: ChevronSquareLeft,
ChevronSquareLeftB: ChevronSquareLeftB,
ChevronSquareRight: ChevronSquareRight,
ChevronSquareRightB: ChevronSquareRightB,
ChevronSquareTop: ChevronSquareTop,
ChevronSquareTopB: ChevronSquareTopB,
ChevronTop: ChevronTop,
Chip: Chip,
ChipB: ChipB,
Circle: Circle,
Circle1: Circle1,
Circle10: Circle10,
Circle10B: Circle10B,
Circle11: Circle11,
Circle11B: Circle11B,
Circle12: Circle12,
Circle12B: Circle12B,
Circle12VarB: Circle12VarB,
Circle13: Circle13,
Circle13B: Circle13B,
Circle13VarB: Circle13VarB,
Circle14: Circle14,
Circle14AltVarB: Circle14AltVarB,
Circle14B: Circle14B,
Circle14VarB: Circle14VarB,
Circle15: Circle15,
Circle15B: Circle15B,
Circle15VarB: Circle15VarB,
Circle1B: Circle1B,
Circle1VarB: Circle1VarB,
Circle2: Circle2,
Circle2B: Circle2B,
Circle2VarB: Circle2VarB,
Circle3: Circle3,
Circle3B: Circle3B,
Circle3VarB: Circle3VarB,
Circle4: Circle4,
Circle4B: Circle4B,
Circle4VarB: Circle4VarB,
Circle5: Circle5,
Circle5B: Circle5B,
Circle6: Circle6,
Circle6B: Circle6B,
Circle7: Circle7,
Circle7B: Circle7B,
Circle8: Circle8,
Circle8B: Circle8B,
Circle9: Circle9,
Circle9B: Circle9B,
CircleB: CircleB,
CircleHeart: CircleHeart,
CircleTimes: CircleTimes,
ClockCircle: ClockCircle,
ClockCircleB: ClockCircleB,
ClockSqaure: ClockSqaure,
ClockSqaureB: ClockSqaureB,
Cloud: Cloud,
CloudB: CloudB,
CloudCircle: CloudCircle,
CloudCircleB: CloudCircleB,
CloudSun: CloudSun,
CloudSunB: CloudSunB,
CloudSunVarB: CloudSunVarB,
Coathanger: Coathanger,
CoathangerB: CoathangerB,
CodeBox: CodeBox,
CodeBoxAlt: CodeBoxAlt,
CodeBoxAltB: CodeBoxAltB,
CodeBoxB: CodeBoxB,
CodeCircle: CodeCircle,
CodeCircleB: CodeCircleB,
CodeCircleVertical: CodeCircleVertical,
CodeCircleVerticalB: CodeCircleVerticalB,
CodeHex: CodeHex,
CodeHexB: CodeHexB,
CodeHexVertical: CodeHexVertical,
CodeHexVerticalB: CodeHexVerticalB,
CodeRectanlge: CodeRectanlge,
CodeRectanlgeB: CodeRectanlgeB,
CodeSquare: CodeSquare,
CodeSquareB: CodeSquareB,
CodeSquareVertical: CodeSquareVertical,
CodeSquareVerticalB: CodeSquareVerticalB,
Coin: Coin,
CoinB: CoinB,
Coins: Coins,
CoinsB: CoinsB,
CommentHeart: CommentHeart,
CompassCircle: CompassCircle,
CompassCircleB: CompassCircleB,
CompassSquare: CompassSquare,
CompassSquareB: CompassSquareB,
Copy: Copy,
CopyA: CopyA,
CopyAb: CopyAb,
CopyAvarB: CopyAvarB,
CopyB: CopyB,
CopyOverlap: CopyOverlap,
CopyOverlapB: CopyOverlapB,
CopySquare: CopySquare,
CopySquareB: CopySquareB,
CopySquareB1: CopySquareB1,
CricketBall: CricketBall,
CricketBallB: CricketBallB,
Cross: Cross,
CrossBlock: CrossBlock,
CrossBlockB: CrossBlockB,
CrossSquare: CrossSquare,
CrossSquareB: CrossSquareB,
Crown: Crown,
CrownAlt: CrownAlt,
CrownAltB: CrownAltB,
CrownB: CrownB,
CubeOverlap: CubeOverlap,
Cup: Cup,
CupAlt: CupAlt,
CupAltB: CupAltB,
CupB: CupB,
CupSmooth: CupSmooth,
CupSmoothAlt: CupSmoothAlt,
CupSmoothAltB: CupSmoothAltB,
CupSmoothB: CupSmoothB,
Currency: Currency,
CurrencyAlt: CurrencyAlt,
CurrencyAltB: CurrencyAltB,
CurrencyAltVarB: CurrencyAltVarB,
CurrencyVarB: CurrencyVarB,
Cursor: Cursor,
CursorB: CursorB,
CursorCircle: CursorCircle,
CursorCircle1: CursorCircle1,
CursorCircleB: CursorCircleB,
CursorCircleB1: CursorCircleB1,
CursorCircleDashed: CursorCircleDashed,
CursorCircleDashedB: CursorCircleDashedB,
CursorSqaureAlt: CursorSqaureAlt,
CursorSqaureAltB: CursorSqaureAltB,
CursorSqaureAltDashed: CursorSqaureAltDashed,
CursorSqaureAltDashedB: CursorSqaureAltDashedB,
CursorSquare: CursorSquare,
CursorSquareB: CursorSquareB,
CursorSquareDashed: CursorSquareDashed,
CursorSquareDashedB: CursorSquareDashedB,
CurvedRectangle: CurvedRectangle,
CurvedRectangleA: CurvedRectangleA,
CurvedRectangleAb: CurvedRectangleAb,
CurvedRectangleB: CurvedRectangleB,
CurvedSquare: CurvedSquare,
CurvedSquareB: CurvedSquareB,
Cylinder: Cylinder,
CylinderA: CylinderA,
CylinderAb: CylinderAb,
CylinderB: CylinderB,
Dashboard: Dashboard,
DashboardGrid: DashboardGrid,
DashboardGridB: DashboardGridB,
DashboardSemi: DashboardSemi,
DashboardSemiB: DashboardSemiB,
DashboardSquare: DashboardSquare,
DashboardSquareB: DashboardSquareB,
DashedCircle: DashedCircle,
DashedSquare: DashedSquare,
DashedSquareA: DashedSquareA,
Database: Database,
DatabaseB: DatabaseB,
Delete: Delete,
DeleteA: DeleteA,
DeleteAb: DeleteAb,
DeleteB: DeleteB,
DesignAlignCenter: DesignAlignCenter,
DesignAlignCenterB: DesignAlignCenterB,
DesignAlignLeft: DesignAlignLeft,
DesignAlignLeftB: DesignAlignLeftB,
DesignAlignRight: DesignAlignRight,
DesignAlignRightB: DesignAlignRightB,
Diamond: Diamond,
DiamondAdd: DiamondAdd,
DiamondAlt: DiamondAlt,
DiamondB: DiamondB,
DiamondBlock: DiamondBlock,
DiamondCheck: DiamondCheck,
DiamondCode: DiamondCode,
DiamondCross: DiamondCross,
DiamondHear: DiamondHear,
DiamondRing: DiamondRing,
DiamondRingB: DiamondRingB,
Dice: Dice,
Dice1: Dice1,
Dice2: Dice2,
Dice2B: Dice2B,
Dice3: Dice3,
Dice3B: Dice3B,
Dice4: Dice4,
Dice4B: Dice4B,
Dice5: Dice5,
Dice5B: Dice5B,
Dice6: Dice6,
Dice6B: Dice6B,
DiceAdd: DiceAdd,
DiceBlock: DiceBlock,
DiceCross: DiceCross,
DiceHeart: DiceHeart,
Dices: Dices,
DicesB: DicesB,
DicesVarB: DicesVarB,
Discount: Discount,
DiscountB: DiscountB,
Dislike: Dislike,
DislikeB: DislikeB,
DislikeVarB: DislikeVarB,
DivideBlock: DivideBlock,
DivideBlockB: DivideBlockB,
Door: Door,
DoorB: DoorB,
DotdotType: DotdotType,
Download: Download,
Drawer: Drawer,
DrawerB: DrawerB,
Dumbell: Dumbell,
DumbellAlt: DumbellAlt,
DumbellAltB: DumbellAltB,
DumbellB: DumbellB,
Earth: Earth,
EarthB: EarthB,
EarthVarB: EarthVarB,
Edit: Edit,
EditB: EditB,
EditSquare: EditSquare,
EditSquareB: EditSquareB,
Egg: Egg,
EggB: EggB,
EllipsisDoubleH: EllipsisDoubleH,
EllipsisDoubleHb: EllipsisDoubleHb,
EllipsisDoubleV: EllipsisDoubleV,
EllipsisDoubleVb: EllipsisDoubleVb,
EllipsisH: EllipsisH,
EllipsisHb: EllipsisHb,
EllipsisHcircle: EllipsisHcircle,
EllipsisHcircleB: EllipsisHcircleB,
EllipsisHpill: EllipsisHpill,
EllipsisHpillB: EllipsisHpillB,
EllipsisHsquare: EllipsisHsquare,
EllipsisHsquareB: EllipsisHsquareB,
EllipsisV: EllipsisV,
EllipsisVb: EllipsisVb,
EllipsisVcircle: EllipsisVcircle,
EllipsisVcircle1: EllipsisVcircle1,
EllipsisVcircleB: EllipsisVcircleB,
EllipsisVpill: EllipsisVpill,
EllipsisVpillB: EllipsisVpillB,
EllipsisVsquareB: EllipsisVsquareB,
Emrald: Emrald,
EmraldB: EmraldB,
EqualSquare: EqualSquare,
EqualSquareB: EqualSquareB,
ErrorCircle: ErrorCircle,
ErrorCircleB: ErrorCircleB,
ErrorHexagon: ErrorHexagon,
ErrorHexagonB: ErrorHexagonB,
ErrorSquare: ErrorSquare,
ErrorSquareB: ErrorSquareB,
Explosive: Explosive,
ExplosiveB: ExplosiveB,
Eyeliner: Eyeliner,
EyelinerB: EyelinerB,
Female: Female,
FemaleB: FemaleB,
File: File,
FileAdd: FileAdd,
FileAddB: FileAddB,
FileB: FileB,
FileBlock: FileBlock,
FileBlockB: FileBlockB,
FileCheck: FileCheck,
FileCheckB: FileCheckB,
FileCode: FileCode,
FileCodeB: FileCodeB,
FileCross: FileCross,
FileCrossB: FileCrossB,
FileDownload: FileDownload,
FileDownloadB: FileDownloadB,
FileHeart: FileHeart,
FileInFolder: FileInFolder,
FileInFolderB: FileInFolderB,
FileInFolderVarB: FileInFolderVarB,
FileUpload: FileUpload,
FileUploadB: FileUploadB,
FileVarB: FileVarB,
Flag: Flag,
FlagAlt: FlagAlt,
FlagAltB: FlagAltB,
FlagAltVarB: FlagAltVarB,
FlagB: FlagB,
FlagTriangle: FlagTriangle,
FlagTriangleB: FlagTriangleB,
Flask: Flask,
FlaskB: FlaskB,
FlexStand: FlexStand,
FlexStandB: FlexStandB,
FlexStandFilled: FlexStandFilled,
FlexStandFilledB: FlexStandFilledB,
Folder: Folder,
FolderAdd: FolderAdd,
FolderAddB: FolderAddB,
FolderB: FolderB,
FolderBlock: FolderBlock,
FolderBlockB: FolderBlockB,
FolderCheck: FolderCheck,
FolderCheckB: FolderCheckB,
FolderCross: FolderCross,
FolderCrossB: FolderCrossB,
FolderHeart: FolderHeart,
FolderHeartB: FolderHeartB,
FoldersShelf: FoldersShelf,
FoldersShelfB: FoldersShelfB,
Football: Football,
FootballA: FootballA,
FootballAb: FootballAb,
FootballB: FootballB,
Fork: Fork,
ForkB: ForkB,
ForkDiag: ForkDiag,
ForkDiagB: ForkDiagB,
Frame1039: Frame1039,
Frame964: Frame964,
Fruits: Fruits,
Gameboy: Gameboy,
GameboyB: GameboyB,
Git: Git,
GitAlt: GitAlt,
GitAltB: GitAltB,
GitArrowUp: GitArrowUp,
GitArrowUpB: GitArrowUpB,
GitB: GitB,
Glass: Glass,
GlassHalf: GlassHalf,
GlassHalfB: GlassHalfB,
GlassStraw: GlassStraw,
GlassStrawB: GlassStrawB,
Graphdown: Graphdown,
GraphdownB: GraphdownB,
Graphup: Graphup,
GraphupB: GraphupB,
Guitar: Guitar,
HandheldConsole: HandheldConsole,
HandheldConsoleB: HandheldConsoleB,
Hashtag: Hashtag,
HashtagCircle: HashtagCircle,
HashtagCircleB: HashtagCircleB,
HashtagSquare: HashtagSquare,
HashtagSquareB: HashtagSquareB,
Hat: Hat,
HatB: HatB,
Headphone: Headphone,
HeadphoneAdd: HeadphoneAdd,
HeadphoneAddB: HeadphoneAddB,
HeadphoneB: HeadphoneB,
HeadphoneCross: HeadphoneCross,
HeadphoneCrossB: HeadphoneCrossB,
HeadphoneFancy: HeadphoneFancy,
HeadphoneFancyB: HeadphoneFancyB,
Heart: Heart,
HeartB: HeartB,
HeartHalf: HeartHalf,
HeartRate: Heartrate,
Hearts: Hearts,
HeartsAlt: HeartsAlt,
HeartsB: HeartsB,
Heptagon: Heptagon,
HeptagonB: HeptagonB,
HexAdd: HexAdd,
HexAddB: HexAddB,
HexCross: HexCross,
HexCross1: HexCross1,
HexCrossB: HexCrossB,
HexCrossB1: HexCrossB1,
Hockey: Hockey,
HockeyB: HockeyB,
HomeCh: HomeCh,
HomeChB: HomeChB,
HomeCircle: HomeCircle,
HomeCircle1: HomeCircle1,
HomeCircleB: HomeCircleB,
HomeCircleB1: HomeCircleB1,
HomeCircleCh: HomeCircleCh,
HomeCircleChB: HomeCircleChB,
HomeEmpty: HomeEmpty,
HomeEmptyB: HomeEmptyB,
HomeGarage: HomeGarage,
HomeGarageB: HomeGarageB,
HomeGarageCircle: HomeGarageCircle,
HomeGarageCircleChA: HomeGarageCircleChA,
HomeGarageCircleChAb: HomeGarageCircleChAb,
HomeGarageCircleVarB: HomeGarageCircleVarB,
HomeGarageLine: HomeGarageLine,
HomeGarageLineB: HomeGarageLineB,
HomeLargedoor: HomeLargedoor,
HomeLargedoorB: HomeLargedoorB,
HomeLargedoorCircle: HomeLargedoorCircle,
HomeLargedoorCircleB: HomeLargedoorCircleB,
HomeLargedoorCircleCh: HomeLargedoorCircleCh,
HomeLargedoorCircleChB: HomeLargedoorCircleChB,
HomeMinimal: HomeMinimal,
HomeMinimalB: HomeMinimalB,
Icecream: Icecream,
IcecreamB: IcecreamB,
IcecreamVarB: IcecreamVarB,
IdCircle: IdCircle,
IdCircleB: IdCircleB,
IdCircleVarB: IdCircleVarB,
IdSquare: IdSquare,
IdSquareB: IdSquareB,
IdSquareVarB: IdSquareVarB,
Image: Image,
ImageAdd: ImageAdd,
ImageAddB: ImageAddB,
ImageAlt: ImageAlt,
ImageAltB: ImageAltB,
ImageB: ImageB,
ImageBlock: ImageBlock,
ImageBlockB: ImageBlockB,
ImageCheck: ImageCheck,
ImageCheckB: ImageCheckB,
ImageCircleAlt: ImageCircleAlt,
ImageCircleAltB: ImageCircleAltB,
ImageCross: ImageCross,
ImageCrossB: ImageCrossB,
ImageMinimal: ImageMinimal,
ImageMinimalB: ImageMinimalB,
ImageMinimalCircle: ImageMinimalCircle,
ImageMinimalCircleB: ImageMinimalCircleB,
ImageMountains: ImageMountains,
ImageMountainsB: ImageMountainsB,
ImageMountainsCircle: ImageMountainsCircle,
ImageMountainsCircleB: ImageMountainsCircleB,
ImageVarB: ImageVarB,
Images: Images,
ImagesB: ImagesB,
ImagesVarB: ImagesVarB,
ImaheCircle: ImaheCircle,
Inbox: Inbox,
InboxB: InboxB,
InboxCircle: InboxCircle,
InboxCircleB: InboxCircleB,
InboxEmpty: InboxEmpty,
InboxEmptyB: InboxEmptyB,
InboxVarB: InboxVarB,
Incognito: Incognito,
IncognitoB: IncognitoB,
InfoCircle: InfoCircle,
InfoCircleB: InfoCircleB,
InfoOctagon: InfoOctagon,
InfoOctagonB: InfoOctagonB,
InfoSquare: InfoSquare,
InfoSquareB: InfoSquareB,
Intersection: Intersection,
Iphone: Iphone,
Italics: Italics,
Joystick: Joystick,
JoystickAlt: JoystickAlt,
JoystickAltB: JoystickAltB,
JoystickB: JoystickB,
JoystickCute: JoystickCute,
JoystickCuteB: JoystickCuteB,
Key: Key,
KeyB: KeyB,
KeyStraight: KeyStraight,
KeyStraightB: KeyStraightB,
Keypad: Keypad,
KeypadB: KeypadB,
Knife: Knife,
KnifeB: KnifeB,
Knight: Knight,
KnightB: KnightB,
Laptop: Laptop,
LaptopAdd: LaptopAdd,
LaptopAddB: LaptopAddB,
LaptopB: LaptopB,
LaptopBlock: LaptopBlock,
LaptopBlockB: LaptopBlockB,
LaptopCheck: LaptopCheck,
LaptopCheckB: LaptopCheckB,
LaptopCode: LaptopCode,
LaptopCodeB: LaptopCodeB,
LaptopCross: LaptopCross,
LaptopCrossB: LaptopCrossB,
LaptopSlanted: LaptopSlanted,
LaptopSlantedB: LaptopSlantedB,
Like: Like,
Like1: Like1,
LikeB: LikeB,
LikeVarB: LikeVarB,
LineUp: LineUp,
LineUpB: LineUpB,
Link: Link,
Lipstick: Lipstick,
LipstickB: LipstickB,
Lock: Lock,
LockAlt: LockAlt,
LockAltB: LockAltB,
LockB: LockB,
LockKeyhole: LockKeyhole,
LockKeyholeB: LockKeyholeB,
LockOpen: LockOpen,
LockOpenB: LockOpenB,
LockPartialopen: LockPartialopen,
LockPartialopenB: LockPartialopenB,
LogIn: LogIn,
LogOut: LogOut,
Magicwand: Magicwand,
MagicwandB: MagicwandB,
Mail: Mail,
MailAdd: MailAdd,
MailAlt: MailAlt,
MailB: MailB,
MailBranch: MailBranch,
MailBranchAlt: MailBranchAlt,
MailBranchAltB: MailBranchAltB,
MailBranchB: MailBranchB,
MailCheck: MailCheck,
MailCode: MailCode,
MailCross: MailCross,
MailDownright: MailDownright,
MailOutline: MailOutline,
MailTopleft: MailTopleft,
Male: Male,
MaleB: MaleB,
Mantra: Mantra,
MantraB: MantraB,
Map: Map$1,
MapAlt: MapAlt,
MapB: MapB,
MapPin: MapPin,
MapPinB: MapPinB,
Message: Message,
MessageAdd: MessageAdd,
MessageAlt: MessageAlt,
MessageAltB: MessageAltB,
MessageB: MessageB,
MessageCircle: MessageCircle,
MessageCircleAdd: MessageCircleAdd,
MessageCircleAddB: MessageCircleAddB,
MessageCircleB: MessageCircleB,
MessageCircleCross: MessageCircleCross,
MessageCircleCrossB: MessageCircleCrossB,
MessageCode: MessageCode,
MessageCross: MessageCross,
MessageHeart: MessageHeart,
MessageMinimal: MessageMinimal,
MessageMinimalAdd: MessageMinimalAdd,
MessageMinimalB: MessageMinimalB,
MessageMinimalCheck: MessageMinimalCheck,
MessageMinimalCross: MessageMinimalCross,
MessageMinimalHeart: MessageMinimalHeart,
MessageSearch: MessageSearch,
MessageSearchB: MessageSearchB,
MessageUser: MessageUser,
MessageUserB: MessageUserB,
Meter: Meter,
MeterB: MeterB,
Mic: Mic,
MicAlt: MicAlt,
MicB: MicB,
MicCircle: MicCircle,
MicCircleB: MicCircleB,
MicCircleDashed: MicCircleDashed,
MicCircleDashedB: MicCircleDashedB,
MicEmpty: MicEmpty,
MicEmptyB: MicEmptyB,
MicSquare: MicSquare,
MicSquareAlt: MicSquareAlt,
MicSquareAltB: MicSquareAltB,
MicSquareB: MicSquareB,
Microphone: Microphone,
MicrophoneB: MicrophoneB,
MinusBlock: MinusBlock,
MinusBlockB: MinusBlockB,
MinusSquare: MinusSquare,
MinusSquareB: MinusSquareB,
Money: Money,
MoneyAdd: MoneyAdd,
MoneyAddB: MoneyAddB,
MoneyB: MoneyB,
MoneyBlock: MoneyBlock,
MoneyBlockB: MoneyBlockB,
MoneyCheck: MoneyCheck,
MoneyCheckB: MoneyCheckB,
MoneyCode: MoneyCode,
MoneyCodeB: MoneyCodeB,
MoneyCross: MoneyCross,
MoneyCrossB: MoneyCrossB,
MoneyDiag: MoneyDiag,
MoneyDiagB: MoneyDiagB,
MoneyDiagVarB: MoneyDiagVarB,
MoneyHeart: MoneyHeart,
MoneyHeartB: MoneyHeartB,
MoneyStack: MoneyStack,
MoneyStackB: MoneyStackB,
MoneyStackVarB: MoneyStackVarB,
MoneyVarB: MoneyVarB,
Monitor: Monitor,
MonitorAlt: MonitorAlt,
MonitorAltB: MonitorAltB,
MonitorB: MonitorB,
MonitorBack: MonitorBack,
MonitorBackB: MonitorBackB,
MonitorBackVarB: MonitorBackVarB,
MonitorDownload: MonitorDownload,
MonitorMac: MonitorMac,
MonitorMacAlt: MonitorMacAlt,
MonitorMacAltB: MonitorMacAltB,
MonitorMacAltVarB: MonitorMacAltVarB,
MonitorMacB: MonitorMacB,
MonitorMacVarB: MonitorMacVarB,
MonitorReception: MonitorReception,
MonitorReceptionB: MonitorReceptionB,
MonitorTriangle: MonitorTriangle,
MonitorTriangleB: MonitorTriangleB,
MonitorUpload: MonitorUpload,
Moon: Moon,
Mountains: Mountains,
MountainsB: MountainsB,
Mouse: Mouse,
MouseAlt: MouseAlt,
MouseAltB: MouseAltB,
MouseApple: MouseApple,
MouseB: MouseB,
Movie: Movie,
MovieAdd: MovieAdd,
MovieAddB: MovieAddB,
MovieB: MovieB,
MovieBlock: MovieBlock,
MovieCheck: MovieCheck,
MovieCheckB: MovieCheckB,
MovieCross: MovieCross,
MovieCrossB: MovieCrossB,
MovieHeart: MovieHeart,
MoviePause: MoviePause,
MoviePauseB: MoviePauseB,
Nav: Nav,
NavAlt: NavAlt,
NavAltB: NavAltB,
NavAltVarB: NavAltVarB,
NavB: NavB,
NavDiag: NavDiag,
NavDiagB: NavDiagB,
NineKey: NineKey,
NineKeyB: NineKeyB,
NoEntry: NoEntry,
NoEntryB: NoEntryB,
NoEntryVarB: NoEntryVarB,
NoteLocate: NoteLocate,
NoteLocateB: NoteLocateB,
NotePinned: NotePinned,
NotePinnedB: NotePinnedB,
NotePinnedFilled: NotePinnedFilled,
NotePinnedFilledB: NotePinnedFilledB,
NoteSearch: NoteSearch,
NoteSearchB: NoteSearchB,
Notebook: Notebook,
NotebookOpen: NotebookOpen,
NotebookOpenB: NotebookOpenB,
Notes: Notes,
NotesB: NotesB,
NotesPaper: NotesPaper,
NotesPaperB: NotesPaperB,
NotesVarB: NotesVarB,
Notification: Notification,
NotificationAlert: NotificationAlert,
NotificationAlertA: NotificationAlertA,
NotificationAlertAb: NotificationAlertAb,
NotificationAlertB: NotificationAlertB,
NotificationB: NotificationB,
NotificationMinimal: NotificationMinimal,
NotificationMinimalAlert: NotificationMinimalAlert,
NotificationMinimalAlertA: NotificationMinimalAlertA,
NotificationMinimalAlertAb: NotificationMinimalAlertAb,
NotificationMinimalAlertB: NotificationMinimalAlertB,
NotificationMinimalB: NotificationMinimalB,
Octagon: Octagon,
OctagonB: OctagonB,
Omlette: Omlette,
OmletteB: OmletteB,
Paintbrush: Paintbrush,
PaintbrushAlt: PaintbrushAlt,
PaintbrushAltB: PaintbrushAltB,
PaintbrushB: PaintbrushB,
PaintbrushVarB: PaintbrushVarB,
Palette: Palette,
PaletteB: PaletteB,
PaletteVarB: PaletteVarB,
ParaAdd: ParaAdd,
ParaBlock: ParaBlock,
ParaCheck: ParaCheck,
ParaCircle: ParaCircle,
ParaCircleB: ParaCircleB,
ParaCross: ParaCross,
ParaHeart: ParaHeart,
ParaPlay: ParaPlay,
ParaPlayB: ParaPlayB,
ParaSearch: ParaSearch,
ParaSearchB: ParaSearchB,
ParabolaDown: ParabolaDown,
ParabolaUp: ParabolaUp,
ParallelogramTool: ParallelogramTool,
ParallelogramToolAlt: ParallelogramToolAlt,
ParallelogramToolAltB: ParallelogramToolAltB,
ParallelogramToolB: ParallelogramToolB,
PercentBlock: PercentBlock,
PercentBlockB: PercentBlockB,
Phone: Phone,
PhoneAdd: PhoneAdd,
PhoneAddB: PhoneAddB,
PhoneB: PhoneB,
PhoneBlock: PhoneBlock,
PhoneBlockB: PhoneBlockB,
PhoneCheck: PhoneCheck,
PhoneCheckB: PhoneCheckB,
PhoneClassic: PhoneClassic,
PhoneClassicB: PhoneClassicB,
PhoneClassicVarB: PhoneClassicVarB,
PhoneCross: PhoneCross,
PhoneCrossB: PhoneCrossB,
PhoneHeart: PhoneHeart,
PhoneHeartB: PhoneHeartB,
PhoneIncoming: PhoneIncoming,
PhoneIncomingB: PhoneIncomingB,
PhoneMissed: PhoneMissed,
PhoneMissedB: PhoneMissedB,
PhoneOutgoing: PhoneOutgoing,
PhoneOutgoingB: PhoneOutgoingB,
PhonePlay: PhonePlay,
PhonePlayB: PhonePlayB,
Piano: Piano,
PianoB: PianoB,
Pie: Pie,
PieAlt: PieAlt,
PieB: PieB,
PieDivided: PieDivided,
PieDividedB: PieDividedB,
PieHalf: PieHalf,
PieHalfB: PieHalfB,
PieHalfVarB: PieHalfVarB,
PieVarB: PieVarB,
Pin: Pin,
PinAdd: PinAdd,
PinAddB: PinAddB,
PinB: PinB,
PinCircle: PinCircle,
PinCircleB: PinCircleB,
PinCross: PinCross,
PinCrossB: PinCrossB,
Pizzatime: Pizzatime,
PizzatimeB: PizzatimeB,
Plant: Plant,
PlantB: PlantB,
PlantVarB: PlantVarB,
Play: Play,
PlayCircle: PlayCircle,
PlayCircleB: PlayCircleB,
PlayCircleDashed: PlayCircleDashed,
PlayCircleDashedB: PlayCircleDashedB,
PlayEqual: PlayEqual,
PlayEqualB: PlayEqualB,
PlayHex: PlayHex,
PlayHexB: PlayHexB,
PlayHexVarB: PlayHexVarB,
PlayPause: PlayPause,
PlayPauseB: PlayPauseB,
PlaySqaure: PlaySqaure,
PlaySqaureB: PlaySqaureB,
PlaySquareDashed: PlaySquareDashed,
PlaySquareDashedB: PlaySquareDashedB,
Popsicle: Popsicle,
PopsicleB: PopsicleB,
PowerButton: PowerButton,
Presentation: Presentation,
PresentationAlt: PresentationAlt,
PresentationAltB: PresentationAltB,
PresentationAltVarB: PresentationAltVarB,
PresentationB: PresentationB,
PresentationChart: PresentationChart,
PresentationChartB: PresentationChartB,
Printer: Printer,
PrinterB: PrinterB,
PrinterVarB: PrinterVarB,
Projector: Projector,
ProjectorB: ProjectorB,
Pumpkin: Pumpkin,
PumpkinB: PumpkinB,
PumpkinVarB: PumpkinVarB,
Puzzle: Puzzle,
PuzzleB: PuzzleB,
Radio: Radio,
Radio1: Radio1,
RadioB: RadioB,
RadioButton: RadioButton,
RadioButtonB: RadioButtonB,
Rain: Rain,
RainB: RainB,
ReactangleHalf: ReactangleHalf,
ReactangleHalfB: ReactangleHalfB,
Reel: Reel,
ReelAdd: ReelAdd,
ReelBlock: ReelBlock,
ReelCheck: ReelCheck,
ReelCode: ReelCode,
ReelCross: ReelCross,
Responsive: Responsive,
ResponsiveB: ResponsiveB,
ResponsiveVarB: ResponsiveVarB,
Rhombus: Rhombus,
RhombusB: RhombusB,
Rugby: Rugby,
RugbyHelmet: RugbyHelmet,
RugbyHelmetB: RugbyHelmetB,
Ruler: Ruler,
RulerDiag: RulerDiag,
Sanitizer: Sanitizer,
SanitizerB: SanitizerB,
SanitizerMinimal: SanitizerMinimal,
SanitizerMinimalB: SanitizerMinimalB,
Save: Save,
SaveB: SaveB,
SaveVarB: SaveVarB,
Scan: Scan,
ScanAdd: ScanAdd,
ScanBlock: ScanBlock,
ScanCamera: ScanCamera,
ScanCameraB: ScanCameraB,
ScanCheck: ScanCheck,
ScanCode: ScanCode,
ScanCross: ScanCross,
ScanKey: ScanKey,
ScanKeyB: ScanKeyB,
ScanLock: ScanLock,
ScanLockB: ScanLockB,
ScanSearch: ScanSearch,
ScanSearchB: ScanSearchB,
Scooter: Scooter,
ScooterB: ScooterB,
ScooterVarB: ScooterVarB,
ScrollH: ScrollH,
ScrollHb: ScrollHb,
ScrollV: ScrollV,
ScrollVb: ScrollVb,
Search: Search,
SearchAdd: SearchAdd,
SearchAddB: SearchAddB,
SearchB: SearchB,
SearchCircle: SearchCircle,
SearchCross: SearchCross,
SearchCrossB: SearchCrossB,
SearchHeart: SearchHeart,
SearchMinus: SearchMinus,
SearchMinusB: SearchMinusB,
SearchSquare: SearchSquare,
SearchSquareB: SearchSquareB,
SendMessage: SendMessage,
Server: Server,
ServerB: ServerB,
ServerDivided: ServerDivided,
ServerDividedB: ServerDividedB,
SettingsCog: SettingsCog,
SettingsCogB: SettingsCogB,
SettingsHorizontal: SettingsHorizontal,
SettingsHorizontalB: SettingsHorizontalB,
SettingsVertical: SettingsVertical,
SettingsVerticalB: SettingsVerticalB,
SevenKey: SevenKey,
SevenKeyB: SevenKeyB,
Shield: Shield,
ShieldAdd: ShieldAdd,
ShieldAddB: ShieldAddB,
ShieldB: ShieldB,
ShieldBlock: ShieldBlock,
ShieldBlockB: ShieldBlockB,
ShieldCheck: ShieldCheck,
ShieldCheckB: ShieldCheckB,
ShieldCode: ShieldCode,
ShieldCodeB: ShieldCodeB,
ShieldCross: ShieldCross,
ShieldCrossB: ShieldCrossB,
ShieldHeart: ShieldHeart,
ShieldImage: ShieldImage,
ShieldImageB: ShieldImageB,
ShieldScroll: ShieldScroll,
ShieldScrollB: ShieldScrollB,
Signal: Signal,
Simcard: Simcard,
SimcardB: SimcardB,
SmartwatcCircle: SmartwatcCircle,
SmartwatcCircleB: SmartwatcCircleB,
SmartwatcCircleTime: SmartwatcCircleTime,
SmartwatcCircleTimeB: SmartwatcCircleTimeB,
SmartwatcSquare: SmartwatcSquare,
SmartwatcSquareB: SmartwatcSquareB,
SmartwatcSquareTime: SmartwatcSquareTime,
SmartwatcSquareTimeB: SmartwatcSquareTimeB,
Snow: Snow,
SnowB: SnowB,
Sound: Sound,
SoundB: SoundB,
Speaker: Speaker,
SpeakerB: SpeakerB,
Spoon: Spoon,
SpoonB: SpoonB,
SpoonDiag: SpoonDiag,
SpoonDiagB: SpoonDiagB,
Square: Square,
Square1: Square1,
Square10: Square10,
Square10B: Square10B,
Square11: Square11,
Square11B: Square11B,
Square12: Square12,
Square12B: Square12B,
Square12VarB: Square12VarB,
Square13: Square13,
Square13B: Square13B,
Square13VarB: Square13VarB,
Square14: Square14,
Square14B: Square14B,
Square14VarB: Square14VarB,
Square15: Square15,
Square15B: Square15B,
Square1B: Square1B,
Square1VarB: Square1VarB,
Square2: Square2,
Square2B: Square2B,
Square2VarB: Square2VarB,
Square3: Square3,
Square3B: Square3B,
Square3VarB: Square3VarB,
Square4: Square4,
Square4B: Square4B,
Square4VarB: Square4VarB,
Square5: Square5,
Square5B: Square5B,
Square6: Square6,
Square6B: Square6B,
Square7: Square7,
Square7B: Square7B,
Square8: Square8,
Square8B: Square8B,
Square9: Square9,
Square9B: Square9B,
SquareB: SquareB,
SquareCircle: SquareCircle,
SquareCircleB: SquareCircleB,
SquareDiagCircle: SquareDiagCircle,
SquareDiagCircleB: SquareDiagCircleB,
SquareDiagHalf: SquareDiagHalf,
SquareDiagHalfB: SquareDiagHalfB,
SquareDiagHalfVarB: SquareDiagHalfVarB,
SquareHeart: SquareHeart,
SquareTool: SquareTool,
SquareToolB: SquareToolB,
Stack: Stack,
StackAlt: StackAlt,
StackAltB: StackAltB,
StackB: StackB,
Star: Star,
StarB: StarB,
StarHalfB: StarHalfB,
StarWand: StarWand,
StarWandB: StarWandB,
Stethoscope: Stethoscope,
StethoscopeB: StethoscopeB,
Stickynote: Stickynote,
StickynoteB: StickynoteB,
StickynoteVarB: StickynoteVarB,
Suitcase: Suitcase,
SuitcaseB: SuitcaseB,
SuitcaseMinimal: SuitcaseMinimal,
SuitcaseMinimalB: SuitcaseMinimalB,
SuitcaseVarB: SuitcaseVarB,
SunCloud: SunCloud,
SunCloudB: SunCloudB,
SunCloudVarB: SunCloudVarB,
Switch: Switch,
SwitchActive: SwitchActive,
SwitchAdd: SwitchAdd,
SwitchAddB: SwitchAddB,
SwitchCross: SwitchCross,
SwitchCrossB: SwitchCrossB,
Sword: Sword,
SwordB: SwordB,
Target: Target,
Tennis: Tennis,
TennisB: TennisB,
TennisVarB: TennisVarB,
Terminal: Terminal,
TerminalB: TerminalB,
Tetris1: Tetris1,
Tetris1B: Tetris1B,
Tetris2: Tetris2,
Tetris2B: Tetris2B,
Tetris3: Tetris3,
Tetris3B: Tetris3B,
Tetris4: Tetris4,
Tetris4B: Tetris4B,
Tetris5: Tetris5,
Tetris5B: Tetris5B,
Tetris6: Tetris6,
Tetris6B: Tetris6B,
Tetris7: Tetris7,
Tetris7B: Tetris7B,
Tetris8: Tetris8,
Tetris8B: Tetris8B,
Tetris9: Tetris9,
Tetris9B: Tetris9B,
Tie: Tie,
TieAlt: TieAlt,
TieB: TieB,
TiePattern: TiePattern,
TiePatternB: TiePatternB,
Tree: Tree,
Triangle: Triangle,
TriangleAlt: TriangleAlt,
TriangleB: TriangleB,
TriangleReverse: TriangleReverse,
TriangleReverseB: TriangleReverseB,
Tv: Tv,
TvAlt: TvAlt,
TvAltB: TvAltB,
TvAltVarB: TvAltVarB,
TvB: TvB,
TypeDotdot: TypeDotdot,
Underline: Underline,
Underpants: Underpants,
UnderpantsB: UnderpantsB,
UnderpantsButton: UnderpantsButton,
UnderpantsButtonB: UnderpantsButtonB,
UnderpantsVarB: UnderpantsVarB,
Union: Union,
Union3: Union3,
UnionB: UnionB,
UnionVarB: UnionVarB,
Upload: Upload,
UsbDrive: UsbDrive,
UsbDriveB: UsbDriveB,
UsbDriveVarB: UsbDriveVarB,
User: User,
UserAdd: UserAdd,
UserAddB: UserAddB,
UserB: UserB,
UserBlock: UserBlock,
UserBlockB: UserBlockB,
UserCheck: UserCheck,
UserCircle: UserCircle,
UserCircleAdd: UserCircleAdd,
UserCircleAddB: UserCircleAddB,
UserCircleB: UserCircleB,
UserCircleBlock: UserCircleBlock,
UserCircleBlockB: UserCircleBlockB,
UserCircleCheck: UserCircleCheck,
UserCircleCheckB: UserCircleCheckB,
UserCircleCode: UserCircleCode,
UserCircleCodeB: UserCircleCodeB,
UserCircleCross: UserCircleCross,
UserCircleCrossB: UserCircleCrossB,
UserCircleHeart: UserCircleHeart,
UserCircleHeartB: UserCircleHeartB,
UserCross: UserCross,
UserCrossB: UserCrossB,
UserDownload: UserDownload,
UserDownloadB: UserDownloadB,
UserHeart: UserHeart,
UserHeartB: UserHeartB,
UserSqaureBlock: UserSqaureBlock,
UserSqaureBlockB: UserSqaureBlockB,
UserSqaureCheck: UserSqaureCheck,
UserSqaureCheckB: UserSqaureCheckB,
UserSqaureCode: UserSqaureCode,
UserSqaureCodeB: UserSqaureCodeB,
UserSquare: UserSquare,
UserSquareAdd: UserSquareAdd,
UserSquareAddB: UserSquareAddB,
UserSquareB: UserSquareB,
UserSquareHeart: UserSquareHeart,
UserSquareHeartB: UserSquareHeartB,
UserUpload: UserUpload,
UserUploadB: UserUploadB,
Users: Users,
UsersB: UsersB,
Verify: Verify,
VerifyA: VerifyA,
VerifyAb: VerifyAb,
VerifyB: VerifyB,
Wallet: Wallet,
WalletB: WalletB,
Warning: Warning,
WarningB: WarningB,
Webcam: Webcam,
WebcamB: WebcamB,
Weighingmachine: Weighingmachine,
WeighingmachineB: WeighingmachineB,
Wine: Wine,
WineB: WineB,
WineHalf: WineHalf,
WineHalfB: WineHalfB,
YogaMat: YogaMat,
YogaMatB: YogaMatB
});
export { Add, AddBlock, AddBlockB, AddSqaure, AddSqaureB, AirpodSingle, AirpodSingleB, Airpods, AirpodsAlt, AirpodsAltB, AirpodsB, AirpodsDot, Alarm, AlarmAdd, AlarmAddB, AlarmArrowDown, AlarmArrowDownB, AlarmArrowLeft, AlarmArrowLeftB, AlarmArrowRight, AlarmArrowRightB, AlarmArrowUp, AlarmArrowUpB, AlarmB, AlarmCross, AlarmCrossB, AlarmHeart, AlarmMinus, AlarmMinusB, AlarmStar, AlarmStarB, AlarmTime, AlarmTimeB, AlignBottom, AlignBottomB, AlignCenter, AlignJustify, AlignLeft, AlignRight, AlignTop, AlignTopB, AndroidPhone, AndroidPhoneB, Apps, AppsA, AppsAb, AppsAdd, AppsAddA, AppsAddAb, AppsAddB, AppsB, AppsCross, AppsCrossB, Archive, ArchiveAdd, ArchiveAddB, ArchiveB, ArchiveCross, ArchiveCrossB, ArrowBlockDown, ArrowBlockDownB, ArrowBlockDownleft, ArrowBlockDownleftB, ArrowBlockDownright, ArrowBlockDownrightB, ArrowBlockLeft, ArrowBlockLeftB, ArrowBlockRight, ArrowBlockRightB, ArrowBlockTopleft, ArrowBlockTopleftB, ArrowBlockTopright, ArrowBlockToprightB, ArrowBlockUp, ArrowBlockUpB, ArrowBreakDown, ArrowBreakLeft, ArrowBreakRight, ArrowBreakTop, ArrowCircleDown, ArrowCircleDownB, ArrowCircleDownleft, ArrowCircleDownleftB, ArrowCircleDownright, ArrowCircleDownrightB, ArrowCircleLeft, ArrowCircleLeftB, ArrowCircleRight, ArrowCircleRightB, ArrowCircleTop, ArrowCircleTopB, ArrowCircleTopleft, ArrowCircleTopleftB, ArrowCircleTopright, ArrowCircleToprightB, ArrowCrashDown, ArrowCrashLeft, ArrowCrashRight, ArrowCrashTop, ArrowCurvedDownright, ArrowDoubleheadD, ArrowDoubleheadDa, ArrowDoubleheadH, ArrowDoubleheadV, ArrowDown, ArrowDownleft, ArrowDownright, ArrowDownwards, ArrowDuoDown, ArrowDuoLeft, ArrowDuoRight, ArrowDuoTop, ArrowFullscreen, ArrowLeft, ArrowLoopLeft, ArrowLoopRight, ArrowReverseDownleft, ArrowReverseLongh, ArrowReverseLongv, ArrowReverseShorth, ArrowReverseShortv, ArrowReverseTopleft, ArrowReverseTopright, ArrowRight, ArrowRoundedDownleft, ArrowRoundedDownright, ArrowRoundedTopleft, ArrowRoundedTopright, ArrowSort, ArrowSortB, ArrowSquareDown, ArrowSquareDownB, ArrowSquareDownleft, ArrowSquareDownleftB, ArrowSquareDownright, ArrowSquareDownrightB, ArrowSquareLeft, ArrowSquareLeftB, ArrowSquareRight, ArrowSquareRightB, ArrowSquareTop, ArrowSquareTopB, ArrowSquareTopleft, ArrowSquareTopleftB, ArrowSquareTopright, ArrowSquareToprightB, ArrowTop, ArrowTopleft, ArrowTopright, ArrowTv, ArrowTvDouble, ArrowTvTriple, ArrowUpwards, Atom, Award, AwardB, AwardMinimal, AwardMinimalB, BabyCarriage, BabyCarriageB, Badge, BadgeB, BadgeVarB, Bag, BagAdd, BagAddB, BagAlt, BagAltB, BagB, BagBlock, BagBlockB, BagCheck, BagCheckB, BagCircle, BagCircle1, BagCircleAdd, BagCircleB, BagCircleB1, BagCircleBlock, BagCircleCheck, BagCircleCode, BagCircleCross, BagCode, BagCodeB, BagCross, BagCrossB, Bandaid, BandaidB, BandaidVarB, Bank, BankB, Barchart, BarchartB, BarchartH, BarchartHb, Battery1, Battery1B, Battery2, Battery2B, Battery3, Battery3B, Battery4, Battery4B, Beaker, BeakerB, BeakerHalf, BeakerHalfB, Bed, BedB, Bell, BellB, Board, BoardAdd, BoardB, BoardBlock, BoardChart, BoardChartB, BoardCheck, BoardCode, BoardCodeB, BoardCross, BoardHeart, Bookmark, BookmarkA, BookmarkAb, BookmarkAdd, BookmarkB, BookmarkCross, BookmarkMinus, Bookmarks, BookmarksB, BookmarksBvarB, Bowl, BowlB, Bowling, BowlingB, Box, BoxAdd, BoxAddB, BoxArrowDownleft, BoxArrowDownleftB, BoxArrowTopleft, BoxArrowTopleftB, BoxB, BoxBlock, BoxBlockB, BoxCheck, BoxCheckB, BoxCross, BoxCrossB, BoxCursor, BoxCursorB, BoxDownload, BoxDownloadB, BoxHeart, BoxHeartB, BoxUp, BoxUpB, Braces, Branch, BranchAdd, BranchAddB, BranchB, BranchCheck, BranchCheckB, BranchCross, BranchCrossB, Bread, BreadB, Breadloaf, BringBack, BringFont, BringFontB, Bug, BugB, Bulb, BulbB, Bullseye, BullseyeB, Burger, BurgerB, Button, ButtonB, Cake, Calculator, CalculatorB, Calendar, Calendar7, Calendar7B, CalendarA, CalendarAadd, CalendarAaddB, CalendarAb, CalendarAcheck, CalendarAcheckB, CalendarAcross, CalendarAcrossB, CalendarAdd, CalendarAddB, CalendarAdot, CalendarAdotB, CalendarAdots, CalendarAdotsB, CalendarAgrid, CalendarAgridB, CalendarAheart, CalendarB, CalendarCheck, CalendarCheckB, CalendarCode, CalendarCodeB, CalendarCross, CalendarCrossB, CalendarDash, CalendarDashB, CalendarDot, CalendarDotB, CalendarHeart, CalendarLines, CalendarLinesB, CalendarStar, CalendarStarB, Camera, Camera1, Camera1B, Camera2, Camera2B, CameraB, CameraMinimal, CameraMinimalB, CameraPaper, CameraPaperB, Candy, CandyB, Car, CarB, Card, CardAdd, CardAddB, CardAlt, CardAltB, CardAltVarB, CardB, CardBlock, CardBlockB, CardCheck, CardCheckB, CardCode, CardCodeB, CardCross, CardCrossB, CardDiamond, CardDiamondAlt, CardDiamondAltB, CardDiamondB, CardDownload, CardDownloadB, CardHeart, CardHeartAlt, CardUpload, CardUploadB, CardVarB, CaretDoubleDownleft, CaretDoubleDownleftB, CaretDoubleDownright, CaretDoubleDownrightB, CaretDoubleLeft, CaretDoubleLeftB, CaretDoubleRight, CaretDoubleRight1, CaretDoubleRightB, CaretDoubleRightB1, CaretDoubleTop, CaretDoubleTopB, CaretDoubleTopleft, CaretDoubleTopleftB, CaretDoubleTopright, CaretDoubleToprightB, Cart, CartB, Chalkboard, ChalkboardB, ChartSquare, ChartSquareB, ChartSquareH, ChartSquareHb, CheckCircle, CheckCircleB, CheckSquare, CheckSquareB, Checklist, ChecklistB, ChevronBreakDown, ChevronBreakLeft, ChevronBreakRight, ChevronBreakTop, ChevronCircleDown, ChevronCircleLeft, ChevronCircleRight, ChevronCircleTop, ChevronDoubleDown, ChevronDoubleDownleft, ChevronDoubleDownright, ChevronDoubleLeft, ChevronDoubleRight, ChevronDoubleTop, ChevronDoubleTopleft, ChevronDoubleTopright, ChevronDown, ChevronLeft, ChevronRight, ChevronSquareDown, ChevronSquareDownB, ChevronSquareLeft, ChevronSquareLeftB, ChevronSquareRight, ChevronSquareRightB, ChevronSquareTop, ChevronSquareTopB, ChevronTop, Chip, ChipB, Circle, Circle1, Circle10, Circle10B, Circle11, Circle11B, Circle12, Circle12B, Circle12VarB, Circle13, Circle13B, Circle13VarB, Circle14, Circle14AltVarB, Circle14B, Circle14VarB, Circle15, Circle15B, Circle15VarB, Circle1B, Circle1VarB, Circle2, Circle2B, Circle2VarB, Circle3, Circle3B, Circle3VarB, Circle4, Circle4B, Circle4VarB, Circle5, Circle5B, Circle6, Circle6B, Circle7, Circle7B, Circle8, Circle8B, Circle9, Circle9B, CircleB, CircleHeart, CircleTimes, ClockCircle, ClockCircleB, ClockSqaure, ClockSqaureB, Cloud, CloudB, CloudCircle, CloudCircleB, CloudSun, CloudSunB, CloudSunVarB, Coathanger, CoathangerB, CodeBox, CodeBoxAlt, CodeBoxAltB, CodeBoxB, CodeCircle, CodeCircleB, CodeCircleVertical, CodeCircleVerticalB, CodeHex, CodeHexB, CodeHexVertical, CodeHexVerticalB, CodeRectanlge, CodeRectanlgeB, CodeSquare, CodeSquareB, CodeSquareVertical, CodeSquareVerticalB, Coin, CoinB, Coins, CoinsB, CommentHeart, CompassCircle, CompassCircleB, CompassSquare, CompassSquareB, Copy, CopyA, CopyAb, CopyAvarB, CopyB, CopyOverlap, CopyOverlapB, CopySquare, CopySquareB, CopySquareB1, CricketBall, CricketBallB, Cross, CrossBlock, CrossBlockB, CrossSquare, CrossSquareB, Crown, CrownAlt, CrownAltB, CrownB, CubeOverlap, Cup, CupAlt, CupAltB, CupB, CupSmooth, CupSmoothAlt, CupSmoothAltB, CupSmoothB, Currency, CurrencyAlt, CurrencyAltB, CurrencyAltVarB, CurrencyVarB, Cursor, CursorB, CursorCircle, CursorCircle1, CursorCircleB, CursorCircleB1, CursorCircleDashed, CursorCircleDashedB, CursorSqaureAlt, CursorSqaureAltB, CursorSqaureAltDashed, CursorSqaureAltDashedB, CursorSquare, CursorSquareB, CursorSquareDashed, CursorSquareDashedB, CurvedRectangle, CurvedRectangleA, CurvedRectangleAb, CurvedRectangleB, CurvedSquare, CurvedSquareB, Cylinder, CylinderA, CylinderAb, CylinderB, Dashboard, DashboardGrid, DashboardGridB, DashboardSemi, DashboardSemiB, DashboardSquare, DashboardSquareB, DashedCircle, DashedSquare, DashedSquareA, Database, DatabaseB, Delete, DeleteA, DeleteAb, DeleteB, DesignAlignCenter, DesignAlignCenterB, DesignAlignLeft, DesignAlignLeftB, DesignAlignRight, DesignAlignRightB, Diamond, DiamondAdd, DiamondAlt, DiamondB, DiamondBlock, DiamondCheck, DiamondCode, DiamondCross, DiamondHear, DiamondRing, DiamondRingB, Dice, Dice1, Dice2, Dice2B, Dice3, Dice3B, Dice4, Dice4B, Dice5, Dice5B, Dice6, Dice6B, DiceAdd, DiceBlock, DiceCross, DiceHeart, Dices, DicesB, DicesVarB, Discount, DiscountB, Dislike, DislikeB, DislikeVarB, DivideBlock, DivideBlockB, Door, DoorB, DotdotType, Download, Drawer, DrawerB, Dumbell, DumbellAlt, DumbellAltB, DumbellB, Earth, EarthB, EarthVarB, Edit, EditB, EditSquare, EditSquareB, Egg, EggB, EllipsisDoubleH, EllipsisDoubleHb, EllipsisDoubleV, EllipsisDoubleVb, EllipsisH, EllipsisHb, EllipsisHcircle, EllipsisHcircleB, EllipsisHpill, EllipsisHpillB, EllipsisHsquare, EllipsisHsquareB, EllipsisV, EllipsisVb, EllipsisVcircle, EllipsisVcircle1, EllipsisVcircleB, EllipsisVpill, EllipsisVpillB, EllipsisVsquareB, Emrald, EmraldB, EqualSquare, EqualSquareB, ErrorCircle, ErrorCircleB, ErrorHexagon, ErrorHexagonB, ErrorSquare, ErrorSquareB, Explosive, ExplosiveB, Eyeliner, EyelinerB, Female, FemaleB, File, FileAdd, FileAddB, FileB, FileBlock, FileBlockB, FileCheck, FileCheckB, FileCode, FileCodeB, FileCross, FileCrossB, FileDownload, FileDownloadB, FileHeart, FileInFolder, FileInFolderB, FileInFolderVarB, FileUpload, FileUploadB, FileVarB, Flag, FlagAlt, FlagAltB, FlagAltVarB, FlagB, FlagTriangle, FlagTriangleB, Flask, FlaskB, FlexStand, FlexStandB, FlexStandFilled, FlexStandFilledB, Folder, FolderAdd, FolderAddB, FolderB, FolderBlock, FolderBlockB, FolderCheck, FolderCheckB, FolderCross, FolderCrossB, FolderHeart, FolderHeartB, FoldersShelf, FoldersShelfB, Football, FootballA, FootballAb, FootballB, Fork, ForkB, ForkDiag, ForkDiagB, Frame1039, Frame964, Fruits, Gameboy, GameboyB, Git, GitAlt, GitAltB, GitArrowUp, GitArrowUpB, GitB, Glass, GlassHalf, GlassHalfB, GlassStraw, GlassStrawB, Graphdown, GraphdownB, Graphup, GraphupB, Guitar, HandheldConsole, HandheldConsoleB, Hashtag, HashtagCircle, HashtagCircleB, HashtagSquare, HashtagSquareB, Hat, HatB, Headphone, HeadphoneAdd, HeadphoneAddB, HeadphoneB, HeadphoneCross, HeadphoneCrossB, HeadphoneFancy, HeadphoneFancyB, Heart, HeartB, HeartHalf, Heartrate as HeartRate, Hearts, HeartsAlt, HeartsB, Heptagon, HeptagonB, HexAdd, HexAddB, HexCross, HexCross1, HexCrossB, HexCrossB1, Hockey, HockeyB, HomeCh, HomeChB, HomeCircle, HomeCircle1, HomeCircleB, HomeCircleB1, HomeCircleCh, HomeCircleChB, HomeEmpty, HomeEmptyB, HomeGarage, HomeGarageB, HomeGarageCircle, HomeGarageCircleChA, HomeGarageCircleChAb, HomeGarageCircleVarB, HomeGarageLine, HomeGarageLineB, HomeLargedoor, HomeLargedoorB, HomeLargedoorCircle, HomeLargedoorCircleB, HomeLargedoorCircleCh, HomeLargedoorCircleChB, HomeMinimal, HomeMinimalB, Icecream, IcecreamB, IcecreamVarB, IdCircle, IdCircleB, IdCircleVarB, IdSquare, IdSquareB, IdSquareVarB, Image, ImageAdd, ImageAddB, ImageAlt, ImageAltB, ImageB, ImageBlock, ImageBlockB, ImageCheck, ImageCheckB, ImageCircleAlt, ImageCircleAltB, ImageCross, ImageCrossB, ImageMinimal, ImageMinimalB, ImageMinimalCircle, ImageMinimalCircleB, ImageMountains, ImageMountainsB, ImageMountainsCircle, ImageMountainsCircleB, ImageVarB, Images, ImagesB, ImagesVarB, ImaheCircle, Inbox, InboxB, InboxCircle, InboxCircleB, InboxEmpty, InboxEmptyB, InboxVarB, Incognito, IncognitoB, InfoCircle, InfoCircleB, InfoOctagon, InfoOctagonB, InfoSquare, InfoSquareB, Intersection, Iphone, Italics, Joystick, JoystickAlt, JoystickAltB, JoystickB, JoystickCute, JoystickCuteB, Key, KeyB, KeyStraight, KeyStraightB, Keypad, KeypadB, Knife, KnifeB, Knight, KnightB, Laptop, LaptopAdd, LaptopAddB, LaptopB, LaptopBlock, LaptopBlockB, LaptopCheck, LaptopCheckB, LaptopCode, LaptopCodeB, LaptopCross, LaptopCrossB, LaptopSlanted, LaptopSlantedB, Like, Like1, LikeB, LikeVarB, LineUp, LineUpB, Link, Lipstick, LipstickB, Lock, LockAlt, LockAltB, LockB, LockKeyhole, LockKeyholeB, LockOpen, LockOpenB, LockPartialopen, LockPartialopenB, LogIn, LogOut, Magicwand, MagicwandB, Mail, MailAdd, MailAlt, MailB, MailBranch, MailBranchAlt, MailBranchAltB, MailBranchB, MailCheck, MailCode, MailCross, MailDownright, MailOutline, MailTopleft, Male, MaleB, Mantra, MantraB, Map$1 as Map, MapAlt, MapB, MapPin, MapPinB, Message, MessageAdd, MessageAlt, MessageAltB, MessageB, MessageCircle, MessageCircleAdd, MessageCircleAddB, MessageCircleB, MessageCircleCross, MessageCircleCrossB, MessageCode, MessageCross, MessageHeart, MessageMinimal, MessageMinimalAdd, MessageMinimalB, MessageMinimalCheck, MessageMinimalCross, MessageMinimalHeart, MessageSearch, MessageSearchB, MessageUser, MessageUserB, Meter, MeterB, Mic, MicAlt, MicB, MicCircle, MicCircleB, MicCircleDashed, MicCircleDashedB, MicEmpty, MicEmptyB, MicSquare, MicSquareAlt, MicSquareAltB, MicSquareB, Microphone, MicrophoneB, MinusBlock, MinusBlockB, MinusSquare, MinusSquareB, Money, MoneyAdd, MoneyAddB, MoneyB, MoneyBlock, MoneyBlockB, MoneyCheck, MoneyCheckB, MoneyCode, MoneyCodeB, MoneyCross, MoneyCrossB, MoneyDiag, MoneyDiagB, MoneyDiagVarB, MoneyHeart, MoneyHeartB, MoneyStack, MoneyStackB, MoneyStackVarB, MoneyVarB, Monitor, MonitorAlt, MonitorAltB, MonitorB, MonitorBack, MonitorBackB, MonitorBackVarB, MonitorDownload, MonitorMac, MonitorMacAlt, MonitorMacAltB, MonitorMacAltVarB, MonitorMacB, MonitorMacVarB, MonitorReception, MonitorReceptionB, MonitorTriangle, MonitorTriangleB, MonitorUpload, Moon, Mountains, MountainsB, Mouse, MouseAlt, MouseAltB, MouseApple, MouseB, Movie, MovieAdd, MovieAddB, MovieB, MovieBlock, MovieCheck, MovieCheckB, MovieCross, MovieCrossB, MovieHeart, MoviePause, MoviePauseB, Nav, NavAlt, NavAltB, NavAltVarB, NavB, NavDiag, NavDiagB, NineKey, NineKeyB, NoEntry, NoEntryB, NoEntryVarB, NoteLocate, NoteLocateB, NotePinned, NotePinnedB, NotePinnedFilled, NotePinnedFilledB, NoteSearch, NoteSearchB, Notebook, NotebookOpen, NotebookOpenB, Notes, NotesB, NotesPaper, NotesPaperB, NotesVarB, Notification, NotificationAlert, NotificationAlertA, NotificationAlertAb, NotificationAlertB, NotificationB, NotificationMinimal, NotificationMinimalAlert, NotificationMinimalAlertA, NotificationMinimalAlertAb, NotificationMinimalAlertB, NotificationMinimalB, Octagon, OctagonB, Omlette, OmletteB, Paintbrush, PaintbrushAlt, PaintbrushAltB, PaintbrushB, PaintbrushVarB, Palette, PaletteB, PaletteVarB, ParaAdd, ParaBlock, ParaCheck, ParaCircle, ParaCircleB, ParaCross, ParaHeart, ParaPlay, ParaPlayB, ParaSearch, ParaSearchB, ParabolaDown, ParabolaUp, ParallelogramTool, ParallelogramToolAlt, ParallelogramToolAltB, ParallelogramToolB, PercentBlock, PercentBlockB, Phone, PhoneAdd, PhoneAddB, PhoneB, PhoneBlock, PhoneBlockB, PhoneCheck, PhoneCheckB, PhoneClassic, PhoneClassicB, PhoneClassicVarB, PhoneCross, PhoneCrossB, PhoneHeart, PhoneHeartB, PhoneIncoming, PhoneIncomingB, PhoneMissed, PhoneMissedB, PhoneOutgoing, PhoneOutgoingB, PhonePlay, PhonePlayB, Piano, PianoB, Pie, PieAlt, PieB, PieDivided, PieDividedB, PieHalf, PieHalfB, PieHalfVarB, PieVarB, Pin, PinAdd, PinAddB, PinB, PinCircle, PinCircleB, PinCross, PinCrossB, Pizzatime, PizzatimeB, Plant, PlantB, PlantVarB, Play, PlayCircle, PlayCircleB, PlayCircleDashed, PlayCircleDashedB, PlayEqual, PlayEqualB, PlayHex, PlayHexB, PlayHexVarB, PlayPause, PlayPauseB, PlaySqaure, PlaySqaureB, PlaySquareDashed, PlaySquareDashedB, Popsicle, PopsicleB, PowerButton, Presentation, PresentationAlt, PresentationAltB, PresentationAltVarB, PresentationB, PresentationChart, PresentationChartB, Printer, PrinterB, PrinterVarB, Projector, ProjectorB, Pumpkin, PumpkinB, PumpkinVarB, Puzzle, PuzzleB, Radio, Radio1, RadioB, RadioButton, RadioButtonB, Rain, RainB, ReactangleHalf, ReactangleHalfB, Reel, ReelAdd, ReelBlock, ReelCheck, ReelCode, ReelCross, Responsive, ResponsiveB, ResponsiveVarB, Rhombus, RhombusB, Rugby, RugbyHelmet, RugbyHelmetB, Ruler, RulerDiag, Sanitizer, SanitizerB, SanitizerMinimal, SanitizerMinimalB, Save, SaveB, SaveVarB, Scan, ScanAdd, ScanBlock, ScanCamera, ScanCameraB, ScanCheck, ScanCode, ScanCross, ScanKey, ScanKeyB, ScanLock, ScanLockB, ScanSearch, ScanSearchB, Scooter, ScooterB, ScooterVarB, ScrollH, ScrollHb, ScrollV, ScrollVb, Search, SearchAdd, SearchAddB, SearchB, SearchCircle, SearchCross, SearchCrossB, SearchHeart, SearchMinus, SearchMinusB, SearchSquare, SearchSquareB, SendMessage, Server, ServerB, ServerDivided, ServerDividedB, SettingsCog, SettingsCogB, SettingsHorizontal, SettingsHorizontalB, SettingsVertical, SettingsVerticalB, SevenKey, SevenKeyB, Shield, ShieldAdd, ShieldAddB, ShieldB, ShieldBlock, ShieldBlockB, ShieldCheck, ShieldCheckB, ShieldCode, ShieldCodeB, ShieldCross, ShieldCrossB, ShieldHeart, ShieldImage, ShieldImageB, ShieldScroll, ShieldScrollB, Signal, Simcard, SimcardB, SmartwatcCircle, SmartwatcCircleB, SmartwatcCircleTime, SmartwatcCircleTimeB, SmartwatcSquare, SmartwatcSquareB, SmartwatcSquareTime, SmartwatcSquareTimeB, Snow, SnowB, Sound, SoundB, Speaker, SpeakerB, Spoon, SpoonB, SpoonDiag, SpoonDiagB, Square, Square1, Square10, Square10B, Square11, Square11B, Square12, Square12B, Square12VarB, Square13, Square13B, Square13VarB, Square14, Square14B, Square14VarB, Square15, Square15B, Square1B, Square1VarB, Square2, Square2B, Square2VarB, Square3, Square3B, Square3VarB, Square4, Square4B, Square4VarB, Square5, Square5B, Square6, Square6B, Square7, Square7B, Square8, Square8B, Square9, Square9B, SquareB, SquareCircle, SquareCircleB, SquareDiagCircle, SquareDiagCircleB, SquareDiagHalf, SquareDiagHalfB, SquareDiagHalfVarB, SquareHeart, SquareTool, SquareToolB, Stack, StackAlt, StackAltB, StackB, Star, StarB, StarHalfB, StarWand, StarWandB, Stethoscope, StethoscopeB, Stickynote, StickynoteB, StickynoteVarB, Suitcase, SuitcaseB, SuitcaseMinimal, SuitcaseMinimalB, SuitcaseVarB, SunCloud, SunCloudB, SunCloudVarB, Switch, SwitchActive, SwitchAdd, SwitchAddB, SwitchCross, SwitchCrossB, Sword, SwordB, Target, Tennis, TennisB, TennisVarB, Terminal, TerminalB, Tetris1, Tetris1B, Tetris2, Tetris2B, Tetris3, Tetris3B, Tetris4, Tetris4B, Tetris5, Tetris5B, Tetris6, Tetris6B, Tetris7, Tetris7B, Tetris8, Tetris8B, Tetris9, Tetris9B, Tie, TieAlt, TieB, TiePattern, TiePatternB, Tree, Triangle, TriangleAlt, TriangleB, TriangleReverse, TriangleReverseB, Tv, TvAlt, TvAltB, TvAltVarB, TvB, TypeDotdot, Underline, Underpants, UnderpantsB, UnderpantsButton, UnderpantsButtonB, UnderpantsVarB, Union, Union3, UnionB, UnionVarB, Upload, UsbDrive, UsbDriveB, UsbDriveVarB, User, UserAdd, UserAddB, UserB, UserBlock, UserBlockB, UserCheck, UserCircle, UserCircleAdd, UserCircleAddB, UserCircleB, UserCircleBlock, UserCircleBlockB, UserCircleCheck, UserCircleCheckB, UserCircleCode, UserCircleCodeB, UserCircleCross, UserCircleCrossB, UserCircleHeart, UserCircleHeartB, UserCross, UserCrossB, UserDownload, UserDownloadB, UserHeart, UserHeartB, UserSqaureBlock, UserSqaureBlockB, UserSqaureCheck, UserSqaureCheckB, UserSqaureCode, UserSqaureCodeB, UserSquare, UserSquareAdd, UserSquareAddB, UserSquareB, UserSquareHeart, UserSquareHeartB, UserUpload, UserUploadB, Users, UsersB, Verify, VerifyA, VerifyAb, VerifyB, Wallet, WalletB, Warning, WarningB, Webcam, WebcamB, Weighingmachine, WeighingmachineB, Wine, WineB, WineHalf, WineHalfB, YogaMat, YogaMatB, createMeisterIcons, index as icons };