{"version":3,"file":"@dicebear.a320a187.js","sources":["../../../node_modules/@dicebear/core/lib/utils/escape.js","../../../node_modules/@dicebear/core/lib/utils/license.js","../../../node_modules/@dicebear/core/lib/utils/prng.js","../../../node_modules/@dicebear/core/lib/utils/svg.js","../../../node_modules/@dicebear/core/lib/schema.js","../../../node_modules/@dicebear/core/lib/utils/options.js","../../../node_modules/@dicebear/converter/lib/utils/mime-type.js","../../../node_modules/@dicebear/converter/lib/utils/svg.js","../../../node_modules/@dicebear/converter/lib/utils/text.js","../../../node_modules/@dicebear/converter/lib/core.js","../../../node_modules/@dicebear/core/lib/utils/color.js","../../../node_modules/@dicebear/core/lib/core.js","../../../node_modules/@dicebear/initials/lib/utils/initials.js","../../../node_modules/@dicebear/initials/lib/utils/convertColor.js","../../../node_modules/@dicebear/initials/lib/utils/escape.js","../../../node_modules/@dicebear/initials/lib/schema.js","../../../node_modules/@dicebear/initials/lib/index.js"],"sourcesContent":["export function xml(content) {\n return content\n .replace(/&/g, '&')\n .replace(/'/g, ''')\n .replace(/\"/g, '"')\n .replace(//g, '>');\n}\n","import * as _ from './escape.js';\nexport function xml(style) {\n var _a, _b, _c, _d, _e, _f, _g;\n const title = (_a = style.meta) === null || _a === void 0 ? void 0 : _a.title;\n const creator = (_b = style.meta) === null || _b === void 0 ? void 0 : _b.creator;\n const source = (_c = style.meta) === null || _c === void 0 ? void 0 : _c.source;\n const license = (_e = (_d = style.meta) === null || _d === void 0 ? void 0 : _d.license) === null || _e === void 0 ? void 0 : _e.url;\n const rights = text(style);\n if (!title && !creator && !source && !license && !rights) {\n return '';\n }\n // https://nsteffel.github.io/dublin_core_generator/generator.html\n return ('' +\n '' +\n '' +\n (title ? `${_.xml(title)}` : '') +\n (creator ? `${_.xml(creator)}` : '') +\n (source ? `${_.xml((_g = (_f = style.meta) === null || _f === void 0 ? void 0 : _f.source) !== null && _g !== void 0 ? _g : '')}` : '') +\n (license ? `${_.xml(license)}` : '') +\n (rights ? `${_.xml(rights)}` : '') +\n '' +\n '' +\n '');\n}\nexport function text(style) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;\n let title = ((_a = style.meta) === null || _a === void 0 ? void 0 : _a.title) ? `„${(_b = style.meta) === null || _b === void 0 ? void 0 : _b.title}”` : 'Design';\n let creator = `„${(_d = (_c = style.meta) === null || _c === void 0 ? void 0 : _c.creator) !== null && _d !== void 0 ? _d : 'Unknown'}”`;\n if ((_e = style.meta) === null || _e === void 0 ? void 0 : _e.source) {\n title += ` (${style.meta.source})`;\n }\n let result = '';\n if (((_g = (_f = style.meta) === null || _f === void 0 ? void 0 : _f.license) === null || _g === void 0 ? void 0 : _g.name) !== 'MIT' && ((_h = style.meta) === null || _h === void 0 ? void 0 : _h.creator) !== 'DiceBear' && ((_j = style.meta) === null || _j === void 0 ? void 0 : _j.title)) {\n result += 'Remix of ';\n }\n result += `${title} by ${creator}`;\n if ((_l = (_k = style.meta) === null || _k === void 0 ? void 0 : _k.license) === null || _l === void 0 ? void 0 : _l.name) {\n result += `, licensed under „${(_o = (_m = style.meta) === null || _m === void 0 ? void 0 : _m.license) === null || _o === void 0 ? void 0 : _o.name}”`;\n if ((_q = (_p = style.meta) === null || _p === void 0 ? void 0 : _p.license) === null || _q === void 0 ? void 0 : _q.url) {\n result += ` (${style.meta.license.url})`;\n }\n }\n return result;\n}\nexport function exif(style) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j;\n const copyright = text(style);\n // https://www.iptc.org/std/photometadata/specification/IPTC-PhotoMetadata\n // https://developers.google.com/search/docs/appearance/structured-data/image-license-metadata\n return {\n // Title\n 'IPTC:ObjectName': (_a = style.meta) === null || _a === void 0 ? void 0 : _a.title,\n 'XMP-dc:Title': (_b = style.meta) === null || _b === void 0 ? void 0 : _b.title,\n // Copyright\n 'IPTC:CopyrightNotice': copyright,\n 'XMP-dc:Rights': copyright,\n // Creator\n 'IPTC:By-line': (_c = style.meta) === null || _c === void 0 ? void 0 : _c.creator,\n 'XMP-dc:Creator': (_d = style.meta) === null || _d === void 0 ? void 0 : _d.creator,\n // Credit\n 'IPTC:Credit': (_e = style.meta) === null || _e === void 0 ? void 0 : _e.creator,\n 'XMP-photoshop:Credit': (_f = style.meta) === null || _f === void 0 ? void 0 : _f.creator,\n // Licensor\n 'XMP-plus:LicensorURL': (_g = style.meta) === null || _g === void 0 ? void 0 : _g.source,\n // Rights\n 'XMP-xmpRights:WebStatement': (_j = (_h = style.meta) === null || _h === void 0 ? void 0 : _h.license) === null || _j === void 0 ? void 0 : _j.url,\n };\n}\n","const MIN = -2147483648;\nconst MAX = 2147483647;\nfunction xorshift(value) {\n value ^= value << 13;\n value ^= value >> 17;\n value ^= value << 5;\n return value;\n}\nfunction hashSeed(seed) {\n let hash = 0;\n for (let i = 0; i < seed.length; i++) {\n hash = ((hash << 5) - hash + seed.charCodeAt(i)) | 0;\n hash = xorshift(hash);\n }\n return hash;\n}\nexport function create(seed = '') {\n // Ensure that seed is a string\n seed = seed.toString();\n let value = hashSeed(seed) || 1;\n const next = () => (value = xorshift(value));\n const integer = (min, max) => {\n return Math.floor(((next() - MIN) / (MAX - MIN)) * (max + 1 - min) + min);\n };\n return {\n seed,\n next,\n bool(likelihood = 50) {\n return integer(0, 100) <= likelihood;\n },\n integer(min, max) {\n return integer(min, max);\n },\n pick(arr, fallback) {\n var _a;\n if (arr.length === 0) {\n next();\n return fallback;\n }\n return (_a = arr[integer(0, arr.length - 1)]) !== null && _a !== void 0 ? _a : fallback;\n },\n shuffle(arr) {\n // Each method call should call the `next` function only once.\n // Therefore, we use a separate instance of the PRNG here.\n const internalPrng = create(next().toString());\n return arr.sort(() => internalPrng.integer(-1, 1));\n },\n string(length, characters = 'abcdefghijklmnopqrstuvwxyz1234567890') {\n // Each method call should call the `next` function only once.\n // Therefore, we use a separate instance of the PRNG here.\n const internalPrng = create(next().toString());\n let str = '';\n for (let i = 0; i < length; i++) {\n str += characters[internalPrng.integer(0, characters.length - 1)];\n }\n return str;\n },\n };\n}\n","import * as escape from './escape.js';\nimport { create as createPrng } from './prng.js';\nexport function getViewBox(result) {\n let viewBox = result.attributes['viewBox'].split(' ');\n let x = parseInt(viewBox[0]);\n let y = parseInt(viewBox[1]);\n let width = parseInt(viewBox[2]);\n let height = parseInt(viewBox[3]);\n return {\n x,\n y,\n width,\n height,\n };\n}\nexport function addBackground(result, primaryColor, secondaryColor, type, rotation) {\n let { width, height, x, y } = getViewBox(result);\n const solidBackground = ``;\n switch (type) {\n case 'solid':\n return solidBackground + result.body;\n case 'gradientLinear':\n return (`` +\n `` +\n `` +\n `` +\n `` +\n `` +\n `` +\n result.body);\n }\n}\nexport function addScale(result, scale) {\n let { width, height, x, y } = getViewBox(result);\n let percent = scale ? (scale - 100) / 100 : 0;\n let translateX = (width / 2 + x) * percent * -1;\n let translateY = (height / 2 + y) * percent * -1;\n return `${result.body}`;\n}\nexport function addTranslate(result, x, y) {\n let viewBox = getViewBox(result);\n let translateX = (viewBox.width + viewBox.x * 2) * ((x !== null && x !== void 0 ? x : 0) / 100);\n let translateY = (viewBox.height + viewBox.y * 2) * ((y !== null && y !== void 0 ? y : 0) / 100);\n return `${result.body}`;\n}\nexport function addRotate(result, rotate) {\n let { width, height, x, y } = getViewBox(result);\n return `${result.body}`;\n}\nexport function addFlip(result) {\n let { width, x } = getViewBox(result);\n return `${result.body}`;\n}\nexport function addViewboxMask(result, radius) {\n let { width, height, x, y } = getViewBox(result);\n let rx = radius ? (width * radius) / 100 : 0;\n let ry = radius ? (height * radius) / 100 : 0;\n return (`` +\n `` +\n `` +\n `${result.body}`);\n}\nexport function createAttrString(result) {\n const attributes = {\n xmlns: 'http://www.w3.org/2000/svg',\n ...result.attributes,\n };\n return Object.keys(attributes)\n .map((attr) => `${escape.xml(attr)}=\"${escape.xml(attributes[attr])}\"`)\n .join(' ');\n}\nexport function randomizeIds(result) {\n const prng = createPrng(Math.random().toString());\n const ids = {};\n return result.body.replace(/(id=\"|url\\(#)([a-z0-9-_]+)([\")])/gi, (match, m1, m2, m3) => {\n ids[m2] = ids[m2] || prng.string(8);\n return `${m1}${ids[m2]}${m3}`;\n });\n}\n","export const schema = {\n type: 'object',\n $schema: 'http://json-schema.org/draft-07/schema#',\n properties: {\n seed: {\n type: 'string',\n },\n flip: {\n type: 'boolean',\n default: false,\n },\n rotate: {\n type: 'integer',\n minimum: 0,\n maximum: 360,\n default: 0,\n },\n scale: {\n type: 'integer',\n minimum: 0,\n maximum: 200,\n default: 100,\n },\n radius: {\n type: 'integer',\n minimum: 0,\n maximum: 50,\n default: 0,\n },\n size: {\n type: 'integer',\n minimum: 1,\n },\n backgroundColor: {\n type: 'array',\n items: {\n type: 'string',\n pattern: '^(transparent|[a-fA-F0-9]{6})$',\n },\n },\n backgroundType: {\n type: 'array',\n items: {\n type: 'string',\n enum: ['solid', 'gradientLinear'],\n },\n default: ['solid'],\n },\n backgroundRotation: {\n type: 'array',\n items: {\n type: 'integer',\n minimum: -360,\n maximum: 360,\n },\n default: [\n 0, 360,\n ],\n },\n translateX: {\n type: 'integer',\n minimum: -100,\n maximum: 100,\n default: 0,\n },\n translateY: {\n type: 'integer',\n minimum: -100,\n maximum: 100,\n default: 0,\n },\n clip: {\n type: 'boolean',\n default: true,\n },\n randomizeIds: {\n type: 'boolean',\n default: false,\n },\n },\n};\n","import { schema } from '../schema.js';\nexport function defaults(schema) {\n var _a;\n let result = {};\n let props = (_a = schema.properties) !== null && _a !== void 0 ? _a : {};\n Object.keys(props).forEach((key) => {\n let val = props[key];\n if (typeof val === 'object' && undefined !== val.default) {\n if (Array.isArray(val.default)) {\n result[key] = [...val.default];\n }\n else if (typeof val.default === 'object') {\n result[key] = { ...val.default };\n }\n else {\n result[key] = val.default;\n }\n }\n });\n return result;\n}\nexport function merge(style, options) {\n var _a;\n let result = {\n ...defaults(schema),\n ...defaults((_a = style.schema) !== null && _a !== void 0 ? _a : {}),\n ...options,\n };\n // Return a complete copy because the styles could partially customize the\n // options and thus modify nested objects and arrays.\n return JSON.parse(JSON.stringify(result));\n}\n","export function getMimeType(format) {\n switch (format) {\n case 'svg':\n return 'image/svg+xml';\n case 'png':\n case 'jpeg':\n return `image/${format}`;\n default:\n throw new Error(`Unsupported format: ${format}`);\n }\n}\n","export function ensureSize(svg, defaultSize = 512) {\n let size = defaultSize;\n svg = svg.replace(/