| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 | export const elementNames = new Map([    "altGlyph",    "altGlyphDef",    "altGlyphItem",    "animateColor",    "animateMotion",    "animateTransform",    "clipPath",    "feBlend",    "feColorMatrix",    "feComponentTransfer",    "feComposite",    "feConvolveMatrix",    "feDiffuseLighting",    "feDisplacementMap",    "feDistantLight",    "feDropShadow",    "feFlood",    "feFuncA",    "feFuncB",    "feFuncG",    "feFuncR",    "feGaussianBlur",    "feImage",    "feMerge",    "feMergeNode",    "feMorphology",    "feOffset",    "fePointLight",    "feSpecularLighting",    "feSpotLight",    "feTile",    "feTurbulence",    "foreignObject",    "glyphRef",    "linearGradient",    "radialGradient",    "textPath",].map((val) => [val.toLowerCase(), val]));export const attributeNames = new Map([    "definitionURL",    "attributeName",    "attributeType",    "baseFrequency",    "baseProfile",    "calcMode",    "clipPathUnits",    "diffuseConstant",    "edgeMode",    "filterUnits",    "glyphRef",    "gradientTransform",    "gradientUnits",    "kernelMatrix",    "kernelUnitLength",    "keyPoints",    "keySplines",    "keyTimes",    "lengthAdjust",    "limitingConeAngle",    "markerHeight",    "markerUnits",    "markerWidth",    "maskContentUnits",    "maskUnits",    "numOctaves",    "pathLength",    "patternContentUnits",    "patternTransform",    "patternUnits",    "pointsAtX",    "pointsAtY",    "pointsAtZ",    "preserveAlpha",    "preserveAspectRatio",    "primitiveUnits",    "refX",    "refY",    "repeatCount",    "repeatDur",    "requiredExtensions",    "requiredFeatures",    "specularConstant",    "specularExponent",    "spreadMethod",    "startOffset",    "stdDeviation",    "stitchTiles",    "surfaceScale",    "systemLanguage",    "tableValues",    "targetX",    "targetY",    "textLength",    "viewBox",    "viewTarget",    "xChannelSelector",    "yChannelSelector",    "zoomAndPan",].map((val) => [val.toLowerCase(), val]));
 |