forked from googleprojectzero/domato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svg.txt
2395 lines (2120 loc) · 118 KB
/
svg.txt
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2017 Google Inc. All Rights Reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
<svgelement_svg> = <lt>svg <svgattrs_svg><gt><newline><svgchildren_svg><lt>/svg<gt>
<svgchildren_svg> = <svgchild_svg><svgchild_svg><svgchild_svg><svgchild_svg><svgchild_svg><svgchild_svg><svgchild_svg><svgchild_svg><svgchild_svg><svgchild_svg>
<svgchild_svg> = <svgelement_title>
<svgchild_svg> = <svgelement_g>
<svgchild_svg> = <svgelement_rect>
<svgchild_svg> = <svgelement_defs>
<svgchild_svg> = <svgelement_linearGradient>
<svgchild_svg> = <svgelement_text>
<svgchild_svg> = <svgelement_path>
<svgchild_svg> = <svgelement_pattern>
<svgchild_svg> = <svgelement_circle>
<svgchild_svg> = <svgelement_symbol>
<svgchild_svg> = <svgelement_use>
<svgchild_svg> = <svgelement_desc>
<svgchild_svg> = <svgelement_foreignObject>
<svgchild_svg> = <svgelement_radialGradient>
<svgchild_svg> = <svgelement_marker>
<svgchild_svg> = <svgelement_image>
<svgchild_svg> = <svgelement_animateMotion>
<svgchild_svg> = <svgelement_ellipse>
<svgchild_svg> = <svgelement_line>
<svgchild_svg> = <svgelement_mask>
<svgchild_svg> = <svgelement_clipPath>
<svgchild_svg> = <svgelement_font>
<svgchild_svg> = <svgelement_filter>
<svgchild_svg> = <svgelement_polyline>
<svgchild_svg> = <svgelement_stop>
<svgchild_svg> = <svgelement_a>
<svgchild_svg> = <svgelement_switch>
<svgchild_svg> = <svgelement_set>
<svgchild_svg> = <svgelement_font-face>
<svgchild_svg> = <svgelement_polygon>
<svgchild_svg> = <svgelement_tspan>
<svgchild_svg> = <svgelement_tref>
<svgchild_svg> = <svgelement_textPath>
<svgchild_svg> = <svgelement_metadata>
<svgchild_svg> = <svgelement_discard>
<svgchild_svg> = <svgelement_animate>
<svgchild_svg> = <svgelement_feConvolveMatrix>
<svgchild_svg> = <svgelement_animateTransform>
<svgchild_svg> = <svgelement_feDistantLight>
<svgchild_svg> = <svgelement_glyph>
<svgchild_svg> = <svgelement_cursor>
<svgchild_svg> = <svgelement_font-face-uri>
<svgchild_svg> = <svgelement_view>
<svgchild_svg> = <svgelement>
<svgattrs_svg> = <svgattrx_svg> <svgattrx_svg> <svgattrx_svg> <svgattrx_svg> <svgattrx_svg> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_svg> = <svgattr_width>
<svgattrx_svg> = <svgattr_version>
<svgattrx_svg> = <svgattr_baseProfile>
<svgattrx_svg> = <svgattr_xml_id>
<svgattrx_svg> = <svgattr_viewBox>
<svgattrx_svg> = <svgattr_height>
<svgattrx_svg> = <svgattr_onload>
<svgattrx_svg> = <svgattr_stroke>
<svgattrx_svg> = <svgattr_stroke-linecap>
<svgattrx_svg> = <svgattr_marker-end>
<svgattrx_svg> = <svgattr_marker-start>
<svgattrx_svg> = <svgattr_marker-mid>
<svgattrx_svg> = <svgattr_style>
<svgattrx_svg> = <svgattr_xml_space>
<svgattrx_svg> = <svgattr_fill>
<svgattrx_svg> = <svgattr_preserveAspectRatio>
<svgattrx_svg> = <svgattr_font-size>
<svgattrx_svg> = <svgattr_y>
<svgattrx_svg> = <svgattr_x>
<svgattrx_svg> = <svgattr_overflow>
<svgattrx_svg> = <svgattr_onclick>
<svgattrx_svg> = <svgattr_opacity>
<svgattrx_svg> = <svgattr_zoomAndPan>
<svgattrx_svg> = <svgattr_contentStyleType>
<svgattrx_svg> = <svgattr_enable-background>
<svgattrx_svg> = <svgattr_contentScriptType>
<svgattrx_svg> = <svgattr_clip-path>
<svgattrx_svg> = <svgattr_text-anchor>
<svgattrx_svg> = <svgattr_externalResourcesRequired>
<svgattrx_svg> = <svgattr_transform>
<svgattrx_svg> = <svgattr_filter>
<svgattrx_svg> = <svgattr_viewbox>
<svgelement> = <svgelement_a>
<svgelement> = <svgelement_altGlyph>
<svgelement> = <svgelement_altGlyphDef>
<svgelement> = <svgelement_altGlyphItem>
<svgelement> = <svgelement_animate>
<svgelement> = <svgelement_animateColor>
<svgelement> = <svgelement_animateMotion>
<svgelement> = <svgelement_animateTransform>
<svgelement> = <svgelement_circle>
<svgelement> = <svgelement_clipPath>
<svgelement> = <svgelement_color-profile>
<svgelement> = <svgelement_cursor>
<svgelement> = <svgelement_defs>
<svgelement> = <svgelement_desc>
<svgelement> = <svgelement_discard>
<svgelement> = <svgelement_ellipse>
<svgelement> = <svgelement_feBlend>
<svgelement> = <svgelement_feColorMatrix>
<svgelement> = <svgelement_feComponentTransfer>
<svgelement> = <svgelement_feComposite>
<svgelement> = <svgelement_feConvolveMatrix>
<svgelement> = <svgelement_feDiffuseLighting>
<svgelement> = <svgelement_feDisplacementMap>
<svgelement> = <svgelement_feDistantLight>
<svgelement> = <svgelement_feDropShadow>
<svgelement> = <svgelement_feFlood>
<svgelement> = <svgelement_feFuncA>
<svgelement> = <svgelement_feFuncB>
<svgelement> = <svgelement_feFuncG>
<svgelement> = <svgelement_feFuncR>
<svgelement> = <svgelement_feGaussianBlur>
<svgelement> = <svgelement_feImage>
<svgelement> = <svgelement_feMerge>
<svgelement> = <svgelement_feMergeNode>
<svgelement> = <svgelement_feMorphology>
<svgelement> = <svgelement_feOffset>
<svgelement> = <svgelement_fePointLight>
<svgelement> = <svgelement_feSpecularLighting>
<svgelement> = <svgelement_feSpotLight>
<svgelement> = <svgelement_feTile>
<svgelement> = <svgelement_feTurbulence>
<svgelement> = <svgelement_filter>
<svgelement> = <svgelement_font>
<svgelement> = <svgelement_font-face>
<svgelement> = <svgelement_font-face-format>
<svgelement> = <svgelement_font-face-name>
<svgelement> = <svgelement_font-face-src>
<svgelement> = <svgelement_font-face-uri>
<svgelement> = <svgelement_foreignObject>
<svgelement> = <svgelement_g>
<svgelement> = <svgelement_glyph>
<svgelement> = <svgelement_glyphRef>
<svgelement> = <svgelement_hatch>
<svgelement> = <svgelement_hatchpath>
<svgelement> = <svgelement_hkern>
<svgelement> = <svgelement_image>
<svgelement> = <svgelement_line>
<svgelement> = <svgelement_linearGradient>
<svgelement> = <svgelement_marker>
<svgelement> = <svgelement_mask>
<svgelement> = <svgelement_mesh>
<svgelement> = <svgelement_meshgradient>
<svgelement> = <svgelement_meshpatch>
<svgelement> = <svgelement_meshrow>
<svgelement> = <svgelement_metadata>
<svgelement> = <svgelement_missing-glyph>
<svgelement> = <svgelement_mpath>
<svgelement> = <svgelement_path>
<svgelement> = <svgelement_pattern>
<svgelement> = <svgelement_polygon>
<svgelement> = <svgelement_polyline>
<svgelement> = <svgelement_radialGradient>
<svgelement> = <svgelement_rect>
<svgelement> = <svgelement_set>
<svgelement> = <svgelement_solidcolor>
<svgelement> = <svgelement_stop>
<svgelement> = <svgelement_switch>
<svgelement> = <svgelement_symbol>
<svgelement> = <svgelement_text>
<svgelement> = <svgelement_textPath>
<svgelement> = <svgelement_title>
<svgelement> = <svgelement_tref>
<svgelement> = <svgelement_tspan>
<svgelement> = <svgelement_unknown>
<svgelement> = <svgelement_use>
<svgelement> = <svgelement_view>
<svgelement> = <svgelement_vkern>
<svgelement_a> = <lt>a <svgattrs_a> /<gt><newline>
<svgelement_a> = <lt>a <svgattrs_a><gt><newline><svgchildren_a><lt>/a<gt><newline>
<svgchildren_a nonrecursive=true p=0.5> = <svgchild_a>
<svgchildren_a> = <svgchild_a><svgchildren_a>
<svgchild_a> = <svgelement>
<svgattrs_a> = <svgattrx_a> <svgattrx_a> <svgattrx_a> <svgattrx_a> <svgattrx_a> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_a> = <svgattr_xlink_href>
<svgattrx_a> = <svgattr_href>
<svgattrx_a> = <svgattr_name>
<svgattrx_a> = <svgattr_font-size>
<svgattrx_a> = <svgattr_font-weight>
<svgattrx_a> = <svgattr_transform>
<svgattrx_a> = <svgattr_text-anchor>
<svgattrx_a> = <svgattr_xlink_show>
<svgattrx_a> = <svgattr_fill>
<svgattrx_a> = <svgattr_xlink_title>
<svgattrx_a> = <svgattr_target>
<svgattrx_a> = <svgattr_xlink_actuate>
<svgattrx_a> = <svgattr_xlink_type>
<svgattrx_a> = <svgattr_stroke>
<svgattrx_a> = <svgattr_font-family>
<svgelement_altGlyph> = <lt>altGlyph <svgattrs_altGlyph><gt><newline>A<lt>/altGlyph<gt><newline>
<svgattrs_altGlyph> = <svgattrx_altGlyph> <svgattrx_altGlyph> <svgattrx_altGlyph> <svgattrx_altGlyph> <svgattrx_altGlyph> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_altGlyph> = <svgattr_xlink_href>
<svgattrx_altGlyph> = <svgattr_glyphRef>
<svgattrx_altGlyph> = <svgattr_color-interpolation-filters>
<svgelement_altGlyphDef> = <lt>altGlyphDef <svgattrs_altGlyphDef><gt><newline><svgchildren_altGlyphDef><lt>/altGlyphDef<gt><newline>
<svgchildren_altGlyphDef nonrecursive=true p=0.5> = <svgchild_altGlyphDef>
<svgchildren_altGlyphDef> = <svgchild_altGlyphDef><svgchildren_altGlyphDef>
<svgchild_altGlyphDef> = <svgelement_glyphRef>
<svgchild_altGlyphDef> = <svgelement>
<svgattrs_altGlyphDef> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_altGlyphItem> = <lt>altGlyphItem <svgattrs_altGlyphItem> /<gt><newline>
<svgelement_altGlyphItem> = <lt>altGlyphItem <svgattrs_altGlyphItem><gt><newline><svgchildren_altGlyphItem><lt>/altGlyphItem<gt><newline>
<svgchildren_altGlyphItem nonrecursive=true p=0.5> = <svgchild_altGlyphItem>
<svgchildren_altGlyphItem> = <svgchild_altGlyphItem><svgchildren_altGlyphItem>
<svgchild_altGlyphItem> = <svgelement>
<svgattrs_altGlyphItem> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_animate> = <lt>animate <svgattrs_animate> /<gt><newline>
<svgelement_animate> = <lt>animate <animateattr> <svgattrs_animate> /<gt><newline>
<animateattr> = attributeName="visibility" from="<svgattr_visibility_value>" to="<svgattr_visibility_value>"
<animateattr> = attributeName="width" from="<svgattr_width_value>" to="<svgattr_width_value>"
<animateattr> = attributeName="x" from="<svgattr_x_value>" to="<svgattr_x_value>"
<animateattr> = attributeName="cy" from="<svgattr_cy_value>" to="<svgattr_cy_value>"
<animateattr> = attributeName="fill" from="<svgattr_fill_value>" to="<svgattr_fill_value>"
<animateattr> = attributeName="display" from="<svgattr_display_value>" to="<svgattr_display_value>"
<animateattr> = attributeName="stroke" from="<svgattr_stroke_value>" to="<svgattr_stroke_value>"
<animateattr> = attributeName="points" from="<svgattr_points_value>" to="<svgattr_points_value>"
<animateattr> = attributeName="rotate" from="<svgattr_rotate_value>" to="<svgattr_rotate_value>"
<animateattr> = attributeName="d" from="<svgattr_d_value>" to="<svgattr_d_value>"
<animateattr> = attributeName="gradientUnits" from="<svgattr_gradientUnits_value>" to="<svgattr_gradientUnits_value>"
<animateattr> = attributeName="y" from="<svgattr_y_value>" to="<svgattr_y_value>"
<animateattr> = attributeName="dx" from="<svgattr_dx_value>" to="<svgattr_dx_value>"
<animateattr> = attributeName="dy" from="<svgattr_dy_value>" to="<svgattr_dy_value>"
<animateattr> = attributeName="spreadMethod" from="<svgattr_spreadMethod_value>" to="<svgattr_spreadMethod_value>"
<animateattr> = attributeName="transform" from="<svgattr_transform_value>" to="<svgattr_transform_value>"
<animateattr> = attributeName="patternContentUnits" from="<svgattr_patternContentUnits_value>" to="<svgattr_patternContentUnits_value>"
<animateattr> = attributeName="fy" from="<svgattr_fy_value>" to="<svgattr_fy_value>"
<animateattr> = attributeName="fr" from="<svgattr_fr_value>" to="<svgattr_fr_value>"
<animateattr> = attributeName="viewBox" from="<svgattr_viewBox_value>" to="<svgattr_viewBox_value>"
<animateattr> = attributeName="height" from="<svgattr_height_value>" to="<svgattr_height_value>"
<animateattr> = attributeName="fx" from="<svgattr_fx_value>" to="<svgattr_fx_value>"
<animateattr> = attributeName="patternTransform" from="<svgattr_patternTransform_value>" to="<svgattr_patternTransform_value>"
<animateattr> = attributeName="cx" from="<svgattr_cx_value>" to="<svgattr_cx_value>"
<animateattr> = attributeName="patternUnits" from="<svgattr_patternUnits_value>" to="<svgattr_patternUnits_value>"
<animateattr> = attributeName="gradientTransform" from="<svgattr_gradientTransform_value>" to="<svgattr_gradientTransform_value>"
<animateattr> = attributeName="r" from="<svgattr_r_value>" to="<svgattr_r_value>"
<animateattr> = attributeName="preserveAspectRatio" from="<svgattr_preserveAspectRatio_value>" to="<svgattr_preserveAspectRatio_value>"
<animateattr> = attributeName="result" from="<svgattr_result_value>" to="<svgattr_result_value>"
<animateattr> = attributeName="preserveAlpha" from="<svgattr_preserveAlpha_value>" to="<svgattr_preserveAlpha_value>"
<animateattr> = attributeName="filterUnits" from="<svgattr_filterUnits_value>" to="<svgattr_filterUnits_value>"
<animateattr> = attributeName="opacity" from="<svgattr_opacity_value>" to="<svgattr_opacity_value>"
<animateattr> = attributeName="orient" from="<svgattr_orient_value>" to="<svgattr_orient_value>"
<animateattr> = attributeName="kernelUnitLength" from="<svgattr_kernelUnitLength_value>" to="<svgattr_kernelUnitLength_value>"
<animateattr> = attributeName="divisor" from="<svgattr_divisor_value>" to="<svgattr_divisor_value>"
<animateattr> = attributeName="kernelMatrix" from="<svgattr_kernelMatrix_value>" to="<svgattr_kernelMatrix_value>"
<animateattr> = attributeName="order" from="<svgattr_order_value>" to="<svgattr_order_value>"
<animateattr> = attributeName="targetX" from="<svgattr_targetX_value>" to="<svgattr_targetX_value>"
<animateattr> = attributeName="values" from="<svgattr_values_value>" to="<svgattr_values_value>"
<animateattr> = attributeName="stroke-width" from="<svgattr_stroke-width_value>" to="<svgattr_stroke-width_value>"
<animateattr> = attributeName="fill-rule" from="<svgattr_fill-rule_value>" to="<svgattr_fill-rule_value>"
<animateattr> = attributeName="text-anchor" from="<svgattr_text-anchor_value>" to="<svgattr_text-anchor_value>"
<animateattr> = attributeName="font-size" from="<svgattr_font-size_value>" to="<svgattr_font-size_value>"
<animateattr> = attributeName="font-family" from="<svgattr_font-family_value>" to="<svgattr_font-family_value>"
<animateattr> = attributeName="font-style" from="<svgattr_font-style_value>" to="<svgattr_font-style_value>"
<animateattr> = attributeName="font-weight" from="<svgattr_font-weight_value>" to="<svgattr_font-weight_value>"
<animateattr> = attributeName="xlink:href" from="<svgattr_xlink_href_value>" to="<svgattr_xlink_href_value>"
<animateattr> = attributeName="color" from="<svgattr_color_value>" to="<svgattr_color_value>"
<animateattr> = attributeName="rx" from="<svgattr_rx_value>" to="<svgattr_rx_value>"
<animateattr> = attributeName="ry" from="<svgattr_ry_value>" to="<svgattr_ry_value>"
<animateattr> = attributeName="stop-color" from="<svgattr_stop-color_value>" to="<svgattr_stop-color_value>"
<animateattr> = attributeName="stop-opacity" from="<svgattr_stop-opacity_value>" to="<svgattr_stop-opacity_value>"
<animateattr> = attributeName="limitingConeAngle" from="<svgattr_limitingConeAngle_value>" to="<svgattr_limitingConeAngle_value>"
<animateattr> = attributeName="fill-opacity" from="<svgattr_fill-opacity_value>" to="<svgattr_fill-opacity_value>"
<animateattr> = attributeName="stroke-linecap" from="<svgattr_stroke-linecap_value>" to="<svgattr_stroke-linecap_value>"
<animateattr> = attributeName="stroke-linejoin" from="<svgattr_stroke-linejoin_value>" to="<svgattr_stroke-linejoin_value>"
<animateattr> = attributeName="stroke-miterlimit" from="<svgattr_stroke-miterlimit_value>" to="<svgattr_stroke-miterlimit_value>"
<animateattr> = attributeName="stroke-dashoffset" from="<svgattr_stroke-dashoffset_value>" to="<svgattr_stroke-dashoffset_value>"
<animateattr> = attributeName="refY" from="<svgattr_refY_value>" to="<svgattr_refY_value>"
<svgattrs_animate> = <svgattrx_animate> <svgattrx_animate> <svgattrx_animate> <svgattrx_animate> <svgattrx_animate> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_animate> = <svgattr_to>
<svgattrx_animate> = <svgattr_attributeName>
<svgattrx_animate> = <svgattr_begin>
<svgattrx_animate> = <svgattr_from>
<svgattrx_animate> = <svgattr_dur>
<svgattrx_animate> = <svgattr_fill>
<svgattrx_animate> = <svgattr_by>
<svgattrx_animate> = <svgattr_accumulate>
<svgattrx_animate> = <svgattr_additive>
<svgattrx_animate> = <svgattr_repeatCount>
<svgattrx_animate> = <svgattr_values>
<svgattrx_animate> = <svgattr_attributeType>
<svgattrx_animate> = <svgattr_onrepeat>
<svgattrx_animate> = <svgattr_calcMode>
<svgattrx_animate> = <svgattr_end>
<svgattrx_animate> = <svgattr_onend>
<svgattrx_animate> = <svgattr_onbegin>
<svgattrx_animate> = <svgattr_repeatDur>
<svgattrx_animate> = <svgattr_xlink_href>
<svgattrx_animate> = <svgattr_keyTimes>
<svgattrx_animate> = <svgattr_keySplines>
<svgelement_animateColor> = <lt>animateColor <svgattrs_animateColor> /<gt><newline>
<svgattrs_animateColor> = <svgattrx_animateColor> <svgattrx_animateColor> <svgattrx_animateColor> <svgattrx_animateColor> <svgattrx_animateColor> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_animateColor> = <svgattr_begin>
<svgattrx_animateColor> = <svgattr_from>
<svgattrx_animateColor> = <svgattr_repeatCount>
<svgattrx_animateColor> = <svgattr_attributeName>
<svgattrx_animateColor> = <svgattr_to>
<svgattrx_animateColor> = <svgattr_accumulate>
<svgattrx_animateColor> = <svgattr_additive>
<svgattrx_animateColor> = <svgattr_dur>
<svgattrx_animateColor> = <svgattr_fill>
<svgattrx_animateColor> = <svgattr_values>
<svgattrx_animateColor> = <svgattr_by>
<svgelement_animateMotion> = <lt>animateMotion <svgattrs_animateMotion> /<gt><newline>
<svgattrs_animateMotion> = <svgattrx_animateMotion> <svgattrx_animateMotion> <svgattrx_animateMotion> <svgattrx_animateMotion> <svgattrx_animateMotion> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_animateMotion> = <svgattr_dur>
<svgattrx_animateMotion> = <svgattr_begin>
<svgattrx_animateMotion> = <svgattr_attributeName>
<svgattrx_animateMotion> = <svgattr_xlink_href>
<svgattrx_animateMotion> = <svgattr_values>
<svgattrx_animateMotion> = <svgattr_fill>
<svgattrx_animateMotion> = <svgattr_additive>
<svgattrx_animateMotion> = <svgattr_accumulate>
<svgattrx_animateMotion> = <svgattr_repeatCount>
<svgattrx_animateMotion> = <svgattr_to>
<svgattrx_animateMotion> = <svgattr_from>
<svgattrx_animateMotion> = <svgattr_by>
<svgattrx_animateMotion> = <svgattr_path>
<svgattrx_animateMotion> = <svgattr_repeatDur>
<svgattrx_animateMotion> = <svgattr_rotate>
<svgattrx_animateMotion> = <svgattr_keyPoints>
<svgattrx_animateMotion> = <svgattr_calcMode>
<svgattrx_animateMotion> = <svgattr_keyTimes>
<svgattrx_animateMotion> = <svgattr_keySplines>
<svgelement_animateTransform> = <lt>animateTransform <svgattrs_animateTransform> /<gt><newline>
<svgattrs_animateTransform> = <svgattrx_animateTransform> <svgattrx_animateTransform> <svgattrx_animateTransform> <svgattrx_animateTransform> <svgattrx_animateTransform> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_animateTransform> = <svgattr_to>
<svgattrx_animateTransform> = <svgattr_begin>
<svgattrx_animateTransform> = <svgattr_from>
<svgattrx_animateTransform> = <svgattr_type>
<svgattrx_animateTransform> = <svgattr_dur>
<svgattrx_animateTransform> = <svgattr_attributeName>
<svgattrx_animateTransform> = <svgattr_fill>
<svgattrx_animateTransform> = <svgattr_additive>
<svgattrx_animateTransform> = <svgattr_repeatCount>
<svgattrx_animateTransform> = <svgattr_accumulate>
<svgattrx_animateTransform> = <svgattr_by>
<svgattrx_animateTransform> = <svgattr_attributeType>
<svgattrx_animateTransform> = <svgattr_values>
<svgattrx_animateTransform> = <svgattr_xlink_href>
<svgattrx_animateTransform> = <svgattr_calcMode>
<svgelement_circle> = <lt>circle <svgattr_cx> <svgattr_cy> <svgattr_r> <svgattrs_circle> /<gt><newline>
<svgelement_circle> = <lt>circle <svgattr_cx> <svgattr_cy> <svgattr_r> <svgattrs_circle><gt><newline><svgchildren_circle><lt>/circle<gt><newline>
<svgchildren_circle nonrecursive=true p=0.5> = <svgchild_circle>
<svgchildren_circle> = <svgchild_circle><svgchildren_circle>
<svgchild_circle> = <svgelement_animate>
<svgchild_circle> = <svgelement_animateMotion>
<svgchild_circle> = <svgelement_set>
<svgchild_circle> = <svgelement_animateColor>
<svgchild_circle> = <svgelement_animateTransform>
<svgchild_circle> = <svgelement>
<svgattrs_circle> = <svgattrx_circle> <svgattrx_circle> <svgattrx_circle> <svgattrx_circle> <svgattrx_circle> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_circle> = <svgattr_stroke>
<svgattrx_circle> = <svgattr_fill>
<svgattrx_circle> = <svgattr_style>
<svgattrx_circle> = <svgattr_class>
<svgattrx_circle> = <svgattr_shape-rendering>
<svgattrx_circle> = <svgattr_opacity>
<svgattrx_circle> = <svgattr_onclick>
<svgattrx_circle> = <svgattr_onmousedown>
<svgattrx_circle> = <svgattr_fill-opacity>
<svgattrx_circle> = <svgattr_mask>
<svgattrx_circle> = <svgattr_stroke-width>
<svgattrx_circle> = <svgattr_stroke-dasharray>
<svgattrx_circle> = <svgattr_transform>
<svgattrx_circle> = <svgattr_clip-rule>
<svgattrx_circle> = <svgattr_clip-path>
<svgattrx_circle> = <svgattr_lang>
<svgattrx_circle> = <svgattr_display>
<svgattrx_circle> = <svgattr_font-style>
<svgattrx_circle> = <svgattr_filter>
<svgattrx_circle> = <svgattr_onmouseover>
<svgattrx_circle> = <svgattr_onmouseout>
<svgattrx_circle> = <svgattr_visibility>
<svgattrx_circle> = <svgattr_stroke-opacity>
<svgattrx_circle> = <svgattr_aria-label>
<svgattrx_circle> = <svgattr_role>
<svgelement_clipPath> = <lt>clipPath <svgattrs_clipPath> /<gt><newline>
<svgelement_clipPath> = <lt>clipPath <svgattrs_clipPath><gt><newline><svgchildren_clipPath><lt>/clipPath<gt><newline>
<svgchildren_clipPath nonrecursive=true p=0.5> = <svgchild_clipPath>
<svgchildren_clipPath> = <svgchild_clipPath><svgchildren_clipPath>
<svgchild_clipPath> = <svgelement>
<svgattrs_clipPath> = <svgattrx_clipPath> <svgattrx_clipPath> <svgattrx_clipPath> <svgattrx_clipPath> <svgattrx_clipPath> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_clipPath> = <svgattr_clipPathUnits>
<svgattrx_clipPath> = <svgattr_clip-path>
<svgattrx_clipPath> = <svgattr_transform>
<svgattrx_clipPath> = <svgattr_style>
<svgattrx_clipPath> = <svgattr_clip-rule>
<svgattrx_clipPath> = <svgattr_lighting-color>
<svgelement_color-profile> = <lt>color-profile <svgattrs_color-profile> /<gt><newline>
<svgattrs_color-profile> = <svgattrx_color-profile> <svgattrx_color-profile> <svgattrx_color-profile> <svgattrx_color-profile> <svgattrx_color-profile> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_color-profile> = <svgattr_xlink_href>
<svgattrx_color-profile> = <svgattr_name>
<svgelement_cursor> = <lt>cursor <svgattrs_cursor> /<gt><newline>
<svgattrs_cursor> = <svgattrx_cursor> <svgattrx_cursor> <svgattrx_cursor> <svgattrx_cursor> <svgattrx_cursor> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_cursor> = <svgattr_xlink_href>
<svgattrx_cursor> = <svgattr_x>
<svgattrx_cursor> = <svgattr_y>
<svgelement_defs> = <lt>defs <svgattrs_defs> /<gt><newline>
<svgelement_defs> = <lt>defs <svgattrs_defs><gt><newline><svgchildren_defs><lt>/defs<gt><newline>
<svgchildren_defs nonrecursive=true p=0.5> = <svgchild_defs>
<svgchildren_defs> = <svgchild_defs><svgchildren_defs>
<svgchild_defs> = <svgelement>
<svgattrs_defs> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_desc> = <lt>desc <svgattrs_desc><gt><htmlsafestring min=32 max=126><lt>/desc<gt><newline>
<svgattrs_desc> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_discard> = <lt>discard <svgattrs_discard> /<gt><newline>
<svgattrs_discard> = <svgattrx_discard> <svgattrx_discard> <svgattrx_discard> <svgattrx_discard> <svgattrx_discard> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_discard> = <svgattr_begin>
<svgattrx_discard> = <svgattr_xlink_href>
<svgelement_ellipse> = <lt>ellipse <svgattr_cx> <svgattr_cy> <svgattr_rx> <svgattr_ry> <svgattrs_ellipse> /<gt><newline>
<svgelement_ellipse> = <lt>ellipse <svgattr_cx> <svgattr_cy> <svgattr_rx> <svgattr_ry> <svgattrs_ellipse><gt><newline><svgchildren_ellipse><lt>/ellipse<gt><newline>
<svgchildren_ellipse nonrecursive=true p=0.5> = <svgchild_ellipse>
<svgchildren_ellipse> = <svgchild_ellipse><svgchildren_ellipse>
<svgchild_ellipse> = <svgelement_animate>
<svgchild_ellipse> = <svgelement>
<svgattrs_ellipse> = <svgattrx_ellipse> <svgattrx_ellipse> <svgattrx_ellipse> <svgattrx_ellipse> <svgattrx_ellipse> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_ellipse> = <svgattr_stroke>
<svgattrx_ellipse> = <svgattr_fill>
<svgattrx_ellipse> = <svgattr_transform>
<svgattrx_ellipse> = <svgattr_font-variant>
<svgattrx_ellipse> = <svgattr_stroke-width>
<svgattrx_ellipse> = <svgattr_aria-label>
<svgattrx_ellipse> = <svgattr_role>
<svgelement_feBlend> = <lt>feBlend <svgattrs_feBlend> /<gt><newline>
<svgattrs_feBlend> = <svgattrx_feBlend> <svgattrx_feBlend> <svgattrx_feBlend> <svgattrx_feBlend> <svgattrx_feBlend> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feBlend> = <svgattr_mode>
<svgattrx_feBlend> = <svgattr_in2>
<svgattrx_feBlend> = <svgattr_in>
<svgelement_feColorMatrix> = <lt>feColorMatrix <svgattrs_feColorMatrix> /<gt><newline>
<svgelement_feColorMatrix> = <lt>feColorMatrix <svgattrs_feColorMatrix><gt><newline><svgchildren_feColorMatrix><lt>/feColorMatrix<gt><newline>
<svgchildren_feColorMatrix nonrecursive=true p=0.5> = <svgchild_feColorMatrix>
<svgchildren_feColorMatrix> = <svgchild_feColorMatrix><svgchildren_feColorMatrix>
<svgchild_feColorMatrix> = <svgelement_animate>
<svgchild_feColorMatrix> = <svgelement>
<svgattrs_feColorMatrix> = <svgattrx_feColorMatrix> <svgattrx_feColorMatrix> <svgattrx_feColorMatrix> <svgattrx_feColorMatrix> <svgattrx_feColorMatrix> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feColorMatrix> = <svgattr_type>
<svgattrx_feColorMatrix> = <svgattr_values>
<svgattrx_feColorMatrix> = <svgattr_result>
<svgattrx_feColorMatrix> = <svgattr_in>
<svgattrx_feColorMatrix> = <svgattr_color-interpolation-filters>
<svgelement_feComponentTransfer> = <lt>feComponentTransfer <svgattrs_feComponentTransfer> /<gt><newline>
<svgelement_feComponentTransfer> = <lt>feComponentTransfer <svgattrs_feComponentTransfer><gt><newline><svgchildren_feComponentTransfer><lt>/feComponentTransfer<gt><newline>
<svgchildren_feComponentTransfer nonrecursive=true p=0.5> = <svgchild_feComponentTransfer>
<svgchildren_feComponentTransfer> = <svgchild_feComponentTransfer><svgchildren_feComponentTransfer>
<svgchild_feComponentTransfer> = <svgelement_feFuncR>
<svgchild_feComponentTransfer> = <svgelement_feFuncG>
<svgchild_feComponentTransfer> = <svgelement_feFuncB>
<svgchild_feComponentTransfer> = <svgelement_feFuncA>
<svgchild_feComponentTransfer> = <svgelement>
<svgattrs_feComponentTransfer> = <svgattrx_feComponentTransfer> <svgattrx_feComponentTransfer> <svgattrx_feComponentTransfer> <svgattrx_feComponentTransfer> <svgattrx_feComponentTransfer> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feComponentTransfer> = <svgattr_y>
<svgattrx_feComponentTransfer> = <svgattr_x>
<svgattrx_feComponentTransfer> = <svgattr_width>
<svgattrx_feComponentTransfer> = <svgattr_height>
<svgattrx_feComponentTransfer> = <svgattr_result>
<svgattrx_feComponentTransfer> = <svgattr_in>
<svgelement_feComposite> = <lt>feComposite <svgattrs_feComposite> /<gt><newline>
<svgattrs_feComposite> = <svgattrx_feComposite> <svgattrx_feComposite> <svgattrx_feComposite> <svgattrx_feComposite> <svgattrx_feComposite> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feComposite> = <svgattr_in2>
<svgattrx_feComposite> = <svgattr_in>
<svgattrx_feComposite> = <svgattr_operator>
<svgattrx_feComposite> = <svgattr_width>
<svgattrx_feComposite> = <svgattr_result>
<svgattrx_feComposite> = <svgattr_y>
<svgattrx_feComposite> = <svgattr_x>
<svgattrx_feComposite> = <svgattr_height>
<svgattrx_feComposite> = <svgattr_k4>
<svgattrx_feComposite> = <svgattr_k1>
<svgattrx_feComposite> = <svgattr_k3>
<svgattrx_feComposite> = <svgattr_k2>
<svgelement_feConvolveMatrix> = <lt>feConvolveMatrix <svgattrs_feConvolveMatrix> /<gt><newline>
<svgattrs_feConvolveMatrix> = <svgattrx_feConvolveMatrix> <svgattrx_feConvolveMatrix> <svgattrx_feConvolveMatrix> <svgattrx_feConvolveMatrix> <svgattrx_feConvolveMatrix> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feConvolveMatrix> = <svgattr_kernelMatrix>
<svgattrx_feConvolveMatrix> = <svgattr_preserveAlpha>
<svgattrx_feConvolveMatrix> = <svgattr_targetX>
<svgattrx_feConvolveMatrix> = <svgattr_order>
<svgattrx_feConvolveMatrix> = <svgattr_divisor>
<svgattrx_feConvolveMatrix> = <svgattr_kernelUnitLength>
<svgattrx_feConvolveMatrix> = <svgattr_targetY>
<svgattrx_feConvolveMatrix> = <svgattr_edgeMode>
<svgelement_feDiffuseLighting> = <lt>feDiffuseLighting <svgattrs_feDiffuseLighting> /<gt><newline>
<svgelement_feDiffuseLighting> = <lt>feDiffuseLighting <svgattrs_feDiffuseLighting><gt><newline><svgchildren_feDiffuseLighting><lt>/feDiffuseLighting<gt><newline>
<svgchildren_feDiffuseLighting nonrecursive=true p=0.5> = <svgchild_feDiffuseLighting>
<svgchildren_feDiffuseLighting> = <svgchild_feDiffuseLighting><svgchildren_feDiffuseLighting>
<svgchild_feDiffuseLighting> = <svgelement_feDistantLight>
<svgchild_feDiffuseLighting> = <svgelement_fePointLight>
<svgchild_feDiffuseLighting> = <svgelement_feSpotLight>
<svgchild_feDiffuseLighting> = <svgelement>
<svgattrs_feDiffuseLighting> = <svgattrx_feDiffuseLighting> <svgattrx_feDiffuseLighting> <svgattrx_feDiffuseLighting> <svgattrx_feDiffuseLighting> <svgattrx_feDiffuseLighting> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feDiffuseLighting> = <svgattr_lighting-color>
<svgattrx_feDiffuseLighting> = <svgattr_result>
<svgattrx_feDiffuseLighting> = <svgattr_in>
<svgattrx_feDiffuseLighting> = <svgattr_color>
<svgattrx_feDiffuseLighting> = <svgattr_surfaceScale>
<svgattrx_feDiffuseLighting> = <svgattr_diffuseConstant>
<svgelement_feDisplacementMap> = <lt>feDisplacementMap <svgattrs_feDisplacementMap> /<gt><newline>
<svgattrs_feDisplacementMap> = <svgattrx_feDisplacementMap> <svgattrx_feDisplacementMap> <svgattrx_feDisplacementMap> <svgattrx_feDisplacementMap> <svgattrx_feDisplacementMap> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feDisplacementMap> = <svgattr_in2>
<svgattrx_feDisplacementMap> = <svgattr_scale>
<svgattrx_feDisplacementMap> = <svgattr_yChannelSelector>
<svgattrx_feDisplacementMap> = <svgattr_xChannelSelector>
<svgattrx_feDisplacementMap> = <svgattr_in>
<svgattrx_feDisplacementMap> = <svgattr_height>
<svgattrx_feDisplacementMap> = <svgattr_width>
<svgattrx_feDisplacementMap> = <svgattr_y>
<svgattrx_feDisplacementMap> = <svgattr_x>
<svgattrx_feDisplacementMap> = <svgattr_color-interpolation-filters>
<svgelement_feDistantLight> = <lt>feDistantLight <svgattrs_feDistantLight> /<gt><newline>
<svgattrs_feDistantLight> = <svgattrx_feDistantLight> <svgattrx_feDistantLight> <svgattrx_feDistantLight> <svgattrx_feDistantLight> <svgattrx_feDistantLight> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feDistantLight> = <svgattr_elevation>
<svgattrx_feDistantLight> = <svgattr_azimuth>
<svgelement_feDropShadow> = <lt>feDropShadow <svgattrs_feDropShadow> /<gt><newline>
<svgattrs_feDropShadow> = <svgattrx_feDropShadow> <svgattrx_feDropShadow> <svgattrx_feDropShadow> <svgattrx_feDropShadow> <svgattrx_feDropShadow> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feDropShadow> = <svgattr_in>
<svgattrx_feDropShadow> = <svgattr_flood-color>
<svgattrx_feDropShadow> = <svgattr_height>
<svgattrx_feDropShadow> = <svgattr_width>
<svgattrx_feDropShadow> = <svgattr_result>
<svgattrx_feDropShadow> = <svgattr_dx>
<svgattrx_feDropShadow> = <svgattr_dy>
<svgattrx_feDropShadow> = <svgattr_y>
<svgattrx_feDropShadow> = <svgattr_x>
<svgattrx_feDropShadow> = <svgattr_stdDeviation>
<svgattrx_feDropShadow> = <svgattr_flood-opacity>
<svgelement_feFlood> = <lt>feFlood <svgattrs_feFlood> /<gt><newline>
<svgattrs_feFlood> = <svgattrx_feFlood> <svgattrx_feFlood> <svgattrx_feFlood> <svgattrx_feFlood> <svgattrx_feFlood> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feFlood> = <svgattr_flood-color>
<svgattrx_feFlood> = <svgattr_flood-opacity>
<svgattrx_feFlood> = <svgattr_y>
<svgattrx_feFlood> = <svgattr_x>
<svgattrx_feFlood> = <svgattr_width>
<svgattrx_feFlood> = <svgattr_height>
<svgattrx_feFlood> = <svgattr_result>
<svgattrx_feFlood> = <svgattr_color-interpolation-filters>
<svgattrx_feFlood> = <svgattr_color>
<svgattrx_feFlood> = <svgattr_in>
<svgattrx_feFlood> = <svgattr_style>
<svgelement_feFuncA> = <lt>feFuncA <svgattrs_feFuncA> /<gt><newline>
<svgattrs_feFuncA> = <svgattrx_feFuncA> <svgattrx_feFuncA> <svgattrx_feFuncA> <svgattrx_feFuncA> <svgattrx_feFuncA> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feFuncA> = <svgattr_slope>
<svgattrx_feFuncA> = <svgattr_intercept>
<svgattrx_feFuncA> = <svgattr_type>
<svgelement_feFuncB> = <lt>feFuncB <svgattrs_feFuncB> /<gt><newline>
<svgattrs_feFuncB> = <svgattrx_feFuncB> <svgattrx_feFuncB> <svgattrx_feFuncB> <svgattrx_feFuncB> <svgattrx_feFuncB> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feFuncB> = <svgattr_slope>
<svgattrx_feFuncB> = <svgattr_intercept>
<svgattrx_feFuncB> = <svgattr_type>
<svgattrx_feFuncB> = <svgattr_tableValues>
<svgattrx_feFuncB> = <svgattr_exponent>
<svgattrx_feFuncB> = <svgattr_amplitude>
<svgattrx_feFuncB> = <svgattr_offset>
<svgelement_feFuncG> = <lt>feFuncG <svgattrs_feFuncG> /<gt><newline>
<svgattrs_feFuncG> = <svgattrx_feFuncG> <svgattrx_feFuncG> <svgattrx_feFuncG> <svgattrx_feFuncG> <svgattrx_feFuncG> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feFuncG> = <svgattr_slope>
<svgattrx_feFuncG> = <svgattr_intercept>
<svgattrx_feFuncG> = <svgattr_type>
<svgattrx_feFuncG> = <svgattr_tableValues>
<svgattrx_feFuncG> = <svgattr_exponent>
<svgattrx_feFuncG> = <svgattr_amplitude>
<svgattrx_feFuncG> = <svgattr_offset>
<svgelement_feFuncR> = <lt>feFuncR <svgattrs_feFuncR> /<gt><newline>
<svgattrs_feFuncR> = <svgattrx_feFuncR> <svgattrx_feFuncR> <svgattrx_feFuncR> <svgattrx_feFuncR> <svgattrx_feFuncR> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feFuncR> = <svgattr_type>
<svgattrx_feFuncR> = <svgattr_slope>
<svgattrx_feFuncR> = <svgattr_intercept>
<svgattrx_feFuncR> = <svgattr_tableValues>
<svgattrx_feFuncR> = <svgattr_exponent>
<svgattrx_feFuncR> = <svgattr_amplitude>
<svgattrx_feFuncR> = <svgattr_offset>
<svgelement_feGaussianBlur> = <lt>feGaussianBlur <svgattrs_feGaussianBlur> /<gt><newline>
<svgattrs_feGaussianBlur> = <svgattrx_feGaussianBlur> <svgattrx_feGaussianBlur> <svgattrx_feGaussianBlur> <svgattrx_feGaussianBlur> <svgattrx_feGaussianBlur> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feGaussianBlur> = <svgattr_stdDeviation>
<svgattrx_feGaussianBlur> = <svgattr_in>
<svgattrx_feGaussianBlur> = <svgattr_result>
<svgattrx_feGaussianBlur> = <svgattr_height>
<svgattrx_feGaussianBlur> = <svgattr_width>
<svgattrx_feGaussianBlur> = <svgattr_dx>
<svgattrx_feGaussianBlur> = <svgattr_dy>
<svgattrx_feGaussianBlur> = <svgattr_y>
<svgattrx_feGaussianBlur> = <svgattr_x>
<svgelement_feImage> = <lt>feImage <svgattrs_feImage> /<gt><newline>
<svgattrs_feImage> = <svgattrx_feImage> <svgattrx_feImage> <svgattrx_feImage> <svgattrx_feImage> <svgattrx_feImage> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feImage> = <svgattr_xlink_href>
<svgattrx_feImage> = <svgattr_width>
<svgattrx_feImage> = <svgattr_result>
<svgattrx_feImage> = <svgattr_height>
<svgattrx_feImage> = <svgattr_y>
<svgattrx_feImage> = <svgattr_x>
<svgattrx_feImage> = <svgattr_preserveAspectRatio>
<svgelement_feMerge> = <lt>feMerge <svgattrs_feMerge> /<gt><newline>
<svgelement_feMerge> = <lt>feMerge <svgattrs_feMerge><gt><newline><svgchildren_feMerge><lt>/feMerge<gt><newline>
<svgchildren_feMerge nonrecursive=true p=0.5> = <svgchild_feMerge>
<svgchildren_feMerge> = <svgchild_feMerge><svgchildren_feMerge>
<svgchild_feMerge> = <svgelement_feMergeNode>
<svgchild_feMerge> = <svgelement>
<svgattrs_feMerge> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_feMergeNode> = <lt>feMergeNode <svgattrs_feMergeNode> /<gt><newline>
<svgelement_feMergeNode> = <lt>feMergeNode <svgattrs_feMergeNode><gt><newline><svgchildren_feMergeNode><lt>/feMergeNode<gt><newline>
<svgchildren_feMergeNode nonrecursive=true p=0.5> = <svgchild_feMergeNode>
<svgchildren_feMergeNode> = <svgchild_feMergeNode><svgchildren_feMergeNode>
<svgchild_feMergeNode> = <svgelement>
<svgattrs_feMergeNode> = <svgattr_in> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_feMorphology> = <lt>feMorphology <svgattrs_feMorphology> /<gt><newline>
<svgattrs_feMorphology> = <svgattrx_feMorphology> <svgattrx_feMorphology> <svgattrx_feMorphology> <svgattrx_feMorphology> <svgattrx_feMorphology> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feMorphology> = <svgattr_operator>
<svgattrx_feMorphology> = <svgattr_radius>
<svgelement_feOffset> = <lt>feOffset <svgattrs_feOffset> /<gt><newline>
<svgattrs_feOffset> = <svgattrx_feOffset> <svgattrx_feOffset> <svgattrx_feOffset> <svgattrx_feOffset> <svgattrx_feOffset> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feOffset> = <svgattr_in>
<svgattrx_feOffset> = <svgattr_result>
<svgattrx_feOffset> = <svgattr_dx>
<svgattrx_feOffset> = <svgattr_dy>
<svgattrx_feOffset> = <svgattr_y>
<svgattrx_feOffset> = <svgattr_x>
<svgattrx_feOffset> = <svgattr_width>
<svgattrx_feOffset> = <svgattr_height>
<svgelement_fePointLight> = <lt>fePointLight <svgattrs_fePointLight> /<gt><newline>
<svgattrs_fePointLight> = <svgattrx_fePointLight> <svgattrx_fePointLight> <svgattrx_fePointLight> <svgattrx_fePointLight> <svgattrx_fePointLight> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_fePointLight> = <svgattr_y>
<svgattrx_fePointLight> = <svgattr_x>
<svgattrx_fePointLight> = <svgattr_z>
<svgelement_feSpecularLighting> = <lt>feSpecularLighting <svgattrs_feSpecularLighting> /<gt><newline>
<svgelement_feSpecularLighting> = <lt>feSpecularLighting <svgattrs_feSpecularLighting><gt><newline><svgchildren_feSpecularLighting><lt>/feSpecularLighting<gt><newline>
<svgchildren_feSpecularLighting nonrecursive=true p=0.5> = <svgchild_feSpecularLighting>
<svgchildren_feSpecularLighting> = <svgchild_feSpecularLighting><svgchildren_feSpecularLighting>
<svgchild_feSpecularLighting> = <svgelement_feDistantLight>
<svgchild_feSpecularLighting> = <svgelement_fePointLight>
<svgchild_feSpecularLighting> = <svgelement>
<svgattrs_feSpecularLighting> = <svgattrx_feSpecularLighting> <svgattrx_feSpecularLighting> <svgattrx_feSpecularLighting> <svgattrx_feSpecularLighting> <svgattrx_feSpecularLighting> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feSpecularLighting> = <svgattr_lighting-color>
<svgattrx_feSpecularLighting> = <svgattr_specularExponent>
<svgattrx_feSpecularLighting> = <svgattr_specularConstant>
<svgattrx_feSpecularLighting> = <svgattr_surfaceScale>
<svgattrx_feSpecularLighting> = <svgattr_result>
<svgattrx_feSpecularLighting> = <svgattr_in>
<svgelement_feSpotLight> = <lt>feSpotLight <svgattrs_feSpotLight> /<gt><newline>
<svgelement_feSpotLight> = <lt>feSpotLight <svgattrs_feSpotLight><gt><newline><svgchildren_feSpotLight><lt>/feSpotLight<gt><newline>
<svgchildren_feSpotLight nonrecursive=true p=0.5> = <svgchild_feSpotLight>
<svgchildren_feSpotLight> = <svgchild_feSpotLight><svgchildren_feSpotLight>
<svgchild_feSpotLight> = <svgelement_animate>
<svgchild_feSpotLight> = <svgelement>
<svgattrs_feSpotLight> = <svgattrx_feSpotLight> <svgattrx_feSpotLight> <svgattrx_feSpotLight> <svgattrx_feSpotLight> <svgattrx_feSpotLight> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feSpotLight> = <svgattr_z>
<svgattrx_feSpotLight> = <svgattr_specularExponent>
<svgattrx_feSpotLight> = <svgattr_x>
<svgattrx_feSpotLight> = <svgattr_y>
<svgattrx_feSpotLight> = <svgattr_pointsAtZ>
<svgattrx_feSpotLight> = <svgattr_pointsAtY>
<svgattrx_feSpotLight> = <svgattr_pointsAtX>
<svgattrx_feSpotLight> = <svgattr_limitingConeAngle>
<svgelement_feTile> = <lt>feTile <svgattrs_feTile> /<gt><newline>
<svgattrs_feTile> = <svgattrx_feTile> <svgattrx_feTile> <svgattrx_feTile> <svgattrx_feTile> <svgattrx_feTile> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feTile> = <svgattr_in>
<svgattrx_feTile> = <svgattr_result>
<svgelement_feTurbulence> = <lt>feTurbulence <svgattrs_feTurbulence> /<gt><newline>
<svgattrs_feTurbulence> = <svgattrx_feTurbulence> <svgattrx_feTurbulence> <svgattrx_feTurbulence> <svgattrx_feTurbulence> <svgattrx_feTurbulence> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_feTurbulence> = <svgattr_numOctaves>
<svgattrx_feTurbulence> = <svgattr_baseFrequency>
<svgattrx_feTurbulence> = <svgattr_seed>
<svgattrx_feTurbulence> = <svgattr_type>
<svgattrx_feTurbulence> = <svgattr_width>
<svgattrx_feTurbulence> = <svgattr_y>
<svgattrx_feTurbulence> = <svgattr_x>
<svgattrx_feTurbulence> = <svgattr_stitchTiles>
<svgattrx_feTurbulence> = <svgattr_height>
<svgelement_filter> = <lt>filter <svgattrs_filter> /<gt><newline>
<svgelement_filter> = <lt>filter <svgattrs_filter><gt><newline><svgchildren_filter><lt>/filter<gt><newline>
<svgchildren_filter nonrecursive=true p=0.5> = <svgchild_filter>
<svgchildren_filter> = <svgchild_filter><svgchildren_filter>
<svgchild_filter> = <svgelement_feMerge>
<svgchild_filter> = <svgelement_feOffset>
<svgchild_filter> = <svgelement_feConvolveMatrix>
<svgchild_filter> = <svgelement_feGaussianBlur>
<svgchild_filter> = <svgelement_feColorMatrix>
<svgchild_filter> = <svgelement_feComponentTransfer>
<svgchild_filter> = <svgelement_feImage>
<svgchild_filter> = <svgelement_a>
<svgchild_filter> = <svgelement_feDisplacementMap>
<svgchild_filter> = <svgelement_feComposite>
<svgchild_filter> = <svgelement_rect>
<svgchild_filter> = <svgelement_feFlood>
<svgchild_filter> = <svgelement_feTurbulence>
<svgchild_filter> = <svgelement_feDropShadow>
<svgchild_filter> = <svgelement_feSpecularLighting>
<svgchild_filter> = <svgelement_feTile>
<svgchild_filter> = <svgelement_feDiffuseLighting>
<svgchild_filter> = <svgelement_feMorphology>
<svgchild_filter> = <svgelement_feBlend>
<svgchild_filter> = <svgelement_set>
<svgchild_filter> = <svgelement>
<svgattrs_filter> = <svgattrx_filter> <svgattrx_filter> <svgattrx_filter> <svgattrx_filter> <svgattrx_filter> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_filter> = <svgattr_width>
<svgattrx_filter> = <svgattr_y>
<svgattrx_filter> = <svgattr_x>
<svgattrx_filter> = <svgattr_filterUnits>
<svgattrx_filter> = <svgattr_height>
<svgattrx_filter> = <svgattr_filterRes>
<svgattrx_filter> = <svgattr_filter>
<svgattrx_filter> = <svgattr_xlink_href>
<svgattrx_filter> = <svgattr_primitiveUnits>
<svgattrx_filter> = <svgattr_color-interpolation-filters>
<svgattrx_filter> = <svgattr_filterPrimitiveUnits>
<svgelement_font> = <lt>font <svgattrs_font> /<gt><newline>
<svgelement_font> = <lt>font <svgattrs_font><gt><newline><svgchildren_font><lt>/font<gt><newline>
<svgchildren_font nonrecursive=true p=0.5> = <svgchild_font>
<svgchildren_font> = <svgchild_font><svgchildren_font>
<svgchild_font> = <svgelement_font-face>
<svgchild_font> = <svgelement_missing-glyph>
<svgchild_font> = <svgelement_glyph>
<svgchild_font> = <svgelement_hkern>
<svgchild_font> = <svgelement>
<svgattrs_font> = <svgattrx_font> <svgattrx_font> <svgattrx_font> <svgattrx_font> <svgattrx_font> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_font> = <svgattr_horiz-adv-x>
<svgattrx_font> = <svgattr_horiz-origin-x>
<svgattrx_font> = <svgattr_vert-origin-y>
<svgelement_font-face> = <lt>font-face <svgattrs_font-face> /<gt><newline>
<svgelement_font-face> = <lt>font-face <svgattrs_font-face><gt><newline><svgchildren_font-face><lt>/font-face<gt><newline>
<svgchildren_font-face nonrecursive=true p=0.5> = <svgchild_font-face>
<svgchildren_font-face> = <svgchild_font-face><svgchildren_font-face>
<svgchild_font-face> = <svgelement_font-face-src>
<svgchild_font-face> = <svgelement>
<svgattrs_font-face> = <svgattrx_font-face> <svgattrx_font-face> <svgattrx_font-face> <svgattrx_font-face> <svgattrx_font-face> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_font-face> = <svgattr_font-family>
<svgattrx_font-face> = <svgattr_mathematical>
<svgattrx_font-face> = <svgattr_ideographic>
<svgattrx_font-face> = <svgattr_descent>
<svgattrx_font-face> = <svgattr_cap-height>
<svgattrx_font-face> = <svgattr_alphabetic>
<svgattrx_font-face> = <svgattr_units-per-em>
<svgattrx_font-face> = <svgattr_hanging>
<svgattrx_font-face> = <svgattr_x-height>
<svgattrx_font-face> = <svgattr_font-weight>
<svgattrx_font-face> = <svgattr_ascent>
<svgattrx_font-face> = <svgattr_font-style>
<svgattrx_font-face> = <svgattr_panose-1>
<svgattrx_font-face> = <svgattr_unicode-range>
<svgattrx_font-face> = <svgattr_underline-position>
<svgattrx_font-face> = <svgattr_font-stretch>
<svgattrx_font-face> = <svgattr_bbox>
<svgattrx_font-face> = <svgattr_underline-thickness>
<svgelement_font-face-format> = <lt>font-face-format <svgattrs_font-face-format> /<gt><newline>
<svgelement_font-face-format> = <lt>font-face-format <svgattrs_font-face-format><gt><newline><svgchildren_font-face-format><lt>/font-face-format<gt><newline>
<svgchildren_font-face-format nonrecursive=true p=0.5> = <svgchild_font-face-format>
<svgchildren_font-face-format> = <svgchild_font-face-format><svgchildren_font-face-format>
<svgchild_font-face-format> = <svgelement>
<svgattrs_font-face-format> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_font-face-name> = <lt>font-face-name <svgattrs_font-face-name> /<gt><newline>
<svgelement_font-face-name> = <lt>font-face-name <svgattrs_font-face-name><gt><newline><svgchildren_font-face-name><lt>/font-face-name<gt><newline>
<svgchildren_font-face-name nonrecursive=true p=0.5> = <svgchild_font-face-name>
<svgchildren_font-face-name> = <svgchild_font-face-name><svgchildren_font-face-name>
<svgchild_font-face-name> = <svgelement>
<svgattrs_font-face-name> = <svgattrx_font-face-name> <svgattrx_font-face-name> <svgattrx_font-face-name> <svgattrx_font-face-name> <svgattrx_font-face-name> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_font-face-name> = <svgattr_name>
<svgelement_font-face-src> = <lt>font-face-src <svgattrs_font-face-src> /<gt><newline>
<svgelement_font-face-src> = <lt>font-face-src <svgattrs_font-face-src><gt><newline><svgchildren_font-face-src><lt>/font-face-src<gt><newline>
<svgchildren_font-face-src nonrecursive=true p=0.5> = <svgchild_font-face-src>
<svgchildren_font-face-src> = <svgchild_font-face-src><svgchildren_font-face-src>
<svgchild_font-face-src> = <svgelement_font-face-name>
<svgchild_font-face-src> = <svgelement_foreignObject>
<svgchild_font-face-src> = <svgelement_font-face-uri>
<svgchild_font-face-src> = <svgelement>
<svgattrs_font-face-src> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_font-face-uri> = <lt>font-face-uri <svgattrs_font-face-uri> /<gt><newline>
<svgelement_font-face-uri> = <lt>font-face-uri <svgattrs_font-face-uri><gt><newline><svgchildren_font-face-uri><lt>/font-face-uri<gt><newline>
<svgchildren_font-face-uri nonrecursive=true p=0.5> = <svgchild_font-face-uri>
<svgchildren_font-face-uri> = <svgchild_font-face-uri><svgchildren_font-face-uri>
<svgchild_font-face-uri> = <svgelement>
<svgattrs_font-face-uri> = <svgattrx_font-face-uri> <svgattrx_font-face-uri> <svgattrx_font-face-uri> <svgattrx_font-face-uri> <svgattrx_font-face-uri> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_font-face-uri> = <svgattr_xlink_href>
<svgelement_foreignObject> = <lt>foreignObject <svgattrs_foreignObject><gt><lt>body xmlns="http://www.w3.org/1999/xhtml"<gt><newline><innerelements><lt>/body<gt><lt>/foreignObject<gt><newline>
<svgattrs_foreignObject> = <svgattrx_foreignObject> <svgattrx_foreignObject> <svgattrx_foreignObject> <svgattrx_foreignObject> <svgattrx_foreignObject> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_foreignObject> = <svgattr_width>
<svgattrx_foreignObject> = <svgattr_y>
<svgattrx_foreignObject> = <svgattr_x>
<svgattrx_foreignObject> = <svgattr_transform>
<svgattrx_foreignObject> = <svgattr_height>
<svgattrx_foreignObject> = <svgattr_display>
<svgattrx_foreignObject> = <svgattr_style>
<svgelement_g> = <lt>g <svgattrs_g> /<gt><newline>
<svgelement_g> = <lt>g <svgattrs_g><gt><newline><svgchildren_g><lt>/g<gt><newline>
<svgchildren_g nonrecursive=true p=0.5> = <svgchild_g>
<svgchildren_g> = <svgchild_g><svgchildren_g>
<svgchild_g> = <svgelement>
<svgattrs_g> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_glyph> = <lt>glyph <svgattrs_glyph> /<gt><newline>
<svgelement_glyph> = <lt>glyph <svgattrs_glyph><gt><newline><svgchildren_glyph><lt>/glyph<gt><newline>
<svgchildren_glyph nonrecursive=true p=0.5> = <svgchild_glyph>
<svgchildren_glyph> = <svgchild_glyph><svgchildren_glyph>
<svgchild_glyph> = <svgelement_g>
<svgchild_glyph> = <svgelement_path>
<svgchild_glyph> = <svgelement>
<svgattrs_glyph> = <svgattrx_glyph> <svgattrx_glyph> <svgattrx_glyph> <svgattrx_glyph> <svgattrx_glyph> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_glyph> = <svgattr_d>
<svgattrx_glyph> = <svgattr_unicode>
<svgattrx_glyph> = <svgattr_horiz-adv-x>
<svgattrx_glyph> = <svgattr_glyph-name>
<svgattrx_glyph> = <svgattr_arabic-form>
<svgelement_glyphRef> = <lt>glyphRef <svgattrs_glyphRef> /<gt><newline>
<svgattrs_glyphRef> = <svgattr_xlink_href> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_hatch> = <lt>hatch <svgattrs_hatch> /<gt><newline>
<svgelement_hatch> = <lt>hatch <svgattrs_hatch><gt><newline><svgchildren_hatch><lt>/hatch<gt><newline>
<svgchildren_hatch nonrecursive=true p=0.5> = <svgchild_hatch>
<svgchildren_hatch> = <svgchild_hatch><svgchildren_hatch>
<svgchild_hatch> = <svgelement>
<svgattrs_hatch> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_hatchpath> = <lt>hatchpath <svgattrs_hatchpath> /<gt><newline>
<svgelement_hatchpath> = <lt>hatchpath <svgattrs_hatchpath><gt><newline><svgchildren_hatchpath><lt>/hatchpath<gt><newline>
<svgchildren_hatchpath nonrecursive=true p=0.5> = <svgchild_hatchpath>
<svgchildren_hatchpath> = <svgchild_hatchpath><svgchildren_hatchpath>
<svgchild_hatchpath> = <svgelement>
<svgattrs_hatchpath> = <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgelement_hkern> = <lt>hkern <svgattrs_hkern> /<gt><newline>
<svgattrs_hkern> = <svgattrx_hkern> <svgattrx_hkern> <svgattrx_hkern> <svgattrx_hkern> <svgattrx_hkern> <svgattr> <svgattr> <svgattr> <svgattr> <svgattr>
<svgattrx_hkern> = <svgattr_k>
<svgattrx_hkern> = <svgattr_g2>
<svgattrx_hkern> = <svgattr_g1>
<svgelement_image> = <lt>image <svgattrs_image> /<gt><newline>
<svgelement_image> = <lt>image <svgattrs_image><gt><newline><svgchildren_image><lt>/image<gt><newline>