You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
3549 lines
198 KiB
3549 lines
198 KiB
/*
|
|
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
|
if you want to view the source, please visit the github repository of this plugin
|
|
*/
|
|
|
|
var __create = Object.create;
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __getProtoOf = Object.getPrototypeOf;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
|
|
var __commonJS = (cb, mod) => function __require() {
|
|
return mod || (0, cb[Object.keys(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
};
|
|
var __export = (target, all) => {
|
|
__markAsModule(target);
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __reExport = (target, module2, desc) => {
|
|
if (module2 && typeof module2 === "object" || typeof module2 === "function") {
|
|
for (let key of __getOwnPropNames(module2))
|
|
if (!__hasOwnProp.call(target, key) && key !== "default")
|
|
__defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
|
|
}
|
|
return target;
|
|
};
|
|
var __toModule = (module2) => {
|
|
return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
|
|
};
|
|
var __async = (__this, __arguments, generator) => {
|
|
return new Promise((resolve, reject) => {
|
|
var fulfilled = (value) => {
|
|
try {
|
|
step(generator.next(value));
|
|
} catch (e) {
|
|
reject(e);
|
|
}
|
|
};
|
|
var rejected = (value) => {
|
|
try {
|
|
step(generator.throw(value));
|
|
} catch (e) {
|
|
reject(e);
|
|
}
|
|
};
|
|
var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
|
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
});
|
|
};
|
|
|
|
// node_modules/lodash/_listCacheClear.js
|
|
var require_listCacheClear = __commonJS({
|
|
"node_modules/lodash/_listCacheClear.js"(exports, module2) {
|
|
function listCacheClear() {
|
|
this.__data__ = [];
|
|
this.size = 0;
|
|
}
|
|
module2.exports = listCacheClear;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/eq.js
|
|
var require_eq = __commonJS({
|
|
"node_modules/lodash/eq.js"(exports, module2) {
|
|
function eq(value, other) {
|
|
return value === other || value !== value && other !== other;
|
|
}
|
|
module2.exports = eq;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_assocIndexOf.js
|
|
var require_assocIndexOf = __commonJS({
|
|
"node_modules/lodash/_assocIndexOf.js"(exports, module2) {
|
|
var eq = require_eq();
|
|
function assocIndexOf(array, key) {
|
|
var length = array.length;
|
|
while (length--) {
|
|
if (eq(array[length][0], key)) {
|
|
return length;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
module2.exports = assocIndexOf;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_listCacheDelete.js
|
|
var require_listCacheDelete = __commonJS({
|
|
"node_modules/lodash/_listCacheDelete.js"(exports, module2) {
|
|
var assocIndexOf = require_assocIndexOf();
|
|
var arrayProto = Array.prototype;
|
|
var splice = arrayProto.splice;
|
|
function listCacheDelete(key) {
|
|
var data = this.__data__, index = assocIndexOf(data, key);
|
|
if (index < 0) {
|
|
return false;
|
|
}
|
|
var lastIndex = data.length - 1;
|
|
if (index == lastIndex) {
|
|
data.pop();
|
|
} else {
|
|
splice.call(data, index, 1);
|
|
}
|
|
--this.size;
|
|
return true;
|
|
}
|
|
module2.exports = listCacheDelete;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_listCacheGet.js
|
|
var require_listCacheGet = __commonJS({
|
|
"node_modules/lodash/_listCacheGet.js"(exports, module2) {
|
|
var assocIndexOf = require_assocIndexOf();
|
|
function listCacheGet(key) {
|
|
var data = this.__data__, index = assocIndexOf(data, key);
|
|
return index < 0 ? void 0 : data[index][1];
|
|
}
|
|
module2.exports = listCacheGet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_listCacheHas.js
|
|
var require_listCacheHas = __commonJS({
|
|
"node_modules/lodash/_listCacheHas.js"(exports, module2) {
|
|
var assocIndexOf = require_assocIndexOf();
|
|
function listCacheHas(key) {
|
|
return assocIndexOf(this.__data__, key) > -1;
|
|
}
|
|
module2.exports = listCacheHas;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_listCacheSet.js
|
|
var require_listCacheSet = __commonJS({
|
|
"node_modules/lodash/_listCacheSet.js"(exports, module2) {
|
|
var assocIndexOf = require_assocIndexOf();
|
|
function listCacheSet(key, value) {
|
|
var data = this.__data__, index = assocIndexOf(data, key);
|
|
if (index < 0) {
|
|
++this.size;
|
|
data.push([key, value]);
|
|
} else {
|
|
data[index][1] = value;
|
|
}
|
|
return this;
|
|
}
|
|
module2.exports = listCacheSet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_ListCache.js
|
|
var require_ListCache = __commonJS({
|
|
"node_modules/lodash/_ListCache.js"(exports, module2) {
|
|
var listCacheClear = require_listCacheClear();
|
|
var listCacheDelete = require_listCacheDelete();
|
|
var listCacheGet = require_listCacheGet();
|
|
var listCacheHas = require_listCacheHas();
|
|
var listCacheSet = require_listCacheSet();
|
|
function ListCache(entries) {
|
|
var index = -1, length = entries == null ? 0 : entries.length;
|
|
this.clear();
|
|
while (++index < length) {
|
|
var entry = entries[index];
|
|
this.set(entry[0], entry[1]);
|
|
}
|
|
}
|
|
ListCache.prototype.clear = listCacheClear;
|
|
ListCache.prototype["delete"] = listCacheDelete;
|
|
ListCache.prototype.get = listCacheGet;
|
|
ListCache.prototype.has = listCacheHas;
|
|
ListCache.prototype.set = listCacheSet;
|
|
module2.exports = ListCache;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_stackClear.js
|
|
var require_stackClear = __commonJS({
|
|
"node_modules/lodash/_stackClear.js"(exports, module2) {
|
|
var ListCache = require_ListCache();
|
|
function stackClear() {
|
|
this.__data__ = new ListCache();
|
|
this.size = 0;
|
|
}
|
|
module2.exports = stackClear;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_stackDelete.js
|
|
var require_stackDelete = __commonJS({
|
|
"node_modules/lodash/_stackDelete.js"(exports, module2) {
|
|
function stackDelete(key) {
|
|
var data = this.__data__, result = data["delete"](key);
|
|
this.size = data.size;
|
|
return result;
|
|
}
|
|
module2.exports = stackDelete;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_stackGet.js
|
|
var require_stackGet = __commonJS({
|
|
"node_modules/lodash/_stackGet.js"(exports, module2) {
|
|
function stackGet(key) {
|
|
return this.__data__.get(key);
|
|
}
|
|
module2.exports = stackGet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_stackHas.js
|
|
var require_stackHas = __commonJS({
|
|
"node_modules/lodash/_stackHas.js"(exports, module2) {
|
|
function stackHas(key) {
|
|
return this.__data__.has(key);
|
|
}
|
|
module2.exports = stackHas;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_freeGlobal.js
|
|
var require_freeGlobal = __commonJS({
|
|
"node_modules/lodash/_freeGlobal.js"(exports, module2) {
|
|
var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
|
|
module2.exports = freeGlobal;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_root.js
|
|
var require_root = __commonJS({
|
|
"node_modules/lodash/_root.js"(exports, module2) {
|
|
var freeGlobal = require_freeGlobal();
|
|
var freeSelf = typeof self == "object" && self && self.Object === Object && self;
|
|
var root = freeGlobal || freeSelf || Function("return this")();
|
|
module2.exports = root;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_Symbol.js
|
|
var require_Symbol = __commonJS({
|
|
"node_modules/lodash/_Symbol.js"(exports, module2) {
|
|
var root = require_root();
|
|
var Symbol2 = root.Symbol;
|
|
module2.exports = Symbol2;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getRawTag.js
|
|
var require_getRawTag = __commonJS({
|
|
"node_modules/lodash/_getRawTag.js"(exports, module2) {
|
|
var Symbol2 = require_Symbol();
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
var nativeObjectToString = objectProto.toString;
|
|
var symToStringTag = Symbol2 ? Symbol2.toStringTag : void 0;
|
|
function getRawTag(value) {
|
|
var isOwn = hasOwnProperty.call(value, symToStringTag), tag = value[symToStringTag];
|
|
try {
|
|
value[symToStringTag] = void 0;
|
|
var unmasked = true;
|
|
} catch (e) {
|
|
}
|
|
var result = nativeObjectToString.call(value);
|
|
if (unmasked) {
|
|
if (isOwn) {
|
|
value[symToStringTag] = tag;
|
|
} else {
|
|
delete value[symToStringTag];
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = getRawTag;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_objectToString.js
|
|
var require_objectToString = __commonJS({
|
|
"node_modules/lodash/_objectToString.js"(exports, module2) {
|
|
var objectProto = Object.prototype;
|
|
var nativeObjectToString = objectProto.toString;
|
|
function objectToString(value) {
|
|
return nativeObjectToString.call(value);
|
|
}
|
|
module2.exports = objectToString;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseGetTag.js
|
|
var require_baseGetTag = __commonJS({
|
|
"node_modules/lodash/_baseGetTag.js"(exports, module2) {
|
|
var Symbol2 = require_Symbol();
|
|
var getRawTag = require_getRawTag();
|
|
var objectToString = require_objectToString();
|
|
var nullTag = "[object Null]";
|
|
var undefinedTag = "[object Undefined]";
|
|
var symToStringTag = Symbol2 ? Symbol2.toStringTag : void 0;
|
|
function baseGetTag(value) {
|
|
if (value == null) {
|
|
return value === void 0 ? undefinedTag : nullTag;
|
|
}
|
|
return symToStringTag && symToStringTag in Object(value) ? getRawTag(value) : objectToString(value);
|
|
}
|
|
module2.exports = baseGetTag;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isObject.js
|
|
var require_isObject = __commonJS({
|
|
"node_modules/lodash/isObject.js"(exports, module2) {
|
|
function isObject(value) {
|
|
var type = typeof value;
|
|
return value != null && (type == "object" || type == "function");
|
|
}
|
|
module2.exports = isObject;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isFunction.js
|
|
var require_isFunction = __commonJS({
|
|
"node_modules/lodash/isFunction.js"(exports, module2) {
|
|
var baseGetTag = require_baseGetTag();
|
|
var isObject = require_isObject();
|
|
var asyncTag = "[object AsyncFunction]";
|
|
var funcTag = "[object Function]";
|
|
var genTag = "[object GeneratorFunction]";
|
|
var proxyTag = "[object Proxy]";
|
|
function isFunction(value) {
|
|
if (!isObject(value)) {
|
|
return false;
|
|
}
|
|
var tag = baseGetTag(value);
|
|
return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
|
|
}
|
|
module2.exports = isFunction;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_coreJsData.js
|
|
var require_coreJsData = __commonJS({
|
|
"node_modules/lodash/_coreJsData.js"(exports, module2) {
|
|
var root = require_root();
|
|
var coreJsData = root["__core-js_shared__"];
|
|
module2.exports = coreJsData;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_isMasked.js
|
|
var require_isMasked = __commonJS({
|
|
"node_modules/lodash/_isMasked.js"(exports, module2) {
|
|
var coreJsData = require_coreJsData();
|
|
var maskSrcKey = function() {
|
|
var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || "");
|
|
return uid ? "Symbol(src)_1." + uid : "";
|
|
}();
|
|
function isMasked(func) {
|
|
return !!maskSrcKey && maskSrcKey in func;
|
|
}
|
|
module2.exports = isMasked;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_toSource.js
|
|
var require_toSource = __commonJS({
|
|
"node_modules/lodash/_toSource.js"(exports, module2) {
|
|
var funcProto = Function.prototype;
|
|
var funcToString = funcProto.toString;
|
|
function toSource(func) {
|
|
if (func != null) {
|
|
try {
|
|
return funcToString.call(func);
|
|
} catch (e) {
|
|
}
|
|
try {
|
|
return func + "";
|
|
} catch (e) {
|
|
}
|
|
}
|
|
return "";
|
|
}
|
|
module2.exports = toSource;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseIsNative.js
|
|
var require_baseIsNative = __commonJS({
|
|
"node_modules/lodash/_baseIsNative.js"(exports, module2) {
|
|
var isFunction = require_isFunction();
|
|
var isMasked = require_isMasked();
|
|
var isObject = require_isObject();
|
|
var toSource = require_toSource();
|
|
var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
|
|
var reIsHostCtor = /^\[object .+?Constructor\]$/;
|
|
var funcProto = Function.prototype;
|
|
var objectProto = Object.prototype;
|
|
var funcToString = funcProto.toString;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
var reIsNative = RegExp("^" + funcToString.call(hasOwnProperty).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$");
|
|
function baseIsNative(value) {
|
|
if (!isObject(value) || isMasked(value)) {
|
|
return false;
|
|
}
|
|
var pattern = isFunction(value) ? reIsNative : reIsHostCtor;
|
|
return pattern.test(toSource(value));
|
|
}
|
|
module2.exports = baseIsNative;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getValue.js
|
|
var require_getValue = __commonJS({
|
|
"node_modules/lodash/_getValue.js"(exports, module2) {
|
|
function getValue(object, key) {
|
|
return object == null ? void 0 : object[key];
|
|
}
|
|
module2.exports = getValue;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getNative.js
|
|
var require_getNative = __commonJS({
|
|
"node_modules/lodash/_getNative.js"(exports, module2) {
|
|
var baseIsNative = require_baseIsNative();
|
|
var getValue = require_getValue();
|
|
function getNative(object, key) {
|
|
var value = getValue(object, key);
|
|
return baseIsNative(value) ? value : void 0;
|
|
}
|
|
module2.exports = getNative;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_Map.js
|
|
var require_Map = __commonJS({
|
|
"node_modules/lodash/_Map.js"(exports, module2) {
|
|
var getNative = require_getNative();
|
|
var root = require_root();
|
|
var Map = getNative(root, "Map");
|
|
module2.exports = Map;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_nativeCreate.js
|
|
var require_nativeCreate = __commonJS({
|
|
"node_modules/lodash/_nativeCreate.js"(exports, module2) {
|
|
var getNative = require_getNative();
|
|
var nativeCreate = getNative(Object, "create");
|
|
module2.exports = nativeCreate;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_hashClear.js
|
|
var require_hashClear = __commonJS({
|
|
"node_modules/lodash/_hashClear.js"(exports, module2) {
|
|
var nativeCreate = require_nativeCreate();
|
|
function hashClear() {
|
|
this.__data__ = nativeCreate ? nativeCreate(null) : {};
|
|
this.size = 0;
|
|
}
|
|
module2.exports = hashClear;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_hashDelete.js
|
|
var require_hashDelete = __commonJS({
|
|
"node_modules/lodash/_hashDelete.js"(exports, module2) {
|
|
function hashDelete(key) {
|
|
var result = this.has(key) && delete this.__data__[key];
|
|
this.size -= result ? 1 : 0;
|
|
return result;
|
|
}
|
|
module2.exports = hashDelete;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_hashGet.js
|
|
var require_hashGet = __commonJS({
|
|
"node_modules/lodash/_hashGet.js"(exports, module2) {
|
|
var nativeCreate = require_nativeCreate();
|
|
var HASH_UNDEFINED = "__lodash_hash_undefined__";
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function hashGet(key) {
|
|
var data = this.__data__;
|
|
if (nativeCreate) {
|
|
var result = data[key];
|
|
return result === HASH_UNDEFINED ? void 0 : result;
|
|
}
|
|
return hasOwnProperty.call(data, key) ? data[key] : void 0;
|
|
}
|
|
module2.exports = hashGet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_hashHas.js
|
|
var require_hashHas = __commonJS({
|
|
"node_modules/lodash/_hashHas.js"(exports, module2) {
|
|
var nativeCreate = require_nativeCreate();
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function hashHas(key) {
|
|
var data = this.__data__;
|
|
return nativeCreate ? data[key] !== void 0 : hasOwnProperty.call(data, key);
|
|
}
|
|
module2.exports = hashHas;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_hashSet.js
|
|
var require_hashSet = __commonJS({
|
|
"node_modules/lodash/_hashSet.js"(exports, module2) {
|
|
var nativeCreate = require_nativeCreate();
|
|
var HASH_UNDEFINED = "__lodash_hash_undefined__";
|
|
function hashSet(key, value) {
|
|
var data = this.__data__;
|
|
this.size += this.has(key) ? 0 : 1;
|
|
data[key] = nativeCreate && value === void 0 ? HASH_UNDEFINED : value;
|
|
return this;
|
|
}
|
|
module2.exports = hashSet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_Hash.js
|
|
var require_Hash = __commonJS({
|
|
"node_modules/lodash/_Hash.js"(exports, module2) {
|
|
var hashClear = require_hashClear();
|
|
var hashDelete = require_hashDelete();
|
|
var hashGet = require_hashGet();
|
|
var hashHas = require_hashHas();
|
|
var hashSet = require_hashSet();
|
|
function Hash(entries) {
|
|
var index = -1, length = entries == null ? 0 : entries.length;
|
|
this.clear();
|
|
while (++index < length) {
|
|
var entry = entries[index];
|
|
this.set(entry[0], entry[1]);
|
|
}
|
|
}
|
|
Hash.prototype.clear = hashClear;
|
|
Hash.prototype["delete"] = hashDelete;
|
|
Hash.prototype.get = hashGet;
|
|
Hash.prototype.has = hashHas;
|
|
Hash.prototype.set = hashSet;
|
|
module2.exports = Hash;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_mapCacheClear.js
|
|
var require_mapCacheClear = __commonJS({
|
|
"node_modules/lodash/_mapCacheClear.js"(exports, module2) {
|
|
var Hash = require_Hash();
|
|
var ListCache = require_ListCache();
|
|
var Map = require_Map();
|
|
function mapCacheClear() {
|
|
this.size = 0;
|
|
this.__data__ = {
|
|
"hash": new Hash(),
|
|
"map": new (Map || ListCache)(),
|
|
"string": new Hash()
|
|
};
|
|
}
|
|
module2.exports = mapCacheClear;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_isKeyable.js
|
|
var require_isKeyable = __commonJS({
|
|
"node_modules/lodash/_isKeyable.js"(exports, module2) {
|
|
function isKeyable(value) {
|
|
var type = typeof value;
|
|
return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null;
|
|
}
|
|
module2.exports = isKeyable;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getMapData.js
|
|
var require_getMapData = __commonJS({
|
|
"node_modules/lodash/_getMapData.js"(exports, module2) {
|
|
var isKeyable = require_isKeyable();
|
|
function getMapData(map, key) {
|
|
var data = map.__data__;
|
|
return isKeyable(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map;
|
|
}
|
|
module2.exports = getMapData;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_mapCacheDelete.js
|
|
var require_mapCacheDelete = __commonJS({
|
|
"node_modules/lodash/_mapCacheDelete.js"(exports, module2) {
|
|
var getMapData = require_getMapData();
|
|
function mapCacheDelete(key) {
|
|
var result = getMapData(this, key)["delete"](key);
|
|
this.size -= result ? 1 : 0;
|
|
return result;
|
|
}
|
|
module2.exports = mapCacheDelete;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_mapCacheGet.js
|
|
var require_mapCacheGet = __commonJS({
|
|
"node_modules/lodash/_mapCacheGet.js"(exports, module2) {
|
|
var getMapData = require_getMapData();
|
|
function mapCacheGet(key) {
|
|
return getMapData(this, key).get(key);
|
|
}
|
|
module2.exports = mapCacheGet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_mapCacheHas.js
|
|
var require_mapCacheHas = __commonJS({
|
|
"node_modules/lodash/_mapCacheHas.js"(exports, module2) {
|
|
var getMapData = require_getMapData();
|
|
function mapCacheHas(key) {
|
|
return getMapData(this, key).has(key);
|
|
}
|
|
module2.exports = mapCacheHas;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_mapCacheSet.js
|
|
var require_mapCacheSet = __commonJS({
|
|
"node_modules/lodash/_mapCacheSet.js"(exports, module2) {
|
|
var getMapData = require_getMapData();
|
|
function mapCacheSet(key, value) {
|
|
var data = getMapData(this, key), size = data.size;
|
|
data.set(key, value);
|
|
this.size += data.size == size ? 0 : 1;
|
|
return this;
|
|
}
|
|
module2.exports = mapCacheSet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_MapCache.js
|
|
var require_MapCache = __commonJS({
|
|
"node_modules/lodash/_MapCache.js"(exports, module2) {
|
|
var mapCacheClear = require_mapCacheClear();
|
|
var mapCacheDelete = require_mapCacheDelete();
|
|
var mapCacheGet = require_mapCacheGet();
|
|
var mapCacheHas = require_mapCacheHas();
|
|
var mapCacheSet = require_mapCacheSet();
|
|
function MapCache(entries) {
|
|
var index = -1, length = entries == null ? 0 : entries.length;
|
|
this.clear();
|
|
while (++index < length) {
|
|
var entry = entries[index];
|
|
this.set(entry[0], entry[1]);
|
|
}
|
|
}
|
|
MapCache.prototype.clear = mapCacheClear;
|
|
MapCache.prototype["delete"] = mapCacheDelete;
|
|
MapCache.prototype.get = mapCacheGet;
|
|
MapCache.prototype.has = mapCacheHas;
|
|
MapCache.prototype.set = mapCacheSet;
|
|
module2.exports = MapCache;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_stackSet.js
|
|
var require_stackSet = __commonJS({
|
|
"node_modules/lodash/_stackSet.js"(exports, module2) {
|
|
var ListCache = require_ListCache();
|
|
var Map = require_Map();
|
|
var MapCache = require_MapCache();
|
|
var LARGE_ARRAY_SIZE = 200;
|
|
function stackSet(key, value) {
|
|
var data = this.__data__;
|
|
if (data instanceof ListCache) {
|
|
var pairs = data.__data__;
|
|
if (!Map || pairs.length < LARGE_ARRAY_SIZE - 1) {
|
|
pairs.push([key, value]);
|
|
this.size = ++data.size;
|
|
return this;
|
|
}
|
|
data = this.__data__ = new MapCache(pairs);
|
|
}
|
|
data.set(key, value);
|
|
this.size = data.size;
|
|
return this;
|
|
}
|
|
module2.exports = stackSet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_Stack.js
|
|
var require_Stack = __commonJS({
|
|
"node_modules/lodash/_Stack.js"(exports, module2) {
|
|
var ListCache = require_ListCache();
|
|
var stackClear = require_stackClear();
|
|
var stackDelete = require_stackDelete();
|
|
var stackGet = require_stackGet();
|
|
var stackHas = require_stackHas();
|
|
var stackSet = require_stackSet();
|
|
function Stack(entries) {
|
|
var data = this.__data__ = new ListCache(entries);
|
|
this.size = data.size;
|
|
}
|
|
Stack.prototype.clear = stackClear;
|
|
Stack.prototype["delete"] = stackDelete;
|
|
Stack.prototype.get = stackGet;
|
|
Stack.prototype.has = stackHas;
|
|
Stack.prototype.set = stackSet;
|
|
module2.exports = Stack;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_arrayEach.js
|
|
var require_arrayEach = __commonJS({
|
|
"node_modules/lodash/_arrayEach.js"(exports, module2) {
|
|
function arrayEach(array, iteratee) {
|
|
var index = -1, length = array == null ? 0 : array.length;
|
|
while (++index < length) {
|
|
if (iteratee(array[index], index, array) === false) {
|
|
break;
|
|
}
|
|
}
|
|
return array;
|
|
}
|
|
module2.exports = arrayEach;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_defineProperty.js
|
|
var require_defineProperty = __commonJS({
|
|
"node_modules/lodash/_defineProperty.js"(exports, module2) {
|
|
var getNative = require_getNative();
|
|
var defineProperty = function() {
|
|
try {
|
|
var func = getNative(Object, "defineProperty");
|
|
func({}, "", {});
|
|
return func;
|
|
} catch (e) {
|
|
}
|
|
}();
|
|
module2.exports = defineProperty;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseAssignValue.js
|
|
var require_baseAssignValue = __commonJS({
|
|
"node_modules/lodash/_baseAssignValue.js"(exports, module2) {
|
|
var defineProperty = require_defineProperty();
|
|
function baseAssignValue(object, key, value) {
|
|
if (key == "__proto__" && defineProperty) {
|
|
defineProperty(object, key, {
|
|
"configurable": true,
|
|
"enumerable": true,
|
|
"value": value,
|
|
"writable": true
|
|
});
|
|
} else {
|
|
object[key] = value;
|
|
}
|
|
}
|
|
module2.exports = baseAssignValue;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_assignValue.js
|
|
var require_assignValue = __commonJS({
|
|
"node_modules/lodash/_assignValue.js"(exports, module2) {
|
|
var baseAssignValue = require_baseAssignValue();
|
|
var eq = require_eq();
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function assignValue(object, key, value) {
|
|
var objValue = object[key];
|
|
if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) || value === void 0 && !(key in object)) {
|
|
baseAssignValue(object, key, value);
|
|
}
|
|
}
|
|
module2.exports = assignValue;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_copyObject.js
|
|
var require_copyObject = __commonJS({
|
|
"node_modules/lodash/_copyObject.js"(exports, module2) {
|
|
var assignValue = require_assignValue();
|
|
var baseAssignValue = require_baseAssignValue();
|
|
function copyObject(source, props, object, customizer) {
|
|
var isNew = !object;
|
|
object || (object = {});
|
|
var index = -1, length = props.length;
|
|
while (++index < length) {
|
|
var key = props[index];
|
|
var newValue = customizer ? customizer(object[key], source[key], key, object, source) : void 0;
|
|
if (newValue === void 0) {
|
|
newValue = source[key];
|
|
}
|
|
if (isNew) {
|
|
baseAssignValue(object, key, newValue);
|
|
} else {
|
|
assignValue(object, key, newValue);
|
|
}
|
|
}
|
|
return object;
|
|
}
|
|
module2.exports = copyObject;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseTimes.js
|
|
var require_baseTimes = __commonJS({
|
|
"node_modules/lodash/_baseTimes.js"(exports, module2) {
|
|
function baseTimes(n, iteratee) {
|
|
var index = -1, result = Array(n);
|
|
while (++index < n) {
|
|
result[index] = iteratee(index);
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = baseTimes;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isObjectLike.js
|
|
var require_isObjectLike = __commonJS({
|
|
"node_modules/lodash/isObjectLike.js"(exports, module2) {
|
|
function isObjectLike(value) {
|
|
return value != null && typeof value == "object";
|
|
}
|
|
module2.exports = isObjectLike;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseIsArguments.js
|
|
var require_baseIsArguments = __commonJS({
|
|
"node_modules/lodash/_baseIsArguments.js"(exports, module2) {
|
|
var baseGetTag = require_baseGetTag();
|
|
var isObjectLike = require_isObjectLike();
|
|
var argsTag = "[object Arguments]";
|
|
function baseIsArguments(value) {
|
|
return isObjectLike(value) && baseGetTag(value) == argsTag;
|
|
}
|
|
module2.exports = baseIsArguments;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isArguments.js
|
|
var require_isArguments = __commonJS({
|
|
"node_modules/lodash/isArguments.js"(exports, module2) {
|
|
var baseIsArguments = require_baseIsArguments();
|
|
var isObjectLike = require_isObjectLike();
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
var propertyIsEnumerable = objectProto.propertyIsEnumerable;
|
|
var isArguments = baseIsArguments(function() {
|
|
return arguments;
|
|
}()) ? baseIsArguments : function(value) {
|
|
return isObjectLike(value) && hasOwnProperty.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
|
|
};
|
|
module2.exports = isArguments;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isArray.js
|
|
var require_isArray = __commonJS({
|
|
"node_modules/lodash/isArray.js"(exports, module2) {
|
|
var isArray = Array.isArray;
|
|
module2.exports = isArray;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/stubFalse.js
|
|
var require_stubFalse = __commonJS({
|
|
"node_modules/lodash/stubFalse.js"(exports, module2) {
|
|
function stubFalse() {
|
|
return false;
|
|
}
|
|
module2.exports = stubFalse;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isBuffer.js
|
|
var require_isBuffer = __commonJS({
|
|
"node_modules/lodash/isBuffer.js"(exports, module2) {
|
|
var root = require_root();
|
|
var stubFalse = require_stubFalse();
|
|
var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
|
|
var freeModule = freeExports && typeof module2 == "object" && module2 && !module2.nodeType && module2;
|
|
var moduleExports = freeModule && freeModule.exports === freeExports;
|
|
var Buffer2 = moduleExports ? root.Buffer : void 0;
|
|
var nativeIsBuffer = Buffer2 ? Buffer2.isBuffer : void 0;
|
|
var isBuffer = nativeIsBuffer || stubFalse;
|
|
module2.exports = isBuffer;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_isIndex.js
|
|
var require_isIndex = __commonJS({
|
|
"node_modules/lodash/_isIndex.js"(exports, module2) {
|
|
var MAX_SAFE_INTEGER = 9007199254740991;
|
|
var reIsUint = /^(?:0|[1-9]\d*)$/;
|
|
function isIndex(value, length) {
|
|
var type = typeof value;
|
|
length = length == null ? MAX_SAFE_INTEGER : length;
|
|
return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length);
|
|
}
|
|
module2.exports = isIndex;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isLength.js
|
|
var require_isLength = __commonJS({
|
|
"node_modules/lodash/isLength.js"(exports, module2) {
|
|
var MAX_SAFE_INTEGER = 9007199254740991;
|
|
function isLength(value) {
|
|
return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
|
|
}
|
|
module2.exports = isLength;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseIsTypedArray.js
|
|
var require_baseIsTypedArray = __commonJS({
|
|
"node_modules/lodash/_baseIsTypedArray.js"(exports, module2) {
|
|
var baseGetTag = require_baseGetTag();
|
|
var isLength = require_isLength();
|
|
var isObjectLike = require_isObjectLike();
|
|
var argsTag = "[object Arguments]";
|
|
var arrayTag = "[object Array]";
|
|
var boolTag = "[object Boolean]";
|
|
var dateTag = "[object Date]";
|
|
var errorTag = "[object Error]";
|
|
var funcTag = "[object Function]";
|
|
var mapTag = "[object Map]";
|
|
var numberTag = "[object Number]";
|
|
var objectTag = "[object Object]";
|
|
var regexpTag = "[object RegExp]";
|
|
var setTag = "[object Set]";
|
|
var stringTag = "[object String]";
|
|
var weakMapTag = "[object WeakMap]";
|
|
var arrayBufferTag = "[object ArrayBuffer]";
|
|
var dataViewTag = "[object DataView]";
|
|
var float32Tag = "[object Float32Array]";
|
|
var float64Tag = "[object Float64Array]";
|
|
var int8Tag = "[object Int8Array]";
|
|
var int16Tag = "[object Int16Array]";
|
|
var int32Tag = "[object Int32Array]";
|
|
var uint8Tag = "[object Uint8Array]";
|
|
var uint8ClampedTag = "[object Uint8ClampedArray]";
|
|
var uint16Tag = "[object Uint16Array]";
|
|
var uint32Tag = "[object Uint32Array]";
|
|
var typedArrayTags = {};
|
|
typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
|
|
typedArrayTags[argsTag] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;
|
|
function baseIsTypedArray(value) {
|
|
return isObjectLike(value) && isLength(value.length) && !!typedArrayTags[baseGetTag(value)];
|
|
}
|
|
module2.exports = baseIsTypedArray;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseUnary.js
|
|
var require_baseUnary = __commonJS({
|
|
"node_modules/lodash/_baseUnary.js"(exports, module2) {
|
|
function baseUnary(func) {
|
|
return function(value) {
|
|
return func(value);
|
|
};
|
|
}
|
|
module2.exports = baseUnary;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_nodeUtil.js
|
|
var require_nodeUtil = __commonJS({
|
|
"node_modules/lodash/_nodeUtil.js"(exports, module2) {
|
|
var freeGlobal = require_freeGlobal();
|
|
var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
|
|
var freeModule = freeExports && typeof module2 == "object" && module2 && !module2.nodeType && module2;
|
|
var moduleExports = freeModule && freeModule.exports === freeExports;
|
|
var freeProcess = moduleExports && freeGlobal.process;
|
|
var nodeUtil = function() {
|
|
try {
|
|
var types = freeModule && freeModule.require && freeModule.require("util").types;
|
|
if (types) {
|
|
return types;
|
|
}
|
|
return freeProcess && freeProcess.binding && freeProcess.binding("util");
|
|
} catch (e) {
|
|
}
|
|
}();
|
|
module2.exports = nodeUtil;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isTypedArray.js
|
|
var require_isTypedArray = __commonJS({
|
|
"node_modules/lodash/isTypedArray.js"(exports, module2) {
|
|
var baseIsTypedArray = require_baseIsTypedArray();
|
|
var baseUnary = require_baseUnary();
|
|
var nodeUtil = require_nodeUtil();
|
|
var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
|
|
var isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;
|
|
module2.exports = isTypedArray;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_arrayLikeKeys.js
|
|
var require_arrayLikeKeys = __commonJS({
|
|
"node_modules/lodash/_arrayLikeKeys.js"(exports, module2) {
|
|
var baseTimes = require_baseTimes();
|
|
var isArguments = require_isArguments();
|
|
var isArray = require_isArray();
|
|
var isBuffer = require_isBuffer();
|
|
var isIndex = require_isIndex();
|
|
var isTypedArray = require_isTypedArray();
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function arrayLikeKeys(value, inherited) {
|
|
var isArr = isArray(value), isArg = !isArr && isArguments(value), isBuff = !isArr && !isArg && isBuffer(value), isType = !isArr && !isArg && !isBuff && isTypedArray(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes(value.length, String) : [], length = result.length;
|
|
for (var key in value) {
|
|
if ((inherited || hasOwnProperty.call(value, key)) && !(skipIndexes && (key == "length" || isBuff && (key == "offset" || key == "parent") || isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || isIndex(key, length)))) {
|
|
result.push(key);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = arrayLikeKeys;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_isPrototype.js
|
|
var require_isPrototype = __commonJS({
|
|
"node_modules/lodash/_isPrototype.js"(exports, module2) {
|
|
var objectProto = Object.prototype;
|
|
function isPrototype(value) {
|
|
var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto;
|
|
return value === proto;
|
|
}
|
|
module2.exports = isPrototype;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_overArg.js
|
|
var require_overArg = __commonJS({
|
|
"node_modules/lodash/_overArg.js"(exports, module2) {
|
|
function overArg(func, transform) {
|
|
return function(arg) {
|
|
return func(transform(arg));
|
|
};
|
|
}
|
|
module2.exports = overArg;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_nativeKeys.js
|
|
var require_nativeKeys = __commonJS({
|
|
"node_modules/lodash/_nativeKeys.js"(exports, module2) {
|
|
var overArg = require_overArg();
|
|
var nativeKeys = overArg(Object.keys, Object);
|
|
module2.exports = nativeKeys;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseKeys.js
|
|
var require_baseKeys = __commonJS({
|
|
"node_modules/lodash/_baseKeys.js"(exports, module2) {
|
|
var isPrototype = require_isPrototype();
|
|
var nativeKeys = require_nativeKeys();
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function baseKeys(object) {
|
|
if (!isPrototype(object)) {
|
|
return nativeKeys(object);
|
|
}
|
|
var result = [];
|
|
for (var key in Object(object)) {
|
|
if (hasOwnProperty.call(object, key) && key != "constructor") {
|
|
result.push(key);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = baseKeys;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isArrayLike.js
|
|
var require_isArrayLike = __commonJS({
|
|
"node_modules/lodash/isArrayLike.js"(exports, module2) {
|
|
var isFunction = require_isFunction();
|
|
var isLength = require_isLength();
|
|
function isArrayLike(value) {
|
|
return value != null && isLength(value.length) && !isFunction(value);
|
|
}
|
|
module2.exports = isArrayLike;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/keys.js
|
|
var require_keys = __commonJS({
|
|
"node_modules/lodash/keys.js"(exports, module2) {
|
|
var arrayLikeKeys = require_arrayLikeKeys();
|
|
var baseKeys = require_baseKeys();
|
|
var isArrayLike = require_isArrayLike();
|
|
function keys(object) {
|
|
return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
|
|
}
|
|
module2.exports = keys;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseAssign.js
|
|
var require_baseAssign = __commonJS({
|
|
"node_modules/lodash/_baseAssign.js"(exports, module2) {
|
|
var copyObject = require_copyObject();
|
|
var keys = require_keys();
|
|
function baseAssign(object, source) {
|
|
return object && copyObject(source, keys(source), object);
|
|
}
|
|
module2.exports = baseAssign;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_nativeKeysIn.js
|
|
var require_nativeKeysIn = __commonJS({
|
|
"node_modules/lodash/_nativeKeysIn.js"(exports, module2) {
|
|
function nativeKeysIn(object) {
|
|
var result = [];
|
|
if (object != null) {
|
|
for (var key in Object(object)) {
|
|
result.push(key);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = nativeKeysIn;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseKeysIn.js
|
|
var require_baseKeysIn = __commonJS({
|
|
"node_modules/lodash/_baseKeysIn.js"(exports, module2) {
|
|
var isObject = require_isObject();
|
|
var isPrototype = require_isPrototype();
|
|
var nativeKeysIn = require_nativeKeysIn();
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function baseKeysIn(object) {
|
|
if (!isObject(object)) {
|
|
return nativeKeysIn(object);
|
|
}
|
|
var isProto = isPrototype(object), result = [];
|
|
for (var key in object) {
|
|
if (!(key == "constructor" && (isProto || !hasOwnProperty.call(object, key)))) {
|
|
result.push(key);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = baseKeysIn;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/keysIn.js
|
|
var require_keysIn = __commonJS({
|
|
"node_modules/lodash/keysIn.js"(exports, module2) {
|
|
var arrayLikeKeys = require_arrayLikeKeys();
|
|
var baseKeysIn = require_baseKeysIn();
|
|
var isArrayLike = require_isArrayLike();
|
|
function keysIn(object) {
|
|
return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);
|
|
}
|
|
module2.exports = keysIn;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseAssignIn.js
|
|
var require_baseAssignIn = __commonJS({
|
|
"node_modules/lodash/_baseAssignIn.js"(exports, module2) {
|
|
var copyObject = require_copyObject();
|
|
var keysIn = require_keysIn();
|
|
function baseAssignIn(object, source) {
|
|
return object && copyObject(source, keysIn(source), object);
|
|
}
|
|
module2.exports = baseAssignIn;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_cloneBuffer.js
|
|
var require_cloneBuffer = __commonJS({
|
|
"node_modules/lodash/_cloneBuffer.js"(exports, module2) {
|
|
var root = require_root();
|
|
var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports;
|
|
var freeModule = freeExports && typeof module2 == "object" && module2 && !module2.nodeType && module2;
|
|
var moduleExports = freeModule && freeModule.exports === freeExports;
|
|
var Buffer2 = moduleExports ? root.Buffer : void 0;
|
|
var allocUnsafe = Buffer2 ? Buffer2.allocUnsafe : void 0;
|
|
function cloneBuffer(buffer, isDeep) {
|
|
if (isDeep) {
|
|
return buffer.slice();
|
|
}
|
|
var length = buffer.length, result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
|
|
buffer.copy(result);
|
|
return result;
|
|
}
|
|
module2.exports = cloneBuffer;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_copyArray.js
|
|
var require_copyArray = __commonJS({
|
|
"node_modules/lodash/_copyArray.js"(exports, module2) {
|
|
function copyArray(source, array) {
|
|
var index = -1, length = source.length;
|
|
array || (array = Array(length));
|
|
while (++index < length) {
|
|
array[index] = source[index];
|
|
}
|
|
return array;
|
|
}
|
|
module2.exports = copyArray;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_arrayFilter.js
|
|
var require_arrayFilter = __commonJS({
|
|
"node_modules/lodash/_arrayFilter.js"(exports, module2) {
|
|
function arrayFilter(array, predicate) {
|
|
var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result = [];
|
|
while (++index < length) {
|
|
var value = array[index];
|
|
if (predicate(value, index, array)) {
|
|
result[resIndex++] = value;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = arrayFilter;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/stubArray.js
|
|
var require_stubArray = __commonJS({
|
|
"node_modules/lodash/stubArray.js"(exports, module2) {
|
|
function stubArray() {
|
|
return [];
|
|
}
|
|
module2.exports = stubArray;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getSymbols.js
|
|
var require_getSymbols = __commonJS({
|
|
"node_modules/lodash/_getSymbols.js"(exports, module2) {
|
|
var arrayFilter = require_arrayFilter();
|
|
var stubArray = require_stubArray();
|
|
var objectProto = Object.prototype;
|
|
var propertyIsEnumerable = objectProto.propertyIsEnumerable;
|
|
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
|
var getSymbols = !nativeGetSymbols ? stubArray : function(object) {
|
|
if (object == null) {
|
|
return [];
|
|
}
|
|
object = Object(object);
|
|
return arrayFilter(nativeGetSymbols(object), function(symbol) {
|
|
return propertyIsEnumerable.call(object, symbol);
|
|
});
|
|
};
|
|
module2.exports = getSymbols;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_copySymbols.js
|
|
var require_copySymbols = __commonJS({
|
|
"node_modules/lodash/_copySymbols.js"(exports, module2) {
|
|
var copyObject = require_copyObject();
|
|
var getSymbols = require_getSymbols();
|
|
function copySymbols(source, object) {
|
|
return copyObject(source, getSymbols(source), object);
|
|
}
|
|
module2.exports = copySymbols;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_arrayPush.js
|
|
var require_arrayPush = __commonJS({
|
|
"node_modules/lodash/_arrayPush.js"(exports, module2) {
|
|
function arrayPush(array, values) {
|
|
var index = -1, length = values.length, offset = array.length;
|
|
while (++index < length) {
|
|
array[offset + index] = values[index];
|
|
}
|
|
return array;
|
|
}
|
|
module2.exports = arrayPush;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getPrototype.js
|
|
var require_getPrototype = __commonJS({
|
|
"node_modules/lodash/_getPrototype.js"(exports, module2) {
|
|
var overArg = require_overArg();
|
|
var getPrototype = overArg(Object.getPrototypeOf, Object);
|
|
module2.exports = getPrototype;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getSymbolsIn.js
|
|
var require_getSymbolsIn = __commonJS({
|
|
"node_modules/lodash/_getSymbolsIn.js"(exports, module2) {
|
|
var arrayPush = require_arrayPush();
|
|
var getPrototype = require_getPrototype();
|
|
var getSymbols = require_getSymbols();
|
|
var stubArray = require_stubArray();
|
|
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
|
var getSymbolsIn = !nativeGetSymbols ? stubArray : function(object) {
|
|
var result = [];
|
|
while (object) {
|
|
arrayPush(result, getSymbols(object));
|
|
object = getPrototype(object);
|
|
}
|
|
return result;
|
|
};
|
|
module2.exports = getSymbolsIn;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_copySymbolsIn.js
|
|
var require_copySymbolsIn = __commonJS({
|
|
"node_modules/lodash/_copySymbolsIn.js"(exports, module2) {
|
|
var copyObject = require_copyObject();
|
|
var getSymbolsIn = require_getSymbolsIn();
|
|
function copySymbolsIn(source, object) {
|
|
return copyObject(source, getSymbolsIn(source), object);
|
|
}
|
|
module2.exports = copySymbolsIn;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseGetAllKeys.js
|
|
var require_baseGetAllKeys = __commonJS({
|
|
"node_modules/lodash/_baseGetAllKeys.js"(exports, module2) {
|
|
var arrayPush = require_arrayPush();
|
|
var isArray = require_isArray();
|
|
function baseGetAllKeys(object, keysFunc, symbolsFunc) {
|
|
var result = keysFunc(object);
|
|
return isArray(object) ? result : arrayPush(result, symbolsFunc(object));
|
|
}
|
|
module2.exports = baseGetAllKeys;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getAllKeys.js
|
|
var require_getAllKeys = __commonJS({
|
|
"node_modules/lodash/_getAllKeys.js"(exports, module2) {
|
|
var baseGetAllKeys = require_baseGetAllKeys();
|
|
var getSymbols = require_getSymbols();
|
|
var keys = require_keys();
|
|
function getAllKeys(object) {
|
|
return baseGetAllKeys(object, keys, getSymbols);
|
|
}
|
|
module2.exports = getAllKeys;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getAllKeysIn.js
|
|
var require_getAllKeysIn = __commonJS({
|
|
"node_modules/lodash/_getAllKeysIn.js"(exports, module2) {
|
|
var baseGetAllKeys = require_baseGetAllKeys();
|
|
var getSymbolsIn = require_getSymbolsIn();
|
|
var keysIn = require_keysIn();
|
|
function getAllKeysIn(object) {
|
|
return baseGetAllKeys(object, keysIn, getSymbolsIn);
|
|
}
|
|
module2.exports = getAllKeysIn;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_DataView.js
|
|
var require_DataView = __commonJS({
|
|
"node_modules/lodash/_DataView.js"(exports, module2) {
|
|
var getNative = require_getNative();
|
|
var root = require_root();
|
|
var DataView = getNative(root, "DataView");
|
|
module2.exports = DataView;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_Promise.js
|
|
var require_Promise = __commonJS({
|
|
"node_modules/lodash/_Promise.js"(exports, module2) {
|
|
var getNative = require_getNative();
|
|
var root = require_root();
|
|
var Promise2 = getNative(root, "Promise");
|
|
module2.exports = Promise2;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_Set.js
|
|
var require_Set = __commonJS({
|
|
"node_modules/lodash/_Set.js"(exports, module2) {
|
|
var getNative = require_getNative();
|
|
var root = require_root();
|
|
var Set = getNative(root, "Set");
|
|
module2.exports = Set;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_WeakMap.js
|
|
var require_WeakMap = __commonJS({
|
|
"node_modules/lodash/_WeakMap.js"(exports, module2) {
|
|
var getNative = require_getNative();
|
|
var root = require_root();
|
|
var WeakMap = getNative(root, "WeakMap");
|
|
module2.exports = WeakMap;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_getTag.js
|
|
var require_getTag = __commonJS({
|
|
"node_modules/lodash/_getTag.js"(exports, module2) {
|
|
var DataView = require_DataView();
|
|
var Map = require_Map();
|
|
var Promise2 = require_Promise();
|
|
var Set = require_Set();
|
|
var WeakMap = require_WeakMap();
|
|
var baseGetTag = require_baseGetTag();
|
|
var toSource = require_toSource();
|
|
var mapTag = "[object Map]";
|
|
var objectTag = "[object Object]";
|
|
var promiseTag = "[object Promise]";
|
|
var setTag = "[object Set]";
|
|
var weakMapTag = "[object WeakMap]";
|
|
var dataViewTag = "[object DataView]";
|
|
var dataViewCtorString = toSource(DataView);
|
|
var mapCtorString = toSource(Map);
|
|
var promiseCtorString = toSource(Promise2);
|
|
var setCtorString = toSource(Set);
|
|
var weakMapCtorString = toSource(WeakMap);
|
|
var getTag = baseGetTag;
|
|
if (DataView && getTag(new DataView(new ArrayBuffer(1))) != dataViewTag || Map && getTag(new Map()) != mapTag || Promise2 && getTag(Promise2.resolve()) != promiseTag || Set && getTag(new Set()) != setTag || WeakMap && getTag(new WeakMap()) != weakMapTag) {
|
|
getTag = function(value) {
|
|
var result = baseGetTag(value), Ctor = result == objectTag ? value.constructor : void 0, ctorString = Ctor ? toSource(Ctor) : "";
|
|
if (ctorString) {
|
|
switch (ctorString) {
|
|
case dataViewCtorString:
|
|
return dataViewTag;
|
|
case mapCtorString:
|
|
return mapTag;
|
|
case promiseCtorString:
|
|
return promiseTag;
|
|
case setCtorString:
|
|
return setTag;
|
|
case weakMapCtorString:
|
|
return weakMapTag;
|
|
}
|
|
}
|
|
return result;
|
|
};
|
|
}
|
|
module2.exports = getTag;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_initCloneArray.js
|
|
var require_initCloneArray = __commonJS({
|
|
"node_modules/lodash/_initCloneArray.js"(exports, module2) {
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function initCloneArray(array) {
|
|
var length = array.length, result = new array.constructor(length);
|
|
if (length && typeof array[0] == "string" && hasOwnProperty.call(array, "index")) {
|
|
result.index = array.index;
|
|
result.input = array.input;
|
|
}
|
|
return result;
|
|
}
|
|
module2.exports = initCloneArray;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_Uint8Array.js
|
|
var require_Uint8Array = __commonJS({
|
|
"node_modules/lodash/_Uint8Array.js"(exports, module2) {
|
|
var root = require_root();
|
|
var Uint8Array2 = root.Uint8Array;
|
|
module2.exports = Uint8Array2;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_cloneArrayBuffer.js
|
|
var require_cloneArrayBuffer = __commonJS({
|
|
"node_modules/lodash/_cloneArrayBuffer.js"(exports, module2) {
|
|
var Uint8Array2 = require_Uint8Array();
|
|
function cloneArrayBuffer(arrayBuffer) {
|
|
var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
|
|
new Uint8Array2(result).set(new Uint8Array2(arrayBuffer));
|
|
return result;
|
|
}
|
|
module2.exports = cloneArrayBuffer;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_cloneDataView.js
|
|
var require_cloneDataView = __commonJS({
|
|
"node_modules/lodash/_cloneDataView.js"(exports, module2) {
|
|
var cloneArrayBuffer = require_cloneArrayBuffer();
|
|
function cloneDataView(dataView, isDeep) {
|
|
var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;
|
|
return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
|
|
}
|
|
module2.exports = cloneDataView;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_cloneRegExp.js
|
|
var require_cloneRegExp = __commonJS({
|
|
"node_modules/lodash/_cloneRegExp.js"(exports, module2) {
|
|
var reFlags = /\w*$/;
|
|
function cloneRegExp(regexp) {
|
|
var result = new regexp.constructor(regexp.source, reFlags.exec(regexp));
|
|
result.lastIndex = regexp.lastIndex;
|
|
return result;
|
|
}
|
|
module2.exports = cloneRegExp;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_cloneSymbol.js
|
|
var require_cloneSymbol = __commonJS({
|
|
"node_modules/lodash/_cloneSymbol.js"(exports, module2) {
|
|
var Symbol2 = require_Symbol();
|
|
var symbolProto = Symbol2 ? Symbol2.prototype : void 0;
|
|
var symbolValueOf = symbolProto ? symbolProto.valueOf : void 0;
|
|
function cloneSymbol(symbol) {
|
|
return symbolValueOf ? Object(symbolValueOf.call(symbol)) : {};
|
|
}
|
|
module2.exports = cloneSymbol;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_cloneTypedArray.js
|
|
var require_cloneTypedArray = __commonJS({
|
|
"node_modules/lodash/_cloneTypedArray.js"(exports, module2) {
|
|
var cloneArrayBuffer = require_cloneArrayBuffer();
|
|
function cloneTypedArray(typedArray, isDeep) {
|
|
var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;
|
|
return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);
|
|
}
|
|
module2.exports = cloneTypedArray;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_initCloneByTag.js
|
|
var require_initCloneByTag = __commonJS({
|
|
"node_modules/lodash/_initCloneByTag.js"(exports, module2) {
|
|
var cloneArrayBuffer = require_cloneArrayBuffer();
|
|
var cloneDataView = require_cloneDataView();
|
|
var cloneRegExp = require_cloneRegExp();
|
|
var cloneSymbol = require_cloneSymbol();
|
|
var cloneTypedArray = require_cloneTypedArray();
|
|
var boolTag = "[object Boolean]";
|
|
var dateTag = "[object Date]";
|
|
var mapTag = "[object Map]";
|
|
var numberTag = "[object Number]";
|
|
var regexpTag = "[object RegExp]";
|
|
var setTag = "[object Set]";
|
|
var stringTag = "[object String]";
|
|
var symbolTag = "[object Symbol]";
|
|
var arrayBufferTag = "[object ArrayBuffer]";
|
|
var dataViewTag = "[object DataView]";
|
|
var float32Tag = "[object Float32Array]";
|
|
var float64Tag = "[object Float64Array]";
|
|
var int8Tag = "[object Int8Array]";
|
|
var int16Tag = "[object Int16Array]";
|
|
var int32Tag = "[object Int32Array]";
|
|
var uint8Tag = "[object Uint8Array]";
|
|
var uint8ClampedTag = "[object Uint8ClampedArray]";
|
|
var uint16Tag = "[object Uint16Array]";
|
|
var uint32Tag = "[object Uint32Array]";
|
|
function initCloneByTag(object, tag, isDeep) {
|
|
var Ctor = object.constructor;
|
|
switch (tag) {
|
|
case arrayBufferTag:
|
|
return cloneArrayBuffer(object);
|
|
case boolTag:
|
|
case dateTag:
|
|
return new Ctor(+object);
|
|
case dataViewTag:
|
|
return cloneDataView(object, isDeep);
|
|
case float32Tag:
|
|
case float64Tag:
|
|
case int8Tag:
|
|
case int16Tag:
|
|
case int32Tag:
|
|
case uint8Tag:
|
|
case uint8ClampedTag:
|
|
case uint16Tag:
|
|
case uint32Tag:
|
|
return cloneTypedArray(object, isDeep);
|
|
case mapTag:
|
|
return new Ctor();
|
|
case numberTag:
|
|
case stringTag:
|
|
return new Ctor(object);
|
|
case regexpTag:
|
|
return cloneRegExp(object);
|
|
case setTag:
|
|
return new Ctor();
|
|
case symbolTag:
|
|
return cloneSymbol(object);
|
|
}
|
|
}
|
|
module2.exports = initCloneByTag;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseCreate.js
|
|
var require_baseCreate = __commonJS({
|
|
"node_modules/lodash/_baseCreate.js"(exports, module2) {
|
|
var isObject = require_isObject();
|
|
var objectCreate = Object.create;
|
|
var baseCreate = function() {
|
|
function object() {
|
|
}
|
|
return function(proto) {
|
|
if (!isObject(proto)) {
|
|
return {};
|
|
}
|
|
if (objectCreate) {
|
|
return objectCreate(proto);
|
|
}
|
|
object.prototype = proto;
|
|
var result = new object();
|
|
object.prototype = void 0;
|
|
return result;
|
|
};
|
|
}();
|
|
module2.exports = baseCreate;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_initCloneObject.js
|
|
var require_initCloneObject = __commonJS({
|
|
"node_modules/lodash/_initCloneObject.js"(exports, module2) {
|
|
var baseCreate = require_baseCreate();
|
|
var getPrototype = require_getPrototype();
|
|
var isPrototype = require_isPrototype();
|
|
function initCloneObject(object) {
|
|
return typeof object.constructor == "function" && !isPrototype(object) ? baseCreate(getPrototype(object)) : {};
|
|
}
|
|
module2.exports = initCloneObject;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseIsMap.js
|
|
var require_baseIsMap = __commonJS({
|
|
"node_modules/lodash/_baseIsMap.js"(exports, module2) {
|
|
var getTag = require_getTag();
|
|
var isObjectLike = require_isObjectLike();
|
|
var mapTag = "[object Map]";
|
|
function baseIsMap(value) {
|
|
return isObjectLike(value) && getTag(value) == mapTag;
|
|
}
|
|
module2.exports = baseIsMap;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isMap.js
|
|
var require_isMap = __commonJS({
|
|
"node_modules/lodash/isMap.js"(exports, module2) {
|
|
var baseIsMap = require_baseIsMap();
|
|
var baseUnary = require_baseUnary();
|
|
var nodeUtil = require_nodeUtil();
|
|
var nodeIsMap = nodeUtil && nodeUtil.isMap;
|
|
var isMap = nodeIsMap ? baseUnary(nodeIsMap) : baseIsMap;
|
|
module2.exports = isMap;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseIsSet.js
|
|
var require_baseIsSet = __commonJS({
|
|
"node_modules/lodash/_baseIsSet.js"(exports, module2) {
|
|
var getTag = require_getTag();
|
|
var isObjectLike = require_isObjectLike();
|
|
var setTag = "[object Set]";
|
|
function baseIsSet(value) {
|
|
return isObjectLike(value) && getTag(value) == setTag;
|
|
}
|
|
module2.exports = baseIsSet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isSet.js
|
|
var require_isSet = __commonJS({
|
|
"node_modules/lodash/isSet.js"(exports, module2) {
|
|
var baseIsSet = require_baseIsSet();
|
|
var baseUnary = require_baseUnary();
|
|
var nodeUtil = require_nodeUtil();
|
|
var nodeIsSet = nodeUtil && nodeUtil.isSet;
|
|
var isSet = nodeIsSet ? baseUnary(nodeIsSet) : baseIsSet;
|
|
module2.exports = isSet;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/_baseClone.js
|
|
var require_baseClone = __commonJS({
|
|
"node_modules/lodash/_baseClone.js"(exports, module2) {
|
|
var Stack = require_Stack();
|
|
var arrayEach = require_arrayEach();
|
|
var assignValue = require_assignValue();
|
|
var baseAssign = require_baseAssign();
|
|
var baseAssignIn = require_baseAssignIn();
|
|
var cloneBuffer = require_cloneBuffer();
|
|
var copyArray = require_copyArray();
|
|
var copySymbols = require_copySymbols();
|
|
var copySymbolsIn = require_copySymbolsIn();
|
|
var getAllKeys = require_getAllKeys();
|
|
var getAllKeysIn = require_getAllKeysIn();
|
|
var getTag = require_getTag();
|
|
var initCloneArray = require_initCloneArray();
|
|
var initCloneByTag = require_initCloneByTag();
|
|
var initCloneObject = require_initCloneObject();
|
|
var isArray = require_isArray();
|
|
var isBuffer = require_isBuffer();
|
|
var isMap = require_isMap();
|
|
var isObject = require_isObject();
|
|
var isSet = require_isSet();
|
|
var keys = require_keys();
|
|
var keysIn = require_keysIn();
|
|
var CLONE_DEEP_FLAG = 1;
|
|
var CLONE_FLAT_FLAG = 2;
|
|
var CLONE_SYMBOLS_FLAG = 4;
|
|
var argsTag = "[object Arguments]";
|
|
var arrayTag = "[object Array]";
|
|
var boolTag = "[object Boolean]";
|
|
var dateTag = "[object Date]";
|
|
var errorTag = "[object Error]";
|
|
var funcTag = "[object Function]";
|
|
var genTag = "[object GeneratorFunction]";
|
|
var mapTag = "[object Map]";
|
|
var numberTag = "[object Number]";
|
|
var objectTag = "[object Object]";
|
|
var regexpTag = "[object RegExp]";
|
|
var setTag = "[object Set]";
|
|
var stringTag = "[object String]";
|
|
var symbolTag = "[object Symbol]";
|
|
var weakMapTag = "[object WeakMap]";
|
|
var arrayBufferTag = "[object ArrayBuffer]";
|
|
var dataViewTag = "[object DataView]";
|
|
var float32Tag = "[object Float32Array]";
|
|
var float64Tag = "[object Float64Array]";
|
|
var int8Tag = "[object Int8Array]";
|
|
var int16Tag = "[object Int16Array]";
|
|
var int32Tag = "[object Int32Array]";
|
|
var uint8Tag = "[object Uint8Array]";
|
|
var uint8ClampedTag = "[object Uint8ClampedArray]";
|
|
var uint16Tag = "[object Uint16Array]";
|
|
var uint32Tag = "[object Uint32Array]";
|
|
var cloneableTags = {};
|
|
cloneableTags[argsTag] = cloneableTags[arrayTag] = cloneableTags[arrayBufferTag] = cloneableTags[dataViewTag] = cloneableTags[boolTag] = cloneableTags[dateTag] = cloneableTags[float32Tag] = cloneableTags[float64Tag] = cloneableTags[int8Tag] = cloneableTags[int16Tag] = cloneableTags[int32Tag] = cloneableTags[mapTag] = cloneableTags[numberTag] = cloneableTags[objectTag] = cloneableTags[regexpTag] = cloneableTags[setTag] = cloneableTags[stringTag] = cloneableTags[symbolTag] = cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] = cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;
|
|
cloneableTags[errorTag] = cloneableTags[funcTag] = cloneableTags[weakMapTag] = false;
|
|
function baseClone(value, bitmask, customizer, key, object, stack) {
|
|
var result, isDeep = bitmask & CLONE_DEEP_FLAG, isFlat = bitmask & CLONE_FLAT_FLAG, isFull = bitmask & CLONE_SYMBOLS_FLAG;
|
|
if (customizer) {
|
|
result = object ? customizer(value, key, object, stack) : customizer(value);
|
|
}
|
|
if (result !== void 0) {
|
|
return result;
|
|
}
|
|
if (!isObject(value)) {
|
|
return value;
|
|
}
|
|
var isArr = isArray(value);
|
|
if (isArr) {
|
|
result = initCloneArray(value);
|
|
if (!isDeep) {
|
|
return copyArray(value, result);
|
|
}
|
|
} else {
|
|
var tag = getTag(value), isFunc = tag == funcTag || tag == genTag;
|
|
if (isBuffer(value)) {
|
|
return cloneBuffer(value, isDeep);
|
|
}
|
|
if (tag == objectTag || tag == argsTag || isFunc && !object) {
|
|
result = isFlat || isFunc ? {} : initCloneObject(value);
|
|
if (!isDeep) {
|
|
return isFlat ? copySymbolsIn(value, baseAssignIn(result, value)) : copySymbols(value, baseAssign(result, value));
|
|
}
|
|
} else {
|
|
if (!cloneableTags[tag]) {
|
|
return object ? value : {};
|
|
}
|
|
result = initCloneByTag(value, tag, isDeep);
|
|
}
|
|
}
|
|
stack || (stack = new Stack());
|
|
var stacked = stack.get(value);
|
|
if (stacked) {
|
|
return stacked;
|
|
}
|
|
stack.set(value, result);
|
|
if (isSet(value)) {
|
|
value.forEach(function(subValue) {
|
|
result.add(baseClone(subValue, bitmask, customizer, subValue, value, stack));
|
|
});
|
|
} else if (isMap(value)) {
|
|
value.forEach(function(subValue, key2) {
|
|
result.set(key2, baseClone(subValue, bitmask, customizer, key2, value, stack));
|
|
});
|
|
}
|
|
var keysFunc = isFull ? isFlat ? getAllKeysIn : getAllKeys : isFlat ? keysIn : keys;
|
|
var props = isArr ? void 0 : keysFunc(value);
|
|
arrayEach(props || value, function(subValue, key2) {
|
|
if (props) {
|
|
key2 = subValue;
|
|
subValue = value[key2];
|
|
}
|
|
assignValue(result, key2, baseClone(subValue, bitmask, customizer, key2, value, stack));
|
|
});
|
|
return result;
|
|
}
|
|
module2.exports = baseClone;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/cloneDeep.js
|
|
var require_cloneDeep = __commonJS({
|
|
"node_modules/lodash/cloneDeep.js"(exports, module2) {
|
|
var baseClone = require_baseClone();
|
|
var CLONE_DEEP_FLAG = 1;
|
|
var CLONE_SYMBOLS_FLAG = 4;
|
|
function cloneDeep2(value) {
|
|
return baseClone(value, CLONE_DEEP_FLAG | CLONE_SYMBOLS_FLAG);
|
|
}
|
|
module2.exports = cloneDeep2;
|
|
}
|
|
});
|
|
|
|
// node_modules/lodash/isEmpty.js
|
|
var require_isEmpty = __commonJS({
|
|
"node_modules/lodash/isEmpty.js"(exports, module2) {
|
|
var baseKeys = require_baseKeys();
|
|
var getTag = require_getTag();
|
|
var isArguments = require_isArguments();
|
|
var isArray = require_isArray();
|
|
var isArrayLike = require_isArrayLike();
|
|
var isBuffer = require_isBuffer();
|
|
var isPrototype = require_isPrototype();
|
|
var isTypedArray = require_isTypedArray();
|
|
var mapTag = "[object Map]";
|
|
var setTag = "[object Set]";
|
|
var objectProto = Object.prototype;
|
|
var hasOwnProperty = objectProto.hasOwnProperty;
|
|
function isEmpty2(value) {
|
|
if (value == null) {
|
|
return true;
|
|
}
|
|
if (isArrayLike(value) && (isArray(value) || typeof value == "string" || typeof value.splice == "function" || isBuffer(value) || isTypedArray(value) || isArguments(value))) {
|
|
return !value.length;
|
|
}
|
|
var tag = getTag(value);
|
|
if (tag == mapTag || tag == setTag) {
|
|
return !value.size;
|
|
}
|
|
if (isPrototype(value)) {
|
|
return !baseKeys(value).length;
|
|
}
|
|
for (var key in value) {
|
|
if (hasOwnProperty.call(value, key)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
module2.exports = isEmpty2;
|
|
}
|
|
});
|
|
|
|
// node_modules/feather-icons/dist/feather.js
|
|
var require_feather = __commonJS({
|
|
"node_modules/feather-icons/dist/feather.js"(exports, module2) {
|
|
(function webpackUniversalModuleDefinition(root, factory) {
|
|
if (typeof exports === "object" && typeof module2 === "object")
|
|
module2.exports = factory();
|
|
else if (typeof define === "function" && define.amd)
|
|
define([], factory);
|
|
else if (typeof exports === "object")
|
|
exports["feather"] = factory();
|
|
else
|
|
root["feather"] = factory();
|
|
})(typeof self !== "undefined" ? self : exports, function() {
|
|
return function(modules) {
|
|
var installedModules = {};
|
|
function __webpack_require__(moduleId) {
|
|
if (installedModules[moduleId]) {
|
|
return installedModules[moduleId].exports;
|
|
}
|
|
var module3 = installedModules[moduleId] = {
|
|
i: moduleId,
|
|
l: false,
|
|
exports: {}
|
|
};
|
|
modules[moduleId].call(module3.exports, module3, module3.exports, __webpack_require__);
|
|
module3.l = true;
|
|
return module3.exports;
|
|
}
|
|
__webpack_require__.m = modules;
|
|
__webpack_require__.c = installedModules;
|
|
__webpack_require__.d = function(exports2, name, getter) {
|
|
if (!__webpack_require__.o(exports2, name)) {
|
|
Object.defineProperty(exports2, name, {
|
|
configurable: false,
|
|
enumerable: true,
|
|
get: getter
|
|
});
|
|
}
|
|
};
|
|
__webpack_require__.r = function(exports2) {
|
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
};
|
|
__webpack_require__.n = function(module3) {
|
|
var getter = module3 && module3.__esModule ? function getDefault() {
|
|
return module3["default"];
|
|
} : function getModuleExports() {
|
|
return module3;
|
|
};
|
|
__webpack_require__.d(getter, "a", getter);
|
|
return getter;
|
|
};
|
|
__webpack_require__.o = function(object, property) {
|
|
return Object.prototype.hasOwnProperty.call(object, property);
|
|
};
|
|
__webpack_require__.p = "";
|
|
return __webpack_require__(__webpack_require__.s = 0);
|
|
}({
|
|
"./dist/icons.json": function(module3) {
|
|
module3.exports = { "activity": '<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline>', "airplay": '<path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path><polygon points="12 15 17 21 7 21 12 15"></polygon>', "alert-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line>', "alert-octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line>', "alert-triangle": '<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path><line x1="12" y1="9" x2="12" y2="13"></line><line x1="12" y1="17" x2="12.01" y2="17"></line>', "align-center": '<line x1="18" y1="10" x2="6" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="18" y1="18" x2="6" y2="18"></line>', "align-justify": '<line x1="21" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="3" y2="18"></line>', "align-left": '<line x1="17" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="17" y1="18" x2="3" y2="18"></line>', "align-right": '<line x1="21" y1="10" x2="7" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="7" y2="18"></line>', "anchor": '<circle cx="12" cy="5" r="3"></circle><line x1="12" y1="22" x2="12" y2="8"></line><path d="M5 12H2a10 10 0 0 0 20 0h-3"></path>', "aperture": '<circle cx="12" cy="12" r="10"></circle><line x1="14.31" y1="8" x2="20.05" y2="17.94"></line><line x1="9.69" y1="8" x2="21.17" y2="8"></line><line x1="7.38" y1="12" x2="13.12" y2="2.06"></line><line x1="9.69" y1="16" x2="3.95" y2="6.06"></line><line x1="14.31" y1="16" x2="2.83" y2="16"></line><line x1="16.62" y1="12" x2="10.88" y2="21.94"></line>', "archive": '<polyline points="21 8 21 21 3 21 3 8"></polyline><rect x="1" y="3" width="22" height="5"></rect><line x1="10" y1="12" x2="14" y2="12"></line>', "arrow-down-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="8 12 12 16 16 12"></polyline><line x1="12" y1="8" x2="12" y2="16"></line>', "arrow-down-left": '<line x1="17" y1="7" x2="7" y2="17"></line><polyline points="17 17 7 17 7 7"></polyline>', "arrow-down-right": '<line x1="7" y1="7" x2="17" y2="17"></line><polyline points="17 7 17 17 7 17"></polyline>', "arrow-down": '<line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline>', "arrow-left-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 8 8 12 12 16"></polyline><line x1="16" y1="12" x2="8" y2="12"></line>', "arrow-left": '<line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline>', "arrow-right-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 16 16 12 12 8"></polyline><line x1="8" y1="12" x2="16" y2="12"></line>', "arrow-right": '<line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline>', "arrow-up-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="16 12 12 8 8 12"></polyline><line x1="12" y1="16" x2="12" y2="8"></line>', "arrow-up-left": '<line x1="17" y1="17" x2="7" y2="7"></line><polyline points="7 17 7 7 17 7"></polyline>', "arrow-up-right": '<line x1="7" y1="17" x2="17" y2="7"></line><polyline points="7 7 17 7 17 17"></polyline>', "arrow-up": '<line x1="12" y1="19" x2="12" y2="5"></line><polyline points="5 12 12 5 19 12"></polyline>', "at-sign": '<circle cx="12" cy="12" r="4"></circle><path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path>', "award": '<circle cx="12" cy="8" r="7"></circle><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"></polyline>', "bar-chart-2": '<line x1="18" y1="20" x2="18" y2="10"></line><line x1="12" y1="20" x2="12" y2="4"></line><line x1="6" y1="20" x2="6" y2="14"></line>', "bar-chart": '<line x1="12" y1="20" x2="12" y2="10"></line><line x1="18" y1="20" x2="18" y2="4"></line><line x1="6" y1="20" x2="6" y2="16"></line>', "battery-charging": '<path d="M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"></path><line x1="23" y1="13" x2="23" y2="11"></line><polyline points="11 6 7 12 13 12 9 18"></polyline>', "battery": '<rect x="1" y="6" width="18" height="12" rx="2" ry="2"></rect><line x1="23" y1="13" x2="23" y2="11"></line>', "bell-off": '<path d="M13.73 21a2 2 0 0 1-3.46 0"></path><path d="M18.63 13A17.89 17.89 0 0 1 18 8"></path><path d="M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"></path><path d="M18 8a6 6 0 0 0-9.33-5"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "bell": '<path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path>', "bluetooth": '<polyline points="6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"></polyline>', "bold": '<path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path><path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path>', "book-open": '<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path>', "book": '<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>', "bookmark": '<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"></path>', "box": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "briefcase": '<rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path>', "calendar": '<rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line>', "camera-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"></path>', "camera": '<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle>', "cast": '<path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"></path><line x1="2" y1="20" x2="2.01" y2="20"></line>', "check-circle": '<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline>', "check-square": '<polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path>', "check": '<polyline points="20 6 9 17 4 12"></polyline>', "chevron-down": '<polyline points="6 9 12 15 18 9"></polyline>', "chevron-left": '<polyline points="15 18 9 12 15 6"></polyline>', "chevron-right": '<polyline points="9 18 15 12 9 6"></polyline>', "chevron-up": '<polyline points="18 15 12 9 6 15"></polyline>', "chevrons-down": '<polyline points="7 13 12 18 17 13"></polyline><polyline points="7 6 12 11 17 6"></polyline>', "chevrons-left": '<polyline points="11 17 6 12 11 7"></polyline><polyline points="18 17 13 12 18 7"></polyline>', "chevrons-right": '<polyline points="13 17 18 12 13 7"></polyline><polyline points="6 17 11 12 6 7"></polyline>', "chevrons-up": '<polyline points="17 11 12 6 7 11"></polyline><polyline points="17 18 12 13 7 18"></polyline>', "chrome": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="21.17" y1="8" x2="12" y2="8"></line><line x1="3.95" y1="6.06" x2="8.54" y2="14"></line><line x1="10.88" y1="21.94" x2="15.46" y2="14"></line>', "circle": '<circle cx="12" cy="12" r="10"></circle>', "clipboard": '<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect>', "clock": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline>', "cloud-drizzle": '<line x1="8" y1="19" x2="8" y2="21"></line><line x1="8" y1="13" x2="8" y2="15"></line><line x1="16" y1="19" x2="16" y2="21"></line><line x1="16" y1="13" x2="16" y2="15"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="12" y1="15" x2="12" y2="17"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>', "cloud-lightning": '<path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"></path><polyline points="13 11 9 17 15 17 11 23"></polyline>', "cloud-off": '<path d="M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "cloud-rain": '<line x1="16" y1="13" x2="16" y2="21"></line><line x1="8" y1="13" x2="8" y2="21"></line><line x1="12" y1="15" x2="12" y2="23"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>', "cloud-snow": '<path d="M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"></path><line x1="8" y1="16" x2="8.01" y2="16"></line><line x1="8" y1="20" x2="8.01" y2="20"></line><line x1="12" y1="18" x2="12.01" y2="18"></line><line x1="12" y1="22" x2="12.01" y2="22"></line><line x1="16" y1="16" x2="16.01" y2="16"></line><line x1="16" y1="20" x2="16.01" y2="20"></line>', "cloud": '<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"></path>', "code": '<polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline>', "codepen": '<polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"></polygon><line x1="12" y1="22" x2="12" y2="15.5"></line><polyline points="22 8.5 12 15.5 2 8.5"></polyline><polyline points="2 15.5 12 8.5 22 15.5"></polyline><line x1="12" y1="2" x2="12" y2="8.5"></line>', "codesandbox": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="7.5 4.21 12 6.81 16.5 4.21"></polyline><polyline points="7.5 19.79 7.5 14.6 3 12"></polyline><polyline points="21 12 16.5 14.6 16.5 19.79"></polyline><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "coffee": '<path d="M18 8h1a4 4 0 0 1 0 8h-1"></path><path d="M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"></path><line x1="6" y1="1" x2="6" y2="4"></line><line x1="10" y1="1" x2="10" y2="4"></line><line x1="14" y1="1" x2="14" y2="4"></line>', "columns": '<path d="M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"></path>', "command": '<path d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"></path>', "compass": '<circle cx="12" cy="12" r="10"></circle><polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>', "copy": '<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>', "corner-down-left": '<polyline points="9 10 4 15 9 20"></polyline><path d="M20 4v7a4 4 0 0 1-4 4H4"></path>', "corner-down-right": '<polyline points="15 10 20 15 15 20"></polyline><path d="M4 4v7a4 4 0 0 0 4 4h12"></path>', "corner-left-down": '<polyline points="14 15 9 20 4 15"></polyline><path d="M20 4h-7a4 4 0 0 0-4 4v12"></path>', "corner-left-up": '<polyline points="14 9 9 4 4 9"></polyline><path d="M20 20h-7a4 4 0 0 1-4-4V4"></path>', "corner-right-down": '<polyline points="10 15 15 20 20 15"></polyline><path d="M4 4h7a4 4 0 0 1 4 4v12"></path>', "corner-right-up": '<polyline points="10 9 15 4 20 9"></polyline><path d="M4 20h7a4 4 0 0 0 4-4V4"></path>', "corner-up-left": '<polyline points="9 14 4 9 9 4"></polyline><path d="M20 20v-7a4 4 0 0 0-4-4H4"></path>', "corner-up-right": '<polyline points="15 14 20 9 15 4"></polyline><path d="M4 20v-7a4 4 0 0 1 4-4h12"></path>', "cpu": '<rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect><rect x="9" y="9" width="6" height="6"></rect><line x1="9" y1="1" x2="9" y2="4"></line><line x1="15" y1="1" x2="15" y2="4"></line><line x1="9" y1="20" x2="9" y2="23"></line><line x1="15" y1="20" x2="15" y2="23"></line><line x1="20" y1="9" x2="23" y2="9"></line><line x1="20" y1="14" x2="23" y2="14"></line><line x1="1" y1="9" x2="4" y2="9"></line><line x1="1" y1="14" x2="4" y2="14"></line>', "credit-card": '<rect x="1" y="4" width="22" height="16" rx="2" ry="2"></rect><line x1="1" y1="10" x2="23" y2="10"></line>', "crop": '<path d="M6.13 1L6 16a2 2 0 0 0 2 2h15"></path><path d="M1 6.13L16 6a2 2 0 0 1 2 2v15"></path>', "crosshair": '<circle cx="12" cy="12" r="10"></circle><line x1="22" y1="12" x2="18" y2="12"></line><line x1="6" y1="12" x2="2" y2="12"></line><line x1="12" y1="6" x2="12" y2="2"></line><line x1="12" y1="22" x2="12" y2="18"></line>', "database": '<ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"></path><path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"></path>', "delete": '<path d="M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"></path><line x1="18" y1="9" x2="12" y2="15"></line><line x1="12" y1="9" x2="18" y2="15"></line>', "disc": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="3"></circle>', "divide-circle": '<line x1="8" y1="12" x2="16" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line><line x1="12" y1="8" x2="12" y2="8"></line><circle cx="12" cy="12" r="10"></circle>', "divide-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line><line x1="12" y1="8" x2="12" y2="8"></line>', "divide": '<circle cx="12" cy="6" r="2"></circle><line x1="5" y1="12" x2="19" y2="12"></line><circle cx="12" cy="18" r="2"></circle>', "dollar-sign": '<line x1="12" y1="1" x2="12" y2="23"></line><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>', "download-cloud": '<polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path>', "download": '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line>', "dribbble": '<circle cx="12" cy="12" r="10"></circle><path d="M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"></path>', "droplet": '<path d="M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"></path>', "edit-2": '<path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"></path>', "edit-3": '<path d="M12 20h9"></path><path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>', "edit": '<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path><path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"></path>', "external-link": '<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line>', "eye-off": '<path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "eye": '<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle>', "facebook": '<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>', "fast-forward": '<polygon points="13 19 22 12 13 5 13 19"></polygon><polygon points="2 19 11 12 2 5 2 19"></polygon>', "feather": '<path d="M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"></path><line x1="16" y1="8" x2="2" y2="22"></line><line x1="17.5" y1="15" x2="9" y2="15"></line>', "figma": '<path d="M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"></path><path d="M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"></path><path d="M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"></path><path d="M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"></path><path d="M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"></path>', "file-minus": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line>', "file-plus": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="12" y1="18" x2="12" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line>', "file-text": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline>', "file": '<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline>', "film": '<rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect><line x1="7" y1="2" x2="7" y2="22"></line><line x1="17" y1="2" x2="17" y2="22"></line><line x1="2" y1="12" x2="22" y2="12"></line><line x1="2" y1="7" x2="7" y2="7"></line><line x1="2" y1="17" x2="7" y2="17"></line><line x1="17" y1="17" x2="22" y2="17"></line><line x1="17" y1="7" x2="22" y2="7"></line>', "filter": '<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"></polygon>', "flag": '<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path><line x1="4" y1="22" x2="4" y2="15"></line>', "folder-minus": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="9" y1="14" x2="15" y2="14"></line>', "folder-plus": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line>', "folder": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>', "framer": '<path d="M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"></path>', "frown": '<circle cx="12" cy="12" r="10"></circle><path d="M16 16s-1.5-2-4-2-4 2-4 2"></path><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "gift": '<polyline points="20 12 20 22 4 22 4 12"></polyline><rect x="2" y="7" width="20" height="5"></rect><line x1="12" y1="22" x2="12" y2="7"></line><path d="M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"></path><path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"></path>', "git-branch": '<line x1="6" y1="3" x2="6" y2="15"></line><circle cx="18" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><path d="M18 9a9 9 0 0 1-9 9"></path>', "git-commit": '<circle cx="12" cy="12" r="4"></circle><line x1="1.05" y1="12" x2="7" y2="12"></line><line x1="17.01" y1="12" x2="22.96" y2="12"></line>', "git-merge": '<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M6 21V9a9 9 0 0 0 9 9"></path>', "git-pull-request": '<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M13 6h3a2 2 0 0 1 2 2v7"></path><line x1="6" y1="9" x2="6" y2="21"></line>', "github": '<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path>', "gitlab": '<path d="M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"></path>', "globe": '<circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path>', "grid": '<rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect>', "hard-drive": '<line x1="22" y1="12" x2="2" y2="12"></line><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path><line x1="6" y1="16" x2="6.01" y2="16"></line><line x1="10" y1="16" x2="10.01" y2="16"></line>', "hash": '<line x1="4" y1="9" x2="20" y2="9"></line><line x1="4" y1="15" x2="20" y2="15"></line><line x1="10" y1="3" x2="8" y2="21"></line><line x1="16" y1="3" x2="14" y2="21"></line>', "headphones": '<path d="M3 18v-6a9 9 0 0 1 18 0v6"></path><path d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"></path>', "heart": '<path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>', "help-circle": '<circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12.01" y2="17"></line>', "hexagon": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>', "home": '<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline>', "image": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline>', "inbox": '<polyline points="22 12 16 12 14 15 10 15 8 12 2 12"></polyline><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path>', "info": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line>', "instagram": '<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>', "italic": '<line x1="19" y1="4" x2="10" y2="4"></line><line x1="14" y1="20" x2="5" y2="20"></line><line x1="15" y1="4" x2="9" y2="20"></line>', "key": '<path d="M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"></path>', "layers": '<polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline>', "layout": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line>', "life-buoy": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="4.93" y1="4.93" x2="9.17" y2="9.17"></line><line x1="14.83" y1="14.83" x2="19.07" y2="19.07"></line><line x1="14.83" y1="9.17" x2="19.07" y2="4.93"></line><line x1="14.83" y1="9.17" x2="18.36" y2="5.64"></line><line x1="4.93" y1="19.07" x2="9.17" y2="14.83"></line>', "link-2": '<path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"></path><line x1="8" y1="12" x2="16" y2="12"></line>', "link": '<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>', "linkedin": '<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle>', "list": '<line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line>', "loader": '<line x1="12" y1="2" x2="12" y2="6"></line><line x1="12" y1="18" x2="12" y2="22"></line><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"></line><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"></line><line x1="2" y1="12" x2="6" y2="12"></line><line x1="18" y1="12" x2="22" y2="12"></line><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"></line><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"></line>', "lock": '<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path>', "log-in": '<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path><polyline points="10 17 15 12 10 7"></polyline><line x1="15" y1="12" x2="3" y2="12"></line>', "log-out": '<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line>', "mail": '<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline>', "map-pin": '<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle>', "map": '<polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line>', "maximize-2": '<polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" y1="3" x2="14" y2="10"></line><line x1="3" y1="21" x2="10" y2="14"></line>', "maximize": '<path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"></path>', "meh": '<circle cx="12" cy="12" r="10"></circle><line x1="8" y1="15" x2="16" y2="15"></line><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "menu": '<line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line>', "message-circle": '<path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path>', "message-square": '<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>', "mic-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"></path><path d="M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>', "mic": '<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path><path d="M19 10v2a7 7 0 0 1-14 0v-2"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>', "minimize-2": '<polyline points="4 14 10 14 10 20"></polyline><polyline points="20 10 14 10 14 4"></polyline><line x1="14" y1="10" x2="21" y2="3"></line><line x1="3" y1="21" x2="10" y2="14"></line>', "minimize": '<path d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"></path>', "minus-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="8" y1="12" x2="16" y2="12"></line>', "minus-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line>', "minus": '<line x1="5" y1="12" x2="19" y2="12"></line>', "monitor": '<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect><line x1="8" y1="21" x2="16" y2="21"></line><line x1="12" y1="17" x2="12" y2="21"></line>', "moon": '<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>', "more-horizontal": '<circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle>', "more-vertical": '<circle cx="12" cy="12" r="1"></circle><circle cx="12" cy="5" r="1"></circle><circle cx="12" cy="19" r="1"></circle>', "mouse-pointer": '<path d="M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"></path><path d="M13 13l6 6"></path>', "move": '<polyline points="5 9 2 12 5 15"></polyline><polyline points="9 5 12 2 15 5"></polyline><polyline points="15 19 12 22 9 19"></polyline><polyline points="19 9 22 12 19 15"></polyline><line x1="2" y1="12" x2="22" y2="12"></line><line x1="12" y1="2" x2="12" y2="22"></line>', "music": '<path d="M9 18V5l12-2v13"></path><circle cx="6" cy="18" r="3"></circle><circle cx="18" cy="16" r="3"></circle>', "navigation-2": '<polygon points="12 2 19 21 12 17 5 21 12 2"></polygon>', "navigation": '<polygon points="3 11 22 2 13 21 11 13 3 11"></polygon>', "octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon>', "package": '<line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "paperclip": '<path d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"></path>', "pause-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="10" y1="15" x2="10" y2="9"></line><line x1="14" y1="15" x2="14" y2="9"></line>', "pause": '<rect x="6" y="4" width="4" height="16"></rect><rect x="14" y="4" width="4" height="16"></rect>', "pen-tool": '<path d="M12 19l7-7 3 3-7 7-3-3z"></path><path d="M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"></path><path d="M2 2l7.586 7.586"></path><circle cx="11" cy="11" r="2"></circle>', "percent": '<line x1="19" y1="5" x2="5" y2="19"></line><circle cx="6.5" cy="6.5" r="2.5"></circle><circle cx="17.5" cy="17.5" r="2.5"></circle>', "phone-call": '<path d="M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-forwarded": '<polyline points="19 1 23 5 19 9"></polyline><line x1="15" y1="5" x2="23" y2="5"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-incoming": '<polyline points="16 2 16 8 22 8"></polyline><line x1="23" y1="1" x2="16" y2="8"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-missed": '<line x1="23" y1="1" x2="17" y2="7"></line><line x1="17" y1="1" x2="23" y2="7"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-off": '<path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"></path><line x1="23" y1="1" x2="1" y2="23"></line>', "phone-outgoing": '<polyline points="23 7 23 1 17 1"></polyline><line x1="16" y1="8" x2="23" y2="1"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone": '<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "pie-chart": '<path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path>', "play-circle": '<circle cx="12" cy="12" r="10"></circle><polygon points="10 8 16 12 10 16 10 8"></polygon>', "play": '<polygon points="5 3 19 12 5 21 5 3"></polygon>', "plus-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>', "plus-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>', "plus": '<line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line>', "pocket": '<path d="M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"></path><polyline points="8 10 12 14 16 10"></polyline>', "power": '<path d="M18.36 6.64a9 9 0 1 1-12.73 0"></path><line x1="12" y1="2" x2="12" y2="12"></line>', "printer": '<polyline points="6 9 6 2 18 2 18 9"></polyline><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><rect x="6" y="14" width="12" height="8"></rect>', "radio": '<circle cx="12" cy="12" r="2"></circle><path d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"></path>', "refresh-ccw": '<polyline points="1 4 1 10 7 10"></polyline><polyline points="23 20 23 14 17 14"></polyline><path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"></path>', "refresh-cw": '<polyline points="23 4 23 10 17 10"></polyline><polyline points="1 20 1 14 7 14"></polyline><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path>', "repeat": '<polyline points="17 1 21 5 17 9"></polyline><path d="M3 11V9a4 4 0 0 1 4-4h14"></path><polyline points="7 23 3 19 7 15"></polyline><path d="M21 13v2a4 4 0 0 1-4 4H3"></path>', "rewind": '<polygon points="11 19 2 12 11 5 11 19"></polygon><polygon points="22 19 13 12 22 5 22 19"></polygon>', "rotate-ccw": '<polyline points="1 4 1 10 7 10"></polyline><path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10"></path>', "rotate-cw": '<polyline points="23 4 23 10 17 10"></polyline><path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"></path>', "rss": '<path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle>', "save": '<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"></path><polyline points="17 21 17 13 7 13 7 21"></polyline><polyline points="7 3 7 8 15 8"></polyline>', "scissors": '<circle cx="6" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><line x1="20" y1="4" x2="8.12" y2="15.88"></line><line x1="14.47" y1="14.48" x2="20" y2="20"></line><line x1="8.12" y1="8.12" x2="12" y2="12"></line>', "search": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line>', "send": '<line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>', "server": '<rect x="2" y="2" width="20" height="8" rx="2" ry="2"></rect><rect x="2" y="14" width="20" height="8" rx="2" ry="2"></rect><line x1="6" y1="6" x2="6.01" y2="6"></line><line x1="6" y1="18" x2="6.01" y2="18"></line>', "settings": '<circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path>', "share-2": '<circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"></line><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"></line>', "share": '<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path><polyline points="16 6 12 2 8 6"></polyline><line x1="12" y1="2" x2="12" y2="15"></line>', "shield-off": '<path d="M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"></path><path d="M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "shield": '<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>', "shopping-bag": '<path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path>', "shopping-cart": '<circle cx="9" cy="21" r="1"></circle><circle cx="20" cy="21" r="1"></circle><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path>', "shuffle": '<polyline points="16 3 21 3 21 8"></polyline><line x1="4" y1="20" x2="21" y2="3"></line><polyline points="21 16 21 21 16 21"></polyline><line x1="15" y1="15" x2="21" y2="21"></line><line x1="4" y1="4" x2="9" y2="9"></line>', "sidebar": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="3" x2="9" y2="21"></line>', "skip-back": '<polygon points="19 20 9 12 19 4 19 20"></polygon><line x1="5" y1="19" x2="5" y2="5"></line>', "skip-forward": '<polygon points="5 4 15 12 5 20 5 4"></polygon><line x1="19" y1="5" x2="19" y2="19"></line>', "slack": '<path d="M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"></path><path d="M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path><path d="M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"></path><path d="M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"></path><path d="M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"></path><path d="M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"></path><path d="M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"></path><path d="M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"></path>', "slash": '<circle cx="12" cy="12" r="10"></circle><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line>', "sliders": '<line x1="4" y1="21" x2="4" y2="14"></line><line x1="4" y1="10" x2="4" y2="3"></line><line x1="12" y1="21" x2="12" y2="12"></line><line x1="12" y1="8" x2="12" y2="3"></line><line x1="20" y1="21" x2="20" y2="16"></line><line x1="20" y1="12" x2="20" y2="3"></line><line x1="1" y1="14" x2="7" y2="14"></line><line x1="9" y1="8" x2="15" y2="8"></line><line x1="17" y1="16" x2="23" y2="16"></line>', "smartphone": '<rect x="5" y="2" width="14" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line>', "smile": '<circle cx="12" cy="12" r="10"></circle><path d="M8 14s1.5 2 4 2 4-2 4-2"></path><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "speaker": '<rect x="4" y="2" width="16" height="20" rx="2" ry="2"></rect><circle cx="12" cy="14" r="4"></circle><line x1="12" y1="6" x2="12.01" y2="6"></line>', "square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>', "star": '<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon>', "stop-circle": '<circle cx="12" cy="12" r="10"></circle><rect x="9" y="9" width="6" height="6"></rect>', "sun": '<circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>', "sunrise": '<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="2" x2="12" y2="9"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="8 6 12 2 16 6"></polyline>', "sunset": '<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="9" x2="12" y2="2"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="16 5 12 9 8 5"></polyline>', "tablet": '<rect x="4" y="2" width="16" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line>', "tag": '<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7.01" y2="7"></line>', "target": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="6"></circle><circle cx="12" cy="12" r="2"></circle>', "terminal": '<polyline points="4 17 10 11 4 5"></polyline><line x1="12" y1="19" x2="20" y2="19"></line>', "thermometer": '<path d="M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"></path>', "thumbs-down": '<path d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"></path>', "thumbs-up": '<path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"></path>', "toggle-left": '<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="8" cy="12" r="3"></circle>', "toggle-right": '<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="16" cy="12" r="3"></circle>', "tool": '<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"></path>', "trash-2": '<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path><line x1="10" y1="11" x2="10" y2="17"></line><line x1="14" y1="11" x2="14" y2="17"></line>', "trash": '<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>', "trello": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><rect x="7" y="7" width="3" height="9"></rect><rect x="14" y="7" width="3" height="5"></rect>', "trending-down": '<polyline points="23 18 13.5 8.5 8.5 13.5 1 6"></polyline><polyline points="17 18 23 18 23 12"></polyline>', "trending-up": '<polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline><polyline points="17 6 23 6 23 12"></polyline>', "triangle": '<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>', "truck": '<rect x="1" y="3" width="15" height="13"></rect><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"></polygon><circle cx="5.5" cy="18.5" r="2.5"></circle><circle cx="18.5" cy="18.5" r="2.5"></circle>', "tv": '<rect x="2" y="7" width="20" height="15" rx="2" ry="2"></rect><polyline points="17 2 12 7 7 2"></polyline>', "twitch": '<path d="M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"></path>', "twitter": '<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>', "type": '<polyline points="4 7 4 4 20 4 20 7"></polyline><line x1="9" y1="20" x2="15" y2="20"></line><line x1="12" y1="4" x2="12" y2="20"></line>', "umbrella": '<path d="M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"></path>', "underline": '<path d="M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"></path><line x1="4" y1="21" x2="20" y2="21"></line>', "unlock": '<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 9.9-1"></path>', "upload-cloud": '<polyline points="16 16 12 12 8 16"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"></path><polyline points="16 16 12 12 8 16"></polyline>', "upload": '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="17 8 12 3 7 8"></polyline><line x1="12" y1="3" x2="12" y2="15"></line>', "user-check": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><polyline points="17 11 19 13 23 9"></polyline>', "user-minus": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="23" y1="11" x2="17" y2="11"></line>', "user-plus": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="20" y1="8" x2="20" y2="14"></line><line x1="23" y1="11" x2="17" y2="11"></line>', "user-x": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="18" y1="8" x2="23" y2="13"></line><line x1="23" y1="8" x2="18" y2="13"></line>', "user": '<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle>', "users": '<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path>', "video-off": '<path d="M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "video": '<polygon points="23 7 16 12 23 17 23 7"></polygon><rect x="1" y="5" width="15" height="14" rx="2" ry="2"></rect>', "voicemail": '<circle cx="5.5" cy="11.5" r="4.5"></circle><circle cx="18.5" cy="11.5" r="4.5"></circle><line x1="5.5" y1="16" x2="18.5" y2="16"></line>', "volume-1": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M15.54 8.46a5 5 0 0 1 0 7.07"></path>', "volume-2": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"></path>', "volume-x": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><line x1="23" y1="9" x2="17" y2="15"></line><line x1="17" y1="9" x2="23" y2="15"></line>', "volume": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>', "watch": '<circle cx="12" cy="12" r="7"></circle><polyline points="12 9 12 12 13.5 13.5"></polyline><path d="M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"></path>', "wifi-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M16.72 11.06A10.94 10.94 0 0 1 19 12.55"></path><path d="M5 12.55a10.94 10.94 0 0 1 5.17-2.39"></path><path d="M10.71 5.05A16 16 0 0 1 22.58 9"></path><path d="M1.42 9a15.91 15.91 0 0 1 4.7-2.88"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12.01" y2="20"></line>', "wifi": '<path d="M5 12.55a11 11 0 0 1 14.08 0"></path><path d="M1.42 9a16 16 0 0 1 21.16 0"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12.01" y2="20"></line>', "wind": '<path d="M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"></path>', "x-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line>', "x-octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line>', "x-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="9" x2="15" y2="15"></line><line x1="15" y1="9" x2="9" y2="15"></line>', "x": '<line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line>', "youtube": '<path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon>', "zap-off": '<polyline points="12.41 6.75 13 2 10.57 4.92"></polyline><polyline points="18.57 12.91 21 10 15.66 10"></polyline><polyline points="8 8 3 14 12 14 11 22 16 16"></polyline><line x1="1" y1="1" x2="23" y2="23"></line>', "zap": '<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon>', "zoom-in": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="11" y1="8" x2="11" y2="14"></line><line x1="8" y1="11" x2="14" y2="11"></line>', "zoom-out": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="8" y1="11" x2="14" y2="11"></line>' };
|
|
},
|
|
"./node_modules/classnames/dedupe.js": function(module3, exports2, __webpack_require__) {
|
|
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
|
|
(function() {
|
|
"use strict";
|
|
var classNames = function() {
|
|
function StorageObject() {
|
|
}
|
|
StorageObject.prototype = Object.create(null);
|
|
function _parseArray(resultSet, array) {
|
|
var length = array.length;
|
|
for (var i = 0; i < length; ++i) {
|
|
_parse(resultSet, array[i]);
|
|
}
|
|
}
|
|
var hasOwn = {}.hasOwnProperty;
|
|
function _parseNumber(resultSet, num) {
|
|
resultSet[num] = true;
|
|
}
|
|
function _parseObject(resultSet, object) {
|
|
for (var k in object) {
|
|
if (hasOwn.call(object, k)) {
|
|
resultSet[k] = !!object[k];
|
|
}
|
|
}
|
|
}
|
|
var SPACE = /\s+/;
|
|
function _parseString(resultSet, str) {
|
|
var array = str.split(SPACE);
|
|
var length = array.length;
|
|
for (var i = 0; i < length; ++i) {
|
|
resultSet[array[i]] = true;
|
|
}
|
|
}
|
|
function _parse(resultSet, arg) {
|
|
if (!arg)
|
|
return;
|
|
var argType = typeof arg;
|
|
if (argType === "string") {
|
|
_parseString(resultSet, arg);
|
|
} else if (Array.isArray(arg)) {
|
|
_parseArray(resultSet, arg);
|
|
} else if (argType === "object") {
|
|
_parseObject(resultSet, arg);
|
|
} else if (argType === "number") {
|
|
_parseNumber(resultSet, arg);
|
|
}
|
|
}
|
|
function _classNames() {
|
|
var len = arguments.length;
|
|
var args = Array(len);
|
|
for (var i = 0; i < len; i++) {
|
|
args[i] = arguments[i];
|
|
}
|
|
var classSet = new StorageObject();
|
|
_parseArray(classSet, args);
|
|
var list = [];
|
|
for (var k in classSet) {
|
|
if (classSet[k]) {
|
|
list.push(k);
|
|
}
|
|
}
|
|
return list.join(" ");
|
|
}
|
|
return _classNames;
|
|
}();
|
|
if (typeof module3 !== "undefined" && module3.exports) {
|
|
module3.exports = classNames;
|
|
} else if (true) {
|
|
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = function() {
|
|
return classNames;
|
|
}.apply(exports2, __WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== void 0 && (module3.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
} else {
|
|
}
|
|
})();
|
|
},
|
|
"./node_modules/core-js/es/array/from.js": function(module3, exports2, __webpack_require__) {
|
|
__webpack_require__("./node_modules/core-js/modules/es.string.iterator.js");
|
|
__webpack_require__("./node_modules/core-js/modules/es.array.from.js");
|
|
var path = __webpack_require__("./node_modules/core-js/internals/path.js");
|
|
module3.exports = path.Array.from;
|
|
},
|
|
"./node_modules/core-js/internals/a-function.js": function(module3, exports2) {
|
|
module3.exports = function(it) {
|
|
if (typeof it != "function") {
|
|
throw TypeError(String(it) + " is not a function");
|
|
}
|
|
return it;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/an-object.js": function(module3, exports2, __webpack_require__) {
|
|
var isObject = __webpack_require__("./node_modules/core-js/internals/is-object.js");
|
|
module3.exports = function(it) {
|
|
if (!isObject(it)) {
|
|
throw TypeError(String(it) + " is not an object");
|
|
}
|
|
return it;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/array-from.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var bind = __webpack_require__("./node_modules/core-js/internals/bind-context.js");
|
|
var toObject = __webpack_require__("./node_modules/core-js/internals/to-object.js");
|
|
var callWithSafeIterationClosing = __webpack_require__("./node_modules/core-js/internals/call-with-safe-iteration-closing.js");
|
|
var isArrayIteratorMethod = __webpack_require__("./node_modules/core-js/internals/is-array-iterator-method.js");
|
|
var toLength = __webpack_require__("./node_modules/core-js/internals/to-length.js");
|
|
var createProperty = __webpack_require__("./node_modules/core-js/internals/create-property.js");
|
|
var getIteratorMethod = __webpack_require__("./node_modules/core-js/internals/get-iterator-method.js");
|
|
module3.exports = function from(arrayLike) {
|
|
var O = toObject(arrayLike);
|
|
var C = typeof this == "function" ? this : Array;
|
|
var argumentsLength = arguments.length;
|
|
var mapfn = argumentsLength > 1 ? arguments[1] : void 0;
|
|
var mapping = mapfn !== void 0;
|
|
var index = 0;
|
|
var iteratorMethod = getIteratorMethod(O);
|
|
var length, result, step, iterator;
|
|
if (mapping)
|
|
mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : void 0, 2);
|
|
if (iteratorMethod != void 0 && !(C == Array && isArrayIteratorMethod(iteratorMethod))) {
|
|
iterator = iteratorMethod.call(O);
|
|
result = new C();
|
|
for (; !(step = iterator.next()).done; index++) {
|
|
createProperty(result, index, mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value);
|
|
}
|
|
} else {
|
|
length = toLength(O.length);
|
|
result = new C(length);
|
|
for (; length > index; index++) {
|
|
createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]);
|
|
}
|
|
}
|
|
result.length = index;
|
|
return result;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/array-includes.js": function(module3, exports2, __webpack_require__) {
|
|
var toIndexedObject = __webpack_require__("./node_modules/core-js/internals/to-indexed-object.js");
|
|
var toLength = __webpack_require__("./node_modules/core-js/internals/to-length.js");
|
|
var toAbsoluteIndex = __webpack_require__("./node_modules/core-js/internals/to-absolute-index.js");
|
|
module3.exports = function(IS_INCLUDES) {
|
|
return function($this, el, fromIndex) {
|
|
var O = toIndexedObject($this);
|
|
var length = toLength(O.length);
|
|
var index = toAbsoluteIndex(fromIndex, length);
|
|
var value;
|
|
if (IS_INCLUDES && el != el)
|
|
while (length > index) {
|
|
value = O[index++];
|
|
if (value != value)
|
|
return true;
|
|
}
|
|
else
|
|
for (; length > index; index++)
|
|
if (IS_INCLUDES || index in O) {
|
|
if (O[index] === el)
|
|
return IS_INCLUDES || index || 0;
|
|
}
|
|
return !IS_INCLUDES && -1;
|
|
};
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/bind-context.js": function(module3, exports2, __webpack_require__) {
|
|
var aFunction = __webpack_require__("./node_modules/core-js/internals/a-function.js");
|
|
module3.exports = function(fn, that, length) {
|
|
aFunction(fn);
|
|
if (that === void 0)
|
|
return fn;
|
|
switch (length) {
|
|
case 0:
|
|
return function() {
|
|
return fn.call(that);
|
|
};
|
|
case 1:
|
|
return function(a) {
|
|
return fn.call(that, a);
|
|
};
|
|
case 2:
|
|
return function(a, b) {
|
|
return fn.call(that, a, b);
|
|
};
|
|
case 3:
|
|
return function(a, b, c) {
|
|
return fn.call(that, a, b, c);
|
|
};
|
|
}
|
|
return function() {
|
|
return fn.apply(that, arguments);
|
|
};
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/call-with-safe-iteration-closing.js": function(module3, exports2, __webpack_require__) {
|
|
var anObject = __webpack_require__("./node_modules/core-js/internals/an-object.js");
|
|
module3.exports = function(iterator, fn, value, ENTRIES) {
|
|
try {
|
|
return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);
|
|
} catch (error) {
|
|
var returnMethod = iterator["return"];
|
|
if (returnMethod !== void 0)
|
|
anObject(returnMethod.call(iterator));
|
|
throw error;
|
|
}
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/check-correctness-of-iteration.js": function(module3, exports2, __webpack_require__) {
|
|
var wellKnownSymbol = __webpack_require__("./node_modules/core-js/internals/well-known-symbol.js");
|
|
var ITERATOR = wellKnownSymbol("iterator");
|
|
var SAFE_CLOSING = false;
|
|
try {
|
|
var called = 0;
|
|
var iteratorWithReturn = {
|
|
next: function() {
|
|
return { done: !!called++ };
|
|
},
|
|
"return": function() {
|
|
SAFE_CLOSING = true;
|
|
}
|
|
};
|
|
iteratorWithReturn[ITERATOR] = function() {
|
|
return this;
|
|
};
|
|
Array.from(iteratorWithReturn, function() {
|
|
throw 2;
|
|
});
|
|
} catch (error) {
|
|
}
|
|
module3.exports = function(exec, SKIP_CLOSING) {
|
|
if (!SKIP_CLOSING && !SAFE_CLOSING)
|
|
return false;
|
|
var ITERATION_SUPPORT = false;
|
|
try {
|
|
var object = {};
|
|
object[ITERATOR] = function() {
|
|
return {
|
|
next: function() {
|
|
return { done: ITERATION_SUPPORT = true };
|
|
}
|
|
};
|
|
};
|
|
exec(object);
|
|
} catch (error) {
|
|
}
|
|
return ITERATION_SUPPORT;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/classof-raw.js": function(module3, exports2) {
|
|
var toString = {}.toString;
|
|
module3.exports = function(it) {
|
|
return toString.call(it).slice(8, -1);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/classof.js": function(module3, exports2, __webpack_require__) {
|
|
var classofRaw = __webpack_require__("./node_modules/core-js/internals/classof-raw.js");
|
|
var wellKnownSymbol = __webpack_require__("./node_modules/core-js/internals/well-known-symbol.js");
|
|
var TO_STRING_TAG = wellKnownSymbol("toStringTag");
|
|
var CORRECT_ARGUMENTS = classofRaw(function() {
|
|
return arguments;
|
|
}()) == "Arguments";
|
|
var tryGet = function(it, key) {
|
|
try {
|
|
return it[key];
|
|
} catch (error) {
|
|
}
|
|
};
|
|
module3.exports = function(it) {
|
|
var O, tag, result;
|
|
return it === void 0 ? "Undefined" : it === null ? "Null" : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == "string" ? tag : CORRECT_ARGUMENTS ? classofRaw(O) : (result = classofRaw(O)) == "Object" && typeof O.callee == "function" ? "Arguments" : result;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/copy-constructor-properties.js": function(module3, exports2, __webpack_require__) {
|
|
var has = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var ownKeys = __webpack_require__("./node_modules/core-js/internals/own-keys.js");
|
|
var getOwnPropertyDescriptorModule = __webpack_require__("./node_modules/core-js/internals/object-get-own-property-descriptor.js");
|
|
var definePropertyModule = __webpack_require__("./node_modules/core-js/internals/object-define-property.js");
|
|
module3.exports = function(target, source) {
|
|
var keys = ownKeys(source);
|
|
var defineProperty = definePropertyModule.f;
|
|
var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
|
|
for (var i = 0; i < keys.length; i++) {
|
|
var key = keys[i];
|
|
if (!has(target, key))
|
|
defineProperty(target, key, getOwnPropertyDescriptor(source, key));
|
|
}
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/correct-prototype-getter.js": function(module3, exports2, __webpack_require__) {
|
|
var fails = __webpack_require__("./node_modules/core-js/internals/fails.js");
|
|
module3.exports = !fails(function() {
|
|
function F() {
|
|
}
|
|
F.prototype.constructor = null;
|
|
return Object.getPrototypeOf(new F()) !== F.prototype;
|
|
});
|
|
},
|
|
"./node_modules/core-js/internals/create-iterator-constructor.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var IteratorPrototype = __webpack_require__("./node_modules/core-js/internals/iterators-core.js").IteratorPrototype;
|
|
var create = __webpack_require__("./node_modules/core-js/internals/object-create.js");
|
|
var createPropertyDescriptor = __webpack_require__("./node_modules/core-js/internals/create-property-descriptor.js");
|
|
var setToStringTag = __webpack_require__("./node_modules/core-js/internals/set-to-string-tag.js");
|
|
var Iterators = __webpack_require__("./node_modules/core-js/internals/iterators.js");
|
|
var returnThis = function() {
|
|
return this;
|
|
};
|
|
module3.exports = function(IteratorConstructor, NAME, next) {
|
|
var TO_STRING_TAG = NAME + " Iterator";
|
|
IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });
|
|
setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);
|
|
Iterators[TO_STRING_TAG] = returnThis;
|
|
return IteratorConstructor;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/create-property-descriptor.js": function(module3, exports2) {
|
|
module3.exports = function(bitmap, value) {
|
|
return {
|
|
enumerable: !(bitmap & 1),
|
|
configurable: !(bitmap & 2),
|
|
writable: !(bitmap & 4),
|
|
value
|
|
};
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/create-property.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var toPrimitive = __webpack_require__("./node_modules/core-js/internals/to-primitive.js");
|
|
var definePropertyModule = __webpack_require__("./node_modules/core-js/internals/object-define-property.js");
|
|
var createPropertyDescriptor = __webpack_require__("./node_modules/core-js/internals/create-property-descriptor.js");
|
|
module3.exports = function(object, key, value) {
|
|
var propertyKey = toPrimitive(key);
|
|
if (propertyKey in object)
|
|
definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
|
|
else
|
|
object[propertyKey] = value;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/define-iterator.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var $ = __webpack_require__("./node_modules/core-js/internals/export.js");
|
|
var createIteratorConstructor = __webpack_require__("./node_modules/core-js/internals/create-iterator-constructor.js");
|
|
var getPrototypeOf = __webpack_require__("./node_modules/core-js/internals/object-get-prototype-of.js");
|
|
var setPrototypeOf = __webpack_require__("./node_modules/core-js/internals/object-set-prototype-of.js");
|
|
var setToStringTag = __webpack_require__("./node_modules/core-js/internals/set-to-string-tag.js");
|
|
var hide = __webpack_require__("./node_modules/core-js/internals/hide.js");
|
|
var redefine = __webpack_require__("./node_modules/core-js/internals/redefine.js");
|
|
var wellKnownSymbol = __webpack_require__("./node_modules/core-js/internals/well-known-symbol.js");
|
|
var IS_PURE = __webpack_require__("./node_modules/core-js/internals/is-pure.js");
|
|
var Iterators = __webpack_require__("./node_modules/core-js/internals/iterators.js");
|
|
var IteratorsCore = __webpack_require__("./node_modules/core-js/internals/iterators-core.js");
|
|
var IteratorPrototype = IteratorsCore.IteratorPrototype;
|
|
var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
|
|
var ITERATOR = wellKnownSymbol("iterator");
|
|
var KEYS = "keys";
|
|
var VALUES = "values";
|
|
var ENTRIES = "entries";
|
|
var returnThis = function() {
|
|
return this;
|
|
};
|
|
module3.exports = function(Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {
|
|
createIteratorConstructor(IteratorConstructor, NAME, next);
|
|
var getIterationMethod = function(KIND) {
|
|
if (KIND === DEFAULT && defaultIterator)
|
|
return defaultIterator;
|
|
if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype)
|
|
return IterablePrototype[KIND];
|
|
switch (KIND) {
|
|
case KEYS:
|
|
return function keys() {
|
|
return new IteratorConstructor(this, KIND);
|
|
};
|
|
case VALUES:
|
|
return function values() {
|
|
return new IteratorConstructor(this, KIND);
|
|
};
|
|
case ENTRIES:
|
|
return function entries() {
|
|
return new IteratorConstructor(this, KIND);
|
|
};
|
|
}
|
|
return function() {
|
|
return new IteratorConstructor(this);
|
|
};
|
|
};
|
|
var TO_STRING_TAG = NAME + " Iterator";
|
|
var INCORRECT_VALUES_NAME = false;
|
|
var IterablePrototype = Iterable.prototype;
|
|
var nativeIterator = IterablePrototype[ITERATOR] || IterablePrototype["@@iterator"] || DEFAULT && IterablePrototype[DEFAULT];
|
|
var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
|
|
var anyNativeIterator = NAME == "Array" ? IterablePrototype.entries || nativeIterator : nativeIterator;
|
|
var CurrentIteratorPrototype, methods, KEY;
|
|
if (anyNativeIterator) {
|
|
CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
|
|
if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
|
|
if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
|
|
if (setPrototypeOf) {
|
|
setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);
|
|
} else if (typeof CurrentIteratorPrototype[ITERATOR] != "function") {
|
|
hide(CurrentIteratorPrototype, ITERATOR, returnThis);
|
|
}
|
|
}
|
|
setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);
|
|
if (IS_PURE)
|
|
Iterators[TO_STRING_TAG] = returnThis;
|
|
}
|
|
}
|
|
if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {
|
|
INCORRECT_VALUES_NAME = true;
|
|
defaultIterator = function values() {
|
|
return nativeIterator.call(this);
|
|
};
|
|
}
|
|
if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {
|
|
hide(IterablePrototype, ITERATOR, defaultIterator);
|
|
}
|
|
Iterators[NAME] = defaultIterator;
|
|
if (DEFAULT) {
|
|
methods = {
|
|
values: getIterationMethod(VALUES),
|
|
keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),
|
|
entries: getIterationMethod(ENTRIES)
|
|
};
|
|
if (FORCED)
|
|
for (KEY in methods) {
|
|
if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
|
|
redefine(IterablePrototype, KEY, methods[KEY]);
|
|
}
|
|
}
|
|
else
|
|
$({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
|
|
}
|
|
return methods;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/descriptors.js": function(module3, exports2, __webpack_require__) {
|
|
var fails = __webpack_require__("./node_modules/core-js/internals/fails.js");
|
|
module3.exports = !fails(function() {
|
|
return Object.defineProperty({}, "a", { get: function() {
|
|
return 7;
|
|
} }).a != 7;
|
|
});
|
|
},
|
|
"./node_modules/core-js/internals/document-create-element.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var isObject = __webpack_require__("./node_modules/core-js/internals/is-object.js");
|
|
var document2 = global2.document;
|
|
var exist = isObject(document2) && isObject(document2.createElement);
|
|
module3.exports = function(it) {
|
|
return exist ? document2.createElement(it) : {};
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/enum-bug-keys.js": function(module3, exports2) {
|
|
module3.exports = [
|
|
"constructor",
|
|
"hasOwnProperty",
|
|
"isPrototypeOf",
|
|
"propertyIsEnumerable",
|
|
"toLocaleString",
|
|
"toString",
|
|
"valueOf"
|
|
];
|
|
},
|
|
"./node_modules/core-js/internals/export.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var getOwnPropertyDescriptor = __webpack_require__("./node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
|
|
var hide = __webpack_require__("./node_modules/core-js/internals/hide.js");
|
|
var redefine = __webpack_require__("./node_modules/core-js/internals/redefine.js");
|
|
var setGlobal = __webpack_require__("./node_modules/core-js/internals/set-global.js");
|
|
var copyConstructorProperties = __webpack_require__("./node_modules/core-js/internals/copy-constructor-properties.js");
|
|
var isForced = __webpack_require__("./node_modules/core-js/internals/is-forced.js");
|
|
module3.exports = function(options, source) {
|
|
var TARGET = options.target;
|
|
var GLOBAL = options.global;
|
|
var STATIC = options.stat;
|
|
var FORCED, target, key, targetProperty, sourceProperty, descriptor;
|
|
if (GLOBAL) {
|
|
target = global2;
|
|
} else if (STATIC) {
|
|
target = global2[TARGET] || setGlobal(TARGET, {});
|
|
} else {
|
|
target = (global2[TARGET] || {}).prototype;
|
|
}
|
|
if (target)
|
|
for (key in source) {
|
|
sourceProperty = source[key];
|
|
if (options.noTargetGet) {
|
|
descriptor = getOwnPropertyDescriptor(target, key);
|
|
targetProperty = descriptor && descriptor.value;
|
|
} else
|
|
targetProperty = target[key];
|
|
FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? "." : "#") + key, options.forced);
|
|
if (!FORCED && targetProperty !== void 0) {
|
|
if (typeof sourceProperty === typeof targetProperty)
|
|
continue;
|
|
copyConstructorProperties(sourceProperty, targetProperty);
|
|
}
|
|
if (options.sham || targetProperty && targetProperty.sham) {
|
|
hide(sourceProperty, "sham", true);
|
|
}
|
|
redefine(target, key, sourceProperty, options);
|
|
}
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/fails.js": function(module3, exports2) {
|
|
module3.exports = function(exec) {
|
|
try {
|
|
return !!exec();
|
|
} catch (error) {
|
|
return true;
|
|
}
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/function-to-string.js": function(module3, exports2, __webpack_require__) {
|
|
var shared = __webpack_require__("./node_modules/core-js/internals/shared.js");
|
|
module3.exports = shared("native-function-to-string", Function.toString);
|
|
},
|
|
"./node_modules/core-js/internals/get-iterator-method.js": function(module3, exports2, __webpack_require__) {
|
|
var classof = __webpack_require__("./node_modules/core-js/internals/classof.js");
|
|
var Iterators = __webpack_require__("./node_modules/core-js/internals/iterators.js");
|
|
var wellKnownSymbol = __webpack_require__("./node_modules/core-js/internals/well-known-symbol.js");
|
|
var ITERATOR = wellKnownSymbol("iterator");
|
|
module3.exports = function(it) {
|
|
if (it != void 0)
|
|
return it[ITERATOR] || it["@@iterator"] || Iterators[classof(it)];
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/global.js": function(module3, exports2, __webpack_require__) {
|
|
(function(global2) {
|
|
var O = "object";
|
|
var check = function(it) {
|
|
return it && it.Math == Math && it;
|
|
};
|
|
module3.exports = check(typeof globalThis == O && globalThis) || check(typeof window == O && window) || check(typeof self == O && self) || check(typeof global2 == O && global2) || Function("return this")();
|
|
}).call(this, __webpack_require__("./node_modules/webpack/buildin/global.js"));
|
|
},
|
|
"./node_modules/core-js/internals/has.js": function(module3, exports2) {
|
|
var hasOwnProperty = {}.hasOwnProperty;
|
|
module3.exports = function(it, key) {
|
|
return hasOwnProperty.call(it, key);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/hidden-keys.js": function(module3, exports2) {
|
|
module3.exports = {};
|
|
},
|
|
"./node_modules/core-js/internals/hide.js": function(module3, exports2, __webpack_require__) {
|
|
var DESCRIPTORS = __webpack_require__("./node_modules/core-js/internals/descriptors.js");
|
|
var definePropertyModule = __webpack_require__("./node_modules/core-js/internals/object-define-property.js");
|
|
var createPropertyDescriptor = __webpack_require__("./node_modules/core-js/internals/create-property-descriptor.js");
|
|
module3.exports = DESCRIPTORS ? function(object, key, value) {
|
|
return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
|
|
} : function(object, key, value) {
|
|
object[key] = value;
|
|
return object;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/html.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var document2 = global2.document;
|
|
module3.exports = document2 && document2.documentElement;
|
|
},
|
|
"./node_modules/core-js/internals/ie8-dom-define.js": function(module3, exports2, __webpack_require__) {
|
|
var DESCRIPTORS = __webpack_require__("./node_modules/core-js/internals/descriptors.js");
|
|
var fails = __webpack_require__("./node_modules/core-js/internals/fails.js");
|
|
var createElement = __webpack_require__("./node_modules/core-js/internals/document-create-element.js");
|
|
module3.exports = !DESCRIPTORS && !fails(function() {
|
|
return Object.defineProperty(createElement("div"), "a", {
|
|
get: function() {
|
|
return 7;
|
|
}
|
|
}).a != 7;
|
|
});
|
|
},
|
|
"./node_modules/core-js/internals/indexed-object.js": function(module3, exports2, __webpack_require__) {
|
|
var fails = __webpack_require__("./node_modules/core-js/internals/fails.js");
|
|
var classof = __webpack_require__("./node_modules/core-js/internals/classof-raw.js");
|
|
var split = "".split;
|
|
module3.exports = fails(function() {
|
|
return !Object("z").propertyIsEnumerable(0);
|
|
}) ? function(it) {
|
|
return classof(it) == "String" ? split.call(it, "") : Object(it);
|
|
} : Object;
|
|
},
|
|
"./node_modules/core-js/internals/internal-state.js": function(module3, exports2, __webpack_require__) {
|
|
var NATIVE_WEAK_MAP = __webpack_require__("./node_modules/core-js/internals/native-weak-map.js");
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var isObject = __webpack_require__("./node_modules/core-js/internals/is-object.js");
|
|
var hide = __webpack_require__("./node_modules/core-js/internals/hide.js");
|
|
var objectHas = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var sharedKey = __webpack_require__("./node_modules/core-js/internals/shared-key.js");
|
|
var hiddenKeys = __webpack_require__("./node_modules/core-js/internals/hidden-keys.js");
|
|
var WeakMap = global2.WeakMap;
|
|
var set, get, has;
|
|
var enforce = function(it) {
|
|
return has(it) ? get(it) : set(it, {});
|
|
};
|
|
var getterFor = function(TYPE) {
|
|
return function(it) {
|
|
var state;
|
|
if (!isObject(it) || (state = get(it)).type !== TYPE) {
|
|
throw TypeError("Incompatible receiver, " + TYPE + " required");
|
|
}
|
|
return state;
|
|
};
|
|
};
|
|
if (NATIVE_WEAK_MAP) {
|
|
var store = new WeakMap();
|
|
var wmget = store.get;
|
|
var wmhas = store.has;
|
|
var wmset = store.set;
|
|
set = function(it, metadata) {
|
|
wmset.call(store, it, metadata);
|
|
return metadata;
|
|
};
|
|
get = function(it) {
|
|
return wmget.call(store, it) || {};
|
|
};
|
|
has = function(it) {
|
|
return wmhas.call(store, it);
|
|
};
|
|
} else {
|
|
var STATE = sharedKey("state");
|
|
hiddenKeys[STATE] = true;
|
|
set = function(it, metadata) {
|
|
hide(it, STATE, metadata);
|
|
return metadata;
|
|
};
|
|
get = function(it) {
|
|
return objectHas(it, STATE) ? it[STATE] : {};
|
|
};
|
|
has = function(it) {
|
|
return objectHas(it, STATE);
|
|
};
|
|
}
|
|
module3.exports = {
|
|
set,
|
|
get,
|
|
has,
|
|
enforce,
|
|
getterFor
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/is-array-iterator-method.js": function(module3, exports2, __webpack_require__) {
|
|
var wellKnownSymbol = __webpack_require__("./node_modules/core-js/internals/well-known-symbol.js");
|
|
var Iterators = __webpack_require__("./node_modules/core-js/internals/iterators.js");
|
|
var ITERATOR = wellKnownSymbol("iterator");
|
|
var ArrayPrototype = Array.prototype;
|
|
module3.exports = function(it) {
|
|
return it !== void 0 && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/is-forced.js": function(module3, exports2, __webpack_require__) {
|
|
var fails = __webpack_require__("./node_modules/core-js/internals/fails.js");
|
|
var replacement = /#|\.prototype\./;
|
|
var isForced = function(feature, detection) {
|
|
var value = data[normalize(feature)];
|
|
return value == POLYFILL ? true : value == NATIVE ? false : typeof detection == "function" ? fails(detection) : !!detection;
|
|
};
|
|
var normalize = isForced.normalize = function(string) {
|
|
return String(string).replace(replacement, ".").toLowerCase();
|
|
};
|
|
var data = isForced.data = {};
|
|
var NATIVE = isForced.NATIVE = "N";
|
|
var POLYFILL = isForced.POLYFILL = "P";
|
|
module3.exports = isForced;
|
|
},
|
|
"./node_modules/core-js/internals/is-object.js": function(module3, exports2) {
|
|
module3.exports = function(it) {
|
|
return typeof it === "object" ? it !== null : typeof it === "function";
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/is-pure.js": function(module3, exports2) {
|
|
module3.exports = false;
|
|
},
|
|
"./node_modules/core-js/internals/iterators-core.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var getPrototypeOf = __webpack_require__("./node_modules/core-js/internals/object-get-prototype-of.js");
|
|
var hide = __webpack_require__("./node_modules/core-js/internals/hide.js");
|
|
var has = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var wellKnownSymbol = __webpack_require__("./node_modules/core-js/internals/well-known-symbol.js");
|
|
var IS_PURE = __webpack_require__("./node_modules/core-js/internals/is-pure.js");
|
|
var ITERATOR = wellKnownSymbol("iterator");
|
|
var BUGGY_SAFARI_ITERATORS = false;
|
|
var returnThis = function() {
|
|
return this;
|
|
};
|
|
var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;
|
|
if ([].keys) {
|
|
arrayIterator = [].keys();
|
|
if (!("next" in arrayIterator))
|
|
BUGGY_SAFARI_ITERATORS = true;
|
|
else {
|
|
PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));
|
|
if (PrototypeOfArrayIteratorPrototype !== Object.prototype)
|
|
IteratorPrototype = PrototypeOfArrayIteratorPrototype;
|
|
}
|
|
}
|
|
if (IteratorPrototype == void 0)
|
|
IteratorPrototype = {};
|
|
if (!IS_PURE && !has(IteratorPrototype, ITERATOR))
|
|
hide(IteratorPrototype, ITERATOR, returnThis);
|
|
module3.exports = {
|
|
IteratorPrototype,
|
|
BUGGY_SAFARI_ITERATORS
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/iterators.js": function(module3, exports2) {
|
|
module3.exports = {};
|
|
},
|
|
"./node_modules/core-js/internals/native-symbol.js": function(module3, exports2, __webpack_require__) {
|
|
var fails = __webpack_require__("./node_modules/core-js/internals/fails.js");
|
|
module3.exports = !!Object.getOwnPropertySymbols && !fails(function() {
|
|
return !String(Symbol());
|
|
});
|
|
},
|
|
"./node_modules/core-js/internals/native-weak-map.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var nativeFunctionToString = __webpack_require__("./node_modules/core-js/internals/function-to-string.js");
|
|
var WeakMap = global2.WeakMap;
|
|
module3.exports = typeof WeakMap === "function" && /native code/.test(nativeFunctionToString.call(WeakMap));
|
|
},
|
|
"./node_modules/core-js/internals/object-create.js": function(module3, exports2, __webpack_require__) {
|
|
var anObject = __webpack_require__("./node_modules/core-js/internals/an-object.js");
|
|
var defineProperties = __webpack_require__("./node_modules/core-js/internals/object-define-properties.js");
|
|
var enumBugKeys = __webpack_require__("./node_modules/core-js/internals/enum-bug-keys.js");
|
|
var hiddenKeys = __webpack_require__("./node_modules/core-js/internals/hidden-keys.js");
|
|
var html = __webpack_require__("./node_modules/core-js/internals/html.js");
|
|
var documentCreateElement = __webpack_require__("./node_modules/core-js/internals/document-create-element.js");
|
|
var sharedKey = __webpack_require__("./node_modules/core-js/internals/shared-key.js");
|
|
var IE_PROTO = sharedKey("IE_PROTO");
|
|
var PROTOTYPE = "prototype";
|
|
var Empty = function() {
|
|
};
|
|
var createDict = function() {
|
|
var iframe = documentCreateElement("iframe");
|
|
var length = enumBugKeys.length;
|
|
var lt = "<";
|
|
var script = "script";
|
|
var gt = ">";
|
|
var js = "java" + script + ":";
|
|
var iframeDocument;
|
|
iframe.style.display = "none";
|
|
html.appendChild(iframe);
|
|
iframe.src = String(js);
|
|
iframeDocument = iframe.contentWindow.document;
|
|
iframeDocument.open();
|
|
iframeDocument.write(lt + script + gt + "document.F=Object" + lt + "/" + script + gt);
|
|
iframeDocument.close();
|
|
createDict = iframeDocument.F;
|
|
while (length--)
|
|
delete createDict[PROTOTYPE][enumBugKeys[length]];
|
|
return createDict();
|
|
};
|
|
module3.exports = Object.create || function create(O, Properties) {
|
|
var result;
|
|
if (O !== null) {
|
|
Empty[PROTOTYPE] = anObject(O);
|
|
result = new Empty();
|
|
Empty[PROTOTYPE] = null;
|
|
result[IE_PROTO] = O;
|
|
} else
|
|
result = createDict();
|
|
return Properties === void 0 ? result : defineProperties(result, Properties);
|
|
};
|
|
hiddenKeys[IE_PROTO] = true;
|
|
},
|
|
"./node_modules/core-js/internals/object-define-properties.js": function(module3, exports2, __webpack_require__) {
|
|
var DESCRIPTORS = __webpack_require__("./node_modules/core-js/internals/descriptors.js");
|
|
var definePropertyModule = __webpack_require__("./node_modules/core-js/internals/object-define-property.js");
|
|
var anObject = __webpack_require__("./node_modules/core-js/internals/an-object.js");
|
|
var objectKeys = __webpack_require__("./node_modules/core-js/internals/object-keys.js");
|
|
module3.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {
|
|
anObject(O);
|
|
var keys = objectKeys(Properties);
|
|
var length = keys.length;
|
|
var i = 0;
|
|
var key;
|
|
while (length > i)
|
|
definePropertyModule.f(O, key = keys[i++], Properties[key]);
|
|
return O;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/object-define-property.js": function(module3, exports2, __webpack_require__) {
|
|
var DESCRIPTORS = __webpack_require__("./node_modules/core-js/internals/descriptors.js");
|
|
var IE8_DOM_DEFINE = __webpack_require__("./node_modules/core-js/internals/ie8-dom-define.js");
|
|
var anObject = __webpack_require__("./node_modules/core-js/internals/an-object.js");
|
|
var toPrimitive = __webpack_require__("./node_modules/core-js/internals/to-primitive.js");
|
|
var nativeDefineProperty = Object.defineProperty;
|
|
exports2.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {
|
|
anObject(O);
|
|
P = toPrimitive(P, true);
|
|
anObject(Attributes);
|
|
if (IE8_DOM_DEFINE)
|
|
try {
|
|
return nativeDefineProperty(O, P, Attributes);
|
|
} catch (error) {
|
|
}
|
|
if ("get" in Attributes || "set" in Attributes)
|
|
throw TypeError("Accessors not supported");
|
|
if ("value" in Attributes)
|
|
O[P] = Attributes.value;
|
|
return O;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/object-get-own-property-descriptor.js": function(module3, exports2, __webpack_require__) {
|
|
var DESCRIPTORS = __webpack_require__("./node_modules/core-js/internals/descriptors.js");
|
|
var propertyIsEnumerableModule = __webpack_require__("./node_modules/core-js/internals/object-property-is-enumerable.js");
|
|
var createPropertyDescriptor = __webpack_require__("./node_modules/core-js/internals/create-property-descriptor.js");
|
|
var toIndexedObject = __webpack_require__("./node_modules/core-js/internals/to-indexed-object.js");
|
|
var toPrimitive = __webpack_require__("./node_modules/core-js/internals/to-primitive.js");
|
|
var has = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var IE8_DOM_DEFINE = __webpack_require__("./node_modules/core-js/internals/ie8-dom-define.js");
|
|
var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
exports2.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
|
|
O = toIndexedObject(O);
|
|
P = toPrimitive(P, true);
|
|
if (IE8_DOM_DEFINE)
|
|
try {
|
|
return nativeGetOwnPropertyDescriptor(O, P);
|
|
} catch (error) {
|
|
}
|
|
if (has(O, P))
|
|
return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/object-get-own-property-names.js": function(module3, exports2, __webpack_require__) {
|
|
var internalObjectKeys = __webpack_require__("./node_modules/core-js/internals/object-keys-internal.js");
|
|
var enumBugKeys = __webpack_require__("./node_modules/core-js/internals/enum-bug-keys.js");
|
|
var hiddenKeys = enumBugKeys.concat("length", "prototype");
|
|
exports2.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
return internalObjectKeys(O, hiddenKeys);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/object-get-own-property-symbols.js": function(module3, exports2) {
|
|
exports2.f = Object.getOwnPropertySymbols;
|
|
},
|
|
"./node_modules/core-js/internals/object-get-prototype-of.js": function(module3, exports2, __webpack_require__) {
|
|
var has = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var toObject = __webpack_require__("./node_modules/core-js/internals/to-object.js");
|
|
var sharedKey = __webpack_require__("./node_modules/core-js/internals/shared-key.js");
|
|
var CORRECT_PROTOTYPE_GETTER = __webpack_require__("./node_modules/core-js/internals/correct-prototype-getter.js");
|
|
var IE_PROTO = sharedKey("IE_PROTO");
|
|
var ObjectPrototype = Object.prototype;
|
|
module3.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function(O) {
|
|
O = toObject(O);
|
|
if (has(O, IE_PROTO))
|
|
return O[IE_PROTO];
|
|
if (typeof O.constructor == "function" && O instanceof O.constructor) {
|
|
return O.constructor.prototype;
|
|
}
|
|
return O instanceof Object ? ObjectPrototype : null;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/object-keys-internal.js": function(module3, exports2, __webpack_require__) {
|
|
var has = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var toIndexedObject = __webpack_require__("./node_modules/core-js/internals/to-indexed-object.js");
|
|
var arrayIncludes = __webpack_require__("./node_modules/core-js/internals/array-includes.js");
|
|
var hiddenKeys = __webpack_require__("./node_modules/core-js/internals/hidden-keys.js");
|
|
var arrayIndexOf = arrayIncludes(false);
|
|
module3.exports = function(object, names) {
|
|
var O = toIndexedObject(object);
|
|
var i = 0;
|
|
var result = [];
|
|
var key;
|
|
for (key in O)
|
|
!has(hiddenKeys, key) && has(O, key) && result.push(key);
|
|
while (names.length > i)
|
|
if (has(O, key = names[i++])) {
|
|
~arrayIndexOf(result, key) || result.push(key);
|
|
}
|
|
return result;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/object-keys.js": function(module3, exports2, __webpack_require__) {
|
|
var internalObjectKeys = __webpack_require__("./node_modules/core-js/internals/object-keys-internal.js");
|
|
var enumBugKeys = __webpack_require__("./node_modules/core-js/internals/enum-bug-keys.js");
|
|
module3.exports = Object.keys || function keys(O) {
|
|
return internalObjectKeys(O, enumBugKeys);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/object-property-is-enumerable.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var nativePropertyIsEnumerable = {}.propertyIsEnumerable;
|
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);
|
|
exports2.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
|
|
var descriptor = getOwnPropertyDescriptor(this, V);
|
|
return !!descriptor && descriptor.enumerable;
|
|
} : nativePropertyIsEnumerable;
|
|
},
|
|
"./node_modules/core-js/internals/object-set-prototype-of.js": function(module3, exports2, __webpack_require__) {
|
|
var validateSetPrototypeOfArguments = __webpack_require__("./node_modules/core-js/internals/validate-set-prototype-of-arguments.js");
|
|
module3.exports = Object.setPrototypeOf || ("__proto__" in {} ? function() {
|
|
var correctSetter = false;
|
|
var test = {};
|
|
var setter;
|
|
try {
|
|
setter = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__").set;
|
|
setter.call(test, []);
|
|
correctSetter = test instanceof Array;
|
|
} catch (error) {
|
|
}
|
|
return function setPrototypeOf(O, proto) {
|
|
validateSetPrototypeOfArguments(O, proto);
|
|
if (correctSetter)
|
|
setter.call(O, proto);
|
|
else
|
|
O.__proto__ = proto;
|
|
return O;
|
|
};
|
|
}() : void 0);
|
|
},
|
|
"./node_modules/core-js/internals/own-keys.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var getOwnPropertyNamesModule = __webpack_require__("./node_modules/core-js/internals/object-get-own-property-names.js");
|
|
var getOwnPropertySymbolsModule = __webpack_require__("./node_modules/core-js/internals/object-get-own-property-symbols.js");
|
|
var anObject = __webpack_require__("./node_modules/core-js/internals/an-object.js");
|
|
var Reflect2 = global2.Reflect;
|
|
module3.exports = Reflect2 && Reflect2.ownKeys || function ownKeys(it) {
|
|
var keys = getOwnPropertyNamesModule.f(anObject(it));
|
|
var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
|
|
return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/path.js": function(module3, exports2, __webpack_require__) {
|
|
module3.exports = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
},
|
|
"./node_modules/core-js/internals/redefine.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var shared = __webpack_require__("./node_modules/core-js/internals/shared.js");
|
|
var hide = __webpack_require__("./node_modules/core-js/internals/hide.js");
|
|
var has = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var setGlobal = __webpack_require__("./node_modules/core-js/internals/set-global.js");
|
|
var nativeFunctionToString = __webpack_require__("./node_modules/core-js/internals/function-to-string.js");
|
|
var InternalStateModule = __webpack_require__("./node_modules/core-js/internals/internal-state.js");
|
|
var getInternalState = InternalStateModule.get;
|
|
var enforceInternalState = InternalStateModule.enforce;
|
|
var TEMPLATE = String(nativeFunctionToString).split("toString");
|
|
shared("inspectSource", function(it) {
|
|
return nativeFunctionToString.call(it);
|
|
});
|
|
(module3.exports = function(O, key, value, options) {
|
|
var unsafe = options ? !!options.unsafe : false;
|
|
var simple = options ? !!options.enumerable : false;
|
|
var noTargetGet = options ? !!options.noTargetGet : false;
|
|
if (typeof value == "function") {
|
|
if (typeof key == "string" && !has(value, "name"))
|
|
hide(value, "name", key);
|
|
enforceInternalState(value).source = TEMPLATE.join(typeof key == "string" ? key : "");
|
|
}
|
|
if (O === global2) {
|
|
if (simple)
|
|
O[key] = value;
|
|
else
|
|
setGlobal(key, value);
|
|
return;
|
|
} else if (!unsafe) {
|
|
delete O[key];
|
|
} else if (!noTargetGet && O[key]) {
|
|
simple = true;
|
|
}
|
|
if (simple)
|
|
O[key] = value;
|
|
else
|
|
hide(O, key, value);
|
|
})(Function.prototype, "toString", function toString() {
|
|
return typeof this == "function" && getInternalState(this).source || nativeFunctionToString.call(this);
|
|
});
|
|
},
|
|
"./node_modules/core-js/internals/require-object-coercible.js": function(module3, exports2) {
|
|
module3.exports = function(it) {
|
|
if (it == void 0)
|
|
throw TypeError("Can't call method on " + it);
|
|
return it;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/set-global.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var hide = __webpack_require__("./node_modules/core-js/internals/hide.js");
|
|
module3.exports = function(key, value) {
|
|
try {
|
|
hide(global2, key, value);
|
|
} catch (error) {
|
|
global2[key] = value;
|
|
}
|
|
return value;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/set-to-string-tag.js": function(module3, exports2, __webpack_require__) {
|
|
var defineProperty = __webpack_require__("./node_modules/core-js/internals/object-define-property.js").f;
|
|
var has = __webpack_require__("./node_modules/core-js/internals/has.js");
|
|
var wellKnownSymbol = __webpack_require__("./node_modules/core-js/internals/well-known-symbol.js");
|
|
var TO_STRING_TAG = wellKnownSymbol("toStringTag");
|
|
module3.exports = function(it, TAG, STATIC) {
|
|
if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {
|
|
defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });
|
|
}
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/shared-key.js": function(module3, exports2, __webpack_require__) {
|
|
var shared = __webpack_require__("./node_modules/core-js/internals/shared.js");
|
|
var uid = __webpack_require__("./node_modules/core-js/internals/uid.js");
|
|
var keys = shared("keys");
|
|
module3.exports = function(key) {
|
|
return keys[key] || (keys[key] = uid(key));
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/shared.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var setGlobal = __webpack_require__("./node_modules/core-js/internals/set-global.js");
|
|
var IS_PURE = __webpack_require__("./node_modules/core-js/internals/is-pure.js");
|
|
var SHARED = "__core-js_shared__";
|
|
var store = global2[SHARED] || setGlobal(SHARED, {});
|
|
(module3.exports = function(key, value) {
|
|
return store[key] || (store[key] = value !== void 0 ? value : {});
|
|
})("versions", []).push({
|
|
version: "3.1.3",
|
|
mode: IS_PURE ? "pure" : "global",
|
|
copyright: "\xA9 2019 Denis Pushkarev (zloirock.ru)"
|
|
});
|
|
},
|
|
"./node_modules/core-js/internals/string-at.js": function(module3, exports2, __webpack_require__) {
|
|
var toInteger = __webpack_require__("./node_modules/core-js/internals/to-integer.js");
|
|
var requireObjectCoercible = __webpack_require__("./node_modules/core-js/internals/require-object-coercible.js");
|
|
module3.exports = function(that, pos, CONVERT_TO_STRING) {
|
|
var S = String(requireObjectCoercible(that));
|
|
var position = toInteger(pos);
|
|
var size = S.length;
|
|
var first, second;
|
|
if (position < 0 || position >= size)
|
|
return CONVERT_TO_STRING ? "" : void 0;
|
|
first = S.charCodeAt(position);
|
|
return first < 55296 || first > 56319 || position + 1 === size || (second = S.charCodeAt(position + 1)) < 56320 || second > 57343 ? CONVERT_TO_STRING ? S.charAt(position) : first : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 55296 << 10) + (second - 56320) + 65536;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/to-absolute-index.js": function(module3, exports2, __webpack_require__) {
|
|
var toInteger = __webpack_require__("./node_modules/core-js/internals/to-integer.js");
|
|
var max = Math.max;
|
|
var min = Math.min;
|
|
module3.exports = function(index, length) {
|
|
var integer = toInteger(index);
|
|
return integer < 0 ? max(integer + length, 0) : min(integer, length);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/to-indexed-object.js": function(module3, exports2, __webpack_require__) {
|
|
var IndexedObject = __webpack_require__("./node_modules/core-js/internals/indexed-object.js");
|
|
var requireObjectCoercible = __webpack_require__("./node_modules/core-js/internals/require-object-coercible.js");
|
|
module3.exports = function(it) {
|
|
return IndexedObject(requireObjectCoercible(it));
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/to-integer.js": function(module3, exports2) {
|
|
var ceil = Math.ceil;
|
|
var floor = Math.floor;
|
|
module3.exports = function(argument) {
|
|
return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/to-length.js": function(module3, exports2, __webpack_require__) {
|
|
var toInteger = __webpack_require__("./node_modules/core-js/internals/to-integer.js");
|
|
var min = Math.min;
|
|
module3.exports = function(argument) {
|
|
return argument > 0 ? min(toInteger(argument), 9007199254740991) : 0;
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/to-object.js": function(module3, exports2, __webpack_require__) {
|
|
var requireObjectCoercible = __webpack_require__("./node_modules/core-js/internals/require-object-coercible.js");
|
|
module3.exports = function(argument) {
|
|
return Object(requireObjectCoercible(argument));
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/to-primitive.js": function(module3, exports2, __webpack_require__) {
|
|
var isObject = __webpack_require__("./node_modules/core-js/internals/is-object.js");
|
|
module3.exports = function(it, S) {
|
|
if (!isObject(it))
|
|
return it;
|
|
var fn, val;
|
|
if (S && typeof (fn = it.toString) == "function" && !isObject(val = fn.call(it)))
|
|
return val;
|
|
if (typeof (fn = it.valueOf) == "function" && !isObject(val = fn.call(it)))
|
|
return val;
|
|
if (!S && typeof (fn = it.toString) == "function" && !isObject(val = fn.call(it)))
|
|
return val;
|
|
throw TypeError("Can't convert object to primitive value");
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/uid.js": function(module3, exports2) {
|
|
var id = 0;
|
|
var postfix = Math.random();
|
|
module3.exports = function(key) {
|
|
return "Symbol(".concat(key === void 0 ? "" : key, ")_", (++id + postfix).toString(36));
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/validate-set-prototype-of-arguments.js": function(module3, exports2, __webpack_require__) {
|
|
var isObject = __webpack_require__("./node_modules/core-js/internals/is-object.js");
|
|
var anObject = __webpack_require__("./node_modules/core-js/internals/an-object.js");
|
|
module3.exports = function(O, proto) {
|
|
anObject(O);
|
|
if (!isObject(proto) && proto !== null) {
|
|
throw TypeError("Can't set " + String(proto) + " as a prototype");
|
|
}
|
|
};
|
|
},
|
|
"./node_modules/core-js/internals/well-known-symbol.js": function(module3, exports2, __webpack_require__) {
|
|
var global2 = __webpack_require__("./node_modules/core-js/internals/global.js");
|
|
var shared = __webpack_require__("./node_modules/core-js/internals/shared.js");
|
|
var uid = __webpack_require__("./node_modules/core-js/internals/uid.js");
|
|
var NATIVE_SYMBOL = __webpack_require__("./node_modules/core-js/internals/native-symbol.js");
|
|
var Symbol2 = global2.Symbol;
|
|
var store = shared("wks");
|
|
module3.exports = function(name) {
|
|
return store[name] || (store[name] = NATIVE_SYMBOL && Symbol2[name] || (NATIVE_SYMBOL ? Symbol2 : uid)("Symbol." + name));
|
|
};
|
|
},
|
|
"./node_modules/core-js/modules/es.array.from.js": function(module3, exports2, __webpack_require__) {
|
|
var $ = __webpack_require__("./node_modules/core-js/internals/export.js");
|
|
var from = __webpack_require__("./node_modules/core-js/internals/array-from.js");
|
|
var checkCorrectnessOfIteration = __webpack_require__("./node_modules/core-js/internals/check-correctness-of-iteration.js");
|
|
var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function(iterable) {
|
|
Array.from(iterable);
|
|
});
|
|
$({ target: "Array", stat: true, forced: INCORRECT_ITERATION }, {
|
|
from
|
|
});
|
|
},
|
|
"./node_modules/core-js/modules/es.string.iterator.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var codePointAt = __webpack_require__("./node_modules/core-js/internals/string-at.js");
|
|
var InternalStateModule = __webpack_require__("./node_modules/core-js/internals/internal-state.js");
|
|
var defineIterator = __webpack_require__("./node_modules/core-js/internals/define-iterator.js");
|
|
var STRING_ITERATOR = "String Iterator";
|
|
var setInternalState = InternalStateModule.set;
|
|
var getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);
|
|
defineIterator(String, "String", function(iterated) {
|
|
setInternalState(this, {
|
|
type: STRING_ITERATOR,
|
|
string: String(iterated),
|
|
index: 0
|
|
});
|
|
}, function next() {
|
|
var state = getInternalState(this);
|
|
var string = state.string;
|
|
var index = state.index;
|
|
var point;
|
|
if (index >= string.length)
|
|
return { value: void 0, done: true };
|
|
point = codePointAt(string, index, true);
|
|
state.index += point.length;
|
|
return { value: point, done: false };
|
|
});
|
|
},
|
|
"./node_modules/webpack/buildin/global.js": function(module3, exports2) {
|
|
var g;
|
|
g = function() {
|
|
return this;
|
|
}();
|
|
try {
|
|
g = g || Function("return this")() || (1, eval)("this");
|
|
} catch (e) {
|
|
if (typeof window === "object")
|
|
g = window;
|
|
}
|
|
module3.exports = g;
|
|
},
|
|
"./src/default-attrs.json": function(module3) {
|
|
module3.exports = { "xmlns": "http://www.w3.org/2000/svg", "width": 24, "height": 24, "viewBox": "0 0 24 24", "fill": "none", "stroke": "currentColor", "stroke-width": 2, "stroke-linecap": "round", "stroke-linejoin": "round" };
|
|
},
|
|
"./src/icon.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports2, "__esModule", {
|
|
value: true
|
|
});
|
|
var _extends = Object.assign || function(target) {
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
for (var key in source) {
|
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
target[key] = source[key];
|
|
}
|
|
}
|
|
}
|
|
return target;
|
|
};
|
|
var _createClass = function() {
|
|
function defineProperties(target, props) {
|
|
for (var i = 0; i < props.length; i++) {
|
|
var descriptor = props[i];
|
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
descriptor.configurable = true;
|
|
if ("value" in descriptor)
|
|
descriptor.writable = true;
|
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
}
|
|
}
|
|
return function(Constructor, protoProps, staticProps) {
|
|
if (protoProps)
|
|
defineProperties(Constructor.prototype, protoProps);
|
|
if (staticProps)
|
|
defineProperties(Constructor, staticProps);
|
|
return Constructor;
|
|
};
|
|
}();
|
|
var _dedupe = __webpack_require__("./node_modules/classnames/dedupe.js");
|
|
var _dedupe2 = _interopRequireDefault(_dedupe);
|
|
var _defaultAttrs = __webpack_require__("./src/default-attrs.json");
|
|
var _defaultAttrs2 = _interopRequireDefault(_defaultAttrs);
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
}
|
|
function _classCallCheck(instance, Constructor) {
|
|
if (!(instance instanceof Constructor)) {
|
|
throw new TypeError("Cannot call a class as a function");
|
|
}
|
|
}
|
|
var Icon = function() {
|
|
function Icon2(name, contents) {
|
|
var tags = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : [];
|
|
_classCallCheck(this, Icon2);
|
|
this.name = name;
|
|
this.contents = contents;
|
|
this.tags = tags;
|
|
this.attrs = _extends({}, _defaultAttrs2.default, { class: "feather feather-" + name });
|
|
}
|
|
_createClass(Icon2, [{
|
|
key: "toSvg",
|
|
value: function toSvg() {
|
|
var attrs = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
var combinedAttrs = _extends({}, this.attrs, attrs, { class: (0, _dedupe2.default)(this.attrs.class, attrs.class) });
|
|
return "<svg " + attrsToString(combinedAttrs) + ">" + this.contents + "</svg>";
|
|
}
|
|
}, {
|
|
key: "toString",
|
|
value: function toString() {
|
|
return this.contents;
|
|
}
|
|
}]);
|
|
return Icon2;
|
|
}();
|
|
function attrsToString(attrs) {
|
|
return Object.keys(attrs).map(function(key) {
|
|
return key + '="' + attrs[key] + '"';
|
|
}).join(" ");
|
|
}
|
|
exports2.default = Icon;
|
|
},
|
|
"./src/icons.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports2, "__esModule", {
|
|
value: true
|
|
});
|
|
var _icon = __webpack_require__("./src/icon.js");
|
|
var _icon2 = _interopRequireDefault(_icon);
|
|
var _icons = __webpack_require__("./dist/icons.json");
|
|
var _icons2 = _interopRequireDefault(_icons);
|
|
var _tags = __webpack_require__("./src/tags.json");
|
|
var _tags2 = _interopRequireDefault(_tags);
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
}
|
|
exports2.default = Object.keys(_icons2.default).map(function(key) {
|
|
return new _icon2.default(key, _icons2.default[key], _tags2.default[key]);
|
|
}).reduce(function(object, icon) {
|
|
object[icon.name] = icon;
|
|
return object;
|
|
}, {});
|
|
},
|
|
"./src/index.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
var _icons = __webpack_require__("./src/icons.js");
|
|
var _icons2 = _interopRequireDefault(_icons);
|
|
var _toSvg = __webpack_require__("./src/to-svg.js");
|
|
var _toSvg2 = _interopRequireDefault(_toSvg);
|
|
var _replace = __webpack_require__("./src/replace.js");
|
|
var _replace2 = _interopRequireDefault(_replace);
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
}
|
|
module3.exports = { icons: _icons2.default, toSvg: _toSvg2.default, replace: _replace2.default };
|
|
},
|
|
"./src/replace.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports2, "__esModule", {
|
|
value: true
|
|
});
|
|
var _extends = Object.assign || function(target) {
|
|
for (var i = 1; i < arguments.length; i++) {
|
|
var source = arguments[i];
|
|
for (var key in source) {
|
|
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
target[key] = source[key];
|
|
}
|
|
}
|
|
}
|
|
return target;
|
|
};
|
|
var _dedupe = __webpack_require__("./node_modules/classnames/dedupe.js");
|
|
var _dedupe2 = _interopRequireDefault(_dedupe);
|
|
var _icons = __webpack_require__("./src/icons.js");
|
|
var _icons2 = _interopRequireDefault(_icons);
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
}
|
|
function replace() {
|
|
var attrs = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
if (typeof document === "undefined") {
|
|
throw new Error("`feather.replace()` only works in a browser environment.");
|
|
}
|
|
var elementsToReplace = document.querySelectorAll("[data-feather]");
|
|
Array.from(elementsToReplace).forEach(function(element) {
|
|
return replaceElement(element, attrs);
|
|
});
|
|
}
|
|
function replaceElement(element) {
|
|
var attrs = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
var elementAttrs = getAttrs(element);
|
|
var name = elementAttrs["data-feather"];
|
|
delete elementAttrs["data-feather"];
|
|
var svgString = _icons2.default[name].toSvg(_extends({}, attrs, elementAttrs, { class: (0, _dedupe2.default)(attrs.class, elementAttrs.class) }));
|
|
var svgDocument = new DOMParser().parseFromString(svgString, "image/svg+xml");
|
|
var svgElement = svgDocument.querySelector("svg");
|
|
element.parentNode.replaceChild(svgElement, element);
|
|
}
|
|
function getAttrs(element) {
|
|
return Array.from(element.attributes).reduce(function(attrs, attr) {
|
|
attrs[attr.name] = attr.value;
|
|
return attrs;
|
|
}, {});
|
|
}
|
|
exports2.default = replace;
|
|
},
|
|
"./src/tags.json": function(module3) {
|
|
module3.exports = { "activity": ["pulse", "health", "action", "motion"], "airplay": ["stream", "cast", "mirroring"], "alert-circle": ["warning", "alert", "danger"], "alert-octagon": ["warning", "alert", "danger"], "alert-triangle": ["warning", "alert", "danger"], "align-center": ["text alignment", "center"], "align-justify": ["text alignment", "justified"], "align-left": ["text alignment", "left"], "align-right": ["text alignment", "right"], "anchor": [], "archive": ["index", "box"], "at-sign": ["mention", "at", "email", "message"], "award": ["achievement", "badge"], "aperture": ["camera", "photo"], "bar-chart": ["statistics", "diagram", "graph"], "bar-chart-2": ["statistics", "diagram", "graph"], "battery": ["power", "electricity"], "battery-charging": ["power", "electricity"], "bell": ["alarm", "notification", "sound"], "bell-off": ["alarm", "notification", "silent"], "bluetooth": ["wireless"], "book-open": ["read", "library"], "book": ["read", "dictionary", "booklet", "magazine", "library"], "bookmark": ["read", "clip", "marker", "tag"], "box": ["cube"], "briefcase": ["work", "bag", "baggage", "folder"], "calendar": ["date"], "camera": ["photo"], "cast": ["chromecast", "airplay"], "circle": ["off", "zero", "record"], "clipboard": ["copy"], "clock": ["time", "watch", "alarm"], "cloud-drizzle": ["weather", "shower"], "cloud-lightning": ["weather", "bolt"], "cloud-rain": ["weather"], "cloud-snow": ["weather", "blizzard"], "cloud": ["weather"], "codepen": ["logo"], "codesandbox": ["logo"], "code": ["source", "programming"], "coffee": ["drink", "cup", "mug", "tea", "cafe", "hot", "beverage"], "columns": ["layout"], "command": ["keyboard", "cmd", "terminal", "prompt"], "compass": ["navigation", "safari", "travel", "direction"], "copy": ["clone", "duplicate"], "corner-down-left": ["arrow", "return"], "corner-down-right": ["arrow"], "corner-left-down": ["arrow"], "corner-left-up": ["arrow"], "corner-right-down": ["arrow"], "corner-right-up": ["arrow"], "corner-up-left": ["arrow"], "corner-up-right": ["arrow"], "cpu": ["processor", "technology"], "credit-card": ["purchase", "payment", "cc"], "crop": ["photo", "image"], "crosshair": ["aim", "target"], "database": ["storage", "memory"], "delete": ["remove"], "disc": ["album", "cd", "dvd", "music"], "dollar-sign": ["currency", "money", "payment"], "droplet": ["water"], "edit": ["pencil", "change"], "edit-2": ["pencil", "change"], "edit-3": ["pencil", "change"], "eye": ["view", "watch"], "eye-off": ["view", "watch", "hide", "hidden"], "external-link": ["outbound"], "facebook": ["logo", "social"], "fast-forward": ["music"], "figma": ["logo", "design", "tool"], "file-minus": ["delete", "remove", "erase"], "file-plus": ["add", "create", "new"], "file-text": ["data", "txt", "pdf"], "film": ["movie", "video"], "filter": ["funnel", "hopper"], "flag": ["report"], "folder-minus": ["directory"], "folder-plus": ["directory"], "folder": ["directory"], "framer": ["logo", "design", "tool"], "frown": ["emoji", "face", "bad", "sad", "emotion"], "gift": ["present", "box", "birthday", "party"], "git-branch": ["code", "version control"], "git-commit": ["code", "version control"], "git-merge": ["code", "version control"], "git-pull-request": ["code", "version control"], "github": ["logo", "version control"], "gitlab": ["logo", "version control"], "globe": ["world", "browser", "language", "translate"], "hard-drive": ["computer", "server", "memory", "data"], "hash": ["hashtag", "number", "pound"], "headphones": ["music", "audio", "sound"], "heart": ["like", "love", "emotion"], "help-circle": ["question mark"], "hexagon": ["shape", "node.js", "logo"], "home": ["house", "living"], "image": ["picture"], "inbox": ["email"], "instagram": ["logo", "camera"], "key": ["password", "login", "authentication", "secure"], "layers": ["stack"], "layout": ["window", "webpage"], "life-bouy": ["help", "life ring", "support"], "link": ["chain", "url"], "link-2": ["chain", "url"], "linkedin": ["logo", "social media"], "list": ["options"], "lock": ["security", "password", "secure"], "log-in": ["sign in", "arrow", "enter"], "log-out": ["sign out", "arrow", "exit"], "mail": ["email", "message"], "map-pin": ["location", "navigation", "travel", "marker"], "map": ["location", "navigation", "travel"], "maximize": ["fullscreen"], "maximize-2": ["fullscreen", "arrows", "expand"], "meh": ["emoji", "face", "neutral", "emotion"], "menu": ["bars", "navigation", "hamburger"], "message-circle": ["comment", "chat"], "message-square": ["comment", "chat"], "mic-off": ["record", "sound", "mute"], "mic": ["record", "sound", "listen"], "minimize": ["exit fullscreen", "close"], "minimize-2": ["exit fullscreen", "arrows", "close"], "minus": ["subtract"], "monitor": ["tv", "screen", "display"], "moon": ["dark", "night"], "more-horizontal": ["ellipsis"], "more-vertical": ["ellipsis"], "mouse-pointer": ["arrow", "cursor"], "move": ["arrows"], "music": ["note"], "navigation": ["location", "travel"], "navigation-2": ["location", "travel"], "octagon": ["stop"], "package": ["box", "container"], "paperclip": ["attachment"], "pause": ["music", "stop"], "pause-circle": ["music", "audio", "stop"], "pen-tool": ["vector", "drawing"], "percent": ["discount"], "phone-call": ["ring"], "phone-forwarded": ["call"], "phone-incoming": ["call"], "phone-missed": ["call"], "phone-off": ["call", "mute"], "phone-outgoing": ["call"], "phone": ["call"], "play": ["music", "start"], "pie-chart": ["statistics", "diagram"], "play-circle": ["music", "start"], "plus": ["add", "new"], "plus-circle": ["add", "new"], "plus-square": ["add", "new"], "pocket": ["logo", "save"], "power": ["on", "off"], "printer": ["fax", "office", "device"], "radio": ["signal"], "refresh-cw": ["synchronise", "arrows"], "refresh-ccw": ["arrows"], "repeat": ["loop", "arrows"], "rewind": ["music"], "rotate-ccw": ["arrow"], "rotate-cw": ["arrow"], "rss": ["feed", "subscribe"], "save": ["floppy disk"], "scissors": ["cut"], "search": ["find", "magnifier", "magnifying glass"], "send": ["message", "mail", "email", "paper airplane", "paper aeroplane"], "settings": ["cog", "edit", "gear", "preferences"], "share-2": ["network", "connections"], "shield": ["security", "secure"], "shield-off": ["security", "insecure"], "shopping-bag": ["ecommerce", "cart", "purchase", "store"], "shopping-cart": ["ecommerce", "cart", "purchase", "store"], "shuffle": ["music"], "skip-back": ["music"], "skip-forward": ["music"], "slack": ["logo"], "slash": ["ban", "no"], "sliders": ["settings", "controls"], "smartphone": ["cellphone", "device"], "smile": ["emoji", "face", "happy", "good", "emotion"], "speaker": ["audio", "music"], "star": ["bookmark", "favorite", "like"], "stop-circle": ["media", "music"], "sun": ["brightness", "weather", "light"], "sunrise": ["weather", "time", "morning", "day"], "sunset": ["weather", "time", "evening", "night"], "tablet": ["device"], "tag": ["label"], "target": ["logo", "bullseye"], "terminal": ["code", "command line", "prompt"], "thermometer": ["temperature", "celsius", "fahrenheit", "weather"], "thumbs-down": ["dislike", "bad", "emotion"], "thumbs-up": ["like", "good", "emotion"], "toggle-left": ["on", "off", "switch"], "toggle-right": ["on", "off", "switch"], "tool": ["settings", "spanner"], "trash": ["garbage", "delete", "remove", "bin"], "trash-2": ["garbage", "delete", "remove", "bin"], "triangle": ["delta"], "truck": ["delivery", "van", "shipping", "transport", "lorry"], "tv": ["television", "stream"], "twitch": ["logo"], "twitter": ["logo", "social"], "type": ["text"], "umbrella": ["rain", "weather"], "unlock": ["security"], "user-check": ["followed", "subscribed"], "user-minus": ["delete", "remove", "unfollow", "unsubscribe"], "user-plus": ["new", "add", "create", "follow", "subscribe"], "user-x": ["delete", "remove", "unfollow", "unsubscribe", "unavailable"], "user": ["person", "account"], "users": ["group"], "video-off": ["camera", "movie", "film"], "video": ["camera", "movie", "film"], "voicemail": ["phone"], "volume": ["music", "sound", "mute"], "volume-1": ["music", "sound"], "volume-2": ["music", "sound"], "volume-x": ["music", "sound", "mute"], "watch": ["clock", "time"], "wifi-off": ["disabled"], "wifi": ["connection", "signal", "wireless"], "wind": ["weather", "air"], "x-circle": ["cancel", "close", "delete", "remove", "times", "clear"], "x-octagon": ["delete", "stop", "alert", "warning", "times", "clear"], "x-square": ["cancel", "close", "delete", "remove", "times", "clear"], "x": ["cancel", "close", "delete", "remove", "times", "clear"], "youtube": ["logo", "video", "play"], "zap-off": ["flash", "camera", "lightning"], "zap": ["flash", "camera", "lightning"], "zoom-in": ["magnifying glass"], "zoom-out": ["magnifying glass"] };
|
|
},
|
|
"./src/to-svg.js": function(module3, exports2, __webpack_require__) {
|
|
"use strict";
|
|
Object.defineProperty(exports2, "__esModule", {
|
|
value: true
|
|
});
|
|
var _icons = __webpack_require__("./src/icons.js");
|
|
var _icons2 = _interopRequireDefault(_icons);
|
|
function _interopRequireDefault(obj) {
|
|
return obj && obj.__esModule ? obj : { default: obj };
|
|
}
|
|
function toSvg(name) {
|
|
var attrs = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
console.warn("feather.toSvg() is deprecated. Please use feather.icons[name].toSvg() instead.");
|
|
if (!name) {
|
|
throw new Error("The required `key` (icon name) parameter is missing.");
|
|
}
|
|
if (!_icons2.default[name]) {
|
|
throw new Error("No icon matching '" + name + "'. See the complete list of icons at https://feathericons.com");
|
|
}
|
|
return _icons2.default[name].toSvg(attrs);
|
|
}
|
|
exports2.default = toSvg;
|
|
},
|
|
0: function(module3, exports2, __webpack_require__) {
|
|
__webpack_require__("./node_modules/core-js/es/array/from.js");
|
|
module3.exports = __webpack_require__("./src/index.js");
|
|
}
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
// main.ts
|
|
__export(exports, {
|
|
default: () => WeatherPlugin
|
|
});
|
|
var import_obsidian = __toModule(require("obsidian"));
|
|
var import_cloneDeep = __toModule(require_cloneDeep());
|
|
var import_isEmpty = __toModule(require_isEmpty());
|
|
var import_feather_icons = __toModule(require_feather());
|
|
var DEFAULT_SETTINGS = {
|
|
source: "not-selected",
|
|
cacheSeconds: 300,
|
|
addRibbon: true
|
|
};
|
|
var selectedIcon = import_feather_icons.default.icons["sun"].toSvg({
|
|
width: 100,
|
|
height: 100
|
|
});
|
|
var monkeyPatchConsole = (plugin) => {
|
|
if (!import_obsidian.Platform.isIosApp) {
|
|
return;
|
|
}
|
|
const logFile = `${plugin.manifest.dir}/logs.txt`;
|
|
const logs = [];
|
|
const logMessages = (prefix) => (...messages) => {
|
|
logs.push(`
|
|
[${prefix}]`);
|
|
for (const message of messages) {
|
|
logs.push(String(message));
|
|
}
|
|
plugin.app.vault.adapter.write(logFile, logs.join(" "));
|
|
};
|
|
console.debug = logMessages("debug");
|
|
console.error = logMessages("error");
|
|
console.info = logMessages("info");
|
|
console.log = logMessages("log");
|
|
console.warn = logMessages("warn");
|
|
};
|
|
var WeatherPlugin = class extends import_obsidian.Plugin {
|
|
onload() {
|
|
return __async(this, null, function* () {
|
|
monkeyPatchConsole(this);
|
|
console.log("loading WeatherPlugin");
|
|
yield this.loadSettings();
|
|
this.cachedPrevCall = {};
|
|
this.weatherRibbon = void 0;
|
|
this.commandEnabled = false;
|
|
(0, import_obsidian.addIcon)("weather", selectedIcon);
|
|
if (this.settings.source !== "not-selected") {
|
|
this.addWeatherCommand();
|
|
}
|
|
if (this.settings.addRibbon) {
|
|
yield this.addWeatherRibbon();
|
|
}
|
|
this.addSettingTab(new WeatherSettingTab(this.app, this));
|
|
});
|
|
}
|
|
onunload() {
|
|
console.log("unloading WeatherPlugin");
|
|
}
|
|
loadSettings() {
|
|
return __async(this, null, function* () {
|
|
this.settings = Object.assign({}, (0, import_cloneDeep.default)(DEFAULT_SETTINGS), yield this.loadData());
|
|
});
|
|
}
|
|
saveSettings() {
|
|
return __async(this, null, function* () {
|
|
yield this.saveData(this.settings);
|
|
});
|
|
}
|
|
getEditor() {
|
|
const leaf = this.app.workspace.activeLeaf;
|
|
if (leaf !== void 0 && leaf !== null) {
|
|
const view = leaf.view;
|
|
if (view !== void 0 && view !== null) {
|
|
const editor = view.editor;
|
|
return editor;
|
|
}
|
|
}
|
|
return void 0;
|
|
}
|
|
addWeatherRibbon() {
|
|
return __async(this, null, function* () {
|
|
if (this.weatherRibbon !== void 0) {
|
|
return;
|
|
}
|
|
if (this.settings.source === "not-selected") {
|
|
return;
|
|
}
|
|
this.weatherRibbon = this.addRibbonIcon("weather", "Insert Weather", (event) => __async(this, null, function* () {
|
|
const editor = this.getEditor();
|
|
if (editor === void 0) {
|
|
new import_obsidian.Notice("No active editor, no output.");
|
|
return;
|
|
}
|
|
const k = new import_obsidian.Notice("Fetching weather...");
|
|
try {
|
|
const weatherInfo = yield fetchWeather(this.settings.source, this.settings.cacheSeconds, this.cachedPrevCall);
|
|
k.hide();
|
|
editor.replaceRange(weatherInfo.info, editor.getCursor());
|
|
} catch (e) {
|
|
console.error(e);
|
|
new import_obsidian.Notice("Something goes wrong while fetching weather info.");
|
|
}
|
|
}));
|
|
});
|
|
}
|
|
removeWeatherRibbon() {
|
|
if (this.weatherRibbon === void 0) {
|
|
return;
|
|
}
|
|
this.weatherRibbon.detach();
|
|
this.weatherRibbon = void 0;
|
|
}
|
|
addWeatherCommand() {
|
|
if (this.commandEnabled) {
|
|
return;
|
|
}
|
|
this.addCommand({
|
|
id: "weather-insert",
|
|
name: "Insert current weather",
|
|
icon: "weather",
|
|
editorCallback: (editor, view) => __async(this, null, function* () {
|
|
const k = new import_obsidian.Notice("Fetching weather...");
|
|
try {
|
|
const weatherInfo = yield fetchWeather(this.settings.source, this.settings.cacheSeconds, this.cachedPrevCall);
|
|
k.hide();
|
|
editor.replaceRange(weatherInfo.info, editor.getCursor());
|
|
} catch (e) {
|
|
console.error(e);
|
|
new import_obsidian.Notice("Something goes wrong while fetching weather info.");
|
|
}
|
|
})
|
|
});
|
|
this.addCommand({
|
|
id: "weather-output-cache",
|
|
name: "Output current cached weather info. For debugging purposes.",
|
|
editorCallback: (editor, view) => __async(this, null, function* () {
|
|
if (this.cachedPrevCall === void 0 || (0, import_isEmpty.default)(this.cachedPrevCall)) {
|
|
new import_obsidian.Notice("No cached weather info, no output.");
|
|
} else {
|
|
const outputCode = "\n```json\n" + JSON.stringify(this.cachedPrevCall, null, 2) + "\n```\n";
|
|
editor.replaceRange(outputCode, editor.getCursor());
|
|
}
|
|
})
|
|
});
|
|
this.commandEnabled = true;
|
|
}
|
|
removeWeatherCommand() {
|
|
if (!this.commandEnabled) {
|
|
return;
|
|
}
|
|
this.app.commands.removeCommand(`${this.manifest.id}:weather-insert`);
|
|
this.app.commands.removeCommand(`${this.manifest.id}:weather-output-cache`);
|
|
this.commandEnabled = false;
|
|
}
|
|
};
|
|
var fetchWeather = (source, cacheSeconds, cachedPrevCall) => __async(void 0, null, function* () {
|
|
const currTimestampMs = Date.now();
|
|
if (cacheSeconds !== void 0 && cachedPrevCall !== void 0 && source in cachedPrevCall) {
|
|
const cached = cachedPrevCall[source];
|
|
if (currTimestampMs <= cached.timestampInMs + cacheSeconds * 1e3) {
|
|
return cached;
|
|
} else {
|
|
delete cachedPrevCall[source];
|
|
}
|
|
}
|
|
if (source === "wttr") {
|
|
const res1 = yield fetch("https://wttr.in/?format=4");
|
|
const res2 = yield res1.text();
|
|
const newItem = {
|
|
source,
|
|
timestampInMs: currTimestampMs,
|
|
info: res2
|
|
};
|
|
cachedPrevCall[source] = newItem;
|
|
return newItem;
|
|
} else if (source === "openweathermap") {
|
|
throw Error(`not implemented for ${source} yet!`);
|
|
} else {
|
|
throw Error(`not implemented for ${source} yet!`);
|
|
}
|
|
});
|
|
var WeatherSettingTab = class extends import_obsidian.PluginSettingTab {
|
|
constructor(app, plugin) {
|
|
super(app, plugin);
|
|
this.plugin = plugin;
|
|
}
|
|
display() {
|
|
const { containerEl } = this;
|
|
containerEl.empty();
|
|
containerEl.createEl("h1", { text: `${this.plugin.manifest.name}` });
|
|
new import_obsidian.Setting(containerEl).setName("Data Provider").setDesc(createFragment((frag) => {
|
|
frag.createEl("span", {
|
|
text: "By selecting any third-party data provider, you agree to that provider's privacy policy and terms of use, and you also agree and consent that this plugin sends requests to the selected data provider to fetch the weather data, and stores some necessary information and login credentials locally."
|
|
});
|
|
})).addDropdown((dropdown) => {
|
|
dropdown.addOption("not-selected", "(no provider selected)");
|
|
dropdown.addOption("wttr", "https://wttr.in/");
|
|
dropdown.setValue(this.plugin.settings.source).onChange((val) => __async(this, null, function* () {
|
|
this.plugin.settings.source = val;
|
|
yield this.plugin.saveSettings();
|
|
if (val === "not-selected") {
|
|
this.plugin.removeWeatherCommand();
|
|
this.plugin.removeWeatherRibbon();
|
|
} else {
|
|
this.plugin.addWeatherCommand();
|
|
this.plugin.addWeatherRibbon();
|
|
}
|
|
}));
|
|
});
|
|
new import_obsidian.Setting(containerEl).setName("Cache Time").setDesc("After one call of weather api, the result will be cached for some minutes locally.").addDropdown((dropdown) => {
|
|
dropdown.addOption("300", "5 minutes");
|
|
dropdown.addOption("600", "10 minutes");
|
|
dropdown.setValue(`${this.plugin.settings.cacheSeconds}`).onChange((val) => __async(this, null, function* () {
|
|
this.plugin.settings.cacheSeconds = parseInt(val);
|
|
yield this.plugin.saveSettings();
|
|
}));
|
|
});
|
|
new import_obsidian.Setting(containerEl).setName("Add Ribbon").setDesc("Add sidebar ribbon or not?").addToggle((toggle) => {
|
|
toggle.setValue(this.plugin.settings.addRibbon).onChange((val) => __async(this, null, function* () {
|
|
this.plugin.settings.addRibbon = val;
|
|
yield this.plugin.saveSettings();
|
|
if (val) {
|
|
yield this.plugin.addWeatherRibbon();
|
|
} else {
|
|
this.plugin.removeWeatherRibbon();
|
|
}
|
|
}));
|
|
});
|
|
containerEl.createEl("h2", { text: "License" });
|
|
const licenseDiv = containerEl.createEl("div");
|
|
licenseDiv.createEl("p", {
|
|
text: "The source code of the plugin is released under Apache-2 license. See the repo for more information:"
|
|
});
|
|
licenseDiv.createEl("a", {
|
|
text: this.plugin.manifest.authorUrl,
|
|
href: this.plugin.manifest.authorUrl
|
|
});
|
|
}
|
|
};
|
|
/*!
|
|
Copyright (c) 2016 Jed Watson.
|
|
Licensed under the MIT License (MIT), see
|
|
http://jedwatson.github.io/classnames
|
|
*/
|