-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
1089 lines (1084 loc) · 68.1 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Sri Yantra Meditation</title>
<meta name="description" content="Sri Yantra Meditation">
<meta name="author" content="Luke Stokes">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css?v=1.0">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="menu" class="container">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="#" id="explore_sri_yantra">1) Explore the Sri Yantra</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="learn_sri_yantra">2) Learn the Sri Yantra</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="begin_meditation">3) Begin Meditation</a>
</li>
</ul>
</div>
</nav>
<div class="row mt-5 justify-content-center">
<div class="col-md-8">
<p>Welcome to the Sri Yantra educational and meditation tool.</p>
<p>Use this tool to learn about the different attributes of the Sri Yantra and as a mechanism for focusing on it. The Sri Yantra represents the union of Masculine and Feminine Divine while including all aspects of human experience.</p>
<p>To go into greater detail about the Sri Yantra, see <a href="https://www.youtube.com/watch?v=gTcWL00NUrs">this video</a> or visit some of the pages used to gather information for this tool <a href="https://www.gaia.com/article/what-is-the-power-of-shri-yantra">here</a>, <a href="http://mythologian.net/sri-yantra-sri-chakra-symbol-shree-yantra-meaning/">here</a>, <a href="http://karatmaster.com/levels-sri-yantra/">here</a>, <a href="https://creationcenter.org/unlocking-the-sri-yantra-through-the-secrets-of-sacred-geometry/">here</a>, and <a href="https://www.phidle.com/blogs/sacred-geometry/discover-the-power-and-beauty-of-the-sri-yantra">here</a>.</p>
<p>For best results, enter full screen mode from the view menu.</p>
<p>Use the menu items above to get started.</p>
<p>First, explore the Sri Yantra to learn about the various attributes.</p>
<p>Next, starting from the outside and working inwards, learn the Sri Yantra by clicking on the correct attribute.</p>
<p>Finally, click begin meditation for a five minute meditation which you can do as often as you like.</p>
</div>
</div>
</div>
<div id="message_wrapper" class="container">
<p>Your meditation is about to begin.</p>
<p>We recommend entering full screen mode from the view menu.</p>
<p>
Traditionally, you'll want to face east with the screen about one or two feet away.<br />
Be sure you are seated comfortably on a chair or pillow.<br />
Breathe in through the nose filling your belly first and out through the mouth.<br />
Focus on the center of the Sri Yantra.<br />
Slowly, relax your gaze to look at the triangles.<br />
Stare quietly, focusing on the silence between breaths.<br />
Notice any emotions or thoughts that appear. Don't pass judgment, simply observe and refocus.<br />
After five minutes, the image will disappear. Stare at the ghost image until it also dissappeasrs.<br />
<br />
<b>Start Meditation:</b>
<button type="button" onclick="startMeditation(1); return false;" class="btn btn-info">1 Minute</button>
<button type="button" onclick="startMeditation(3); return false;" class="btn btn-info">3 Minutes</button>
<button type="button" onclick="startMeditation(5); return false;" class="btn btn-info">5 Minutes</button>
<button type="button" onclick="startMeditation(10); return false;" class="btn btn-info">10 Minutes</button>
<button type="button" onclick="startMeditation(20); return false;" class="btn btn-info">20 Minutes</button>
</p>
<button type="button" onclick="resetEverything(); return false;" class="btn btn-warning">Cancel</button>
</div>
<div id="main_wrapper">
<div id="display_container">
<button type="button" id="return_menu" class="btn btn-primary">Return</button>
<div id="level"></div>
<div id="description"></div>
<div id="log"></div>
</div>
<div id="wrapper">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="-2.5 -2.4 5 5"
version="1.1"
id="svg5638"
>
<title
id="title5486">Sri Yantra</title>
<desc
id="desc5488">The Sri Yantra mandala.</desc>
<style
type="text/css"
id="style5490"><![CDATA[
.wht
{stroke:none;fill:#ffffff;}
.blk
{stroke:none;fill:#000000;}
.mag
{stroke:none;fill:#ff00ff;}
.yel
{stroke:none;fill:#ffff00;}
.cyn
{stroke:none;fill:#00ffff;}
.org
{stroke:none;fill:#ff8000;}
.red
{stroke:none;fill:#ff0000;}
.rad1
{fill:url(#radial1);}
.rad2
{fill:url(#radial2);}
.rad3
{fill:url(#radial3);}
.rad4
{fill:url(#radial4);}
.rad5
{fill:url(#radial5);}
]]></style>
<defs
id="defs5618">
<radialGradient
id="radial1">
<stop
offset="0%"
stop-color="#00ffff"
id="stop5492" />
<stop
offset="100%"
stop-color="#ff00ff"
id="stop5494" />
</radialGradient>
<radialGradient
id="radial2">
<stop
offset="0%"
stop-color="#ff0000"
id="stop5497" />
<stop
offset="100%"
stop-color="#ffff00"
id="stop5499" />
</radialGradient>
<radialGradient
id="radial3">
<stop
offset="0%"
stop-color="#ff0000"
id="stop5502" />
<stop
offset="100%"
stop-color="#ffff00"
id="stop5504" />
</radialGradient>
<radialGradient
id="radial4">
<stop
offset="0%"
stop-color="#ffff00"
id="stop5507" />
<stop
offset="100%"
stop-color="#ff8000"
id="stop5509" />
</radialGradient>
<radialGradient
id="radial5">
<stop
offset="0%"
stop-color="#00ffff"
id="stop5512" />
<stop
offset="100%"
stop-color="#ffff00"
id="stop5514" />
</radialGradient>
<path
id="smallpetal"
d=" M -0.263 -1.324 Q -0.303 -1.523 -0.151 -1.538 Q -0.000 -1.552 -0.000 -1.620 Q +0.000 -1.552 +0.151 -1.538 Q +0.303 -1.523 +0.263 -1.324 A 1.350 1.350 0 0,0 -0.263 -1.324 " />
<path
id="largepetal"
d=" M -0.383 -0.924 Q -0.483 -1.166 -0.242 -1.214 Q -0.000 -1.263 -0.000 -1.350 Q +0.000 -1.263 +0.242 -1.214 Q +0.483 -1.166 +0.383 -0.924 A 1.000 1.000 0 0,0 -0.383 -0.924 " />
<clipPath
id="outer">
<use
xlink:href="#smallpetal"
transform="rotate(00)"
id="use5519" />
<use
xlink:href="#smallpetal"
transform="rotate(22.5)"
id="use5521" />
<use
xlink:href="#smallpetal"
transform="rotate(45.0)"
id="use5523" />
<use
xlink:href="#smallpetal"
transform="rotate(67.5)"
id="use5525" />
<use
xlink:href="#smallpetal"
transform="rotate(90.0)"
id="use5527" />
<use
xlink:href="#smallpetal"
transform="rotate(112.5)"
id="use5529" />
<use
xlink:href="#smallpetal"
transform="rotate(135.0)"
id="use5531" />
<use
xlink:href="#smallpetal"
transform="rotate(157.5)"
id="use5533" />
<use
xlink:href="#smallpetal"
transform="rotate(180.0)"
id="use5535" />
<use
xlink:href="#smallpetal"
transform="rotate(202.5)"
id="use5537" />
<use
xlink:href="#smallpetal"
transform="rotate(225.0)"
id="use5539" />
<use
xlink:href="#smallpetal"
transform="rotate(247.5)"
id="use5541" />
<use
xlink:href="#smallpetal"
transform="rotate(270.0)"
id="use5543" />
<use
xlink:href="#smallpetal"
transform="rotate(292.5)"
id="use5545" />
<use
xlink:href="#smallpetal"
transform="rotate(315.0)"
id="use5547" />
<use
xlink:href="#smallpetal"
transform="rotate(337.5)"
id="use5549" />
<use
xlink:href="#largepetal"
transform="rotate(00)"
id="use5551" />
<use
xlink:href="#largepetal"
transform="rotate(45)"
id="use5553" />
<use
xlink:href="#largepetal"
transform="rotate(90)"
id="use5555" />
<use
xlink:href="#largepetal"
transform="rotate(135)"
id="use5557" />
<use
xlink:href="#largepetal"
transform="rotate(180)"
id="use5559" />
<use
xlink:href="#largepetal"
transform="rotate(225)"
id="use5561" />
<use
xlink:href="#largepetal"
transform="rotate(270)"
id="use5563" />
<use
xlink:href="#largepetal"
transform="rotate(315)"
id="use5565" />
</clipPath>
<clipPath
id="inner">
<path
d=" M +0.000 -1.000 L -0.232 -0.700 L +0.232 -0.700 "
id="path5568" />
<path
d=" M +0.232 -0.700 L +0.591 -0.700 L +0.418 -0.459 M -0.232 -0.700 L -0.591 -0.700 L -0.418 -0.459 M -0.000 -0.700 L +0.145 -0.459 L -0.145 -0.459 "
id="path5570" />
<path
d=" M +0.418 -0.459 L +0.677 -0.459 L +0.568 -0.263 M -0.418 -0.459 L -0.677 -0.459 L -0.568 -0.263 M +0.145 -0.459 L +0.418 -0.459 L +0.269 -0.251 M -0.145 -0.459 L -0.418 -0.459 L -0.269 -0.251 M +0.000 -0.459 L +0.117 -0.263 L -0.117 -0.263 "
id="path5572" />
<path
d=" M +0.568 -0.263 L +0.965 -0.263 L +0.768 -0.006 M -0.568 -0.263 L -0.965 -0.263 L -0.768 -0.006 M +0.568 -0.263 L +0.262 -0.263 L +0.420 -0.000 M -0.568 -0.263 L -0.262 -0.263 L -0.420 -0.000 M +0.278 -0.263 L +0.117 -0.263 L +0.190 -0.140 M -0.278 -0.263 L -0.117 -0.263 L -0.190 -0.140 M +0.000 -0.263 L +0.071 -0.132 L -0.071 -0.132 "
id="path5574" />
<path
d=" M +0.341,-0.132 L +0.196,-0.132 L +0.271,-0.006 M -0.341,-0.132 L -0.196,-0.132 L -0.271,-0.006 M +0.190,-0.140 L +0.196,-0.132 L +0.184,-0.132 M -0.190,-0.140 L -0.196,-0.132 L -0.184,-0.132 M +0.071,-0.132 L +0.120,-0.042 L +0.184,-0.132 M -0.071,-0.132 L -0.120,-0.042 L -0.184,-0.132 "
id="path5576" />
<path
d=" M +0.233,-0.069 L +0.105,-0.069 L +0.160,+0.032 M -0.233,-0.069 L -0.105,-0.069 L -0.160,+0.032 M +0.139,-0.069 L +0.000,+0.126 L -0.139,-0.069 M +0.211,+0.126 L +0.091,+0.126 L +0.160,+0.032 M -0.211,+0.126 L -0.091,+0.126 L -0.160,+0.032 "
id="path5578" />
<path
d=" M +0.271,-0.006 L +0.196,+0.126 L +0.349,+0.126 M -0.271,-0.006 L -0.196,+0.126 L -0.349,+0.126 "
id="path5580" />
<path
d=" M +0.204,+0.113 L +0.279,+0.252 L +0.126,+0.252 M -0.204,+0.113 L -0.279,+0.252 L -0.126,+0.252 M +0.091,+0.126 L +0.000,+0.252 L -0.091,+0.126 "
id="path5582" />
<path
d=" M +0.768,-0.006 L +0.968,+0.252 L +0.571,+0.252 M -0.768,-0.006 L -0.968,+0.252 L -0.571,+0.252 M +0.420,-0.000 L +0.279,+0.252 L +0.571,+0.252 M -0.420,-0.000 L -0.279,+0.252 L -0.571,+0.252 "
id="path5584" />
<path
d=" M +0.571,+0.252 L +0.706,+0.476 L +0.400,+0.476 M -0.571,+0.252 L -0.706,+0.476 L -0.400,+0.476 M +0.279,+0.252 L +0.153,+0.476 L +0.400,+0.476 M -0.279,+0.252 L -0.153,+0.476 L -0.400,+0.476 M +0.126,+0.252 L -0.126,+0.252 L +0.000,+0.476 "
id="path5586" />
<path
d=" M +0.191,+0.750 L +0.548,+0.750 L +0.400,+0.476 M -0.191,+0.750 L -0.548,+0.750 L -0.400,+0.476 M +0.000,+0.750 L -0.153,+0.476 L +0.153,+0.476 "
id="path5588" />
<path
d=" M +0.191,+0.750 L -0.191,+0.750 L +0.000,+1.000 "
id="path5590" />
</clipPath>
<clipPath
id="outermagentaframe">
<path
class="rad3"
d=" M -1.890,-1.890 L -0.383,-1.890 L -0.383,-2.160 L +0.383,-2.160 L +0.383,-1.890 L +1.890,-1.890 L +1.890,-0.383 L +2.160,-0.383 L +2.160,+0.383 L +1.890,+0.383 L +1.890,+1.890 L +0.383,+1.890 L +0.383,+2.160 L -0.383,+2.160 L -0.383,+1.890 L -1.890,+1.890 L -1.890,+0.383 L -2.160,+0.383 L -2.160,-0.383 L -1.890,-0.383 "
id="path5593" />
<path
d=" M +1.958,-1.958 L +2.025,-2.025 L +2.025,-0.518 L +1.958,-0.450 M +1.958,+1.958 L +2.025,+2.025 L +2.025,+0.518 L +1.958,+0.450 M -1.958,+1.958 L -2.025,+2.025 L -2.025,+0.518 L -1.958,+0.450 M -1.958,-1.958 L -2.025,-2.025 L -2.025,-0.518 L -1.958,-0.450 M +1.958,-1.958 L +2.025,-2.025 L +0.518,-2.025 L +0.450,-1.958 M +1.958,+1.958 L +2.025,+2.025 L +0.518,+2.025 L +0.450,+1.958 M -1.958,-1.958 L -2.025,-2.025 L -0.518,-2.025 L -0.450,-1.958 M -1.958,+1.958 L -2.025,+2.025 L -0.518,+2.025 L -0.450,+1.958 M +1.958,-0.450 L +2.025,-0.518 L +2.295,-0.518 L +2.228,-0.450 M +1.958,+0.450 L +2.025,+0.518 L +2.295,+0.518 L +2.228,+0.450 M -1.958,-0.450 L -2.025,-0.518 L -2.295,-0.518 L -2.228,-0.450 M -1.958,+0.450 L -2.025,+0.518 L -2.295,+0.518 L -2.228,+0.450 M +0.450,-1.958 L +0.518,-2.025 L +0.518,-2.295 L +0.450,-2.228 M +0.450,+1.958 L +0.518,+2.025 L +0.518,+2.295 L +0.450,+2.228 M -0.450,-1.958 L -0.518,-2.025 L -0.518,-2.295 L -0.450,-2.228 M -0.450,+1.958 L -0.518,+2.025 L -0.518,+2.295 L -0.450,+2.228 M +2.228,-0.450 L +2.295,-0.518 L +2.295,+0.518 L +2.228,+0.450 M -2.228,-0.450 L -2.295,-0.518 L -2.295,+0.518 L -2.228,+0.450 M +0.450,-2.228 L +0.518,-2.295 L -0.518,-2.295 L -0.450,-2.228 M +0.450,+2.228 L +0.518,+2.295 L -0.518,+2.295 L -0.450,+2.228 "
id="path5595" />
</clipPath>
<clipPath
id="outeryellowframe">
<path
d=" M +1.890,-1.890 L +1.957,-1.957 L +1.957,-0.450 L +1.890,-0.383 M -1.890,-1.890 L -1.957,-1.957 L -1.957,-0.450 L -1.890,-0.383 M +1.890,+1.890 L +1.957,+1.957 L +1.957,+0.450 L +1.890,+0.383 M -1.890,+1.890 L -1.957,+1.957 L -1.957,+0.450 L -1.890,+0.383 M +1.890,-1.890 L +1.957,-1.957 L +0.450,-1.957 L +0.383,-1.890 M -1.890,-1.890 L -1.957,-1.957 L -0.450,-1.957 L -0.383,-1.890 M +1.890,+1.890 L +1.957,+1.957 L +0.450,+1.957 L +0.383,+1.890 M -1.890,+1.890 L -1.957,+1.957 L -0.450,+1.957 L -0.383,+1.890 M +0.383,-2.160 L +0.450,-2.227 L +0.450,-1.957 L +0.383,-1.890 M +0.383,+2.160 L +0.450,+2.227 L +0.450,+1.957 L +0.383,+1.890 M -0.383,-2.160 L -0.450,-2.227 L -0.450,-1.957 L -0.383,-1.890 M -0.383,+2.160 L -0.450,+2.227 L -0.450,+1.957 L -0.383,+1.890 M -0.450,-2.227 L -0.383,-2.160 L +0.383,-2.160 L +0.450,-2.227 M -0.450,+2.227 L -0.383,+2.160 L +0.383,+2.160 L +0.450,+2.227 M +1.890,-0.383 L +1.958,-0.450 L +2.228,-0.450 L +2.160,-0.383 M +1.890,+0.383 L +1.958,+0.450 L +2.228,+0.450 L +2.160,+0.383 M -1.890,-0.383 L -1.958,-0.450 L -2.228,-0.450 L -2.160,-0.383 M -1.890,+0.383 L -1.958,+0.450 L -2.228,+0.450 L -2.160,+0.383 M +2.160,+0.383 L +2.228,+0.450 L +2.228,-0.450 L +2.160,-0.383 M -2.160,+0.383 L -2.228,+0.450 L -2.228,-0.450 L -2.160,-0.383 "
id="path5598" />
<path
d=" M +2.025,-2.025 L +2.093,-2.093 L +2.093,-0.585 L +2.025,-0.518 M +2.025,+2.025 L +2.093,+2.093 L +2.093,+0.585 L +2.025,+0.518 M -2.025,-2.025 L -2.093,-2.093 L -2.093,-0.585 L -2.025,-0.518 M -2.025,+2.025 L -2.093,+2.093 L -2.093,+0.585 L -2.025,+0.518 M +2.025,-2.025 L +2.093,-2.093 L +0.585,-2.093 L +0.518,-2.025 M +2.025,+2.025 L +2.093,+2.093 L +0.585,+2.093 L +0.518,+2.025 M -2.025,-2.025 L -2.093,-2.093 L -0.585,-2.093 L -0.518,-2.025 M -2.025,+2.025 L -2.093,+2.093 L -0.585,+2.093 L -0.518,+2.025 M +0.518,-2.295 L +0.585,-2.363 L +0.585,-2.093 L +0.518,-2.025 M +0.518,+2.295 L +0.585,+2.363 L +0.585,+2.093 L +0.518,+2.025 M -0.518,-2.295 L -0.585,-2.363 L -0.585,-2.093 L -0.518,-2.025 M -0.518,+2.295 L -0.585,+2.363 L -0.585,+2.093 L -0.518,+2.025 M +2.295,-0.518 L +2.363,-0.585 L +2.093,-0.585 L +2.025,-0.518 M +2.295,+0.518 L +2.363,+0.585 L +2.093,+0.585 L +2.025,+0.518 M -2.295,-0.518 L -2.363,-0.585 L -2.093,-0.585 L -2.025,-0.518 M -2.295,+0.518 L -2.363,+0.585 L -2.093,+0.585 L -2.025,+0.518 M +2.295,-0.518 L +2.363,-0.585 L +2.363,+0.585 L +2.295,+0.518 M -2.295,-0.518 L -2.363,-0.585 L -2.363,+0.585 L -2.295,+0.518 M +0.518,-2.295 L +0.585,-2.363 L -0.585,-2.363 L -0.518,-2.295 M +0.518,+2.295 L +0.585,+2.363 L -0.585,+2.363 L -0.518,+2.295 "
id="path5600" />
</clipPath>
<clipPath
id="c1">
<circle
cx="0"
cy="0"
r="1.822"
id="circle5603" />
</clipPath>
<clipPath
id="c2">
<circle
cx="0"
cy="0"
r="1.755"
id="circle5606" />
</clipPath>
<clipPath
id="c3">
<circle
cx="0"
cy="0"
r="1.688"
id="circle5609" />
</clipPath>
<clipPath
id="c4">
<circle
cx="0"
cy="0"
r="1.620"
id="circle5612" />
</clipPath>
<clipPath
id="c5">
<circle
cx="0"
cy="0"
r="0.0120"
id="circle5615" />
</clipPath>
</defs>
<!-- <rect class="wht" x="-2.500" y="-2.500" width="5.000" height="5.000" />-->
<rect
class="blk"
x="-2.363"
y="-2.363"
width="4.726"
height="4.726"
clip-path="url(#outeryellowframe)"
id="rect5620" />
<rect
class="wht"
x="-2.363"
y="-2.363"
width="4.726"
height="4.726"
clip-path="url(#outermagentaframe)"
id="rect5622" />
<circle
class="blk"
cx="0"
cy="0"
r="2.363"
clip-path="url(#c1)"
id="circle5624" />
<circle
class="wht"
cx="0"
cy="0"
r="2.363"
clip-path="url(#c2)"
id="circle5626" />
<circle
class="blk"
cx="0"
cy="0"
r="2.363"
clip-path="url(#c3)"
id="circle5628" />
<circle
class="wht"
cx="0"
cy="0"
r="2.363"
clip-path="url(#c4)"
id="circle5630" />
<circle
class="blk"
cx="0"
cy="0"
r="2.363"
clip-path="url(#outer)"
id="circle5632" />
<circle
class="blk"
cx="0"
cy="0"
r="1.000"
clip-path="url(#inner)"
id="circle5634" />
<circle
class="wht"
cx="0"
cy="0"
r="2.363"
clip-path="url(#c5)"
id="circle5636" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 343.32655,176.42102 c -1.54492,-9.35047 -0.18223,-16.8335 3.96241,-21.75912 3.29248,-3.9129 7.09056,-5.4744 16.48118,-6.77591 8.69736,-1.20542 16.06053,-4.07519 18.53839,-7.22528 1.66422,-2.11571 1.77046,-2.12953 2.86749,-0.37289 1.90169,3.04509 8.31566,5.64906 17.82037,7.2348 4.96532,0.8284 10.22986,1.97756 11.69898,2.5537 3.53476,1.3862 7.99037,6.56736 9.44934,10.98808 1.12833,3.41889 1.05742,17.20822 -0.0944,18.36006 -0.30191,0.3019 -5.09491,-0.18009 -10.65113,-1.07109 -17.29783,-2.7739 -47.72668,-2.20971 -66.44692,1.23201 -2.86938,0.52753 -3.04036,0.3783 -3.6257,-3.16436 z"
id="level_2_mind"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 493.56104,207.46978 c -15.2576,-9.74994 -40.6586,-20.50144 -58.43243,-24.73276 -10.85269,-2.58364 -10.89263,-2.64967 -7.29324,-12.05547 2.784,-7.27504 7.74205,-12.46562 13.34627,-13.97222 3.70863,-0.997 5.52548,-0.88169 12.60606,0.80008 13.57314,3.22386 16.18139,3.30521 22.46037,0.70053 1.15286,-0.47824 1.84662,0.0827 2.56011,2.07005 1.36487,3.80169 6.1925,8.40428 13.18492,12.57034 11.15696,6.64727 14.18918,10.69852 14.18795,18.95606 -5.5e-4,3.71232 -0.78986,6.75435 -2.84305,10.95725 -4.27651,8.75402 -3.80079,8.52504 -9.77696,4.70614 z"
id="level_2_smell"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 549.79583,258.76364 c -8.18152,-11.12564 -29.16903,-32.1184 -40.4625,-40.47262 -4.93333,-3.64938 -8.96969,-6.96444 -8.96969,-7.3668 0,-1.8008 10.1676,-11.60935 13.91463,-13.42325 7.11559,-3.4446 12.92057,-2.08161 22.52091,5.28783 6.57713,5.04875 14.39776,8.51966 18.00389,7.9904 2.48848,-0.36523 2.84552,-0.15638 2.43253,1.42291 -0.9029,3.4527 2.26484,11.14685 7.5931,18.44291 2.9197,3.998 5.75494,8.44318 6.30053,9.87819 1.55733,4.0961 1.17078,9.25877 -1.03431,13.81388 -1.95176,4.03179 -10.91311,12.91139 -13.03027,12.91139 -0.56609,0 -3.83706,-3.81818 -7.26882,-8.48484 z"
id="level_2_taste"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 265.28523,204.09994 c -2.69628,-5.38953 -3.46705,-8.09762 -3.46705,-12.18141 0,-8.37938 2.98999,-12.39593 14.19962,-19.07482 5.96423,-3.55359 12.93884,-9.87307 12.96675,-11.74877 0.008,-0.54888 0.41127,-1.62446 0.89579,-2.39016 0.72455,-1.14505 1.14856,-1.17008 2.38849,-0.14104 2.34132,1.94313 11.8352,1.57542 21.46331,-0.83131 9.99048,-2.4973 14.55799,-1.93422 19.75028,2.43481 3.36013,2.82736 7.51112,11.03899 8.40454,16.62617 l 0.61726,3.86014 -6.1612,1.20199 c -15.35255,2.99515 -45.76918,15.37855 -59.99853,24.42697 -2.9228,1.85861 -5.82674,3.68717 -6.4532,4.06347 -0.7403,0.44467 -2.35269,-1.7418 -4.60606,-6.24604 z"
id="level_2_courage"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 204.91873,262.88567 c -7.83298,-6.8521 -10.79585,-15.13497 -8.02288,-22.42844 0.55939,-1.47129 3.17524,-5.5863 5.81302,-9.14446 5.66821,-7.646 7.95522,-12.70576 7.88967,-17.45508 -0.0452,-3.27352 0.10728,-3.44411 2.73356,-3.05865 3.46088,0.50795 11.41978,-3.05989 17.86872,-8.01024 9.60034,-7.36944 15.40532,-8.73243 22.52091,-5.28783 3.74703,1.8139 13.91463,11.62245 13.91463,13.42325 0,0.40236 -4.03636,3.71742 -8.96969,7.3668 -11.29347,8.35422 -32.28098,29.34698 -40.4625,40.47262 -3.43176,4.66666 -6.70273,8.48484 -7.26882,8.48484 -0.5661,0 -3.27358,-1.96326 -6.01662,-4.36281 z"
id="level_2_memory"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 172.64222,340.86354 c -7.47668,-2.65296 -12.25677,-6.26711 -14.54751,-10.99916 -2.45148,-5.06407 -2.4538,-8.75931 -0.0113,-17.94425 2.29489,-8.62982 2.45136,-15.61257 0.43712,-19.50768 -1.40575,-2.71842 -1.38051,-2.86093 0.50652,-2.86093 3.01107,0 10.33888,-7.33727 14.57965,-14.59847 8.06665,-13.81202 16.02669,-16.59469 29.33661,-10.2555 8.55243,4.07332 8.40464,3.25211 2.40569,13.36733 -11.54944,19.47426 -19.37134,39.37417 -24.43012,62.1533 -0.69003,3.10715 -1.2219,3.14862 -8.27668,0.64536 z"
id="level_2_names"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 160.71808,423.98722 c -8.56179,-3.20579 -10.74252,-6.64882 -12.98187,-20.49631 -1.49696,-9.25681 -4.30773,-16.40181 -7.15077,-18.17731 -1.59873,-0.99843 -1.53076,-1.26898 0.93946,-3.7392 2.82945,-2.82945 4.91365,-9.16315 6.82806,-20.74985 1.32791,-8.03705 3.65547,-12.18421 8.5444,-15.22416 3.09834,-1.92654 4.86559,-2.23069 12.96123,-2.23069 5.15555,0 9.57502,0.21818 9.82104,0.48485 0.24602,0.26666 -0.23037,3.97575 -1.05864,8.24242 -2.12472,10.94502 -2.12472,53.05498 0,64 0.82827,4.26667 1.3748,7.90561 1.21452,8.08655 -1.01992,1.1513 -15.92717,0.99823 -19.11743,-0.1963 z"
id="level_2_origin"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 186.38437,506.1264 c -3.2184,-0.69215 -9.45551,-7.42237 -15.13579,-16.33246 -3.9168,-6.14389 -5.80371,-8.161 -9.07102,-9.69697 -3.36075,-1.5799 -4.01055,-2.29889 -3.50552,-3.87879 1.60198,-5.01155 1.40923,-12.34571 -0.52555,-19.99673 -1.1139,-4.40488 -2.02528,-9.47045 -2.02528,-11.25682 0,-5.10334 3.41241,-10.67452 8.53009,-13.92641 4.28713,-2.72414 14.41526,-6.37975 15.27993,-5.51508 0.21641,0.21642 1.46902,4.53303 2.78358,9.59249 5.07995,19.55168 15.06164,43.17546 24.44263,57.84865 1.79674,2.81036 3.2668,5.47773 3.2668,5.92749 0,0.44977 -2.81821,2.20516 -6.2627,3.90087 -6.08855,2.99739 -13.16802,4.325 -17.77717,3.33376 z"
id="level_2_soul"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 241.29074,571.34722 c -1.95676,-0.69888 -6.32039,-3.35911 -9.69697,-5.91163 -7.56266,-5.71698 -12.8173,-8.19859 -17.41885,-8.22641 -3.43715,-0.0208 -3.52332,-0.11281 -3.57444,-3.81734 -0.0623,-4.51527 -2.25728,-9.0708 -8.36829,-17.36793 -5.38716,-7.31435 -6.3534,-9.61888 -6.3534,-15.1532 0,-5.1431 4.08875,-11.62325 10.98713,-17.4132 4.03449,-3.38623 4.80641,-3.71291 5.56604,-2.35553 6.31895,11.29133 30.60001,36.86593 45.74986,48.18711 5.2,3.88586 9.45454,7.36934 9.45454,7.74107 0,2.00167 -9.39281,10.98257 -13.76495,13.16129 -5.65153,2.81628 -7.46501,2.98288 -12.58067,1.15577 z"
id="level_2_body"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 312.40882,610.0296 c -7.10524,-2.31695 -14.82773,-2.80026 -18.72496,-1.17188 l -3.46619,1.44826 -1.70353,-3.86112 c -1.677,-3.80101 -5.33585,-6.87091 -17.45803,-14.64786 -10.24414,-6.5721 -11.98905,-14.8626 -5.83213,-27.70993 3.30975,-6.9063 3.46698,-7.06731 5.57576,-5.70959 6.42867,4.13907 17.6869,10.29 25.61583,13.99521 10.12185,4.72996 31.71687,12.16195 40.66478,13.99489 l 5.92884,1.2145 -1.20938,4.58453 c -1.71969,6.51903 -6.17277,14.26408 -9.60743,16.70977 -3.6423,2.59355 -13.58859,3.17333 -19.78356,1.15322 z"
id="level_2_immortailty"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 382.69645,627.53472 c -0.98861,-2.57626 -8.56569,-5.54579 -18.74608,-7.34676 -5.78525,-1.02345 -11.45894,-2.64589 -13.35879,-3.82006 -5.11268,-3.15981 -7.44163,-8.9814 -7.4206,-18.54904 0.01,-4.38071 0.41242,-8.35984 0.8951,-8.84252 0.52367,-0.52367 5.13576,-0.2219 11.43606,0.74828 12.91251,1.98837 41.64197,2.20398 54.19483,0.40673 4.8,-0.68724 10.03636,-1.28976 11.63636,-1.33892 l 2.90909,-0.0894 0.28161,8.58261 c 0.50727,15.46057 -3.4537,19.89125 -20.4744,22.90232 -10.18039,1.80097 -17.75747,4.7705 -18.74608,7.34676 -0.29774,0.7759 -0.88434,1.41073 -1.30355,1.41073 -0.41921,0 -1.00581,-0.63483 -1.30355,-1.41073 z"
id="level_2_desire"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 437.5449,609.87822 c -4.69264,-2.31291 -9.11418,-9.26346 -11.39855,-17.91822 l -1.1879,-4.50061 3.72401,-0.59549 c 6.57333,-1.05112 26.28131,-7.37484 36.77209,-11.7991 9.03527,-3.81044 19.09628,-9.07802 30.29676,-15.8623 l 3.6301,-2.1988 3.4002,7.09504 c 6.15091,12.83479 4.40294,21.12839 -5.83772,27.69826 -11.82678,7.58744 -15.76454,10.86233 -17.54134,14.58849 l -1.82679,3.831 -3.3629,-1.40352 c -3.78917,-1.58143 -11.49009,-1.07499 -19.19198,1.26212 -6.05127,1.83623 -13.52178,1.75208 -17.47598,-0.19687 z"
id="level_2_intellect"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 514.12859,570.19145 c -4.29267,-2.13912 -13.76495,-11.14717 -13.76495,-13.09033 0,-0.3327 4.25454,-3.8219 9.45454,-7.75377 15.37765,-11.62748 39.48382,-37.04857 45.74986,-48.24537 0.75963,-1.35738 1.53155,-1.0307 5.56604,2.35553 6.89838,5.78995 10.98713,12.2701 10.98713,17.4132 0,5.53432 -0.96624,7.83885 -6.3534,15.1532 -6.11101,8.29713 -8.30597,12.85266 -8.36829,17.36793 -0.0511,3.70453 -0.13729,3.79655 -3.57444,3.81734 -4.61756,0.0279 -9.77727,2.49252 -17.93818,8.56839 -6.08883,4.5332 -11.30479,6.90603 -15.21166,6.92005 -0.82861,0.003 -3.77461,-1.1248 -6.54665,-2.50617 z"
id="level_2_ego"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 587.0811,340.21818 c -2.3493,-10.57866 -6.04989,-22.73335 -9.81643,-32.24242 -5.30913,-13.4035 -7.57853,-18.04844 -14.61369,-29.91088 -5.99895,-10.11522 -6.14674,-9.29401 2.40569,-13.36733 13.30992,-6.33919 21.26996,-3.55652 29.33661,10.2555 4.24077,7.2612 11.56858,14.59847 14.57965,14.59847 1.88703,0 1.91227,0.14251 0.50652,2.86093 -2.01424,3.89511 -1.85778,10.87786 0.43712,19.50768 2.44252,9.18494 2.4402,12.88018 -0.0113,17.94425 -2.34255,4.83906 -7.10073,8.36464 -14.91975,11.05477 -7.2232,2.48515 -7.19634,2.48753 -7.90444,-0.70097 z"
id="level_2_form"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 590.22682,424.66301 c -1.9673,-0.33505 -2.58226,-0.88569 -2.17485,-1.94738 0.31241,-0.81413 1.27394,-7.2182 2.13673,-14.23127 1.8211,-14.80248 1.31955,-44.67618 -0.95483,-56.87224 -0.74594,-4 -1.15599,-7.49091 -0.91122,-7.75757 0.24476,-0.26667 4.66321,-0.48485 9.81876,-0.48485 8.09564,0 9.86289,0.30415 12.96123,2.23069 4.88893,3.03995 7.21649,7.18711 8.5444,15.22416 1.91441,11.5867 3.99861,17.9204 6.82806,20.74985 2.47022,2.47022 2.53819,2.74077 0.93946,3.7392 -2.85466,1.78276 -5.68075,8.9395 -7.17796,18.17731 -2.08678,12.87556 -3.78771,16.02061 -10.56775,19.53994 -3.13844,1.62908 -14.0712,2.54688 -19.44203,1.63216 z"
id="level_2_sight"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 570.77597,505.8129 c -4.29072,-1.36721 -13.20021,-6.05581 -13.20021,-6.94657 0,-0.43577 1.47001,-3.09169 3.26669,-5.90205 9.44077,-14.7672 19.28259,-38.07402 24.44824,-57.89688 1.31153,-5.03293 2.59932,-9.36549 2.86175,-9.62792 0.88548,-0.88548 10.6421,2.71624 15.21657,5.61728 5.09727,3.2326 8.50978,8.80979 8.50978,13.90787 0,1.78637 -0.91138,6.85194 -2.02528,11.25682 -1.97784,7.82133 -2.12803,15.11583 -0.41671,20.23916 0.60291,1.80497 0.37428,2.18181 -1.3237,2.18181 -2.87103,0 -8.67482,6.11898 -13.76313,14.51057 -5.55329,9.15843 -9.6905,12.55355 -15.98885,13.12095 -2.63195,0.2371 -6.04527,0.0296 -7.58515,-0.46104 z"
id="level_2_sound"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 323.30504,235.00606 c -2.49914,-8.18499 -2.38296,-17.48605 0.28161,-22.54545 4.20838,-7.99073 9.78452,-11.08289 28.19952,-15.63758 14.7864,-3.6572 25.92484,-8.55234 29.71832,-13.06063 L 384,180.79665 l 2.51754,2.99193 c 3.7388,4.44332 14.79145,9.28049 29.72876,13.01074 18.40262,4.59564 23.9443,7.67516 28.18291,15.66129 2.67944,5.04846 2.79757,15.28648 0.26292,22.78787 -0.99115,2.93334 -1.92194,5.47566 -2.06843,5.64962 -0.1465,0.17395 -4.19477,-1.03256 -8.99618,-2.68113 C 415.63719,232.03994 408.07799,230.93 384,230.93 c -24.01562,0 -31.65056,1.11453 -49.41242,7.21311 -4.6831,1.60796 -8.72113,2.92356 -8.97338,2.92356 -0.25226,0 -1.29138,-2.72728 -2.30916,-6.06061 z"
id="level_3_motion"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 522.02787,315.94375 c -14.14506,-29.6488 -38.762,-54.39762 -69.366,-69.7376 l -9.39874,-4.71103 2.76133,-5.0495 c 4.41657,-8.07632 8.44636,-12.50203 13.82342,-15.18153 9.05708,-4.51333 15.96585,-3.01676 32.95795,7.13931 15.5133,9.27219 22.14071,11.98648 29.37599,12.03107 l 5.81818,0.0359 0.0248,6.3996 c 0.0212,5.46238 0.60197,7.60074 3.96579,14.6012 2.16754,4.51088 5.99566,11.40262 8.50694,15.31499 6.02811,9.39128 8.35095,15.52513 8.35095,22.05205 0,6.62902 -2.25231,11.27015 -8.07321,16.63566 -3.44173,3.17248 -13.03081,9.11901 -14.44,8.95477 -0.15107,-0.0177 -2.0894,-3.8358 -4.3074,-8.48485 z"
id="level_3_attraction"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 532.52532,444.58861 c -5.02131,-1.59019 -6.0196,-2.24344 -5.47381,-3.5819 13.16007,-32.27269 14.39049,-70.17988 3.38177,-104.18644 -2.02938,-6.26885 -3.40706,-11.56837 -3.06153,-11.7767 2.55664,-1.54147 12.23133,-3.49205 17.32025,-3.49205 14.64835,0 20.27056,6.14837 25.97581,28.40684 5.25902,20.5175 9.48111,29.71484 14.99555,32.66608 1.88438,1.00849 1.82242,1.17914 -1.48124,4.0798 -5.57076,4.89119 -9.23554,13.45279 -13.56751,31.69617 -3.01629,12.7026 -5.09773,17.3918 -9.81283,22.10691 -6.34893,6.34892 -16.49275,7.81304 -28.27646,4.08129 z"
id="level_3_excretion"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 462.23884,548.08016 c -6.00768,-2.23152 -11.65666,-7.91313 -16.13563,-16.22883 l -2.93964,-5.45776 8.47882,-4.0637 c 29.65348,-14.21224 56.48497,-40.93781 70.38014,-70.10234 2.22094,-4.66152 4.42132,-8.4797 4.88973,-8.48485 1.91445,-0.021 11.85595,6.39523 15.39967,9.93895 4.85636,4.85635 6.53675,8.95975 6.53579,15.95995 -8.4e-4,6.1732 -2.61037,12.70701 -9.15085,22.91216 -1.99826,3.11789 -5.44752,9.44516 -7.66503,14.0606 C 528.57673,513.80568 528,515.90767 528,521.30909 v 6.30303 l -5.81818,0.0773 c -7.52454,0.0999 -14.051,2.68288 -27.99271,11.07864 -6.09838,3.67247 -12.71991,7.35909 -14.7145,8.19248 -5.35919,2.23922 -12.90249,2.72925 -17.23577,1.11966 z"
id="level_3_impartiality"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 380.7589,583.79131 c -3.94159,-4.7437 -12.89655,-8.63509 -29.14773,-12.6662 -16.66806,-4.13451 -22.90399,-7.35854 -26.95746,-13.93723 -3.63261,-5.89565 -4.29337,-11.72232 -2.32593,-20.5102 2.39583,-10.7013 1.58761,-10.34363 14.29409,-6.32574 19.38984,6.13121 25.14139,6.9621 47.86298,6.91443 22.37088,-0.0469 29.08852,-1.05222 48.37353,-7.239 11.09055,-3.55793 10.45449,-3.88804 12.81383,6.65031 1.96745,8.78788 1.30669,14.61455 -2.32592,20.5102 -3.95093,6.41225 -10.46112,9.88613 -25.34442,13.52392 -17.33844,4.23787 -24.65388,7.2473 -29.94807,12.32002 -2.42042,2.31916 -4.43178,4.18516 -4.4697,4.14666 -0.0379,-0.0385 -1.30926,-1.56273 -2.8252,-3.38717 z"
id="level_3_speech"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 294.30303,548.77469 c -4.541,-1.00833 -9.84619,-3.59563 -20.38048,-9.93943 -14.05278,-8.46264 -20.56618,-11.04578 -28.10437,-11.14588 L 240,527.61212 v -6.30303 c 0,-5.40142 -0.57673,-7.50341 -4.03184,-14.69475 -2.21751,-4.61544 -5.66677,-10.94271 -7.66503,-14.0606 -6.54048,-10.20515 -9.15001,-16.73896 -9.15085,-22.91216 -9.5e-4,-7.0002 1.67943,-11.1036 6.53579,-15.95995 3.55309,-3.55309 13.50003,-9.96836 15.39967,-9.93199 0.46841,0.009 2.7117,3.87527 4.9851,8.59179 14.23479,29.53235 40.55121,55.73783 70.28476,69.98844 l 8.47883,4.0637 -3.02432,5.6742 c -1.66337,3.12081 -5.30223,7.82856 -8.08635,10.46166 -6.28113,5.94044 -12.21003,7.84683 -19.42273,6.24526 z"
id="level_3_enjoyment"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 214.34877,445.37705 c -4.30858,-1.37355 -10.40048,-7.47992 -12.74116,-12.77139 -1.00825,-2.27933 -2.90825,-8.6717 -4.22222,-14.20525 -2.60646,-10.9767 -5.21458,-19.05855 -7.81164,-24.20615 -2.1638,-4.28884 -7.2328,-9.61144 -9.15791,-9.61607 -0.83517,-0.002 -0.16196,-0.82365 1.5104,-1.84343 6.29978,-3.84149 9.53417,-10.59779 14.95035,-31.2297 5.06951,-19.31134 8.40041,-24.99276 16.68126,-28.45272 4.65053,-1.94311 14.49966,-1.91716 21.17524,0.0558 2.8968,0.85614 5.54401,1.72362 5.88269,1.92771 0.33868,0.2041 -0.65807,4.06678 -2.215,8.58373 -6.82273,19.79408 -9.64465,42.55954 -7.8002,62.92697 1.39875,15.44571 5.20618,31.80158 10.34892,44.45662 0.54468,1.34033 -0.5,1.99296 -5.82074,3.63636 -6.99993,2.16207 -15.37863,2.45944 -20.77999,0.73751 z"
id="level_3_grasping"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 235.63636,321.48927 c -10.9524,-6.02973 -16.48484,-13.63708 -16.48484,-22.66738 0,-6.58405 1.76774,-11.20659 8.42958,-22.04278 9.14692,-14.87847 12.36776,-22.65863 12.39504,-29.94112 l 0.0239,-6.36766 5.81818,-0.0359 c 7.23528,-0.0446 13.86269,-2.75888 29.37599,-12.03107 16.9921,-10.15607 23.90087,-11.65264 32.95795,-7.13931 5.37964,2.68079 9.40683,7.10518 13.83064,15.19474 l 2.76856,5.0627 -9.40596,4.71517 c -30.62654,15.35293 -55.24164,40.08648 -69.37323,69.70705 -2.218,4.64905 -4.25092,8.45933 -4.51758,8.46728 -0.26667,0.008 -2.88485,-1.30685 -5.81819,-2.92176 z"
id="level_3_repulsion"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 350.22222,275.19855 c 0.58134,-1.39781 33.27984,-43.71331 33.77778,-43.7122 0.5117,0.001 33.22281,42.30813 33.77778,43.68657 0.17778,0.44156 -15.02222,0.80284 -33.77778,0.80284 -18.75556,0 -33.95556,-0.34975 -33.77778,-0.77721 z"
id="level_4_controller_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 434.25916,294.63387 -13.256,-17.20357 25.76514,-0.25853 c 14.17082,-0.1422 25.94613,-0.0775 26.16736,0.14369 0.49818,0.49818 -23.96046,34.54237 -24.80806,34.53053 -0.33684,-0.005 -6.57765,-7.75016 -13.86844,-17.21212 z"
id="level_4_releaser_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 459.80107,327.85455 -10.77753,-14.06061 h 18.96298 c 10.92068,0 18.82589,0.37257 18.63974,0.87848 -0.91765,2.494 -14.95411,27.22008 -15.45817,27.23052 -0.32422,0.007 -5.43938,-6.31506 -11.36702,-14.04839 z"
id="level_4_arrestor_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 486.97256,363.00606 -14.50549,-18.66667 14.9785,-0.26735 c 8.23817,-0.14705 21.42855,-0.14705 29.31195,0 l 14.33346,0.26735 -14.15155,18.60517 c -7.78335,10.23284 -14.44626,18.63284 -14.80647,18.66667 -0.3602,0.0338 -7.18239,-8.3385 -15.1604,-18.60517 z"
id="level_4_deluder_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 473.21212,421.97765 c 0,-0.23229 6.46863,-8.9014 14.37474,-19.26467 l 14.37474,-18.84233 13.9889,17.97898 c 7.69389,9.88845 14.33785,18.55755 14.76435,19.26468 0.63721,1.05647 -4.41963,1.28569 -28.36364,1.28569 -16.0265,0 -29.13909,-0.19006 -29.13909,-0.42235 z"
id="level_4_delighter_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 449.61308,452.61982 c 1.51281,-2.04577 7.09292,-9.42858 12.40026,-16.40624 l 9.64971,-12.68666 9.13154,15.19412 c 5.02235,8.35676 9.34485,15.73957 9.60556,16.40623 0.37073,0.94802 -4.32081,1.21212 -21.53181,1.21212 h -22.00581 z"
id="level_4_attractor_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 417.15544,494.88485 c 1.83065,-2.26667 8.91123,-11.45684 15.73462,-20.4226 6.82339,-8.96576 12.52582,-16.16576 12.67207,-16 0.23125,0.26209 17.62749,32.41973 20.7526,38.36199 l 1.14745,2.18182 h -26.8176 -26.8176 z"
id="level_4_chaser_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 369.79023,518.18715 -15.12801,-18.98741 h 58.67517 l -14.88451,18.6987 c -7.52941,9.45884 -13.77266,17.56775 -14.24904,17.72654 -0.47638,0.1588 -6.96251,-7.68823 -14.41361,-17.43783 z"
id="level_4_agitator_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 305.83629,489.06667 c 2.93469,-5.46667 7.92053,-14.67147 11.07966,-20.45511 l 5.74387,-10.51571 10.9671,14.3945 c 6.0319,7.91697 13.10738,17.12177 15.72328,20.4551 l 4.75618,6.06061 H 327.30344 300.5005 Z"
id="level_4_destroy_of_all_dualities"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 277.59985,455.12727 c 0.26071,-0.66666 4.58701,-8.0558 9.614,-16.42029 l 9.13998,-15.20818 11.09581,14.61424 c 6.1027,8.03783 11.66601,15.42696 12.36292,16.42029 1.2248,1.74577 0.53337,1.80606 -20.70981,1.80606 -17.18787,0 -21.87362,-0.26413 -21.5029,-1.21212 z"
id="level_4_mantras"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 239.18884,418.67122 c 1.5128,-2.05082 8.17596,-10.72512 14.80701,-19.27622 l 12.05645,-15.54744 14.36779,18.84261 c 7.90228,10.36344 14.36779,19.03774 14.36779,19.27622 0,0.23849 -13.12866,0.43361 -29.1748,0.43361 h -29.1748 z"
id="level_4_luxury"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 261.45813,376.2067 c -2.42399,-3.12702 -8.93336,-11.5764 -14.46527,-18.7764 l -10.05802,-13.09091 14.92643,-0.26735 c 8.20954,-0.14705 21.39336,-0.14705 29.29738,0 l 14.37095,0.26735 -13.72774,17.67203 c -7.55026,9.71962 -14.22471,18.169 -14.83211,18.77641 -0.82603,0.82603 -2.21516,-0.32858 -5.51162,-4.58113 z"
id="level_4_accomplisher_of_all_desires"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 288.9697,328.72081 c -4,-7.24345 -7.41818,-13.56523 -7.59596,-14.04839 -0.18615,-0.50591 7.71906,-0.87848 18.63974,-0.87848 h 18.96298 l -10.77753,14.06061 c -5.92764,7.73333 -11.0428,14.05511 -11.36702,14.04839 -0.32422,-0.007 -3.86221,-5.93867 -7.86221,-13.18213 z"
id="level_4_intoxicator_of_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 306.98574,294.82041 c -6.77799,-9.4065 -12.14262,-17.28373 -11.9214,-17.50495 0.22123,-0.22123 12.00825,-0.28589 26.19338,-0.14369 L 347.04887,277.4303 333.9345,294.4 c -7.2129,9.33333 -13.45429,17.09422 -13.86975,17.24642 -0.41546,0.1522 -6.30101,-7.41951 -13.07901,-16.82601 z"
id="level_4_pleasing_to_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 373.13839,295.39915 c 5.70722,-9.5838 10.59494,-17.42509 10.86161,-17.42509 0.26667,0 5.15439,7.84129 10.86161,17.42509 l 10.37676,17.42509 H 384 362.76163 Z"
id="level_5_remover_of_all_sufferings"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 425.31818,345.44622 -9.31833,-16.62198 -8.70618,-14.54545 10.22405,-0.27577 c 5.62323,-0.15167 14.5708,-0.15167 19.8835,0 l 9.65945,0.27577 -10.197,14.23207 z"
id="level_5_giver_of_all_desires"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 0.56800157,-0.26299885 0.4200015,1.28e-6 0.262,-0.263 Z"
id="level_5_bringer_of_blessings"
class="paths"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 428.12509,420.80384 c 0.55974,-0.98995 5.28696,-9.43666 10.50495,-18.77047 5.21799,-9.33381 9.60831,-17.09434 9.75626,-17.24561 0.14796,-0.15128 5.18021,7.94831 11.18279,17.99908 6.00257,10.05077 11.13427,18.62125 11.40379,19.04552 l 0.49002,0.77138 H 449.28515 427.1074 Z"
id="level_5_doer_of_what_is_liked_by_all"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 408.01584,456.60465 c 0.34602,-0.85706 18.65579,-33.29088 18.79904,-33.30051 0.14584,-0.01 17.78853,32.40146 18.11337,33.27592 0.0666,0.17926 -7.6358,0.30765 -18.4562,0.30765 -10.21377,0 -18.51906,-0.12738 -18.45621,-0.28306 z"
id="level_5_giver_of_riches"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 383.36281,497.6384 c -2.12908,-3.50296 -22.40826,-40.14417 -22.28572,-40.26671 0.0803,-0.0803 10.47958,-0.10634 23.10951,-0.0579 l 22.9635,0.0881 -10.06138,17.99908 c -5.53377,9.8995 -10.72827,19.21205 -11.54335,20.69457 l -1.48195,2.69549 z"
id="level_5_giver_of_all_accomplishments"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 323.04008,456.63058 c 0.0803,-0.14142 4.04545,-7.50819 8.81134,-16.37059 4.7659,-8.86241 8.8378,-16.3024 9.04867,-16.53333 0.29053,-0.31814 2.64575,3.60052 9.72224,16.17603 5.13635,9.12774 9.33882,16.68344 9.33882,16.79045 0,0.10701 -8.34011,0.19457 -18.53357,0.19457 -10.19347,0 -18.46784,-0.11571 -18.3875,-0.25713 z"
id="level_5_giver_of_all_good_fortune"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 307.95738,403.58364 c 6.2575,-10.46105 11.45441,-19.01844 11.54869,-19.01641 0.14398,0.003 20.8595,36.89009 21.19892,37.74775 0.0629,0.15882 -9.83953,0.28876 -22.0053,0.28876 H 296.5801 Z"
id="level_5_bringer_of_beauty"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M -0.56799901,-0.26299885 -0.262,-0.263 -0.41999894,1.28e-6 Z"
id="level_5_overcomer_of_obstacles"
class="paths"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m -0.41799893,-0.45899896 h 0.27300014 L -0.269,-0.251 Z"
id="level_5_appeaser_of_death"
class="paths"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 366.86106,342.6364 c 0.42628,-0.80188 15.75636,-26.558 16.65172,-27.97662 0.49363,-0.78212 0.76905,-0.37151 9.08361,13.54217 4.716,7.8918 8.65266,14.54158 8.74813,14.77729 0.13753,0.33951 -3.4691,0.42855 -17.35997,0.42855 h -17.53357 z"
id="level_6_unconditional_support"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 412.84893,361.49258 c -0.51292,-0.65359 -10.37566,-17.34019 -10.37566,-17.55442 0,-0.10314 4.85619,-0.18754 10.79154,-0.18754 h 10.79155 l 0.55847,0.85234 c 0.55335,0.84452 0.50435,0.92778 -5.34609,9.08525 -3.24751,4.5281 -5.94482,8.23292 -5.99402,8.23292 -0.0492,0 -0.24081,-0.19285 -0.42579,-0.42855 z"
id="level_6_eradication_of_disease"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 420.08882,373.4441 -5.52612,-9.29452 5.462,-0.0943 c 3.00411,-0.0519 7.8214,-0.0519 10.70511,0 l 5.24311,0.0943 -3.24636,5.82828 c -1.7855,3.20555 -4.11604,7.38808 -5.17899,9.29451 l -1.93262,3.46624 z"
id="level_6_knowledge"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 0.27100142,-0.00599872 0.196,0.126 l 0.1530015,1.34e-6 z"
id="level_6_sovereignty"
class="paths"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 403.90355,422.25555 c 0.0638,-0.19151 2.42943,-4.51172 5.25688,-9.60046 5.03779,-9.06686 5.16132,-9.25053 6.16432,-9.16561 0.96627,0.0818 1.29848,0.59481 5.9396,9.17191 2.70384,4.99689 4.9982,9.2781 5.09857,9.51381 0.14388,0.33789 -2.22454,0.42854 -11.19647,0.42854 -7.55031,0 -11.33991,-0.11715 -11.2629,-0.34819 z"
id="level_6_omnipotent"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 374.53184,440.01567 c -5.09117,-9.07663 -9.3081,-16.63034 -9.37095,-16.78602 -0.0629,-0.15569 8.38386,-0.28307 18.77047,-0.28307 10.38661,0 18.88475,0.0876 18.88475,0.19457 0,0.33394 -18.67515,33.40351 -18.85618,33.39014 -0.0943,-0.007 -4.33692,-7.43899 -9.42809,-16.51562 z"
id="level_6_omniscient"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m -0.204,0.113 0.0780012,0.13900141 h -0.15300008 z"
id="level_6_attaining_all_desires"
class="paths"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 331.43572,401.94766 c 0.36953,-0.61283 2.94572,-4.97118 5.72487,-9.68522 2.77915,-4.71405 5.09758,-8.62074 5.15207,-8.68155 0.15618,-0.17427 10.10729,17.4669 10.09512,17.89644 -0.006,0.21154 -0.21586,0.6546 -0.46635,0.98459 -0.41608,0.54811 -1.35089,0.59996 -10.81651,0.59996 h -10.36106 z"
id="level_6_protection"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 337.20151,373.37849 c -2.78617,-5.014 -4.99961,-9.18252 -4.91876,-9.26338 0.0809,-0.0808 4.87178,-0.10617 10.64651,-0.0563 l 10.49949,0.0907 -5.24858,8.84048 c -2.88672,4.86227 -5.39805,8.98995 -5.58074,9.17264 -0.21432,0.21432 -2.12934,-2.90206 -5.39792,-8.78421 z"
id="level_6_full_of_ecstasy"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 348.70924,353.68034 c -5.81614,-8.1384 -5.88244,-8.25129 -5.336,-9.08526 l 0.55331,-0.84446 h 10.91224 10.91225 l -4.64274,7.79961 c -2.55351,4.28978 -4.97475,8.37695 -5.38053,9.08261 -0.40579,0.70565 -0.82586,1.28419 -0.93351,1.28565 -0.10764,10e-4 -2.8459,-3.70572 -6.08502,-8.23815 z"
id="level_6_destruction_of_evil"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 374.29639,361.83542 c 0.55815,-0.98995 2.59333,-4.73119 4.52262,-8.31387 1.92929,-3.58267 3.89202,-7.18713 4.36161,-8.00992 l 0.85381,-1.49597 3.41276,6.29573 c 1.87702,3.46265 4.26355,7.87707 5.3034,9.80983 l 1.89065,3.5141 h -10.67983 -10.67983 z"
id="level_7_pain"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;stroke:none;fill-opacity:1"
d="m 0.18400137,-0.13199879 -0.064,0.09000005 -0.04900002,-0.09000005 z"
id="level_7_pleasure"
class="paths"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 405.63999,383.16052 c -1.55313,-2.83926 -2.82388,-5.31763 -2.82388,-5.50749 0,-0.18987 0.57854,-1.17864 1.28565,-2.19727 l 1.28565,-1.85207 6.98193,-0.013 6.98193,-0.013 -0.50614,0.77139 c -1.31118,1.99832 -9.94293,13.80959 -10.14837,13.88653 -0.12809,0.048 -1.50364,-2.23581 -3.05677,-5.07507 z"
id="level_7_dissolution"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 398.70203,402.86438 c 0,-0.49319 9.77626,-13.4742 9.9805,-13.2522 0.12668,0.13771 1.63553,2.84001 3.35299,6.00513 3.04,5.60241 3.108,5.77711 2.56905,6.59966 l -0.55361,0.84491 h -7.67446 c -4.22096,0 -7.67447,-0.0889 -7.67447,-0.1975 z"
id="level_7_creation"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 377.03442,412.81151 -6.75408,-9.40679 h 13.72578 13.72579 l -1.18405,1.62849 c -0.65122,0.89567 -3.6858,5.09974 -6.74349,9.34238 -3.0577,4.24264 -5.66214,7.74288 -5.78766,7.7783 -0.12551,0.0354 -3.26754,-4.16865 -6.98229,-9.34238 z"
id="level_7_sustaining"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 353.34107,402.25631 c -0.5051,-0.77088 -0.38899,-1.06094 2.69626,-6.73548 1.77325,-3.26146 3.28479,-5.99062 3.35898,-6.06481 0.10443,-0.10443 5.15487,6.61852 9.75524,12.98581 0.42858,0.59318 0.10708,0.62005 -7.41733,0.62005 h -7.86532 z"
id="level_7_ability_to_choose_an_action"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;stroke:none;fill-opacity:1"
d="m -0.18399881,-0.13199879 h 0.11300005 l -0.04900002,0.09000005 z"
id="level_7_cold"
class="paths"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 355.65661,383.43218 c -2.0637,-2.86065 -4.49552,-6.24818 -5.40404,-7.52784 l -1.65186,-2.32667 h 7.00191 7.0019 l 1.3974,1.99214 1.3974,1.99213 -2.99526,5.53571 -2.99525,5.53571 z"
id="level_7_heat"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 375.04104,390.49446 c -4.80554,-6.72351 -8.85757,-12.42615 -9.0045,-12.67251 -0.1613,-0.27046 0.1573,-1.20001 0.80412,-2.34611 l 1.07126,-1.89817 h 16.04801 16.04801 l 1.08107,1.91555 c 1.05415,1.86786 1.06636,1.93827 0.49072,2.82843 -1.69805,2.62577 -17.38114,24.39739 -17.57456,24.39739 -0.12473,0 -4.15858,-5.50106 -8.96413,-12.22458 z M 385.39,385.35251 c 0.34483,-0.31207 0.62697,-0.91816 0.62697,-1.34687 0,-1.94591 -2.76692,-2.52461 -3.74015,-0.78225 -0.45187,0.80898 -0.44322,0.99693 0.0829,1.79991 0.68634,1.04748 2.07042,1.19785 3.03026,0.32921 z"
id="level_8_giver_of_all_perfection"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<ellipse
style="fill:#FFFFFF;fill-opacity:1;stroke:none"
id="level_9_bindu"
class="paths"
cx="1.2280983e-06"
cy="0.00039578674"
rx="0.01341541"
ry="0.012231698"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 360.02344,641.8189 C 327.66392,638.47971 299.56437,630.44327 270.32647,616.16566 192.03915,577.93599 139.56741,504.89143 127.15294,416.85748 c -1.70866,-12.11651 -1.74113,-53.7256 -0.0511,-65.45455 6.99971,-48.57797 26.08015,-93.36388 55.14423,-129.43545 30.55216,-37.91843 72.77539,-67.52007 118.23857,-82.89407 65.37398,-22.10711 135.453,-17.64721 196.75089,12.52143 27.70198,13.63394 49.11981,29.01133 70.51648,50.62885 20.3447,20.55469 35.21861,41.24629 47.72103,66.38636 41.26833,82.98304 35.26153,181.7975 -15.68654,258.05032 -41.36952,61.91685 -104.61249,102.20062 -177.90733,113.32135 -14.67569,2.22669 -48.3801,3.22774 -61.85576,1.83718 z m 60.12121,-11.09563 C 519.91889,615.4822 600.38503,543.1376 625.2792,446.29319 c 5.67163,-22.06398 7.53586,-37.50193 7.53586,-62.40541 0,-24.91449 -1.85815,-40.2902 -7.55551,-62.51976 -22.38494,-87.34006 -92.29586,-156.80219 -180.15813,-179.00163 -67.37628,-17.02342 -140.95477,-4.64282 -197.68088,33.26254 -17.47779,11.67895 -24.93523,17.83134 -40.15584,33.12858 -37.34978,37.53781 -60.1659,82.17533 -69.49068,135.95173 -2.95726,17.05462 -3.20458,58.7061 -0.45144,76.02702 6.67651,42.00426 22.68003,79.84274 48.30813,114.21902 9.01179,12.08798 35.39725,38.44462 47.64605,47.59403 35.17043,26.271 77.23732,43.49911 118.50425,48.53234 4.8,0.58544 10.03637,1.2423 11.63637,1.45967 6.91961,0.94006 47.10203,-0.34774 56.72727,-1.81805 z"
id="level_1_future"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 356.6295,662.10708 C 251.14118,651.29035 161.90124,583.19934 122.97384,483.82536 104.71044,437.20251 99.976744,379.07383 110.29989,328.19218 c 8.85871,-43.66364 27.85387,-83.9977 56.42854,-119.81955 9.21204,-11.54842 30.93319,-33.12387 42.82311,-42.53586 30.51079,-24.15215 67.76933,-42.88433 103.52468,-52.04829 45.89373,-11.7624 92.58684,-12.10259 137.61767,-1.00265 79.10122,19.49818 145.55449,72.30859 182.47461,145.01257 52.55277,103.48816 35.48238,228.14646 -43.09358,314.69544 -34.44273,37.93759 -81.75547,67.03564 -131.00668,80.57107 -15.32055,4.21046 -34.10841,7.70948 -48.62056,9.05502 -12.70257,1.17776 -42.27582,1.1707 -53.81818,-0.0129 z m 42.18182,-8.66088 c 50.27348,-3.04686 95.25226,-18.1228 136.18548,-45.64652 14.73906,-9.91062 24.88829,-18.36482 39.42555,-32.84107 22.07895,-21.98628 36.98264,-42.53414 50.66964,-69.85871 14.18769,-28.32417 22.22226,-54.44072 26.99799,-87.75758 1.93504,-13.49937 1.63371,-55.35126 -0.50267,-69.81818 -7.37915,-49.96922 -26.73482,-94.84138 -57.51355,-133.33333 -8.45632,-10.5755 -29.50471,-31.62787 -40.11093,-40.11851 -32.48589,-26.00609 -71.98517,-44.99123 -112,-53.83227 -20.54495,-4.53929 -29.87712,-5.41652 -57.69697,-5.42359 -28.64829,-0.007 -37.39033,0.84753 -59.87757,5.85487 -67.11075,14.94387 -127.10517,56.44886 -165.76244,114.67679 -46.27229,69.69815 -57.1351,157.83286 -29.36686,238.26612 5.38242,15.59064 19.38346,43.86581 28.79536,58.15235 30.41889,46.17349 73.71739,81.76336 124.87818,102.64552 26.65623,10.8802 59.96267,18.07351 89.69697,19.37217 3.46666,0.15141 7.17576,0.35546 8.24242,0.45346 1.06667,0.098 9.1394,-0.25819 17.9394,-0.79152 z"
id="level_1_past"
class="paths"
transform="matrix(0.00651042,0,0,0.00651042,-2.5,-2.5)"
/>
<path
id="level_1_present"
class="paths"
d="M -0.16201981,1.7477837 C -0.38059927,1.7251474 -0.57040384,1.6706689 -0.76789763,1.5738819 -1.2967066,1.3147254 -1.6511384,0.81956082 -1.7349947,0.22278418 c -0.011542,-0.0821371 -0.011761,-0.36420248 -3.45e-4,-0.4437123 0.047281,-0.32930702 0.1761641,-0.63290789 0.3724837,-0.87743478 0.2063713,-0.2570467 0.49157732,-0.4577143 0.79866832,-0.5619338 0.44158289,-0.1498626 0.91494698,-0.1196293 1.32899701,0.084882 0.18711908,0.092424 0.33179047,0.196666 0.47631897,0.3432099 0.1374228,0.1393389 0.2378918,0.27960598 0.3223422,0.45002894 C 1.8422265,-0.21963903 1.8016523,0.45021801 1.4575123,0.9671311 1.1780728,1.3868616 0.75088434,1.6599427 0.25579828,1.7353294 0.15666815,1.7504242 -0.07099571,1.75721 -0.16201981,1.7477837 Z M 0.24408208,1.672567 C 0.91802905,1.5692487 1.4615552,1.0788292 1.6297083,0.42232702 1.6680191,0.27275668 1.6806108,0.16810377 1.6806108,-7.1535047e-4 1.6806108,-0.16960912 1.6680598,-0.2738401 1.6295749,-0.4245329 1.4783716,-1.0166057 1.006143,-1.4874852 0.41265806,-1.6379738 c -0.45510784,-0.1154007 -0.95210988,-0.031473 -1.33527882,0.2254848 -0.11805754,0.079171 -0.16843054,0.1208775 -0.27124154,0.2245765 -0.2522871,0.25446646 -0.4064036,0.55706143 -0.4693899,0.92160828 -0.019975,0.1156122 -0.021645,0.39796497 -0.00306,0.51538241 0.045099,0.28474425 0.1531973,0.54124893 0.3263078,0.77428361 0.060873,0.081943 0.2390986,0.2606136 0.3218357,0.3226369 0.23756642,0.1780895 0.52171646,0.2948777 0.80046297,0.3289978 0.0324226,0.00396 0.0677928,0.00842 0.0786005,0.00989 0.04674003,0.00637 0.318161,-0.00236 0.38317677,-0.012324 z"
style="fill:#FFFFFF;fill-opacity:1;stroke:none" />
<g
id="level_0_power_to_overcome_jealousy"
transform="matrix(-1,0,0,1,1e-6,3.5e-6)"
class="paths"
>
<path
id="a_level_0_power_to_overcome_jealousy"
d="m 1.9569999,-1.9570052 7.17e-5,0.316967 -0.067154,2.244e-4 8.34e-5,-0.2501897 -0.3803726,6.3e-6 2.1e-6,-0.066879 z"
style="fill:#000000;fill-opacity:1;stroke:none" />
<path
id="b_level_0_power_to_overcome_jealousy"
d="m 1.5086428,-2.0245469 0.5163595,-4.529e-4 -6.501e-4,0.3835863 -0.0657,-5.3e-6 -0.00165,-0.3155809 -0.4473714,1.235e-4 z"
style="fill:#FFFFFF;fill-opacity:1;stroke:none" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 1.5088381,-2.0928083 1.5086428,-2.0245469 2.025,-2.025 l 3.386e-4,0.3839811 0.067468,-3.95e-4 L 2.0930048,-2.093 Z"
id="c_level_0_power_to_overcome_jealousy"
/>
</g>
<g
id="level_0_power_to_overcome_the_hankering_for_worldly_rewards"
class="paths"
>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 1.9569999,-1.9570052 7.17e-5,0.316967 -0.067154,2.244e-4 8.34e-5,-0.2501897 -0.3803726,6.3e-6 2.1e-6,-0.066879 z"
id="a_level_0_power_to_overcome_the_hankering_for_worldly_rewards"
/>
<path
style="fill:#FFFFFF;fill-opacity:1;stroke:none"
d="m 1.5086428,-2.0245469 0.5163595,-4.529e-4 -6.501e-4,0.3835863 -0.0657,-5.3e-6 -0.00165,-0.3155809 -0.4473714,1.235e-4 z"
id="b_level_0_power_to_overcome_the_hankering_for_worldly_rewards"
/>
<path
id="c_level_0_power_to_overcome_the_hankering_for_worldly_rewards"
d="M 1.5088381,-2.0928083 1.5086428,-2.0245469 2.025,-2.025 l 3.386e-4,0.3839811 0.067468,-3.95e-4 L 2.0930048,-2.093 Z"
style="fill:#000000;fill-opacity:1;stroke:none" />
</g>
<g
id="level_0_power_to_overcome_any_failing"
transform="matrix(1,0,0,-1,0.0010001,9.948e-4)"
class="paths"
>
<path
id="a_level_0_power_to_overcome_any_failing"
d="m 1.9569999,-1.9570052 7.17e-5,0.316967 -0.067154,2.244e-4 8.34e-5,-0.2501897 -0.3803726,6.3e-6 2.1e-6,-0.066879 z"
style="fill:#000000;fill-opacity:1;stroke:none" />
<path
id="b_level_0_power_to_overcome_any_failing"
d="m 1.5086428,-2.0245469 0.5163595,-4.529e-4 -6.501e-4,0.3835863 -0.0657,-5.3e-6 -0.00165,-0.3155809 -0.4473714,1.235e-4 z"
style="fill:#FFFFFF;fill-opacity:1;stroke:none" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 1.5088381,-2.0928083 1.5086428,-2.0245469 2.025,-2.025 l 3.386e-4,0.3839811 0.067468,-3.95e-4 L 2.0930048,-2.093 Z"
id="c_level_0_power_to_overcome_any_failing"
/>
</g>
<g
transform="rotate(-180,5e-7,-1.75e-6)"
id="level_0_power_to_overcome_stubborness_and_false_pride"
class="paths"
>
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="m 1.9569999,-1.9570052 7.17e-5,0.316967 -0.067154,2.244e-4 8.34e-5,-0.2501897 -0.3803726,6.3e-6 2.1e-6,-0.066879 z"
id="a_level_0_power_to_overcome_stubborness_and_false_pride"
/>
<path
style="fill:#FFFFFF;fill-opacity:1;stroke:none"
d="m 1.5086428,-2.0245469 0.5163595,-4.529e-4 -6.501e-4,0.3835863 -0.0657,-5.3e-6 -0.00165,-0.3155809 -0.4473714,1.235e-4 z"
id="b_level_0_power_to_overcome_stubborness_and_false_pride"
/>
<path