| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
 | | "use strict"; |  | Object.defineProperty(exports, "__esModule", { value: true }); |  | exports.attributeNames = exports.elementNames = void 0; |  | exports.elementNames = new Map([ |  |     ["altglyph", "altGlyph"], |  |     ["altglyphdef", "altGlyphDef"], |  |     ["altglyphitem", "altGlyphItem"], |  |     ["animatecolor", "animateColor"], |  |     ["animatemotion", "animateMotion"], |  |     ["animatetransform", "animateTransform"], |  |     ["clippath", "clipPath"], |  |     ["feblend", "feBlend"], |  |     ["fecolormatrix", "feColorMatrix"], |  |     ["fecomponenttransfer", "feComponentTransfer"], |  |     ["fecomposite", "feComposite"], |  |     ["feconvolvematrix", "feConvolveMatrix"], |  |     ["fediffuselighting", "feDiffuseLighting"], |  |     ["fedisplacementmap", "feDisplacementMap"], |  |     ["fedistantlight", "feDistantLight"], |  |     ["fedropshadow", "feDropShadow"], |  |     ["feflood", "feFlood"], |  |     ["fefunca", "feFuncA"], |  |     ["fefuncb", "feFuncB"], |  |     ["fefuncg", "feFuncG"], |  |     ["fefuncr", "feFuncR"], |  |     ["fegaussianblur", "feGaussianBlur"], |  |     ["feimage", "feImage"], |  |     ["femerge", "feMerge"], |  |     ["femergenode", "feMergeNode"], |  |     ["femorphology", "feMorphology"], |  |     ["feoffset", "feOffset"], |  |     ["fepointlight", "fePointLight"], |  |     ["fespecularlighting", "feSpecularLighting"], |  |     ["fespotlight", "feSpotLight"], |  |     ["fetile", "feTile"], |  |     ["feturbulence", "feTurbulence"], |  |     ["foreignobject", "foreignObject"], |  |     ["glyphref", "glyphRef"], |  |     ["lineargradient", "linearGradient"], |  |     ["radialgradient", "radialGradient"], |  |     ["textpath", "textPath"], |  | ]); |  | exports.attributeNames = new Map([ |  |     ["definitionurl", "definitionURL"], |  |     ["attributename", "attributeName"], |  |     ["attributetype", "attributeType"], |  |     ["basefrequency", "baseFrequency"], |  |     ["baseprofile", "baseProfile"], |  |     ["calcmode", "calcMode"], |  |     ["clippathunits", "clipPathUnits"], |  |     ["diffuseconstant", "diffuseConstant"], |  |     ["edgemode", "edgeMode"], |  |     ["filterunits", "filterUnits"], |  |     ["glyphref", "glyphRef"], |  |     ["gradienttransform", "gradientTransform"], |  |     ["gradientunits", "gradientUnits"], |  |     ["kernelmatrix", "kernelMatrix"], |  |     ["kernelunitlength", "kernelUnitLength"], |  |     ["keypoints", "keyPoints"], |  |     ["keysplines", "keySplines"], |  |     ["keytimes", "keyTimes"], |  |     ["lengthadjust", "lengthAdjust"], |  |     ["limitingconeangle", "limitingConeAngle"], |  |     ["markerheight", "markerHeight"], |  |     ["markerunits", "markerUnits"], |  |     ["markerwidth", "markerWidth"], |  |     ["maskcontentunits", "maskContentUnits"], |  |     ["maskunits", "maskUnits"], |  |     ["numoctaves", "numOctaves"], |  |     ["pathlength", "pathLength"], |  |     ["patterncontentunits", "patternContentUnits"], |  |     ["patterntransform", "patternTransform"], |  |     ["patternunits", "patternUnits"], |  |     ["pointsatx", "pointsAtX"], |  |     ["pointsaty", "pointsAtY"], |  |     ["pointsatz", "pointsAtZ"], |  |     ["preservealpha", "preserveAlpha"], |  |     ["preserveaspectratio", "preserveAspectRatio"], |  |     ["primitiveunits", "primitiveUnits"], |  |     ["refx", "refX"], |  |     ["refy", "refY"], |  |     ["repeatcount", "repeatCount"], |  |     ["repeatdur", "repeatDur"], |  |     ["requiredextensions", "requiredExtensions"], |  |     ["requiredfeatures", "requiredFeatures"], |  |     ["specularconstant", "specularConstant"], |  |     ["specularexponent", "specularExponent"], |  |     ["spreadmethod", "spreadMethod"], |  |     ["startoffset", "startOffset"], |  |     ["stddeviation", "stdDeviation"], |  |     ["stitchtiles", "stitchTiles"], |  |     ["surfacescale", "surfaceScale"], |  |     ["systemlanguage", "systemLanguage"], |  |     ["tablevalues", "tableValues"], |  |     ["targetx", "targetX"], |  |     ["targety", "targetY"], |  |     ["textlength", "textLength"], |  |     ["viewbox", "viewBox"], |  |     ["viewtarget", "viewTarget"], |  |     ["xchannelselector", "xChannelSelector"], |  |     ["ychannelselector", "yChannelSelector"], |  |     ["zoomandpan", "zoomAndPan"], |  | ]); | 
 |