-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1995 lines (1958 loc) · 215 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>
<head>
<meta charset="utf-8">
<title>MMMMO | Mechthild's Medieval Mystical Manuscripts Online</title>
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
<!--IMPORT MAPBOX-->
<script src="https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.js"></script>
<link href="https://api.mapbox.com/mapbox-gl-js/v2.3.1/mapbox-gl.css" rel="stylesheet">
<!--IMPORT MAPBOX GEOCODER-->
<script
src="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v4.7.2/mapbox-gl-geocoder.min.js"></script>
<link rel="stylesheet"
href="https://api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/v4.7.2/mapbox-gl-geocoder.css"
type="text/css">
<!--IMPORT FONTS-->
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<!--IMPORT STYLESHEET-->
<link href="style.css" rel="stylesheet">
</head>
<body>
<!--MOBILE DISCLAIMER (ONLY VISIBLE ON MOBILE PHONES IN PORTRAIT MODE)-->
<div id="mobile-disclaimer" lang="en">
<p>Please use your device in landscape mode while browsing this site. For an optimal experience, a desktop
browser is recommended.</p>
<button onclick="document.getElementById('mobile-disclaimer').style.visibility = 'hidden'"><svg
viewBox="0 0 18 18" width="18" height="18">
<path
d="M3.8 2.5c-.6 0-1.3.7-1.3 1.3 0 .3.2.7.5.8L7.2 9 3 13.2c-.3.3-.5.7-.5 1 0 .6.7 1.3 1.3 1.3.3 0 .7-.2 1-.5L9 10.8l4.2 4.2c.2.3.7.3 1 .3.6 0 1.3-.7 1.3-1.3 0-.3-.2-.7-.3-1l-4.4-4L15 4.6c.3-.2.5-.5.5-.8 0-.7-.7-1.3-1.3-1.3-.3 0-.7.2-1 .3L9 7.1 4.8 2.8c-.3-.1-.7-.3-1-.3z">
</path>
</svg></button>
</div>
<!--MAP-->
<section id="map">
<!--LOADING SCREEN-->
<div id="loading-screen" lang="en">
<p id="loading-screen-load">Loading data. Please wait...</p>
<p id="loading-screen-failed">Data could not be loaded. Please refresh the site or try again later.</p>
</div>
<div id="taskbar" lang="de">
<!--SLIDER-->
<div id="slider-container">
<input id="slider-range" type="range" min="1300" max="1850" step="50" value="1850">
<output id="slider-value">Heute</output>
</div>
<!--LANG BUTTONS-->
<button id="btn-lang" onclick="toggleFieldset('select-lang')">
<svg viewbox="0 0 64 64">
<g transform="matrix(-1.0888,-8.88461e-17,1.04904e-16,-1.05644,173.171,49.5164)">
<path
d="M129.657,0C151.561,-10.978 154.108,-12.274 154.108,-12.274C154.108,-12.274 153.575,-9.573 150.435,6.657C155.754,10.769 159.047,16.449 159.047,22.718C159.047,35.256 145.878,45.435 129.657,45.435C113.436,45.435 100.267,35.256 100.267,22.718C100.267,10.179 113.436,0 129.657,0ZM129.657,5.679C130.492,5.679 131.316,5.484 132.067,5.108C138.337,1.965 143.023,-0.385 146.519,-2.139C146.103,0.006 145.611,2.545 145.03,5.546C144.616,7.69 145.431,9.889 147.128,11.201C150.977,14.176 153.536,18.182 153.536,22.718C153.536,26.264 151.955,29.502 149.433,32.161C144.983,36.851 137.751,39.756 129.657,39.756C121.563,39.756 114.33,36.851 109.881,32.161C107.359,29.502 105.777,26.264 105.777,22.718C105.777,19.171 107.359,15.934 109.881,13.275C114.33,8.584 121.563,5.679 129.657,5.679Z" />
</g>
</svg>
<fieldset id="select-lang" class="select-field">
<div>
<input id="cb-od" type="checkbox" name="od" value="od"
onclick="return updateLang(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1.33327,0,0,1.33327,-3.7428,-21.3292)">
<path
d="M5.057,15.998L48.559,15.998L48.559,42.249C48.559,54.254 38.813,64 26.808,64C14.804,64 5.057,54.254 5.057,42.249L5.057,15.998Z"
style="fill: #277BB2" />
</g>
</svg>
<label for="od">Oberdeutsch</label>
</div>
<div>
<input id="cb-md" type="checkbox" name="md" value="md"
onclick="return updateLang(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1.33327,0,0,1.33327,-3.7428,-21.3292)">
<path
d="M5.057,15.998L48.559,15.998L48.559,42.249C48.559,54.254 38.813,64 26.808,64C14.804,64 5.057,54.254 5.057,42.249L5.057,15.998Z"
style="fill: #7B27B2" />
</g>
</svg>
<label for="md">Mitteldeutsch</label>
</div>
<div>
<input id="cb-nd" type="checkbox" name="nd" value="nd"
onclick="return updateLang(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1.33327,0,0,1.33327,-3.7428,-21.3292)">
<path
d="M5.057,15.998L48.559,15.998L48.559,42.249C48.559,54.254 38.813,64 26.808,64C14.804,64 5.057,54.254 5.057,42.249L5.057,15.998Z"
style="fill: #B2277B" />
</g>
</svg>
<label for="nd">Niederdeutsch / Niederländisch</label>
</div>
<div>
<input id="cb-lt" type="checkbox" name="lt" value="lt"
onclick="return updateLang(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1.33327,0,0,1.33327,-3.7428,-21.3292)">
<path
d="M5.057,15.998L48.559,15.998L48.559,42.249C48.559,54.254 38.813,64 26.808,64C14.804,64 5.057,54.254 5.057,42.249L5.057,15.998Z"
style="fill: #B27B27" />
</g>
</svg>
<label for="lt">Latein</label>
</div>
<div>
<input id="cb-fr" type="checkbox" name="fr" value="fr"
onclick="return updateLang(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1.33327,0,0,1.33327,-3.7428,-21.3292)">
<path
d="M5.057,15.998L48.559,15.998L48.559,42.249C48.559,54.254 38.813,64 26.808,64C14.804,64 5.057,54.254 5.057,42.249L5.057,15.998Z"
style="fill: #27B27B" />
</g>
</svg>
<label for="fr">Weitere Sprachen</label>
</div>
</fieldset>
</button>
<!--ORDER BUTTONS-->
<button id="btn-order" onclick="toggleFieldset('select-order')">
<svg viewbox="0 0 64 64">
<g transform="matrix(1.33327,0,0,1.33327,-3.7428,-21.3292)">
<path
d="M5.057,15.998L48.559,15.998L48.559,42.249C48.559,54.254 38.813,64 26.808,64C14.804,64 5.057,54.254 5.057,42.249L5.057,15.998ZM9.558,20.498L44.059,20.498C44.059,20.498 44.059,42.249 44.059,42.249C44.059,51.77 36.329,59.5 26.808,59.5C17.287,59.5 9.558,51.77 9.558,42.249L9.558,20.498Z" />
</g>
</svg>
<fieldset id="select-order" class="select-field">
<div>
<input type="checkbox" name="aug" value="Augustiner"
onclick="return updateOrder(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M15.96,32C9.079,31.978 3.5,26.385 3.5,19.5L3.5,2.5C3.5,1.337 2.736,0.736 2,0L30,0C29.291,0.709 28.5,1.182 28.5,2.515L28.5,19.5C28.5,26.399 22.899,32 16,32L15.96,32ZM4.133,1L27.829,1C27.625,1.406 27.5,1.889 27.5,2.515L27.5,19.5C27.5,25.847 22.347,31 16,31C9.653,31 4.5,25.847 4.5,19.5L4.5,2.5C4.5,1.912 4.36,1.428 4.133,1ZM14.106,10.17L12,6.959L15,7.959L16,3.959L17,7.877L20,6.959L17.894,10.17C18.758,9.855 19.765,9.926 20.565,10.383L23.071,7.877L24.132,8.938L21.62,11.45C21.859,11.884 22,12.414 22,13.041C22,16.226 18.945,17.878 17.137,20.041L23.5,20.041L23.5,26.041L8.5,26.041L8.5,20.041L14.958,20.041C13.194,17.857 10,16.236 10,13.041C10,12.414 10.141,11.884 10.38,11.45L7.868,8.938L8.929,7.877L11.435,10.383C12.235,9.926 13.242,9.855 14.106,10.17Z" />
</g>
</svg>
<label for="aug">Augustiner</label>
</div>
<div>
<input type="checkbox" name="ben" value="Benediktiner"
onclick="return updateOrder(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M4.5,18.75L4.499,4.75L3.5,4L2,0L30,0L28.5,4L27.5,4.75L27.513,18.75C27.513,18.75 27.524,18.754 28.5,19.5C28.5,23.323 26.78,26.748 24.072,29.042C24.77,24.719 19.5,24.797 19.5,27C19.5,24.765 17.5,24 17.5,24L17.5,20.633L21.497,20.633L22.444,19.328L23.415,20.633L25.583,20.633L23.512,18.108L25.462,15.75L23.423,15.75L22.492,16.978L21.537,15.75L19.409,15.75L21.368,18.17L19.337,20.633L17.5,16.981L17.5,13.486L22.5,13.5L22.481,10L17.5,10L17.5,7.995L21,8L21,5L17.5,5L17.5,2L14.5,2L14.5,5L10.994,5L11,7.995L14.5,7.995L14.457,10L9.5,10L9.5,13.524L14.5,13.5L14.5,16.78L12.562,20.633L14.488,20.633L14.5,20.606L14.5,24C14.5,24 12.5,24.436 12.5,27C12.5,24.425 6.726,24.908 7.928,29.042C5.22,26.748 3.5,23.323 3.5,19.5C4.485,18.769 4.5,18.75 4.5,18.75ZM12.561,17.557C12.555,17.199 12.451,16.885 12.249,16.615C12.04,16.336 11.743,16.122 11.358,15.973C10.972,15.824 10.52,15.75 10.001,15.75L7.296,15.75L7.296,20.633L9.19,20.633L9.19,19.433L10.001,19.433C10.52,19.433 10.972,19.358 11.358,19.21C11.743,19.061 12.04,18.847 12.249,18.568C12.457,18.289 12.562,17.963 12.562,17.591L12.561,17.557Z" />
</g>
</svg>
<label for="ben">Benediktiner</label>
</div>
<div>
<input type="checkbox" name="dom" value="Dominikaner"
onclick="return updateOrder(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M1.5,0L30.5,0C30.5,2.215 30.516,4.315 30.49,6.312C30.489,6.32 30.487,6.328 30.485,6.336C30.458,8.466 30.384,10.476 30.192,12.38C30.192,12.397 30.193,12.415 30.193,12.433C29.542,18.87 27.559,24.098 21.576,28.601C21.57,28.603 21.565,28.605 21.56,28.608C20.685,29.268 19.723,29.913 18.666,30.543L16,32C10.959,29.723 7.665,27.064 5.515,24C5.505,23.974 5.495,23.949 5.486,23.924C4.381,22.344 3.58,20.656 3,18.857C2.996,18.854 2.993,18.851 2.989,18.849C1.41,13.914 1.48,8.151 1.498,1.499L1.497,1.499L1.5,0ZM15.998,1L29.5,1C29.5,1.534 29.501,2.027 29.503,2.497L18,14.004L24,14.004L24,12.004L27.996,16L28.707,16C28.091,19.261 26.974,22.053 24.667,24.667L17.991,17.996L17.991,26.496L19.991,26.496L16,30.487L16,31L16,31C11.963,29.17 9.263,27.085 7.266,24.732L13.993,18.003L13.991,26.496L11.991,26.496L15.991,30.496L15.993,15.997L15.998,15.997L15.998,16L17.998,14L18,5.5L20,5.5L16,1.5L15.998,15.996L14,13.997L14,5.5L12,5.5C12,5.5 15.349,2.152 15.998,1.502L15.998,1ZM28,16.004L24,20.004L24,18.004L18,18.003L16,16.003L28,16.004ZM2.496,2.497L13.997,13.997L8,13.996L8,11.996L4,15.996L15.991,15.997L13.993,17.996L8,17.996L8,19.996L4.004,16L3.221,16C2.45,12.01 2.479,7.518 2.496,2.497Z" />
</g>
</svg>
<label for="dom">Dominikaner</label>
</div>
<div>
<input type="checkbox" name="fra" value="Franziskaner"
onclick="return updateOrder(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M16,31C23.175,31 29,24.178 29,19C29,26.175 23.175,32 16,32C8.825,32 3,26.175 3,19C3,24.133 8.825,31 16,31ZM15.955,26.495C15.28,26.43 14.573,25.26 13.508,25.489C12.127,25.787 13.657,27.364 14.51,28.01C15.298,28.607 14.114,29.318 13.508,29.018C12.81,28.673 12.893,27.68 12.005,27.506C11.22,27.352 11.166,27.687 10.502,27.506C9.25,27.164 9.554,26.253 10.502,26.498C11.967,26.876 12.616,26.062 12.005,24.481C13.236,24.626 15.338,24.481 16.013,24.481C16.017,24.487 16.021,24.494 16.025,24.5C16.721,24.503 18.787,24.642 20,24.5C19.39,26.068 20.038,26.875 21.5,26.5C22.446,26.257 22.751,27.161 21.5,27.5C20.837,27.68 20.784,27.347 20,27.5C19.114,27.673 19.197,28.657 18.5,29C17.895,29.297 16.714,28.592 17.5,28C18.352,27.359 19.878,25.795 18.5,25.5C17.407,25.266 16.692,26.5 16,26.5C15.984,26.5 15.969,26.498 15.955,26.495ZM16.011,2.968C16.004,2.989 16,3 16,3L14.5,3L14.5,6L11.5,6L11.483,9L14.5,9L14.5,19.5C13.266,18.985 10.667,16.602 9.5,15.018C9.177,12.824 7.313,11.472 7.5,10C7.56,9.532 6.57,10.255 6.5,11C5.918,11 4.523,9.269 4.006,10C2.912,11.547 5.611,15.088 7.5,16.5C8.271,17.077 10.273,20.57 11.5,22C9.92,22.141 8.774,22.449 7.989,22.5C6.805,22.577 8.482,24.515 7.296,24.615C6.22,24.705 6.897,22.851 6.219,21.947C5.596,21.115 4.327,21.148 4.5,20.5C4.802,19.373 6.196,20.957 6.5,20C6.893,18.76 5.811,18.831 5.5,18C5.187,17.163 6.347,16.383 5,16C4.338,15.812 3.865,16.515 3,16.515L3,3.5C3,2.11 2.483,0.983 1.5,0L16,0C16.004,0.005 16.008,0.011 16.011,0.016C16.015,0.011 16.019,0.005 16.023,0L30.5,0C29.519,0.983 29.002,2.11 29.002,3.5L29.002,16.515C28.139,16.515 27.667,15.812 27.005,16C25.661,16.383 26.819,17.163 26.506,18C26.196,18.831 25.115,18.76 25.508,20C25.811,20.957 27.204,19.373 27.505,20.5C27.678,21.148 26.411,21.115 25.788,21.947C25.111,22.851 25.787,24.705 24.713,24.615C23.529,24.515 25.203,22.577 24.021,22.5C23.238,22.449 22.093,22.141 20.516,22C21.741,20.57 23.739,17.077 24.509,16.5C26.395,15.088 29.09,11.547 27.998,10C27.482,9.269 26.089,11 25.508,11C25.438,10.255 24.45,9.532 24.509,10C24.697,11.472 22.835,12.824 22.513,15.018C21.348,16.602 18.753,18.985 17.52,19.5L17.52,9L20.533,9L20.516,6L17.52,6L17.52,3L16.023,3C16.023,3 16.019,2.989 16.011,2.968Z" />
</g>
</svg>
<label for="fra">Franziskaner</label>
</div>
<div>
<input type="checkbox" name="kar" value="Kartäuser" onclick="return updateOrder(value, checked)"
checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M30.5,0C29.612,0.888 28.501,2.244 28.501,3.5C28.501,6.436 28.5,13.155 28.5,17.5C28.5,28.262 17.218,28.848 16.004,31.991L16,32C14.454,28.878 3.498,28.272 3.498,17.5C3.498,13.047 3.5,6.436 3.5,3.5C3.5,1.712 2.764,1.264 1.5,0L30.5,0ZM3.806,1L16,1L28.397,1C27.88,1.797 27.501,2.674 27.501,3.5C27.501,6.436 27.5,13.155 27.5,17.5C27.5,23.471 23.691,26.018 20.444,27.756C19.002,28.528 17.654,29.154 16.698,29.807C16.419,29.998 16.171,30.194 15.954,30.396C15.722,30.194 15.458,29.997 15.166,29.806C14.178,29.159 12.83,28.538 11.406,27.77C8.183,26.031 4.498,23.47 4.498,17.5C4.498,13.047 4.5,6.436 4.5,3.5C4.5,2.34 4.264,1.641 3.806,1ZM15,8.118C14.693,7.843 14.5,7.444 14.5,7C14.5,6.172 15.172,5.5 16,5.5C16.828,5.5 17.5,6.172 17.5,7C17.5,7.444 17.307,7.843 17,8.118L17,9L18.382,9C18.657,8.693 19.056,8.5 19.5,8.5C20.328,8.5 21,9.172 21,10C21,10.828 20.328,11.5 19.5,11.5C19.056,11.5 18.657,11.307 18.382,11L17,11L17,16.083C19.836,16.56 22,19.029 22,22C22,25.311 19.311,28 16,28C12.689,28 10,25.311 10,22C10,19.029 12.164,16.56 15,16.083L15,11L13.618,11C13.343,11.307 12.944,11.5 12.5,11.5C11.672,11.5 11,10.828 11,10C11,9.172 11.672,8.5 12.5,8.5C12.944,8.5 13.343,8.693 13.618,9L15,9L15,8.118ZM26.414,8.5L25,7.086L23.586,8.5L25,9.914L26.414,8.5ZM8.409,8.5L6.995,7.086L5.581,8.5L6.995,9.914L8.409,8.5ZM24.591,6L23,4.409L21.409,6L23,7.591L24.591,6ZM10.591,6L9,4.409L7.409,6L9,7.591L10.591,6ZM21.768,4.006L20,2.239L18.232,4.006L20,5.774L21.768,4.006ZM13.768,4.006L12,2.239L10.232,4.006L12,5.774L13.768,4.006ZM17.945,3.25L16,1.305L14.055,3.25L16,5.195L17.945,3.25Z" />
</g>
</svg>
<label for="kar">Kartäuser</label>
</div>
<div>
<input type="checkbox" name="kla" value="Klarissen" onclick="return updateOrder(value, checked)"
checked>
<svg viewbox="0 0 64 64">
<path
d="M32,62C46.35,62 58,48.355 58,38C58,52.35 46.35,64 32,64C17.65,64 6,52.35 6,38C6,48.266 17.65,62 32,62ZM31.91,52.99C30.56,52.86 29.146,50.52 27.016,50.979C24.255,51.574 27.313,54.728 29.02,56.02C30.596,57.213 28.227,58.636 27.016,58.037C25.62,57.345 25.785,55.36 24.01,55.012C22.44,54.704 22.333,55.374 21.005,55.012C18.499,54.328 19.109,52.506 21.005,52.995C23.934,53.752 25.233,52.124 24.01,48.962C26.472,49.251 30.676,48.962 32.025,48.962C32.034,48.975 32.042,48.987 32.05,49C33.442,49.007 37.573,49.283 40,49C38.78,52.136 40.077,53.75 43,53C44.892,52.514 45.501,54.322 43,55C41.675,55.359 41.567,54.694 40,55C38.229,55.346 38.394,57.315 37,58C35.791,58.595 33.427,57.184 35,56C36.703,54.718 39.756,51.59 37,51C34.813,50.532 33.383,53 32,53C31.969,53 31.939,52.996 31.91,52.99ZM35.041,39C33.79,39.523 30.295,39.54 29,39C26.531,37.97 21.333,33.203 19,30.037C18.353,25.648 14.625,22.943 15,20C15.119,19.065 13.141,20.511 13,22C11.835,22 9.045,18.537 8.011,20C5.824,23.094 11.223,30.176 15,33C16.542,34.153 20.546,41.141 23,44C19.84,44.281 17.548,44.898 15.978,45C13.61,45.154 16.963,49.03 14.592,49.229C12.44,49.41 13.794,45.702 12.439,43.894C11.192,42.23 8.654,42.295 9,41C9.603,38.745 12.393,41.914 13,40C13.787,37.52 11.621,37.661 11,36C10.374,34.326 12.694,32.766 10,32C8.676,31.623 7.73,33.029 6,33.029L6,7C6,4.22 4.966,1.966 3,0L32,0C32.008,0.011 32.015,0.021 32.023,0.032C32.03,0.021 32.038,0.011 32.045,0L61,0C59.037,1.966 58.005,4.22 58.005,7L58.005,33.029C56.278,33.029 55.333,31.623 54.011,32C51.321,32.766 53.638,34.326 53.013,36C52.392,37.661 50.23,37.52 51.016,40C51.622,41.914 54.407,38.745 55.009,41C55.355,42.295 52.821,42.23 51.576,43.894C50.223,45.702 51.575,49.41 49.426,49.229C47.059,49.03 50.407,45.154 48.043,45C46.475,44.898 44.186,44.281 41.031,44C43.482,41.141 47.479,34.153 49.019,33C52.79,30.176 58.181,23.094 55.997,20C54.964,18.537 52.179,22 51.016,22C50.875,20.511 48.9,19.065 49.019,20C49.393,22.943 45.671,25.648 45.025,30.037C42.695,33.203 37.506,37.97 35.041,39ZM28.007,13.333L28.007,6L22.007,6L22.007,30L28.007,30L28.007,22.667L34.16,30L41.993,30L31.924,18L41.993,6L34.16,6L28.007,13.333Z" />
</svg>
<label for="kla">Klarissen</label>
</div>
<div>
<input type="checkbox" name="krz" value="Kreuzherren"
onclick="return updateOrder(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M15.884,31.947L16.002,32L18.668,30.543C19.724,29.913 20.686,29.269 21.562,28.608L21.577,28.601C27.56,24.098 29.544,18.87 30.194,12.433C30.194,12.415 30.194,12.397 30.194,12.379C30.386,10.475 30.46,8.466 30.487,6.337C30.488,6.329 30.49,6.32 30.492,6.312C30.517,4.378 30.503,2.346 30.502,0.207L30.502,0L1.502,0L1.499,1.499C1.482,8.151 1.411,13.914 2.991,18.849C2.994,18.851 2.998,18.854 3.001,18.857C3.581,20.655 4.382,22.343 5.486,23.922C5.496,23.947 5.506,23.973 5.516,24C7.65,27.04 10.909,29.682 15.884,31.947ZM14.375,21.435L10.371,21L12.75,24.25L10.371,27.5L14.375,27.065L16,30.75L17.625,27.065L21.629,27.5L19.25,24.25L21.629,21L17.625,21.435L16,17.75L14.375,21.435ZM12.5,1L15,9L7,6.5L9.955,10L7,13.5L15,11L12.5,19L16,16L19.5,19L17,11L25,13.5L22,10L25,6.5L17,9L19.5,1L16,4L12.5,1Z" />
</g>
</svg>
<label for="krz">Kreuzherren</label>
</div>
<div>
<input type="checkbox" name="zis" value="Zisterzienser"
onclick="return updateOrder(value, checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M30.502,0.207C30.503,2.346 30.517,4.378 30.492,6.312C30.49,6.32 30.488,6.329 30.487,6.337C30.46,8.466 30.386,10.475 30.194,12.379C30.194,12.397 30.194,12.415 30.194,12.433C29.544,18.87 27.56,24.098 21.577,28.601L21.562,28.608C20.686,29.269 19.724,29.913 18.668,30.543L16.002,32C10.96,29.723 7.667,27.064 5.516,24C5.506,23.973 5.496,23.947 5.486,23.922C4.382,22.343 3.581,20.655 3.001,18.857C2.998,18.854 2.994,18.851 2.991,18.849C1.411,13.914 1.482,8.151 1.499,1.499L1.502,0L30.502,0L30.502,0.207ZM22.551,4L26.876,4C26.876,5.296 26.883,6.54 26.877,7.735L26.88,7.738L26.875,8.152L28,6.879L29.875,9L28,11.121L26.846,9.815C26.816,11.022 26.757,12.177 26.645,13.284C26.646,13.298 26.646,13.311 26.646,13.325C26.605,13.725 26.558,14.119 26.503,14.507L27.5,13.379L29.375,15.5L27.5,17.621L26.208,16.159C25.98,17.201 25.677,18.197 25.271,19.153L27.125,21.25L25.25,23.371L23.827,21.762C23.248,22.588 22.558,23.382 21.739,24.149L23.375,26L21.5,28.121L19.625,26L19.98,25.599C19.375,26.045 18.717,26.48 18.001,26.907L16.669,27.635L17.875,29L16,31.121L14.125,29L15.299,27.672C14.207,27.146 13.233,26.593 12.362,26.014L10.5,28.121L8.625,26L10.144,24.282C9.359,23.557 8.697,22.797 8.137,22C8.129,21.98 8.122,21.96 8.114,21.941C8.1,21.92 8.085,21.899 8.07,21.878L6.75,23.371L4.875,21.25L6.651,19.241C6.504,18.882 6.371,18.515 6.251,18.143C6.248,18.141 6.246,18.139 6.243,18.136C6.044,17.513 5.879,16.872 5.744,16.214L4.5,17.621L2.625,15.5L4.5,13.379L5.453,14.457C5.263,12.995 5.179,11.452 5.144,9.827L4,11.121L2.125,9L4,6.879L5.123,8.149C5.117,7.169 5.122,6.161 5.124,5.124L5.126,4L9.451,4L8.125,2.5L10,0.379L11.875,2.5L10.549,4L15.451,4L14.125,2.5L16,0.379L17.875,2.5L16.549,4L21.452,4L20.127,2.5L22.002,0.379L23.877,2.5L22.551,4ZM7.808,16.95L16.551,25.693L16.001,26C12.917,24.577 10.902,22.915 9.586,21C9.58,20.983 8.402,18.91 8.047,17.786C8.045,17.784 8.043,17.782 8.041,17.78C7.956,17.508 7.878,17.231 7.808,16.95ZM8.172,6L22.619,20.447C21.949,21.503 21.08,22.497 19.955,23.44L7.14,10.625C7.119,9.448 7.125,8.219 7.129,6.937L7.13,6L8.172,6ZM24.26,16.431L13.828,6L19.485,6L24.833,11.347C24.805,12.173 24.76,12.969 24.684,13.737C24.684,13.748 24.684,13.759 24.684,13.77C24.593,14.696 24.458,15.582 24.26,16.431ZM2.125,2.5L4,0.379L5.875,2.5L4,4.621L2.125,2.5ZM28,0.379L29.875,2.5L28,4.621L26.125,2.5L28,0.379Z" />
</g>
</svg>
<label for="zis">Zisterzienser</label>
</div>
<div>
<input type="checkbox" name="son" value="Sonstige" onclick="return updateOrder(value, checked)"
checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1.33327,0,0,1.33327,-3.7428,-21.3292)">
<path
d="M5.057,15.998L48.559,15.998L48.559,42.249C48.559,54.254 38.813,64 26.808,64C14.804,64 5.057,54.254 5.057,42.249L5.057,15.998Z" />
</g>
</svg>
<label for="son">Sonstige</label>
</div>
<div>
<input type="checkbox" name="unb" value="Unbekannt" onclick="return updateOrder(value, checked)"
checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M30.5,0L1.5,0L1.5,17.5C1.5,25.503 7.997,32 16,32L16.094,32C24.053,31.949 30.5,25.472 30.5,17.5L30.5,0ZM15.741,22.431C15.062,22.437 14.504,22.649 14.066,23.066C13.622,23.489 13.4,24.027 13.4,24.679C13.4,25.322 13.617,25.852 14.052,26.271C14.486,26.689 15.06,26.898 15.773,26.898C16.486,26.898 17.06,26.689 17.494,26.271C17.929,25.852 18.146,25.322 18.146,24.679C18.146,24.027 17.924,23.489 17.479,23.066C17.035,22.642 16.466,22.431 15.773,22.431L15.741,22.431ZM17.575,20.189L17.633,19.295C17.741,18.337 18.166,17.501 18.908,16.788L20.094,15.659C21.022,14.759 21.671,13.941 22.042,13.203C22.414,12.465 22.599,11.68 22.599,10.849C22.599,9.021 22.028,7.606 20.885,6.605C19.761,5.618 18.186,5.117 16.163,5.102L16.066,5.102C14.015,5.102 12.396,5.629 11.21,6.685C10.023,7.741 9.42,9.202 9.401,11.069L13.649,11.069C13.668,10.286 13.896,9.672 14.33,9.227C14.765,8.781 15.343,8.559 16.066,8.559C17.589,8.559 18.351,9.385 18.351,11.038C18.351,11.586 18.205,12.107 17.912,12.601C17.619,13.095 17.03,13.735 16.146,14.522C15.263,15.309 14.655,16.108 14.323,16.92C13.991,17.731 13.825,18.821 13.825,20.189L17.575,20.189Z" />
</g>
</svg>
<label for="unb">Unbekannt</label>
</div>
</fieldset>
</button>
<!--LAYER BUTTONS (LIBRARIES, RADIUS, LINES/DASHES/DOTS/ARROWS)-->
<button id="btn-layer" onclick="toggleFieldset('select-layer')">
<svg viewbox="0 0 64 64">
<g transform="matrix(1,0,0,1.00095,0,-0.0304157)">
<path
d="M57.601,42.607L32,56.179L6.399,42.607L0,46L32,62.971L64,46L57.601,42.607ZM57.601,28.607L32,42.179L6.399,28.607L0,32L32,48.971L64,32L57.601,28.607ZM32,1.029L0,18L32,34.971L64,18L32,1.029ZM32,7.821L51.194,18L32,28.179L12.806,18L32,7.821Z" />
</g>
</svg>
<fieldset id="select-layer" class="select-field">
<div>
<input id="cb-lib" type="checkbox" name="lib" onclick="updateLib(checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(2,0,0,2,0,0)">
<path
d="M32,27L0,27L0,30L32,30L32,27ZM6,12.99L2,12.99L2,24.99L6,24.99L6,12.99ZM30,12.99L26,12.99L26,24.99L30,24.99L30,12.99ZM22,12.99L18,12.99L18,24.99L22,24.99L22,12.99ZM14,12.99L10,12.99L10,24.99L14,24.99L14,12.99ZM16,1L32,9L32,10.99L0,10.952L0,8.962L16,1ZM15.5,4.628C14.798,4.237 13.761,3.99 13,3.99L13,8.99C13.761,8.99 14.798,9.237 15.5,9.628L15.5,4.628ZM16.5,9.628C17.202,9.237 18.239,8.99 19,8.99L19,3.99C18.239,3.99 17.202,4.237 16.5,4.628L16.5,9.628Z" />
</g>
</svg>
<label for="lib">Bibliotheken</label>
</div>
<div>
<input id="cb-radius" type="checkbox" name="radius" onclick="updateRadius(checked)" checked>
<svg viewbox="0 0 64 64">
<path
d="M32,0C49.661,0 64,14.339 64,32C64,49.661 49.661,64 32,64C14.339,64 0,49.661 0,32C0,14.339 14.339,0 32,0ZM32,6C46.35,6 58,17.65 58,32C58,46.35 46.35,58 32,58C17.65,58 6,46.35 6,32C6,17.65 17.65,6 32,6Z" />
</svg>
<label for="radius">Radius</label>
</div>
<div>
<input id="cb-line" type="checkbox" name="line" onclick="updateLine(checked)" checked>
<svg viewbox="0 0 64 64">
<path
d="M21.945,52.974L60.105,14.877L64.318,19.093L26.159,57.189L32.971,64L16,64L16,47.029L21.945,52.974ZM4.215,48.017C4.215,48.017 6.43,45.805 9.876,42.363L5.661,38.146C2.215,41.587 -0,43.799 -0,43.799L4.215,48.017ZM15.536,36.71C17.32,34.929 19.228,33.023 21.197,31.057L16.982,26.839C15.013,28.805 13.104,30.711 11.321,32.492L15.536,36.71ZM26.858,25.404C28.764,23.5 30.67,21.597 32.518,19.751L28.303,15.533C26.454,17.379 24.549,19.282 22.642,21.186L26.858,25.404ZM37.438,6.409L31.029,0L48,0L48,16.971L41.655,10.626L38.179,14.098L33.963,9.88L37.438,6.409Z" />
</svg>
<label for="line">Verbindungen</label>
</div>
</fieldset>
</button>
<!--STYLE BUTTONS (LABELS, BORDERS, INFRASTRUCTURE)-->
<button id="btn-style" onclick="toggleFieldset('select-style')">
<svg viewbox="0 0 64 64">
<g transform="matrix(1.04132,0,0,1.04191,-1.1869,-1.34115)">
<path
d="M4.137,1.287L4.1,1.288C3.603,1.293 3.101,1.423 2.64,1.689C1.206,2.517 0.714,4.353 1.542,5.787L33.542,61.213C34.37,62.647 36.206,63.139 37.64,62.311C39.074,61.483 39.566,59.647 38.738,58.213L24.367,33.322C42.619,33.779 43.208,41.3 62.6,41.3C44.102,9.29 62.589,41.284 44.1,9.287C24.111,9.287 24.101,1.297 4.137,1.287ZM9.391,7.382L20.88,27.282C22.134,27.269 23.767,27.269 26.132,27.38C34.958,27.794 39.894,29.756 44.828,31.729C46.895,32.556 48.961,33.386 51.473,34.037L40.592,15.208C31.751,14.796 26.81,12.833 21.872,10.858C19.812,10.034 17.754,9.207 15.253,8.557C13.822,8.185 11.662,7.607 9.391,7.382Z" />
</g>
</svg>
<fieldset id="select-style" class="select-field">
<div>
<input id="cb-label" type="checkbox" name="label" onclick="updateLabel(checked)" checked>
<svg viewbox="0 0 64 64">
<path
d="M3.062,0C1.618,0 0,1.618 0,3.062L0,25.515C0,27.348 0.746,29.323 2.041,30.619C7.835,36.412 28.908,57.485 34.701,63.278C35.663,64.241 37.821,64.241 38.783,63.278C43.219,58.843 58.843,43.219 63.278,38.783C64.241,37.821 64.241,35.663 63.278,34.701C57.485,28.908 36.412,7.835 30.619,2.041C29.323,0.746 27.348,0 25.515,0L3.062,0ZM14,8C17.311,8 20,10.689 20,14C20,17.311 17.311,20 14,20C10.689,20 8,17.311 8,14C8,10.689 10.689,8 14,8Z" />
</svg>
<label for="label">Namen</label>
</div>
<div>
<input id="cb-border" type="checkbox" name="border" onclick="updateBorder(checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1,0,0,1,-96,-96)">
<path
d="M140,108L140,102C140,98.689 142.689,96 146,96C149.311,96 152,98.689 152,102L152,108L160,108L160,140L152,140L152,160L140,160L140,140L116,140L116,160L104,160L104,140L96,140L96,108L104,108L104,102C104,98.689 106.689,96 110,96C113.311,96 116,98.689 116,102L116,108L140,108ZM149.333,114L154,114L154,134L142.667,134L149.333,114ZM118.667,134L130.667,134L137.333,114L125.333,114L118.667,134ZM113.333,114L106.667,134L102,134C102,134 102,114 102,114L113.333,114Z" />
</g>
</svg>
<label for="border">Grenzen</label>
</div>
<div>
<input id="cb-inf" type="checkbox" name="inf" onclick="updateInf(checked)" checked>
<svg viewbox="0 0 64 64">
<g transform="matrix(1.01492,0,0,1,-0.477404,0)">
<path
d="M36,0L37,16L27,16L28,0L18,0C16.933,0 15.759,0.965 15.5,2C0.5,62 15.5,2 0.5,62C0.298,62.808 1.167,64 2,64L24,64L25,48L39,48L40,64L62,64C62.833,64 63.702,62.808 63.5,62C48.5,2 63.5,62 48.5,2C48.241,0.965 47.067,0 46,0L36,0ZM37.5,24L26.5,24L25.5,40L38.5,40L37.5,24Z" />
</g>
</svg>
<label for="inf">Infrastruktur</label>
</div>
</fieldset>
</button>
<!--GEOCODER BUTTON-->
<button id="btn-search" onclick="toggleSearch()">
<svg viewbox="0 0 64 64">
<g transform="matrix(3.65923,0,0,3.65923,-10.9777,-10.9777)">
<path
d="M15.5,14L14.71,14L14.43,13.73C15.41,12.59 16,11.11 16,9.5C16,5.91 13.09,3 9.5,3C5.91,3 3,5.91 3,9.5C3,13.09 5.91,16 9.5,16C11.11,16 12.59,15.41 13.73,14.43L14,14.71L14,15.5L19,20.49L20.49,19L15.5,14ZM9.5,14C7.01,14 5,11.99 5,9.5C5,7.01 7.01,5 9.5,5C11.99,5 14,7.01 14,9.5C14,11.99 11.99,14 9.5,14Z"
style="fill:rgb(39,39,39);fill-rule:nonzero;" />
</g>
</svg>
<div id="geocoder" class="geocoder"></div>
</button>
</div>
</section>
<!--SIDE-->
<section id="side">
<!--SIDE HOME-->
<div id="side-home" class="side-panel">
<svg id="logo" viewbox="0 0 800 240">
<g transform="matrix(0.5,0,0,0.5,0,0)">
<path
d="M631.434,377.431L625.795,394.494L620.156,377.431L614.659,377.431L623.236,402.173L622.857,403.358C622.525,404.258 622.146,404.875 621.72,405.206C621.293,405.586 620.677,405.728 619.682,405.728L617.55,405.728L617.55,410.557L619.919,410.557C621.72,410.557 623.283,410.13 624.421,409.278C625.558,408.474 626.506,407.101 627.122,405.349L636.788,377.431L631.434,377.431ZM995.029,379.798C993.325,378.046 991.05,377.147 988.346,377.147C986.781,377.147 985.406,377.478 984.173,378.188C983.746,378.425 983.367,378.709 983.035,378.993L983.035,377.431L977.921,377.431L977.921,410.557L983.035,410.557L983.035,401.837C984.457,403.021 986.354,403.636 988.584,403.636C991.192,403.636 993.42,402.737 995.077,400.985C996.781,399.234 997.633,396.437 997.633,392.833L997.633,387.902C997.633,384.299 996.734,381.549 995.029,379.798ZM1062.76,400.464C1064.99,402.595 1068.02,403.731 1071.72,403.731C1075.37,403.731 1078.41,402.595 1080.63,400.464C1082.86,398.286 1083.99,394.825 1083.99,390.274L1083.99,381.788C1083.99,377.236 1082.86,373.776 1080.68,371.597C1078.45,369.467 1075.42,368.33 1071.77,368.33C1068.07,368.33 1065.03,369.467 1062.81,371.597C1060.58,373.776 1059.45,377.236 1059.45,381.788L1059.45,390.274C1059.45,394.825 1060.58,398.286 1062.76,400.464ZM870.988,400.985C872.597,402.737 875.109,403.636 878.239,403.636C881.465,403.636 883.929,402.737 885.586,400.985C887.196,399.281 888.048,396.722 888.048,393.594L888.048,377.431L882.935,377.431L882.935,393.167C882.935,395.253 882.603,396.675 881.844,397.623C881.18,398.428 880.042,398.855 878.287,398.855C876.532,398.855 875.394,398.428 874.73,397.575C874.018,396.627 873.639,395.205 873.639,393.167L873.639,377.431L868.526,377.431L868.526,393.594C868.526,396.722 869.378,399.281 870.988,400.985ZM642.526,401.553C644.231,402.926 646.601,403.636 649.399,403.636C652.34,403.636 654.758,402.926 656.557,401.553C658.403,400.181 659.398,398.096 659.398,395.536C659.398,393.402 658.735,391.648 657.409,390.51C656.131,389.372 654.237,388.566 651.723,388.092L648.593,387.523C647.265,387.333 646.364,386.954 645.842,386.48C645.368,386.101 645.178,385.579 645.178,384.773C645.178,383.777 645.51,383.113 646.221,382.544C646.98,381.928 648.071,381.643 649.542,381.643C651.059,381.643 652.198,381.928 653.004,382.544C653.763,383.113 654.095,383.777 654.095,384.773L654.095,385.863L659.113,385.863L659.113,384.631C659.113,382.402 658.166,380.507 656.367,379.135C654.663,377.762 652.293,377.099 649.447,377.099C646.791,377.099 644.515,377.809 642.811,379.182C641.059,380.602 640.16,382.544 640.16,384.915C640.16,387.001 640.822,388.708 642.101,389.894C643.284,390.984 645.178,391.743 647.692,392.217L650.68,392.739C652.103,392.976 653.099,393.355 653.668,393.829C654.142,394.208 654.379,394.777 654.379,395.726C654.379,396.816 654,397.527 653.241,398.096C652.387,398.713 651.154,398.997 649.542,398.997C647.977,398.997 646.838,398.665 645.985,398.049C645.131,397.433 644.799,396.674 644.799,395.631L644.799,394.54L639.781,394.54L639.781,395.678C639.781,398.096 640.727,400.086 642.526,401.553ZM429.704,391.976L429.704,388.19C429.704,384.537 428.758,381.691 426.959,379.845C425.112,378.046 422.647,377.099 419.659,377.099C416.671,377.099 414.206,378.046 412.359,379.845C410.513,381.691 409.566,384.537 409.566,388.19L409.566,392.356C409.566,396.104 410.513,398.997 412.359,400.843C414.206,402.69 416.718,403.636 419.754,403.636C422.694,403.636 425.112,402.879 426.864,401.364C428.615,399.849 429.515,397.764 429.515,395.25L429.515,394.064L424.497,394.064L424.497,395.155C424.497,396.341 424.165,397.195 423.406,397.859C422.599,398.523 421.509,398.855 419.991,398.855C418.236,398.855 417.003,398.428 416.055,397.479C415.153,396.578 414.679,394.918 414.679,392.451L414.679,391.976L429.704,391.976ZM1024.37,401.553C1026.07,402.926 1028.44,403.636 1031.24,403.636C1034.18,403.636 1036.6,402.926 1038.4,401.553C1040.25,400.181 1041.24,398.096 1041.24,395.536C1041.24,393.402 1040.58,391.648 1039.25,390.51C1037.97,389.372 1036.08,388.566 1033.57,388.092L1030.43,387.523C1029.11,387.333 1028.21,386.954 1027.68,386.48C1027.21,386.101 1027.02,385.579 1027.02,384.773C1027.02,383.777 1027.35,383.113 1028.06,382.544C1028.82,381.928 1029.91,381.643 1031.38,381.643C1032.9,381.643 1034.04,381.928 1034.85,382.544C1035.61,383.113 1035.94,383.777 1035.94,384.773L1035.94,385.863L1040.95,385.863L1040.95,384.631C1040.95,382.402 1040.01,380.507 1038.21,379.135C1036.51,377.762 1034.13,377.099 1031.29,377.099C1028.63,377.099 1026.36,377.809 1024.65,379.182C1022.9,380.602 1022,382.544 1022,384.915C1022,387.001 1022.67,388.708 1023.94,389.894C1025.13,390.984 1027.02,391.743 1029.53,392.217L1032.52,392.739C1033.94,392.976 1034.94,393.355 1035.51,393.829C1035.98,394.208 1036.22,394.777 1036.22,395.726C1036.22,396.816 1035.84,397.527 1035.08,398.096C1034.23,398.713 1033,398.997 1031.38,398.997C1029.82,398.997 1028.68,398.665 1027.83,398.049C1026.97,397.433 1026.64,396.674 1026.64,395.631L1026.64,394.54L1021.62,394.54L1021.62,395.678C1021.62,398.096 1022.57,400.086 1024.37,401.553ZM163.704,391.976L163.704,388.19C163.704,384.537 162.757,381.691 160.958,379.845C159.112,378.046 156.646,377.099 153.659,377.099C150.671,377.099 148.205,378.046 146.359,379.845C144.512,381.691 143.566,384.537 143.566,388.19L143.566,392.356C143.566,396.104 144.512,398.997 146.359,400.843C148.205,402.69 150.718,403.636 153.753,403.636C156.694,403.636 159.112,402.879 160.863,401.364C162.615,399.849 163.514,397.764 163.514,395.25L163.514,394.064L158.496,394.064L158.496,395.155C158.496,396.341 158.164,397.195 157.405,397.859C156.599,398.523 155.508,398.855 153.991,398.855C152.236,398.855 151.003,398.428 150.054,397.479C149.153,396.578 148.679,394.918 148.679,392.451L148.679,391.976L163.704,391.976ZM172.618,401.033C174.464,402.737 177.024,403.636 180.107,403.636C183,403.636 185.418,402.832 187.17,401.222C188.969,399.612 189.915,397.338 189.915,394.682L189.915,393.545L184.897,393.545L184.897,394.73C184.897,396.105 184.518,397.053 183.711,397.764C182.858,398.523 181.72,398.855 180.154,398.855C178.4,398.855 177.167,398.428 176.218,397.527C175.364,396.674 174.89,395.062 174.89,392.644L174.89,388.092C174.89,385.721 175.364,384.109 176.265,383.255C177.214,382.355 178.447,381.928 180.202,381.928C181.767,381.928 182.858,382.26 183.711,383.018C184.518,383.73 184.897,384.678 184.897,386.053L184.897,387.238L189.915,387.238L189.915,386.053C189.915,383.398 189.016,381.123 187.217,379.513C185.465,377.904 183,377.099 180.06,377.099C177.024,377.099 174.464,377.999 172.618,379.703C170.724,381.454 169.777,384.251 169.777,387.902L169.777,392.833C169.777,396.532 170.724,399.281 172.618,401.033ZM541.757,379.371C540.1,377.856 537.683,377.099 534.648,377.099C531.849,377.099 529.574,377.809 527.917,379.182C526.26,380.555 525.361,382.497 525.361,384.822L525.361,386.008L530.379,386.008L530.379,384.917C530.379,383.873 530.711,383.162 531.422,382.592C532.181,381.975 533.225,381.691 534.695,381.691C536.213,381.691 537.304,382.023 538.063,382.782C538.821,383.494 539.201,384.49 539.201,386.008L539.201,387.811L533.652,387.811C530.901,387.811 528.626,388.521 527.064,389.846C525.502,391.266 524.65,393.21 524.65,395.629C524.65,398.191 525.454,400.228 527.064,401.601C528.626,402.926 530.854,403.636 533.557,403.636C535.217,403.636 536.687,403.4 537.873,402.879C538.347,402.642 538.821,402.405 539.248,402.121L539.248,403.352L544.314,403.352L544.314,386.056C544.314,383.209 543.462,380.933 541.757,379.371ZM495.968,391.976L495.968,388.19C495.968,384.537 495.021,381.691 493.222,379.845C491.375,378.046 488.91,377.099 485.922,377.099C482.934,377.099 480.469,378.046 478.622,379.845C476.776,381.691 475.829,384.537 475.829,388.19L475.829,392.356C475.829,396.104 476.776,398.997 478.622,400.843C480.469,402.69 482.982,403.636 486.017,403.636C488.957,403.636 491.375,402.879 493.127,401.364C494.878,399.849 495.778,397.764 495.778,395.25L495.778,394.064L490.76,394.064L490.76,395.155C490.76,396.341 490.428,397.195 489.669,397.859C488.863,398.523 487.772,398.855 486.254,398.855C484.499,398.855 483.266,398.428 482.318,397.479C481.416,396.578 480.942,394.918 480.942,392.451L480.942,391.976L495.968,391.976ZM921.988,401.033C923.834,402.737 926.395,403.636 929.477,403.636C932.37,403.636 934.788,402.832 936.54,401.222C938.339,399.612 939.286,397.338 939.286,394.682L939.286,393.545L934.267,393.545L934.267,394.73C934.267,396.105 933.888,397.053 933.082,397.764C932.228,398.523 931.09,398.855 929.525,398.855C927.77,398.855 926.537,398.428 925.588,397.527C924.735,396.674 924.26,395.062 924.26,392.644L924.26,388.092C924.26,385.721 924.735,384.109 925.636,383.255C926.584,382.355 927.817,381.928 929.572,381.928C931.137,381.928 932.228,382.26 933.082,383.018C933.888,383.73 934.267,384.678 934.267,386.053L934.267,387.238L939.286,387.238L939.286,386.053C939.286,383.398 938.386,381.123 936.587,379.513C934.835,377.904 932.37,377.099 929.43,377.099C926.395,377.099 923.834,377.999 921.988,379.703C920.094,381.454 919.147,384.251 919.147,387.902L919.147,392.833C919.147,396.532 920.094,399.281 921.988,401.033ZM699.405,401.033C701.251,402.737 703.811,403.636 706.894,403.636C709.787,403.636 712.205,402.832 713.956,401.222C715.756,399.612 716.702,397.338 716.702,394.682L716.702,393.545L711.684,393.545L711.684,394.73C711.684,396.105 711.305,397.053 710.498,397.764C709.645,398.523 708.506,398.855 706.941,398.855C705.187,398.855 703.954,398.428 703.005,397.527C702.151,396.674 701.677,395.062 701.677,392.644L701.677,388.092C701.677,385.721 702.151,384.109 703.052,383.255C704.001,382.355 705.234,381.928 706.989,381.928C708.554,381.928 709.645,382.26 710.498,383.018C711.305,383.73 711.684,384.678 711.684,386.053L711.684,387.238L716.702,387.238L716.702,386.053C716.702,383.398 715.803,381.123 714.004,379.513C712.252,377.904 709.787,377.099 706.847,377.099C703.811,377.099 701.251,377.999 699.405,379.703C697.511,381.454 696.564,384.251 696.564,387.902L696.564,392.833C696.564,396.532 697.511,399.281 699.405,401.033ZM831.267,379.371C829.61,377.856 827.193,377.099 824.158,377.099C821.359,377.099 819.084,377.809 817.427,379.182C815.77,380.555 814.871,382.497 814.871,384.822L814.871,386.008L819.889,386.008L819.889,384.917C819.889,383.873 820.221,383.162 820.932,382.592C821.691,381.975 822.735,381.691 824.205,381.691C825.723,381.691 826.814,382.023 827.573,382.782C828.331,383.494 828.711,384.49 828.711,386.008L828.711,387.811L823.162,387.811C820.411,387.811 818.136,388.521 816.574,389.846C815.012,391.266 814.16,393.21 814.16,395.629C814.16,398.191 814.964,400.228 816.574,401.601C818.136,402.926 820.364,403.636 823.067,403.636C824.727,403.636 826.197,403.4 827.383,402.879C827.857,402.642 828.331,402.405 828.758,402.121L828.758,403.352L833.824,403.352L833.824,386.056C833.824,383.209 832.972,380.933 831.267,379.371ZM739.314,379.371C737.657,377.856 735.24,377.099 732.205,377.099C729.406,377.099 727.131,377.809 725.474,379.182C723.817,380.555 722.917,382.497 722.917,384.822L722.917,386.008L727.936,386.008L727.936,384.917C727.936,383.873 728.268,383.162 728.979,382.592C729.738,381.975 730.782,381.691 732.252,381.691C733.77,381.691 734.861,382.023 735.62,382.782C736.378,383.494 736.758,384.49 736.758,386.008L736.758,387.811L731.208,387.811C728.458,387.811 726.183,388.521 724.621,389.846C723.059,391.266 722.207,393.21 722.207,395.629C722.207,398.191 723.011,400.228 724.621,401.601C726.183,402.926 728.41,403.636 731.114,403.636C732.774,403.636 734.244,403.4 735.43,402.879C735.904,402.642 736.378,402.405 736.805,402.121L736.805,403.352L741.871,403.352L741.871,386.056C741.871,383.209 741.019,380.933 739.314,379.371ZM1193.53,391.976L1193.53,388.19C1193.53,384.537 1192.58,381.691 1190.79,379.845C1188.94,378.046 1186.47,377.099 1183.49,377.099C1180.5,377.099 1178.03,378.046 1176.19,379.845C1174.34,381.691 1173.39,384.537 1173.39,388.19L1173.39,392.356C1173.39,396.104 1174.34,398.997 1176.19,400.843C1178.03,402.69 1180.55,403.636 1183.58,403.636C1186.52,403.636 1188.94,402.879 1190.69,401.364C1192.44,399.849 1193.34,397.764 1193.34,395.25L1193.34,394.064L1188.32,394.064L1188.32,395.155C1188.32,396.341 1187.99,397.195 1187.23,397.859C1186.43,398.523 1185.34,398.855 1183.82,398.855C1182.06,398.855 1180.83,398.428 1179.88,397.479C1178.98,396.578 1178.51,394.918 1178.51,392.451L1178.51,391.976L1193.53,391.976ZM336.759,401.553C338.463,402.926 340.833,403.636 343.632,403.636C346.572,403.636 348.99,402.926 350.789,401.553C352.636,400.181 353.63,398.096 353.63,395.536C353.63,393.402 352.967,391.648 351.641,390.51C350.363,389.372 348.469,388.566 345.955,388.092L342.825,387.523C341.497,387.333 340.596,386.954 340.074,386.48C339.6,386.101 339.41,385.579 339.41,384.773C339.41,383.777 339.742,383.113 340.454,382.544C341.213,381.928 342.304,381.643 343.774,381.643C345.292,381.643 346.43,381.928 347.236,382.544C347.995,383.113 348.327,383.777 348.327,384.773L348.327,385.863L353.345,385.863L353.345,384.631C353.345,382.402 352.399,380.507 350.6,379.135C348.895,377.762 346.525,377.099 343.679,377.099C341.023,377.099 338.748,377.809 337.043,379.182C335.291,380.602 334.392,382.544 334.392,384.915C334.392,387.001 335.055,388.708 336.333,389.894C337.517,390.984 339.41,391.743 341.924,392.217L344.912,392.739C346.335,392.976 347.331,393.355 347.9,393.829C348.374,394.208 348.612,394.777 348.612,395.726C348.612,396.816 348.232,397.527 347.473,398.096C346.62,398.713 345.386,398.997 343.774,398.997C342.209,398.997 341.071,398.665 340.217,398.049C339.363,397.433 339.031,396.674 339.031,395.631L339.031,394.54L334.013,394.54L334.013,395.678C334.013,398.096 334.96,400.086 336.759,401.553ZM300.025,400.938C301.682,402.69 303.91,403.636 306.518,403.636C308.178,403.636 309.648,403.305 310.882,402.642C311.308,402.405 311.688,402.169 312.067,401.837L312.067,403.352L317.228,403.352L317.228,368.757L312.067,368.757L312.067,379.04C310.597,377.762 308.747,377.099 306.566,377.099C303.957,377.099 301.682,378.046 300.025,379.798C298.321,381.549 297.469,384.299 297.469,387.902L297.469,392.833C297.469,396.437 298.321,399.186 300.025,400.938ZM897.056,401.553C898.761,402.926 901.131,403.636 903.929,403.636C906.87,403.636 909.288,402.926 911.087,401.553C912.933,400.181 913.928,398.096 913.928,395.536C913.928,393.402 913.265,391.648 911.939,390.51C910.661,389.372 908.767,388.566 906.253,388.092L903.123,387.523C901.795,387.333 900.894,386.954 900.372,386.48C899.898,386.101 899.708,385.579 899.708,384.773C899.708,383.777 900.04,383.113 900.751,382.544C901.51,381.928 902.601,381.643 904.072,381.643C905.589,381.643 906.728,381.928 907.534,382.544C908.293,383.113 908.625,383.777 908.625,384.773L908.625,385.863L913.643,385.863L913.643,384.631C913.643,382.402 912.696,380.507 910.897,379.135C909.193,377.762 906.823,377.099 903.977,377.099C901.321,377.099 899.045,377.809 897.341,379.182C895.589,380.602 894.69,382.544 894.69,384.915C894.69,387.001 895.352,388.708 896.631,389.894C897.814,390.984 899.708,391.743 902.222,392.217L905.21,392.739C906.633,392.976 907.629,393.355 908.198,393.829C908.672,394.208 908.909,394.777 908.909,395.726C908.909,396.816 908.53,397.527 907.771,398.096C906.917,398.713 905.684,398.997 904.072,398.997C902.506,398.997 901.368,398.665 900.514,398.049C899.661,397.433 899.329,396.674 899.329,395.631L899.329,394.54L894.31,394.54L894.31,395.678C894.31,398.096 895.257,400.086 897.056,401.553ZM438.334,400.938C439.991,402.69 442.218,403.636 444.827,403.636C446.487,403.636 447.957,403.305 449.19,402.642C449.617,402.405 449.997,402.169 450.376,401.837L450.376,403.352L455.537,403.352L455.537,368.757L450.376,368.757L450.376,379.04C448.906,377.762 447.056,377.099 444.874,377.099C442.266,377.099 439.991,378.046 438.334,379.798C436.63,381.549 435.777,384.299 435.777,387.902L435.777,392.833C435.777,396.437 436.63,399.186 438.334,400.938ZM131.479,368.757L121.522,389.561L111.519,368.757L106.5,368.757L106.5,403.352L111.85,403.352L111.85,380.936L119.626,396.812L123.466,396.812L131.147,380.936L131.147,403.352L136.497,403.352L136.497,368.757L131.479,368.757ZM516.161,377.431L510.617,394.585L505.072,377.431L499.528,377.431L508.484,403.352L512.702,403.352L521.658,377.431L516.161,377.431ZM247.457,368.757L242.344,368.757L242.344,403.352L247.457,403.352L247.457,387.094C247.457,385.341 247.884,384.108 248.738,383.208C249.592,382.354 250.682,381.928 252.153,381.928C253.67,381.928 254.714,382.307 255.52,383.208C256.374,384.061 256.753,385.293 256.753,387.094L256.753,403.352L261.866,403.352L261.866,386.62C261.866,383.682 261.062,381.312 259.499,379.656C257.937,377.999 255.662,377.147 252.959,377.147C250.777,377.147 248.928,377.762 247.457,378.898L247.457,368.757ZM969.953,377.425L964.839,377.425L964.839,403.352L969.953,403.352L969.953,377.425ZM201.86,368.757L196.747,368.757L196.747,403.352L201.86,403.352L201.86,387.094C201.86,385.341 202.287,384.108 203.14,383.208C203.994,382.354 205.085,381.928 206.555,381.928C208.073,381.928 209.116,382.307 209.923,383.208C210.776,384.061 211.156,385.293 211.156,387.094L211.156,403.352L216.269,403.352L216.269,386.62C216.269,383.682 215.464,381.312 213.902,379.656C212.339,377.999 210.065,377.147 207.362,377.147C205.18,377.147 203.33,377.762 201.86,378.898L201.86,368.757ZM689.353,377.425L684.24,377.425L684.24,403.352L689.353,403.352L689.353,377.425ZM1139.07,377.425L1133.96,377.425L1133.96,403.352L1139.07,403.352L1139.07,377.425ZM274.948,377.425L269.835,377.425L269.835,403.352L274.948,403.352L274.948,377.425ZM468.619,377.425L463.505,377.425L463.505,403.352L468.619,403.352L468.619,377.425ZM951.183,377.431L946.117,377.431L946.117,403.352L951.23,403.352L951.23,387.189C951.23,385.578 951.657,384.345 952.51,383.35C953.363,382.402 954.453,381.975 955.828,381.975C957.155,381.975 958.34,382.307 959.24,382.923L959.24,377.431C958.387,377.194 957.487,377.099 956.539,377.099C955.022,377.099 953.647,377.431 952.415,378.093C951.988,378.33 951.562,378.614 951.183,378.946L951.183,377.431ZM802.641,368.757L792.685,389.561L782.681,368.757L777.663,368.757L777.663,403.352L783.013,403.352L783.013,380.936L790.789,396.812L794.629,396.812L802.31,380.936L802.31,403.352L807.66,403.352L807.66,368.757L802.641,368.757ZM751.212,401.458C752.396,402.689 754.195,403.352 756.327,403.352L759.551,403.352L759.551,398.523L756.659,398.523C755.806,398.523 755.38,398.381 755.048,398.002C754.716,397.623 754.574,396.959 754.574,395.916L754.574,368.757L749.461,368.757L749.461,396.106C749.461,398.381 750.076,400.227 751.212,401.458ZM553.655,401.458C554.839,402.689 556.638,403.352 558.771,403.352L561.994,403.352L561.994,398.523L559.102,398.523C558.249,398.523 557.823,398.381 557.491,398.002C557.159,397.623 557.017,396.959 557.017,395.916L557.017,368.757L551.904,368.757L551.904,396.106C551.904,398.381 552.519,400.227 553.655,401.458ZM284.669,401.458C285.853,402.689 287.652,403.352 289.784,403.352L293.007,403.352L293.007,398.523L290.116,398.523C289.263,398.523 288.836,398.381 288.504,398.002C288.173,397.623 288.03,396.959 288.03,395.916L288.03,368.757L282.917,368.757L282.917,396.106C282.917,398.381 283.533,400.227 284.669,401.458ZM1120.02,401.458C1121.2,402.689 1123,403.352 1125.13,403.352L1128.36,403.352L1128.36,398.523L1125.47,398.523C1124.61,398.523 1124.19,398.381 1123.86,398.002C1123.52,397.623 1123.38,396.959 1123.38,395.916L1123.38,368.757L1118.27,368.757L1118.27,396.106C1118.27,398.381 1118.88,400.227 1120.02,401.458ZM672.337,396.295L672.337,381.88L677.741,381.88L677.741,377.431L672.337,377.431L672.337,369.895L667.177,372.264L667.177,377.431L663.432,377.431L663.432,381.88L667.177,381.88L667.177,396.437C667.177,398.523 667.792,400.275 668.976,401.458C670.16,402.689 671.911,403.352 673.949,403.352L677.314,403.352L677.314,398.618L674.47,398.618C672.954,398.618 672.337,397.954 672.337,396.295ZM230.82,396.295L230.82,381.88L236.224,381.88L236.224,377.431L230.82,377.431L230.82,369.895L225.66,372.264L225.66,377.431L221.915,377.431L221.915,381.88L225.66,381.88L225.66,396.437C225.66,398.523 226.275,400.275 227.459,401.458C228.643,402.689 230.394,403.352 232.432,403.352L235.797,403.352L235.797,398.618L232.953,398.618C231.437,398.618 230.82,397.954 230.82,396.295ZM1011.43,396.295L1011.43,381.88L1016.83,381.88L1016.83,377.431L1011.43,377.431L1011.43,369.895L1006.27,372.264L1006.27,377.431L1002.52,377.431L1002.52,381.88L1006.27,381.88L1006.27,396.437C1006.27,398.523 1006.88,400.275 1008.07,401.458C1009.25,402.689 1011,403.352 1013.04,403.352L1016.4,403.352L1016.4,398.618L1013.56,398.618C1012.04,398.618 1011.43,397.954 1011.43,396.295ZM1096.22,377.431L1091.16,377.431L1091.16,403.352L1096.27,403.352L1096.27,387.094C1096.27,385.341 1096.7,384.108 1097.55,383.208C1098.4,382.354 1099.5,381.928 1100.96,381.928C1102.48,381.928 1103.53,382.307 1104.33,383.208C1105.19,384.061 1105.57,385.293 1105.57,387.094L1105.57,403.352L1110.68,403.352L1110.68,386.62C1110.68,383.729 1109.87,381.36 1108.36,379.703C1106.84,377.999 1104.57,377.147 1101.77,377.147C1100.25,377.147 1098.83,377.431 1097.6,378.046C1097.12,378.283 1096.65,378.567 1096.22,378.898L1096.22,377.431ZM397.479,368.757L387.523,389.561L377.519,368.757L372.5,368.757L372.5,403.352L377.85,403.352L377.85,380.936L385.626,396.812L389.467,396.812L397.148,380.936L397.148,403.352L402.498,403.352L402.498,368.757L397.479,368.757ZM846.479,377.431L841.414,377.431L841.414,403.352L846.527,403.352L846.527,387.094C846.527,385.341 846.954,384.108 847.807,383.208C848.661,382.354 849.752,381.928 851.222,381.928C852.74,381.928 853.783,382.307 854.59,383.208C855.443,384.061 855.823,385.293 855.823,387.094L855.823,403.352L860.936,403.352L860.936,386.62C860.936,383.729 860.131,381.36 858.616,379.703C857.101,377.999 854.827,377.147 852.029,377.147C850.511,377.147 849.088,377.431 847.855,378.046C847.381,378.283 846.906,378.567 846.479,378.898L846.479,377.431ZM605.084,368.757L595.128,389.561L585.125,368.757L580.106,368.757L580.106,403.352L585.456,403.352L585.456,380.936L593.232,396.812L597.072,396.812L604.753,380.936L604.753,403.352L610.103,403.352L610.103,368.757L605.084,368.757ZM1152.11,377.431L1147.04,377.431L1147.04,403.352L1152.15,403.352L1152.15,387.094C1152.15,385.341 1152.58,384.108 1153.43,383.208C1154.29,382.354 1155.38,381.928 1156.85,381.928C1158.37,381.928 1159.41,382.307 1160.21,383.208C1161.07,384.061 1161.45,385.293 1161.45,387.094L1161.45,403.352L1166.56,403.352L1166.56,386.62C1166.56,383.729 1165.76,381.36 1164.24,379.703C1162.73,377.999 1160.45,377.147 1157.65,377.147C1156.14,377.147 1154.71,377.431 1153.48,378.046C1153.01,378.283 1152.53,378.567 1152.11,378.898L1152.11,377.431ZM538.015,397.953C537.256,398.76 535.976,399.139 534.079,399.139C531.091,399.139 529.763,398.048 529.763,395.582C529.763,393.162 531.091,392.071 534.126,392.071L539.201,392.071L539.201,394.253C539.201,396.008 538.821,397.194 538.015,397.953ZM827.525,397.953C826.766,398.76 825.486,399.139 823.589,399.139C820.601,399.139 819.273,398.048 819.273,395.582C819.273,393.162 820.601,392.071 823.636,392.071L828.711,392.071L828.711,394.253C828.711,396.008 828.331,397.194 827.525,397.953ZM735.572,397.953C734.813,398.76 733.533,399.139 731.636,399.139C728.648,399.139 727.32,398.048 727.32,395.582C727.32,393.162 728.648,392.071 731.683,392.071L736.758,392.071L736.758,394.253C736.758,396.008 736.378,397.194 735.572,397.953ZM310.739,397.243C309.886,398.333 308.7,398.855 306.992,398.855C304.052,398.855 302.629,396.911 302.629,392.644L302.629,388.092C302.629,383.872 304.099,381.928 307.182,381.928C308.842,381.928 309.98,382.449 310.787,383.54C311.64,384.725 312.067,386.29 312.067,388.376L312.067,392.596C312.067,394.588 311.64,396.058 310.739,397.243ZM992.52,392.644C992.52,396.911 991.097,398.855 988.109,398.855C986.402,398.855 985.264,398.333 984.363,397.196C983.461,396.01 983.035,394.54 983.035,392.596L983.035,388.376C983.035,386.29 983.461,384.725 984.315,383.54C985.121,382.449 986.26,381.928 987.92,381.928C991.05,381.928 992.52,383.872 992.52,388.139L992.52,392.644ZM449.048,397.243C448.194,398.333 447.009,398.855 445.301,398.855C442.361,398.855 440.938,396.911 440.938,392.644L440.938,388.092C440.938,383.872 442.408,381.928 445.491,381.928C447.151,381.928 448.289,382.449 449.096,383.54C449.949,384.725 450.376,386.29 450.376,388.376L450.376,392.596C450.376,394.588 449.949,396.058 449.048,397.243ZM1078.64,381.93L1078.64,390.464C1078.64,396.058 1076.41,398.665 1071.77,398.665C1069.4,398.665 1067.74,398.049 1066.55,396.769C1065.37,395.489 1064.8,393.45 1064.8,390.464L1064.8,381.93C1064.8,378.801 1065.37,376.62 1066.55,375.293C1067.69,373.965 1069.4,373.349 1071.77,373.349C1076.41,373.349 1078.64,376.099 1078.64,381.93ZM150.007,383.256C150.908,382.355 152.046,381.928 153.659,381.928C155.271,381.928 156.457,382.307 157.31,383.161C158.164,384.016 158.591,385.439 158.591,387.669L148.679,387.669C148.726,385.534 149.153,384.063 150.007,383.256ZM482.27,383.256C483.171,382.355 484.31,381.928 485.922,381.928C487.535,381.928 488.72,382.307 489.574,383.161C490.428,384.016 490.854,385.439 490.854,387.669L480.942,387.669C480.99,385.534 481.416,384.063 482.27,383.256ZM1179.83,383.256C1180.74,382.355 1181.87,381.928 1183.49,381.928C1185.1,381.928 1186.28,382.307 1187.14,383.161C1187.99,384.016 1188.42,385.439 1188.42,387.669L1178.51,387.669C1178.55,385.534 1178.98,384.063 1179.83,383.256ZM416.007,383.256C416.908,382.355 418.046,381.928 419.659,381.928C421.271,381.928 422.457,382.307 423.311,383.161C424.164,384.016 424.591,385.439 424.591,387.669L414.679,387.669C414.727,385.534 415.153,384.063 416.007,383.256ZM328.793,368.757L323.775,368.757L323.775,381.549L328.793,381.549L328.793,368.757ZM468.713,369.231L463.411,369.231L463.411,375.387L468.713,375.387L468.713,369.231ZM275.043,369.231L269.74,369.231L269.74,375.387L275.043,375.387L275.043,369.231ZM1139.16,369.231L1133.86,369.231L1133.86,375.387L1139.16,375.387L1139.16,369.231ZM689.448,369.231L684.146,369.231L684.146,375.387L689.448,375.387L689.448,369.231ZM970.047,369.231L964.745,369.231L964.745,375.387L970.047,375.387L970.047,369.231Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
<g transform="matrix(0.5,0,0,0.5,-80,-146.284)">
<path
d="M1512.69,682.009C1444.08,681.575 1388.5,625.732 1388.5,557.012L1388.5,387.012C1388.5,375.386 1380.86,369.376 1373.5,362.012L1653.5,362.012C1646.41,369.098 1638.5,373.833 1638.5,387.163L1638.5,557.012C1638.5,626.001 1582.49,682.012 1513.5,682.012L1512.69,682.009ZM1513.5,447.012C1554.89,447.012 1588.5,480.618 1588.5,522.012C1588.5,563.406 1554.89,597.012 1513.5,597.012C1472.11,597.012 1438.5,563.406 1438.5,522.012C1438.5,480.618 1472.11,447.012 1513.5,447.012Z"
style="fill:rgb(39,123,178);" />
</g>
<g transform="matrix(0.5,0,0,0.5,0,0)">
<path
d="M178.531,115.693L229.313,273.975L279.938,115.693L352.125,115.693L352.125,343.193L297.125,343.193L297.125,290.068L302.438,181.318L247.438,343.193L211.188,343.193L156.031,181.162L161.344,290.068L161.344,343.193L106.5,343.193L106.5,115.693L178.531,115.693ZM459,115.693L509.781,273.975L560.406,115.693L632.594,115.693L632.594,343.193L577.594,343.193L577.594,290.068L582.906,181.318L527.906,343.193L491.656,343.193L436.5,181.162L441.813,290.068L441.813,343.193L386.969,343.193L386.969,115.693L459,115.693ZM739.469,115.693L790.25,273.975L840.875,115.693L913.063,115.693L913.063,343.193L858.063,343.193L858.063,290.068L863.375,181.318L808.375,343.193L772.125,343.193L716.969,181.162L722.281,290.068L722.281,343.193L667.438,343.193L667.438,115.693L739.469,115.693ZM1019.94,115.693L1070.72,273.975L1121.34,115.693L1193.53,115.693L1193.53,343.193L1138.53,343.193L1138.53,290.068L1143.84,181.318L1088.84,343.193L1052.59,343.193L997.438,181.162L1002.75,290.068L1002.75,343.193L947.906,343.193L947.906,115.693L1019.94,115.693Z"
style="fill:rgb(39,123,178);fill-rule:nonzero;" />
</g>
</svg>
<!--MENU WITH BUTTONS TO DISPLAY OTHER SIDE PANELS-->
<div id="home-container">
<button class="home-button" onclick="toggleSide('side-entries'); openTab('tl-od', 'tab-od', '#277BB2')">
<svg viewbox="0 0 72 72">
<path
d="M7.2,14.4L0,14.4L0,64.8C0,68.76 3.24,72 7.2,72L57.6,72L57.6,64.8L7.2,64.8L7.2,14.4ZM21.6,57.6L64.8,57.6L64.846,57.6C65.628,57.592 66.405,57.462 67.145,57.206C68.173,56.849 69.115,56.255 69.885,55.485C70.655,54.715 71.249,53.773 71.606,52.745C71.867,51.991 71.997,51.197 72,50.4L72,7.2C72,3.24 68.76,0 64.8,0L21.6,0C17.655,0 14.425,3.215 14.4,7.154L14.4,7.2L14.4,50.4C14.4,54.36 17.64,57.6 21.6,57.6ZM21.6,50.4L64.8,50.4L64.8,7.2L21.6,7.2L21.6,50.4ZM28.8,36L43.2,36L43.2,43.2L28.8,43.2L28.8,36ZM28.8,25.2L57.6,25.2L57.6,32.4L28.8,32.4L28.8,25.2ZM28.8,14.4L57.6,14.4L57.6,21.6L28.8,21.6L28.8,14.4Z"
style="fill:rgb(39,123,178);" />
</svg>
<p class="lang-de" lang="de">Handschriften ansehen</p>
<p class="lang-en ds-none" lang="en">View manuscripts</p>
</button>
<button class="home-button" onclick="toggleSide('side-mechthild')">
<svg viewbox="0 0 72 72">
<path
d="M36,0C47.468,0.12 55,9.506 55,17L55,40C55,50.931 70,55.742 70,62C70,65.454 70.044,67.782 69,72L40,72L40,58L48,58L48,50L40,50L40,42L32,42L32,50L24,50L24,58L32,58L32,72L3,72C1.955,67.782 2,65.454 2,62C2,55.742 17,50.931 17,40L17,17C17,9.506 24.532,0.12 36,0ZM36,14C31.26,14 23,16.528 23,20C23,32.424 31.396,38 36,38C40.604,38 49,32.424 49,20C49,16.528 40.74,14 36,14Z"
style="fill:rgb(39,123,178);" />
</svg>
<p class="lang-de" lang="de">Mechthild v. Hackeborn</p>
<p class="lang-en ds-none" lang="en">Mechtilde of Hackeborn</p>
</button>
<button class="home-button" onclick="toggleSide('side-monas')">
<svg viewbox="0 0 72 72">
<path
d="M33,0L39,0L39,7L46,7L46,13L39,13L39,20L57,28L57,39L70,45L70,72L43,72L43,61.955C42.976,58.112 39.848,55 36,55C32.152,55 29.024,58.112 29,61.955L29,72L2,72L2,45L15,39L15,28L33,20L33,13L26,13L26,7L33,7L33,0ZM36,33C33.24,33 31,35.24 31,38C31,40.76 33.24,43 36,43C38.76,43 41,40.76 41,38C41,35.24 38.76,33 36,33Z"
style="fill:rgb(39,123,178);fill-rule:nonzero;" />
</svg>
<p class="lang-de" lang="de">Kloster Helfta</p>
<p class="lang-en ds-none" lang="en">Helfta Monastery</p>
</button>
<button class="home-button" onclick="toggleSide('side-liber')">
<svg viewbox="0 0 72 72">
<path
d="M56,0L56,57.978L13,58L13,64L18.5,64L18.5,61L27.5,61L27.5,64L59,64L59,8.5L62.5,8.5L62.5,67.5L27.541,67.5L27.457,72L23.009,68L18.52,72L18.5,67.5L13,67.5C11.068,67.5 9.5,65.932 9.5,64L9.5,3.5C9.5,1.568 11.068,0 13,0L56,0ZM41.717,13.004C40.312,13.049 39.264,13.161 38.571,13.338C37.617,13.591 36.747,14 35.961,14.563C35.176,15.126 34.544,15.901 34.067,16.886C33.59,17.872 33.352,18.872 33.352,19.886C33.352,21.026 33.451,22.431 33.648,24.1C33.845,25.768 33.943,27.3 33.943,28.694C33.943,31.158 33.371,33.376 32.226,35.347C31.081,37.319 29.195,39.241 26.568,41.114C28.294,38.946 29.486,37.035 30.145,35.381C30.805,33.727 31.134,31.88 31.134,29.839C31.134,28.882 30.993,27.066 30.712,24.391C30.571,22.97 30.5,21.717 30.5,20.633C30.5,19.169 30.784,17.923 31.351,16.896C31.918,15.868 32.902,14.827 34.302,13.771L33.679,13C32.387,14.014 31.023,14.521 29.59,14.521C28.803,14.521 27.703,14.267 26.291,13.76C24.878,13.253 23.835,13 23.161,13C21.685,13 20.42,13.503 19.366,14.51C18.312,15.517 17.785,16.703 17.785,18.069C17.785,18.506 17.866,19.055 18.028,19.717L18.947,19.389C18.82,19.067 18.757,18.786 18.757,18.547C18.757,17.902 19.006,17.347 19.505,16.884C20.004,16.421 20.619,16.189 21.35,16.189C21.73,16.189 22.243,16.288 22.889,16.485C24.308,16.922 25.482,17.14 26.409,17.14C27.351,17.14 28.497,16.901 29.846,16.422C28.592,17.72 27.709,18.969 27.195,20.168C26.681,21.368 26.424,22.821 26.424,24.528C26.424,25.107 26.466,25.826 26.551,26.687C26.269,26.61 26.001,26.552 25.748,26.513C25.495,26.474 25.262,26.455 25.051,26.455C24.065,26.455 23.136,26.686 22.263,27.149C21.714,27.429 21.179,27.912 20.658,28.599L21.407,29.116C22.152,28.553 22.876,28.271 23.579,28.271C24.563,28.271 25.392,28.602 26.067,29.264C26.741,29.926 27.079,30.707 27.079,31.609C27.079,31.806 27.065,32.066 27.036,32.39C26.684,32.193 26.332,32.049 25.98,31.957C25.628,31.866 25.283,31.82 24.945,31.82C24.368,31.82 23.861,31.911 23.425,32.092C22.988,32.274 22.509,32.595 21.988,33.055L22.633,33.679C23.138,33.439 23.588,33.319 23.981,33.319C24.768,33.319 25.463,33.639 26.067,34.28C26.671,34.92 26.973,35.718 26.973,36.675C26.973,37.673 26.558,38.739 25.727,39.872C24.896,41.004 23.206,42.513 20.658,44.398L21.091,45C23.651,43.733 25.743,42.881 27.368,42.444C28.993,42.008 30.727,41.789 32.569,41.789C34.553,41.789 36.287,42.046 37.771,42.56C39.255,43.074 40.743,43.888 42.234,45L47.715,40.29L47.096,39.555L44.978,41.459C43.403,40.358 41.971,39.585 40.683,39.14C39.396,38.696 37.943,38.473 36.325,38.473C34.553,38.473 32.555,38.836 30.332,39.561C33.725,36.66 35.883,34.432 36.805,32.876C37.728,31.32 38.189,29.507 38.189,27.437C38.189,25.902 38.048,23.924 37.767,21.502C37.612,20.094 37.534,19.016 37.534,18.27C37.534,16.904 37.935,15.873 38.738,15.176C39.541,14.479 40.752,14.01 42.371,13.771L41.854,13L41.717,13.004Z"
style="fill:rgb(39,123,178);" />
</svg>
<p class="lang-de" lang="de">Der <i>Liber specialis gratiae</i></p>
<p class="lang-en ds-none" lang="en">The <i>Liber specialis gratiae</i></p>
</button>
<button class="home-button" onclick="toggleSide('side-mystic')">
<svg viewbox="0 0 72 72">
<path
d="M34.767,56.846L34.909,56.846C40.343,56.846 45.338,54.855 49.185,51.547L50.096,52.492L50.096,55.159L66.971,72L72,66.971L55.159,50.096L52.493,50.096L51.548,49.185C54.855,45.337 56.846,40.342 56.846,34.909C56.846,22.84 47.101,13.048 35.051,12.972L34.909,12.971C22.793,12.971 12.971,22.792 12.971,34.909C12.971,46.978 22.716,56.77 34.767,56.846ZM31.5,64.8L36.5,62L33.7,67L36.5,72L31.5,69.2L26.5,72L29.3,67L26.5,62L31.5,64.8ZM11.25,57.67L18.25,53.75L14.33,60.75L18.25,67.75L11.25,63.83L4.25,67.75L8.17,60.75L4.25,53.75L11.25,57.67ZM34.81,19.722C26.452,19.774 19.721,26.538 19.721,34.909C19.721,43.312 26.505,50.096 34.909,50.096C43.313,50.096 50.096,43.312 50.096,34.909C50.096,26.505 43.313,19.721 34.909,19.721L34.81,19.722ZM5,38.3L10,35.5L7.2,40.5L10,45.5L5,42.7L0,45.5L2.8,40.5L0,35.5L5,38.3ZM67,29.3L72,26.5L69.2,31.5L72,36.5L67,33.7L62,36.5L64.8,31.5L62,26.5L67,29.3ZM60.75,14.33L53.75,18.25L57.67,11.25L53.75,4.25L60.75,8.17L67.75,4.25L63.83,11.25L67.75,18.25L60.75,14.33ZM2.125,2.125L10.125,6.605L18.125,2.125L13.645,10.125L18.125,18.125L10.125,13.645L2.125,18.125L6.605,10.125L2.125,2.125ZM40.5,2.8L45.5,0L42.7,5L45.5,10L40.5,7.2L35.5,10L38.3,5L35.5,0L40.5,2.8Z"
style="fill:rgb(39,123,178);" />
</svg>
<p class="lang-de" lang="de">Die Mystik des <i>Liber</i></p>
<p class="lang-en ds-none" lang="en">The mysticism of the <i>Liber</i></p>
</button>
<button class="home-button" onclick="toggleSide('side-info')">
<svg viewbox="0 0 72 72">
<path
d="M35.774,70.999C16.561,70.878 1,55.242 1,36C1,16.683 16.683,1 36,1L36.226,1.001C55.439,1.122 71,16.758 71,36C71,55.317 55.317,71 36,71L35.774,70.999ZM37.808,27.108L37.878,27.107C38.91,27.107 39.687,27.376 40.235,27.828C40.865,28.348 41.196,29.045 41.196,29.936C41.196,30.637 40.443,33.62 38.875,38.869C36.444,47.036 35.201,51.952 35.201,53.631L35.201,53.662C35.387,53.567 35.64,53.428 35.869,53.27C36.855,52.591 38.248,51.4 40.055,49.703C40.445,49.336 41.054,49.342 41.438,49.715L42.809,51.051C43.004,51.242 43.113,51.503 43.111,51.776C43.108,52.049 42.995,52.309 42.796,52.496C39.502,55.597 37.09,57.571 35.576,58.437C33.902,59.393 32.521,59.834 31.458,59.834C30.326,59.834 29.439,59.454 28.776,58.742C28.14,58.06 27.787,57.126 27.787,55.916C27.787,52.947 29.541,45.685 33.104,34.143C33.189,33.863 33.249,33.602 33.28,33.362C33.072,33.43 32.848,33.548 32.605,33.701C32.031,34.061 30.763,35.219 28.782,37.155C28.426,37.503 27.867,37.536 27.472,37.231L25.925,36.035C25.704,35.865 25.565,35.61 25.54,35.332C25.516,35.054 25.609,34.778 25.796,34.572C28.225,31.897 30.449,30.002 32.453,28.871C34.54,27.694 36.332,27.125 37.808,27.108ZM41.843,12.166L41.9,12.166C42.918,12.166 43.751,12.515 44.409,13.188C45.056,13.852 45.396,14.696 45.396,15.732C45.396,17.018 44.954,18.152 44.063,19.13C43.133,20.152 42.075,20.635 40.915,20.635C39.922,20.635 39.096,20.282 38.434,19.586C37.796,18.916 37.455,18.047 37.455,16.963C37.455,15.642 37.887,14.521 38.738,13.596C39.609,12.65 40.647,12.181 41.843,12.166Z"
style="fill:rgb(39,123,178);" />
</svg>
<p class="lang-de" lang="de">Zum Projekt 'MMMMO'</p>
<p class="lang-en ds-none" lang="en">About the project 'MMMMO'</p>
</button>
<button class="home-button" onclick="toggleSide('side-options')">
<svg viewbox="0 0 72 72">
<path
d="M19.63,32.804C17.302,28.46 15.75,24.106 15.75,20.25C15.75,9.074 24.824,0 36,0C47.176,0 56.25,9.074 56.25,20.25C56.25,25.097 53.811,30.718 50.456,36.122L66.075,28.313L72,61.499L49.339,71.676L23.31,62.676L0,72L6.032,38.892L19.63,32.804ZM26.953,43.78L25.879,58.279L46.317,65.346L44.13,44.942C41.246,48.516 38.332,51.668 36,54C33.438,51.438 30.14,47.847 26.953,43.78ZM48.891,42.489L62.333,35.768C62.333,35.768 66.398,58.54 66.398,58.54L51.336,65.304L48.891,42.489ZM22.191,37.13C22.264,37.244 22.338,37.357 22.412,37.47L20.871,58.272L6.533,64.007L10.475,42.376L22.191,37.13ZM36,13.5C39.725,13.5 42.75,16.525 42.75,20.25C42.75,23.975 39.725,27 36,27C32.275,27 29.25,23.975 29.25,20.25C29.25,16.525 32.275,13.5 36,13.5Z"
style="fill:rgb(39,123,178);" />
</svg>
<p class="lang-de" lang="de">Kartenoptionen</p>
<p class="lang-en ds-none" lang="en">Map options</p>
</button>
<!--FOOTER-->
<div id="footer">
<p>
<span class="lang-de" lang="de" role="button"
onclick="toggleSide('side-legal')">Impressum</span>
<span class="lang-en ds-none" lang="en" role="button" onclick="toggleSide('side-legal')">Legal
notice</span> |
<span class="lang-de" lang="de" role="button"
onclick="toggleSide('side-privacy')">Datenschutz</span>
<span class="lang-en ds-none" lang="en" role="button"
onclick="toggleSide('side-privacy')">Privacy
policy</span>
</p>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
</div>
</div>
<!--SIDE ENTRIES-->
<div id="side-entries" class="side-panel" lang="de">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title lang-de" lang="de">Handschriften</span>
<span class="side-title lang-en ds-none" lang="en">Manuscripts</span>
</div>
<!--TABLINKS-->
<div id="tablink-container">
<button id="tl-od" class="tablink" onclick="openTab(id, 'tab-od', '#277BB2')">OD.</button>
<button id="tl-md" class="tablink" onclick="openTab(id, 'tab-md', '#7B27B2')">MD.</button>
<button id="tl-nd" class="tablink" onclick="openTab(id, 'tab-nd', '#B2277B')">ND./NDL.</button>
<button id="tl-lt" class="tablink" onclick="openTab(id, 'tab-lt', '#B27B27')">LATEIN</button>
<button id="tl-fr" class="tablink" onclick="openTab(id, 'tab-fr', '#27B27B')">ANDERE</button>
</div>
<!--TABS-->
<div id="tab-od" class="tabcontent">
<ul id="list-od">
<!--entries will be inserted here-->
</ul>
</div>
<div id="tab-md" class="tabcontent">
<ul id="list-md">
<!--entries will be inserted here-->
</ul>
</div>
<div id="tab-nd" class="tabcontent">
<ul id="list-nd">
<!--entries will be inserted here-->
</ul>
</div>
<div id="tab-lt" class="tabcontent">
<ul id="list-lt">
<!--entries will be inserted here-->
</ul>
</div>
<div id="tab-fr" class="tabcontent">
<ul id="list-fr">
<!--entries will be inserted here-->
</ul>
</div>
</div>
<!--SIDE MECHTHILD DE-->
<div id="side-mechthild-de" class="side-panel" lang="de">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">Mechthild von Hackeborn</span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="mechthild-content-de" class="content-container">
<h1>Mechthild von Hackeborn</h1>
<p>Mechthild wurde ca. 1241 als jüngste Tochter des Grafen Albert II. von Hackeborn und dessen Frau
Gertrud geboren. Aufgrund mangelnder historischer Quellen müssen die hagiographisch stilisierten
Angaben im <i>Liber specialis gratiae</i> mit Vorsicht behandelt werden. Nach Aussage des Prologs
trat sie im Alter von sieben Jahren in das Kloster Rodarsdorf ein und zog mit dem gesamten Konvent
unter der Äbtissin Gertrud von Hackeborn, Mechthilds leiblicher Schwester, nach Helfta in der
Nähe von Eisleben um. Das gesamte Kloster entwickelte sich, wobei die Gemeinschaft ein besonderes
Interesse an mystischem Schrifttum besaß, was an Mechthilds <i>Liber</i> sowie Gertrud von Helftas
<i>Legatus divinae pietatis</i> verfolgt werden kann. Insbesondere der kollaborative Aspekt scheint
den Schreibprozess befördert zu haben, da mehrere Schwestern an der Entstehung des Textes
mitwirkten.
</p>
<figure>
<img
src="https://upload.wikimedia.org/wikipedia/commons/2/22/Engelszell_Stiftskirche_-_Nepomukaltar_3_Mechthild.jpg">
<figcaption>Statue der Mechthild von Hackeborn (ca. 1754–1764), Kloster Engelszell
(https://w.wiki/3d$g)</figcaption>
</figure>
<p>In der Forschung besteht eine Debatte über den Einfluss Mechthilds von Magdeburg, die möglicherweise
gegen Ende ihres Lebens dem Konvent beitrat und das <i>Fließendes Licht der Gottheit</i> dort
vollendete. Laut <i>Liber</i> hielt Mechthild von Hackeborn ihre Offenbarungen vor dem Konvent
geheim und begann erst an ihrem 50. Geburtstag, ihren Mitschwestern hiervon zu berichten. Aufgrund
ihrer Krankheiten, die auch topisch zu lesen sind, verstarb sie in den letzten Jahren des 13.
Jahrhunderts. Im Vergleich zu den anderen mit Helfta assoziierten Mystikerinnen wurde Mechthild eine
geringere Aufmerksamkeit zuteil, wobei erst die jüngere Forschung sich ausführlicher mit Mechthild
und ihrem Werk zu beschäftigen beginnt.</p>
<hr>
<h2>Weiterführende Literatur</h2>
<ul>
<li>McGinn, Bernard: The flowering of mysticism. Men and Women in the New Mysticism (1200–1350),
New York 1998.</li>
<li>Hubrath, Margarete: Schreiben und Erinnern. Zur „memoria“ im Liber specialis gratiae
Mechthilds von Hakeborn, Paderborn/München/Wien/Zürich 1996.</li>
<li>Schmidt, Margot: Mechthild von Hackeborn, in: Die deutsche Literatur des Mittelalters.
Verfasserlexikon, hg. von Kurt Ruh u.a., Bd. 6, Berlin/New York 21987, Sp. 251–260.</li>
<li>Voaden, Rosalynn: Mechthild of Hackeborn, in: Medieval Holy Women in the Christian Tradition
c. 1100–c. 1500, ed. by Alastair Minnis and Rosalynn Voaden (Brepols Collected Essays in
European Culture 1), Turnhout 2010, pp. 431–451.</li>
</ul>
</div>
</div>
<!--SIDE MECHTHILD EN-->
<div id="side-mechthild-en" class="side-panel" lang="en">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">Mechtilde of Hackeborn</span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="mechthild-content-en" class="content-container">
<h1>Mechtilde of Hackeborn</h1>
<p>Mechthild was born about 1241 as the youngest daughter of Count Albert II of Hackeborn and his wife
Gertrud. Due to the lack of historical sources, the hagiographically stylized statements in the
<i>Liber specialis gratiae</i> must be treated with caution. According to the prologue, she entered
the Rodarsdorf convent at the age of seven and moved with the entire convent to Helfta near Eisleben
under Abbess Gertrud von Hackeborn, Mechthild's biological sister. The entire monastery developed,
with the community possessing a special interest in mystical writing, which can be traced in
Mechthild's <i>Liber</i> as well as Gertrud von Helfta's <i>Legatus divinae pietatis</i>.
Especially the collaborative aspect seems to have promoted the writing process, since several
sisters participated in the creation of the text.
</p>
<figure>
<img
src="https://upload.wikimedia.org/wikipedia/commons/2/22/Engelszell_Stiftskirche_-_Nepomukaltar_3_Mechthild.jpg">
<figcaption>Statue of Mechthild von Hackeborn (ca. 1754-1764), Engelszell Monastery
(https://w.wiki/3d$g)</figcaption>
</figure>
<p>There is a debate in research about the influence of Mechthild of Magdeburg, who possibly joined the
convent towards the end of her life and completed the <i>Flowing Light of the Godhead</i> there.
According to <i>Liber</i>, Mechthild of Hackeborn kept her revelations secret from the convent and
only began to tell her fellow sisters about them on her 50th birthday. Due to her illnesses, which
can also be read topically, she died in the last years of the 13th century. Compared to the other
mystics associated with Helfta, Mechthild has received less attention, with only recent research
beginning to explore Mechthild and her work in more detail.</p>
<hr>
<h2>Further reading</h2>
<ul>
<li>McGinn, Bernard: The flowering of mysticism. Men and Women in the New Mysticism (1200–1350),
New York 1998.</li>
<li>Hubrath, Margarete: Schreiben und Erinnern. Zur „memoria“ im Liber specialis gratiae
Mechthilds von Hakeborn, Paderborn/München/Wien/Zürich 1996.</li>
<li>Schmidt, Margot: Mechthild von Hackeborn, in: Die deutsche Literatur des Mittelalters.
Verfasserlexikon, hg. von Kurt Ruh u.a., Bd. 6, Berlin/New York 21987, Sp. 251–260.</li>
<li>Voaden, Rosalynn: Mechthild of Hackeborn, in: Medieval Holy Women in the Christian Tradition
c. 1100–c. 1500, ed. by Alastair Minnis and Rosalynn Voaden (Brepols Collected Essays in
European Culture 1), Turnhout 2010, pp. 431–451.</li>
</ul>
</div>
</div>
<!--SIDE MONAS DE-->
<div id="side-monas-de" class="side-panel" lang="de">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">Kloster Helfta</span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="monas-content-de" class="content-container">
<h1>Kloster Helfta</h1>
<p>Das Kloster St. Marien zu Helfta wurde im Jahr 1229 zuerst in der Nähe von Mansfeld gegründet. Als
Stifter dienten hierbei Graf Burchard von Mansfeld und dessen Gattin Elisabeth. 1234 nach Rossdorf
umgesiedelt, zog der Konvent 1258 aufgrund des Wassermangels nach Helfta. Die Schwestern folgten
dabei den Regeln des Zisterzienserklosters, waren allerdings nicht im Orden inkorporiert, da die
Zisterzienser einen Aufnahmestopp für Frauenklöster erlassen hatten.
</p>
<figure>
<img
src="https://upload.wikimedia.org/wikipedia/commons/0/04/Kloster_Helfta_-_Liboriushaus%2C_Kirche%2C_Konventsgeb%C3%A4ude.jpg">
<figcaption>Liboriushaus, Klosterkirche, Konventsgebäude im Jahr 2013 (https://w.wiki/47L4)
</figcaption>
</figure>
<p>In der Folgezeit, insbesondere unter der Äbtissin Gertrud von Hackeborn kann eine Blütezeit des
Klosters festgestellt werden, die sich auch in der Produktion von Texten widerspiegelt. Insbesondere
der Liber specialis gratiae der Mechthild von Hackeborn als auch der Legatus divinae pietatis der
Gertrud von Helfta entstanden in den letzten Dekaden des 13. Jahrhunderts bzw. zu Beginn des 14.
Jahrhunderts. Im 14. Jahrhundert erlebte das Kloster jedoch einen raschen Niedergang. Mehrfach wurde
es belagert und verwüstet, so etwa 1284 durch den Magdeburger Burggrafen Gebhard von Querfurt, 1294
durch König Adolf von Nassau, 1342–1344 durch den Halberstädter Bischof Albrecht II. von
Braunschweig. Auch der Bauernkrieg hinterließ bleibende Schäden, da in dieser Zeit die meisten
Bücher und Urkunden vernichtet wurden. 1542 wurde das Kloster schließlich säkularisiert, nachdem die
Nonnen bereits zuvor das Kloster verlassen hatten und sich vor den Toren Eislebens (Neu-Helfta)
angesiedelt hatten, was aber ebenso wenig wie ein kurzer Versuch der Wiederbesiedelung an
ursprünglicher Stätte (Alt-Helfta) Erfolg besaß.</p>
<figure>
<img
src="https://upload.wikimedia.org/wikipedia/commons/d/d4/Helfta%2C_Klosterkirche_St._Maria%2C_innen.jpg">
<figcaption>Die Klosterkirche St. Maria von innen (https://w.wiki/47L6)
</figcaption>
</figure>
<p>Über die folgenden Jahrhunderte wechselte das Kloster mehrfach den Besitzer, bevor es schließlich in
der DDR als volkseigenenes Gut verwendet wurde, wobei die Gebäude größtenteils dem Verfall
preisgegeben wurden.</p>
<p>Nach dem Mauerfall erwarb das Bistum Magdeburg die Klosteranlage, wobei es im Jahr 1999 zur
Wiederbesiedelung durch Zisterzienserinnen aus dem niederbayerischen Kloster Seligenthal kam.
Heute betreibt das Priorat ein Bildungs- und Exerzitienhaus.</p>
<hr>
<h2>Weiterführende Literatur</h2>
<ul>
<li>Oefelein, Cornelia: Das Nonnenkloster St. Jacobi und seine Tochterklöster im Bistum Halberstadt
– Beiträge zur Geschichte des Zisterziensernonnenklosters St. Jacobi und seine Töchterklöster im
Bistum Halberstadt (Studien zur Geschichte, Kunst und Kultur der Zisterzienser 20), Berlin 2004.
</li>
<li>Oefelein, Cornelia: Gründung und mittelalterliche Geschichte des Klosters St. Marien zu Helfta.
Ein Überblick unter Berücksichtigung neuer Funde, in: Mechthild und das „Fließende Licht der
Gottheit“ im Kontext. Eine Spurensuche in religiösen Netzwerken und literarischen Diskursen im
mitteldeutschen Raum des 13.–15. Jahrhunderts, hg. von Caroline Emmelius und Balázs J. Nemes
(Beihefte zur Zeitschrift für deutsche Philologie 17), Berlin 2019, S. 41–64.</li>
</ul>
</div>
</div>
<!--SIDE MONAS EN-->
<div id="side-monas-en" class="side-panel" lang="en">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">Helfta Monastery</span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="monas-content-en" class="content-container">
<h1>Helfta Monastery</h1>
<p>The monastery of St. Mary in Helfta was first founded near Mansfeld in 1229. Count Burchard von
Mansfeld and his wife Elisabeth served as founders. Relocated to Rossdorf in 1234, the convent
moved to Helfta in 1258 due to the lack of water. The sisters followed the rules of the Cistercian
monastery, but were not incorporated in the order, since the Cistercians had issued an admission
ban for women's monasteries.
</p>
<figure>
<img
src="https://upload.wikimedia.org/wikipedia/commons/0/04/Kloster_Helfta_-_Liboriushaus%2C_Kirche%2C_Konventsgeb%C3%A4ude.jpg">
<figcaption>Liborius House, monastery church, convent building in 2013 (https://w.wiki/47L4)
</figcaption>
</figure>
<p>In the following period, especially under the abbess Gertrud von Hackeborn, a flourishing of the
monastery can be observed, which is also reflected in the production of texts. In particular, the
Liber specialis gratiae of Mechthild von Hackeborn as well as the Legatus divinae pietatis of
Gertrud von Helfta were written in the last decades of the 13th century and at the beginning of the
14th century, respectively. In the 14th century, however, the monastery experienced a rapid decline.
It was besieged and devastated several times, for example in 1284 by the Magdeburg Burgrave Gebhard
von Querfurt, in 1294 by King Adolf von Nassau, and in 1342-1344 by the Halberstadt Bishop Albrecht
II von Braunschweig. The Peasants' War also left lasting damage, as most of the books and documents
were destroyed during this time. In 1542 the monastery was finally secularized, after the nuns had
already left the monastery before and settled outside the gates of Eisleben (Neu-Helfta), but this
was unsuccessful, as was a brief attempt to repopulate the original site (Alt-Helfta).</p>
<figure>
<img
src="https://upload.wikimedia.org/wikipedia/commons/d/d4/Helfta%2C_Klosterkirche_St._Maria%2C_innen.jpg">
<figcaption>The monastery church of St. Mary from the inside (https://w.wiki/47L6)
</figcaption>
</figure>
<p>Over the following centuries, the monastery changed hands several times before finally being used as
a nationally owned estate in the GDR, with most of the buildings left to decay.</p>
<p>After the fall of the Berlin Wall, the diocese of Magdeburg acquired the monastery complex, and in
1999 it was repopulated by Cistercian nuns from the Seligenthal monastery in Lower Bavaria. Today
the priory runs an educational and retreat house.</p>
<hr>
<h2>Further reading</h2>
<ul>
<li>Oefelein, Cornelia: Das Nonnenkloster St. Jacobi und seine Tochterklöster im Bistum Halberstadt
– Beiträge zur Geschichte des Zisterziensernonnenklosters St. Jacobi und seine Töchterklöster im
Bistum Halberstadt (Studien zur Geschichte, Kunst und Kultur der Zisterzienser 20), Berlin 2004.
</li>
<li>Oefelein, Cornelia: Gründung und mittelalterliche Geschichte des Klosters St. Marien zu Helfta.
Ein Überblick unter Berücksichtigung neuer Funde, in: Mechthild und das „Fließende Licht der
Gottheit“ im Kontext. Eine Spurensuche in religiösen Netzwerken und literarischen Diskursen im
mitteldeutschen Raum des 13.–15. Jahrhunderts, hg. von Caroline Emmelius und Balázs J. Nemes
(Beihefte zur Zeitschrift für deutsche Philologie 17), Berlin 2019, S. 41–64.</li>
</ul>
</div>
</div>
<!--SIDE LIBER DE-->
<div id="side-liber-de" class="side-panel" lang="de">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">Der <i>Liber specialis gratiae</i></span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="liber-content-de" class="content-container">
<h1>Der <i>Liber specialis gratiae</i></h1>
<p>Der <i>Liber</i> in der Gestalt der von den Benediktinermönchen in Solesmes 1877 herausgegebenen
Edition vermittelt den Eindruck eines stabilen Textes, der in sieben Bücher gegliedert werden
kann. Allerdings zeigt die handschriftliche Überlieferung, dass eine solche Textform eher die
absolute Ausnahme als die Regel betrachtet werden muss. In keiner bisher bekannten Abschrift findet
sich der von der Edition präsentierte Text, da in den meisten Fällen entweder Buch VI oder VII
fehlen bzw. als 'Volltext' solche Textformen übermittelt werden, die nur die ersten fünf Bücher
überliefern und dabei in der Kapitelanzahl und -folge ebenfalls Varianzen aufweisen.
</p>
<figure>
<img src="https://drive.google.com/uc?id=1bI8A0bmIYLiT8j3LFbTvgRuI3PIOCYHV">
<figcaption>Beginn des Liber specialis gratiae (St. Gallen, Stiftsbibliothek. Cod. Sang. 583, S.
5,
https://bit.ly/3aVd18V)
</figcaption>
</figure>
<p>Die Hauptüberlieferung des <i>Liber</i> findet jedoch gerade nicht in sogenannten 'Volltexten' statt.
Viel eher werden einzelne Kapitel und Kapitelverbünde in unterschiedlichen Konstellationen und
Variationen in einen neuen Zusammenhang eingebettet, etwa in Gebetbüchern, didaktischen
Textsammlungen oder als Lektüre für die Andacht. Während die ältere Forschung sich um die
Textgestalt eines 'Originals' bemühte und aus dieser Perspektive die handschriftliche Überlieferung
betrachtete, wobei hier vor allem Richard Bromberg (1965) und Manfred Zieger (1974) zu nennen sind,
so legt das vorliegende Projekt das Augenmerk auf die Varianz der Überlieferung, die sich als
ordens-, funktions- und sprachübergreifend charakterisieren lässt. Gerade die Polyvalenz dürfte ein
entscheidendes Kriterium für die weite Verbreitung des <i>Liber</i> insbesondere im 15. Jahrhundert
gewesen sein. Übersetzungen ins Schwedische, Dänische, Mittelenglische, Irische, Italienische und
weitere Sprachen zeugen von der Verbreitung im gesamten Europa, auch wenn der Schwerpunkt sich vor
allem im Reich nachweisen lässt. Ständige Kontaminationen zwischen Latein und Volkssprache zeigen
die Wandelbarkeit des Textes, die sich ebenfalls in der Textgestalt einzelner Kapitel und
Textabschnitte abbildet.</p>
<figure>
<img src="https://drive.google.com/uc?id=1BVGtl-NsIr1BkrYGp2y659jE3faquNgX">
<figcaption>Kapitel I, 5d als Teil einer Gebetssammlung (Freiburg, Universitätsbibliothek, Hs.
1500,30, f. 91v, https://bit.ly/2ZcIAsG)
</figcaption>
</figure>
<hr>
<h2>Weiterführende Literatur</h2>
<ul>
<li>Bromberg, Richard L.: Het boek der bijzondere genade van Mechthild van Hackeborn, Zwolle 1965.
</li>
<li>Ubl, Linus: Liber or Libri. The Latin transmission of Mechthild’s text, in: A Companion to
Mechthild of Hackeborn, hg. von Anne Mouron and Naoë Kukita Yoshikawa, Liverpool 2022
(vorauss.).</li>
<li>Zieger, Manfred: Textgeschichtliche Untersuchungen zu den deutschen und niederländischen
Handschriften des ‚Liber spiritualis gratiae‘ Mechthilds von Hackeborn, Diss. (masch.),
Göttingen 1974.</li>
</ul>
</div>
</div>
<!--SIDE LIBER EN-->
<div id="side-liber-en" class="side-panel" lang="en">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">The <i>Liber specialis gratiae</i></span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="liber-content-en" class="content-container">
<h1>The <i>Liber specialis gratiae</i></h1>
<p>The <i>Liber</i> in the form of the edition published by the Benedictine monks in Solesmes in 1877
gives the impression of a stable text that can be divided into seven books. However, the handwritten
tradition shows that such a text form must be considered the absolute exception rather than the
rule. The text presented by the edition is not found in any known copy, since in most cases either
Book VI or VII are missing or such text forms are transmitted as 'full text', which only transmit
the first five books and also show variations in the number and sequence of chapters.
</p>
<figure>
<img src="https://drive.google.com/uc?id=1bI8A0bmIYLiT8j3LFbTvgRuI3PIOCYHV">
<figcaption>Beginning of the Liber specialis gratiae (St. Gall, Abbey Library. Cod. Sang. 583,
p. 5,
https://bit.ly/3aVd18V)
</figcaption>
</figure>
<p>The main transmission of the <i>Liber</i>, however, does not take place in so-called 'full texts'.
Rather, individual chapters and groups of chapters are embedded in different constellations and
variations in a new context, for example in prayer books, didactic text collections, or as readings
for devotion. While older research was concerned with the textual form of an 'original' and viewed
the manuscript tradition from this perspective, with Richard Bromberg (1965) and Manfred Zieger
(1974) being particularly noteworthy here, the present project focuses on the variance of the
tradition, which can be characterized as transcending orders, functions, and languages. Polyvalence
in particular may have been a decisive criterion for the wide dissemination of the <i>Liber</i>,
especially in the 15th century. Translations into Swedish, Danish, Middle English, Irish, Italian,
and other languages attest to its dissemination throughout Europe, even if its center of gravity can
be traced primarily to the Empire. Constant contamination between Latin and the vernacular shows the
changeability of the text, which is also reflected in the textual form of individual chapters and
sections.</p>
<figure>
<img src="https://drive.google.com/uc?id=1BVGtl-NsIr1BkrYGp2y659jE3faquNgX">
<figcaption>Chapter I, 5d as part of a collection of prayers (Freiburg, University Library, Hs.
1500,30, f. 91v, https://bit.ly/2ZcIAsG)
</figcaption>
</figure>
<hr>
<h2>Further reading</h2>
<ul>
<li>Bromberg, Richard L.: Het boek der bijzondere genade van Mechthild van Hackeborn, Zwolle 1965.
</li>
<li>Ubl, Linus: Liber or Libri. The Latin transmission of Mechthild’s text, in: A Companion to
Mechthild of Hackeborn, hg. von Anne Mouron and Naoë Kukita Yoshikawa, Liverpool 2022
(vorauss.).</li>
<li>Zieger, Manfred: Textgeschichtliche Untersuchungen zu den deutschen und niederländischen
Handschriften des ‚Liber spiritualis gratiae‘ Mechthilds von Hackeborn, Diss. (masch.),
Göttingen 1974.</li>
</ul>
</div>
</div>
<!--SIDE MYSTIC DE-->
<div id="side-mystic-de" class="side-panel" lang="de">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">Die Mystik des <i>Liber</i></span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="mystic-content-de" class="content-container">
<h1>Die Mystik des <i>Liber</i></h1>
<p>Der <i>Liber</i> zeichnet sich in mehrfacher Hinsicht als bedeutendes 'frauenmystisches' Werk aus. Im
Unterschied zu zahlreichen anderen Mystikerinnen verzichtet der Text auf eine Legitimation durch
einen Beichtvater, wie etwa zahlreiche Texte aus dem oberdeutschen Sprachraum (Margareta Ebner,
Elsbeth Stagel, etc.). Hingegen erfolgt die Legitimation direkt durch Gott, der nicht nur den Titel
des Buches vorgibt, sondern auch die Textform approbiert. Durch die Mitwirkung einiger Schwestern
wird das Werk nicht als Text einer einzelnen Autorin betrachtet, sondern als gemeinschaftliche
Arbeit des gesamten Konvents. Deutlich wird dies auch an der Struktur des ersten Buches, welches
sich am Kirchenjahr orientiert, die einzelnen Kapitel also in das liturgische Jahr des Konvents
eingliedert, wobei zahlreiche gemeinschaftliche Aktivitäten (Messe, Chorgesang, Gebet) die einzelnen
mystischen Ereignisse erst evozieren.
</p>
<figure>
<img src="https://drive.google.com/uc?id=1mb0hBRVidJNnnoLmR9d7D8sP7jonwoHm">
<figcaption>Beginn des <i>Hohelied</i>-Kommentars Bernhards von Clairvaux, Handschrift aus dem
Kloster Eberbach, 2. Hälfte 12. Jh. Oxford, Bodleian Libraries, MS. Laud. Misc. 150, f. 3r
(https://bit.ly/3E0hhRa)</figcaption>
</figure>
<p>Die Liturgie nimmt hierbei einen bedeutenden Stellenwert ein, da zahlreiche Kapitel mit den
jeweiligen Bibelstellen oder Responsorien beginnen. Auch ansonsten zeigt sich eine Vertrautheit
nicht nur mit liturgischen Texten, sondern vor allem auch zahlreicher Theologen, allen voran
Bernhard von Clairvaux sowie den beiden Viktorinern. Auch ansonsten steht der Text in der Tradition
der negativen Theologie, die sich bis zu Origenes und Ps.-Dionysius zurückverfolgen lässt, auch wenn
dies bisweilen in seltsam anmutenden Bildern konkludiert. Auch die Fokussierung auf das Hohelied
steht in der Tradition zisterziensischer Mystik. Im Vergleich zu Mechthild von Magdeburgs
<i>Fließendem Licht</i> fehlt hierbei die sprachliche Radikalität, die sich nicht nur durch die
Verwendung des Lateinischen, sondern auch die Einbettung in die literarische Tradition erklären
lässt, allerdings zeigt die Rezeption, dass einige Kapitel durchaus – wohl aus orthodoxen
Überlegungen heraus – von Redaktoren variiert oder weggelassen bzw. durch Kompilation mit anderen
Texten entschärft wurden.
</p>
<p>Das sechste Buch sowie das siebte Buch weichen durch ihre Schwerpunktsetzung von den restlichen
Büchern insoweit ab, da sie in hagiographisch stilisierter Weise Mechthilds leibliche Schwester
Gertrud sowie Mechthilds Tod zur Thematik besitzen. Inwieweit die beiden Bücher, die sich nur
vereinzelt in Handschriften finden, zum ursprünglichen Korpus gehören, bedarf
sprachwissenschaftlicher Untersuchungen.</p>
</div>
</div>
<!--SIDE MYSTIC EN-->
<div id="side-mystic-en" class="side-panel" lang="en">
<div class="side-header">
<button class="btn-back" onclick="toggleSide('side-home')">
<svg viewbox="0 0 64 64">
<g transform="matrix(2.66667,0,0,2.66667,0,0)">
<path d="M20,11L7.83,11L13.42,5.41L12,4L4,12L12,20L13.41,18.59L7.83,13L20,13L20,11Z"
style="fill:rgb(123,123,123);fill-rule:nonzero;" />
</g>
</svg>
</button>
<span class="side-title">The mysticism of the <i>Liber</i></span>
<div class="lang-side">
<span class="lang-side-de" role="button" onclick="switchLang(true)">DE</span> /
<span class="lang-side-en" role="button" onclick="switchLang(false)">EN</span>
</div>
</div>
<!--PLACEHOLDER CONTENT FOR SEO (GETS REPLACED BY renderContent())-->
<div id="mystic-content-en" class="content-container">
<h1>The mysticism of the <i>Liber</i></h1>
<p>The <i>Liber</i> stands out as a significant 'women's mystical' work in several respects. In contrast
to numerous other women mystics, the text does without a legitimation by a confessor, as for example
numerous texts from the Upper German-speaking area (Margareta Ebner, Elsbeth Stagel, etc.). On the
other hand, the legitimation is done directly by God, who not only gives the title of the book, but
also approves the form of the text. Through the participation of some sisters, the work is not seen
as the text of a single author, but as the collaborative work of the entire convent. This is also
evident in the structure of the first book, which is based on the liturgical year, thus integrating
the individual chapters into the liturgical year of the convent, with numerous communal activities
(Mass, choral singing, prayer) evoking the individual mystical events.</p>
<figure>
<img src="https://drive.google.com/uc?id=1mb0hBRVidJNnnoLmR9d7D8sP7jonwoHm">
<figcaption>Beginning of the <i>Hymn</i> commentary of Bernard of Clairvaux, manuscript from the
monastery of Eberbach, 2nd half 12th c. Oxford, Bodleian Libraries, MS. Laud. Misc. 150, f. 3r
(https://bit.ly/3E0hhRa).</figcaption>
</figure>
<p>Liturgy plays an important role here, since numerous chapters begin with the respective biblical
passages or responsories. In other respects, too, there is a familiarity not only with liturgical
texts, but above all with numerous theologians, first and foremost Bernard of Clairvaux and the two
Victorians. In other respects, too, the text is in the tradition of negative theology, which can be
traced back to Origen and Ps.-Dionysius, even if this sometimes concludes in strange-seeming images.
The focus on the Song of Songs is also in the tradition of Cistercian mysticism. Compared to
Mechthild of Magdeburg's <i>Flowing Light</i>, the linguistic radicalism is missing here, which can
be explained not only by the use of Latin, but also by the embedding in the literary tradition.
However, the reception shows that some chapters were certainly varied or omitted by redactors -
probably out of orthodox considerations - or defused by compilation with other texts.
</p>
<p>The sixth book as well as the seventh book differ from the other books in their emphasis, since they
deal with Mechthild's sister Gertrud and Mechthild's death in a hagiographically stylized way. The