-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1428 lines (1355 loc) · 90.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CWrap</title>
<link rel="stylesheet" href="../builder.css" />
<link rel="icon" href="../static/favicon/favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="customModal" class="modal">
<div class="modal-content">
<span id="modalMessage"></span>
<input type="text" id="modalInput" class="modal-input" aria-label="Modal Input" />
<span id="modalError"></span>
<div class="modal-buttons">
<button id="modalConfirm" class="mediumButtons" aria-label="confirm">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#confirm" />
</svg></button>
<button id="modalCancel" class="mediumButtons" aria-label="reject">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#reject" />
</svg></button>
</div>
</div>
</div>
<div id="mask">
<div id="popupLink">
<div>
<span>Follow the link?</span>
<span>(unsaved progress will be lost)</span>
</div>
<div>
<button id="popupLinkConfirm" class="mediumButtons" aria-label="confirm">
<svg id="confirm" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m424-296 282-282-56-56-226 226-114-114-56 56 170 170Zm56 216q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<button id="popupLinkReject" class="mediumButtons" aria-label="reject">
<svg id="reject" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m336-280 144-144 144 144 56-56-144-144 144-144-56-56-144 144-144-144-56 56 144 144-144 144 56 56ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
</div>
<div id="popupSubmit">
<div>
<span>Submit form?</span>
<span>(unsaved progress will be lost)</span>
</div>
<div>
<button id="popupSubmitConfirm" class="mediumButtons" aria-label="confirm">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#confirm" />
</svg>
</button>
<button id="popupSubmitReject" class="mediumButtons" aria-label="reject">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#reject" />
</svg>
</button>
</div>
</div>
<div id="popupBackend">
<div>
<span>Switch to backend?</span>
<span>(unsaved progress will be lost)</span>
</div>
<div>
<button id="popupBackendConfirm" class="mediumButtons confirm" aria-label="confirm">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#confirm" />
</svg>
</button>
<button id="popupBackendReject" class="mediumButtons" aria-label="reject">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#reject" />
</svg>
</button>
</div>
</div>
</div>
<div id="leftSide">
<div id="leftSidebarCanvas">
<div id="leftSidebar">
<nav>
<div>
<span class="label">Navigation</span>
<div>
<div id="navLvlMenu">
<button id="navLvlMenuSettings" class="mediumButtons" aria-label="settings" data-title="settings">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m370-80-16-128q-13-5-24.5-12T307-235l-119 50L78-375l103-78q-1-7-1-13.5v-27q0-6.5 1-13.5L78-585l110-190 119 50q11-8 23-15t24-12l16-128h220l16 128q13 5 24.5 12t22.5 15l119-50 110 190-103 78q1 7 1 13.5v27q0 6.5-2 13.5l103 78-110 190-118-50q-11 8-23 15t-24 12L590-80H370Zm70-80h79l14-106q31-8 57.5-23.5T639-327l99 41 39-68-86-65q5-14 7-29.5t2-31.5q0-16-2-31.5t-7-29.5l86-65-39-68-99 42q-22-23-48.5-38.5T533-694l-13-106h-79l-14 106q-31 8-57.5 23.5T321-633l-99-41-39 68 86 64q-5 15-7 30t-2 32q0 16 2 31t7 30l-86 65 39 68 99-42q22 23 48.5 38.5T427-266l13 106Zm42-180q58 0 99-41t41-99q0-58-41-99t-99-41q-59 0-99.5 41T342-480q0 58 40.5 99t99.5 41Zm-2-140Z" />
</svg>
</button>
<div data-title="theme">
<select id="navLvlMenuTheme" class="mediumButtons" aria-label="theme"></select>
</div>
<button id="navLvlMenuDocumentation" class="mediumButtons" aria-label="documentation N/A"
data-title="documentation N/A">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm-36-154h74q0-33 7.5-52t42.5-52q26-26 41-49.5t15-56.5q0-56-41-86t-97-30q-57 0-92.5 30T342-618l66 26q5-18 22.5-39t53.5-21q32 0 48 17.5t16 38.5q0 20-12 37.5T506-526q-44 39-54 59t-10 73Zm38 314q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="navLvlRoute">
<button id="navLvlRouteBack" class="mediumButtons" aria-label="backend" data-title="backend">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M160-120q-33 0-56.5-23.5T80-200v-560q0-33 23.5-56.5T160-840h200q33 0 56.5 23.5T440-760v560q0 33-23.5 56.5T360-120H160Zm440 0q-33 0-56.5-23.5T520-200v-560q0-33 23.5-56.5T600-840h200q33 0 56.5 23.5T880-760v560q0 33-23.5 56.5T800-120H600Zm-440-80h200v-560H160v560Zm440 0h200v-560H600v560ZM200-360h120v-80H200v80Zm440 0h120v-80H640v80ZM200-480h120v-80H200v80Zm440 0h120v-80H640v80ZM200-600h120v-80H200v80Zm440 0h120v-80H640v80ZM160-200h200-200Zm440 0h200-200Z" />
</svg>
</button>
<button id="menuSave" class="mediumButtons" aria-label="save project" data-title="save project">
<svg id="save" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M840-680v480q0 33-23.5 56.5T760-120H200q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h480l160 160Zm-80 34L646-760H200v560h560v-446ZM480-240q50 0 85-35t35-85q0-50-35-85t-85-35q-50 0-85 35t-35 85q0 50 35 85t85 35ZM240-560h360v-160H240v160Zm-40-86v446-560 114Z" />
</svg>
</button>
<button id="menuReload" class="mediumButtons" aria-label="reload project" data-title="reload project">
<svg id="reload" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M440-122q-121-15-200.5-105.5T160-440q0-66 26-126.5T260-672l57 57q-38 34-57.5 79T240-440q0 88 56 155.5T440-202v80Zm80 0v-80q87-16 143.5-83T720-440q0-100-70-170t-170-70h-3l44 44-56 56-140-140 140-140 56 56-44 44h3q134 0 227 93t93 227q0 121-79.5 211.5T520-122Z" />
</svg>
</button>
</div>
<button class="mediumButtons switchRight" id="leftSidebarSwitchSide" aria-label="switch sidebar side"
data-title="switch sidebar side">
<svg id="switch" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path d="M400-200 120-480l280-280v560Zm-60-145v-270L205-480l135 135Zm220 145v-560l280 280-280 280Z" />
</svg>
</button>
</div>
</div>
<div id="navSelection">
<span class="label">Selection</span>
<div>
<button id="navSelectionBuild" class="mediumButtons" aria-label="build" data-title="build">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m620-284 56-56q6-6 6-14t-6-14L540-505q4-11 6-22t2-25q0-57-40.5-97.5T410-690q-17 0-34 4.5T343-673l94 94-56 56-94-94q-8 16-12.5 33t-4.5 34q0 57 40.5 97.5T408-412q13 0 24.5-2t22.5-6l137 136q6 6 14 6t14-6ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<button id="navSelectionDatabase" class="mediumButtons" aria-label="codebase N/A"
data-title="codebase N/A">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M480-120q-151 0-255.5-46.5T120-280v-400q0-66 105.5-113T480-840q149 0 254.5 47T840-680v400q0 67-104.5 113.5T480-120Zm0-479q89 0 179-25.5T760-679q-11-29-100.5-55T480-760q-91 0-178.5 25.5T200-679q14 30 101.5 55T480-599Zm0 199q42 0 81-4t74.5-11.5q35.5-7.5 67-18.5t57.5-25v-120q-26 14-57.5 25t-67 18.5Q600-528 561-524t-81 4q-42 0-82-4t-75.5-11.5Q287-543 256-554t-56-25v120q25 14 56 25t66.5 18.5Q358-408 398-404t82 4Zm0 200q46 0 93.5-7t87.5-18.5q40-11.5 67-26t32-29.5v-98q-26 14-57.5 25t-67 18.5Q600-328 561-324t-81 4q-42 0-82-4t-75.5-11.5Q287-343 256-354t-56-25v99q5 15 31.5 29t66.5 25.5q40 11.5 88 18.5t94 7Z" />
</svg>
</button>
<button id="navSelectionStatic" class="mediumButtons" aria-label="static data"
data-title="static data"><svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h240l80 80h320q33 0 56.5 23.5T880-640v400q0 33-23.5 56.5T800-160H160Zm0-80h640v-400H447l-80-80H160v480Zm0 0v-480 480Z" />
</svg>
</button>
<button id="navSelectionBuildRoutes" class="mediumButtons" aria-label="routes" data-title="routes">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M320-360h80v-120h140v100l140-140-140-140v100H360q-17 0-28.5 11.5T320-520v160ZM480-80q-15 0-29.5-6T424-104L104-424q-12-12-18-26.5T80-480q0-15 6-29.5t18-26.5l320-320q12-12 26.5-18t29.5-6q15 0 29.5 6t26.5 18l320 320q12 12 18 26.5t6 29.5q0 15-6 29.5T856-424L536-104q-12 12-26.5 18T480-80ZM320-320l160 160 320-320-320-320-320 320 160 160Zm160-160Z" />
</svg>
</button>
</div>
</div>
<div id="navSections">
<span class="label">Sections</span>
<div>
<button id="navHead" class="mediumButtons" aria-label="head" data-title="head">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M360-390q-21 0-35.5-14.5T310-440q0-21 14.5-35.5T360-490q21 0 35.5 14.5T410-440q0 21-14.5 35.5T360-390Zm240 0q-21 0-35.5-14.5T550-440q0-21 14.5-35.5T600-490q21 0 35.5 14.5T650-440q0 21-14.5 35.5T600-390ZM480-160q134 0 227-93t93-227q0-24-3-46.5T786-570q-21 5-42 7.5t-44 2.5q-91 0-172-39T390-708q-32 78-91.5 135.5T160-486v6q0 134 93 227t227 93Zm0 80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm-54-715q42 70 114 112.5T700-640q14 0 27-1.5t27-3.5q-42-70-114-112.5T480-800q-14 0-27 1.5t-27 3.5ZM177-581q51-29 89-75t57-103q-51 29-89 75t-57 103Zm249-214Zm-103 36Z" />
</svg>
</button>
<button id="navFonts" class="mediumButtons" aria-label="fonts" data-title="fonts">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M186-80q-54 0-80-22t-26-66q0-58 49-74t116-16h21v-56q0-34-1-55.5t-6-35.5q-5-14-11.5-19.5T230-430q-9 0-16.5 3t-12.5 8q-4 5-5 10.5t1 11.5q6 11 14 21.5t8 24.5q0 25-17.5 42.5T159-291q-25 0-42.5-17.5T99-351q0-27 12-44t32.5-27q20.5-10 47.5-14t58-4q85 0 118 30.5T400-302v147q0 19 4.5 28t15.5 9q12 0 19.5-18t9.5-56h11q-3 62-23.5 87T368-80q-43 0-67.5-13.5T269-134q-10 29-29.5 41.5T186-80Zm373 0q-20 0-32.5-16.5T522-132l102-269q7-17 22-28t34-11q19 0 34 11t22 28l102 269q8 19-4.5 35.5T801-80q-12 0-22-7t-15-19l-20-58H616l-20 58q-4 11-14 18.5T559-80Zm-324-29q13 0 22-20.5t9-49.5v-67q-26 0-38 15.5T216-180v11q0 36 4 48t15 12Zm407-125h77l-39-114-38 114Zm-37-285q-48 0-76.5-33.5T500-643q0-104 66-170.5T735-880q42 0 68 9.5t26 24.5q0 6-2 12t-7 11q-5 7-12.5 10t-15.5 1q-14-4-32-7t-33-3q-71 0-114 48t-43 127q0 22 8 46t36 24q11 0 21.5-5t18.5-14q17-18 31.5-60T712-758q2-13 10.5-18.5T746-782q18 0 27.5 9.5T779-749q-12 43-17.5 75t-5.5 58q0 20 5.5 29t16.5 9q11 0 21.5-8t29.5-30q2-3 15-7 8 0 12 6t4 17q0 28-32 54t-67 26q-26 0-44.5-14T691-574q-15 26-37 40.5T605-519Zm-485-1v-220q0-58 41-99t99-41q58 0 99 41t41 99v220h-80v-80H200v80h-80Zm80-160h120v-60q0-25-17.5-42.5T260-800q-25 0-42.5 17.5T200-740v60Z" />
</svg>
</button>
<button id="navRoot" class="mediumButtons" aria-label="root" data-title="root">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"
class="icon line-color">
<path d="M3,12H4.31a1,1,0,0,1,.93.65L8,20,10.85,4.82a1,1,0,0,1,1-.82H21" fill="none"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
</path>
</svg>
</button>
<button id="navBody" class="mediumButtons" aria-label="body" data-title="body">
<svg xmlns="http://www.w3.org/2000/svg" height="30px" viewBox="0 -960 960 960" width="30px">
<path
d="M480-660q-29 0-49.5-20.5T410-730q0-29 20.5-49.5T480-800q29 0 49.5 20.5T550-730q0 29-20.5 49.5T480-660Zm-80 500v-200h-40v-180q0-33 23.5-56.5T440-620h80q33 0 56.5 23.5T600-540v180h-40v200H400Z" />
</svg>
</button>
</div>
</div>
<div id="navBodyToolset">
<span class="label">Toolset</span>
<div>
<button id="navGlobals" class="mediumButtons" aria-label="globals N/A" data-title="globals N/A">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm-40-82v-78q-33 0-56.5-23.5T360-320v-40L168-552q-3 18-5.5 36t-2.5 36q0 121 79.5 212T440-162Zm276-102q20-22 36-47.5t26.5-53q10.5-27.5 16-56.5t5.5-59q0-98-54.5-179T600-776v16q0 33-23.5 56.5T520-680h-80v80q0 17-11.5 28.5T400-560h-80v80h240q17 0 28.5 11.5T600-440v120h40q26 0 47 15.5t29 40.5Z" />
</svg>
</button>
<button id="navClassroom" class="mediumButtons" aria-label="classroom" data-title="classroom">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M480-120 200-272v-240L40-600l440-240 440 240v320h-80v-276l-80 44v240L480-120Zm0-332 274-148-274-148-274 148 274 148Zm0 241 200-108v-151L480-360 280-470v151l200 108Zm0-241Zm0 90Zm0 0Z" />
</svg>
</button>
<button id="navTemplates" class="mediumButtons" aria-label="templates" data-title="templates">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M160-80q-33 0-56.5-23.5T80-160v-360q0-33 23.5-56.5T160-600h80v-200q0-33 23.5-56.5T320-880h480q33 0 56.5 23.5T880-800v360q0 33-23.5 56.5T800-360h-80v200q0 33-23.5 56.5T640-80H160Zm0-80h480v-280H160v280Zm560-280h80v-280H320v120h320q33 0 56.5 23.5T720-520v80Z" />
</svg>
</button>
</div>
</div>
<div id="navBodyAdditional">
<span class="label">Display</span>
<div>
<button id="navAdditionalScreen" class="mediumButtons screenDesktop" aria-label="select display"
data-title="select display"></button>
<button id="navSelectPreview" class="mediumButtons preview" aria-label="select preview"
data-title="select preview"></button>
</div>
</div>
<div id="navDevice">
<span class="label">Device</span>
<div>
<button id="navScreenDesktop" class="mediumButtons screenDesktop" aria-label="desktop"
data-title="desktop">
<svg id="iconDesktop" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M240-120v-80l40-40H160q-33 0-56.5-23.5T80-320v-440q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v440q0 33-23.5 56.5T800-240H680l40 40v80H240Zm-80-200h640v-440H160v440Zm0 0v-440 440Z" />
</svg>
</button>
<button id="navScreenTablet" class="mediumButtons screenTablet" aria-label="tablet" data-title="tablet">
<svg id="iconTablet" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M200-40q-33 0-56.5-23.5T120-120v-720q0-33 23.5-56.5T200-920h560q33 0 56.5 23.5T840-840v720q0 33-23.5 56.5T760-40H200Zm0-200v120h560v-120H200Zm200 80h160v-40H400v40ZM200-320h560v-400H200v400Zm0-480h560v-40H200v40Zm0 0v-40 40Zm0 560v120-120Z" />
</svg>
</button>
<button id="navScreenMobile" class="mediumButtons screenMobile" aria-label="mobile" data-title="mobile">
<svg id="iconMobile" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M280-40q-33 0-56.5-23.5T200-120v-720q0-33 23.5-56.5T280-920h400q33 0 56.5 23.5T760-840v720q0 33-23.5 56.5T680-40H280Zm0-120v40h400v-40H280Zm0-80h400v-480H280v480Zm0-560h400v-40H280v40Zm0 0v-40 40Zm0 640v40-40Z" />
</svg>
</button>
<div data-title="custom screen">
<select id="navScreenCustom" class="mediumButtons" aria-label="custom screen"></select>
</div>
</div>
</div>
<div id="navPreview">
<span class="label">Preview</span>
<div>
<button id="navPreviewNormal" class="mediumButtons preview" aria-label="live" data-title="live">
<svg id="iconPreview" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm0-80h560v-480H200v480Zm280-80q-82 0-146.5-44.5T240-440q29-71 93.5-115.5T480-600q82 0 146.5 44.5T720-440q-29 71-93.5 115.5T480-280Zm0-60q56 0 102-26.5t72-73.5q-26-47-72-73.5T480-540q-56 0-102 26.5T306-440q26 47 72 73.5T480-340Zm0-100Zm0 60q25 0 42.5-17.5T540-440q0-25-17.5-42.5T480-500q-25 0-42.5 17.5T420-440q0 25 17.5 42.5T480-380Z" />
</svg>
</button>
<button id="navPreviewStatic" class="mediumButtons static" aria-label="static" data-title="static">
<svg id="iconStatic" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M480-520Zm0 440q-116 0-198-82t-82-198v-240q0-116 82-198t198-82q116 0 198 82t82 198v124q-20-4-40-4t-40 4v-44H280v160q0 83 58.5 141.5T480-160q11 0 20.5-1t19.5-3v81q-10 2-19.5 2.5T480-80ZM280-600h160v-196q-69 14-114.5 69T280-600Zm240 0h160q0-72-45.5-127T520-796v196ZM634-80q-14 0-24-10t-10-24v-132q0-14 10-24t24-10h6v-40q0-33 23.5-56.5T720-400q33 0 56.5 23.5T800-320v40h6q14 0 24 10t10 24v132q0 14-10 24t-24 10H634Zm46-200h80v-40q0-17-11.5-28.5T720-360q-17 0-28.5 11.5T680-320v40ZM480-520Zm40-80Zm-80 0Z" />
</svg>
</button>
<button id="navPreviewTree" class="mediumButtons tree" aria-label="tree" data-title="tree">
<svg id="iconTree" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M200-80v-80h240v-160h-80q-83 0-141.5-58.5T160-520q0-60 33-110.5t89-73.5q9-75 65.5-125.5T480-880q76 0 132.5 50.5T678-704q56 23 89 73.5T800-520q0 83-58.5 141.5T600-320h-80v160h240v80H200Zm160-320h240q50 0 85-35t35-85q0-36-20.5-66T646-630l-42-18-6-46q-6-45-39.5-75.5T480-800q-45 0-78.5 30.5T362-694l-6 46-42 18q-33 14-53.5 44T240-520q0 50 35 85t85 35Zm120-200Z" />
</svg>
</button>
</div>
</div>
</nav>
</div>
</div>
</div>
<div id="selectedElementLabelContainer">
<div>
<div>
<div id="mainInitialSelector">
<button id="openAddElement" type="button" class=" mediumButtons" aria-label="add element"
data-title="add element">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select element">
<select id="elementSelect" class="mediumButtons" aria-label="select element"></select>
</div>
<button id="editBlueprint" class="mediumButtons" aria-label="edit blueprint" data-title="edit blueprint">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M160-40v-240h100v-80H160v-240h100v-80H160v-240h280v240H340v80h100v80h120v-80h280v240H560v-80H440v80H340v80h100v240H160Zm80-80h120v-80H240v80Zm0-320h120v-80H240v80Zm400 0h120v-80H640v80ZM240-760h120v-80H240v80Zm60-40Zm0 320Zm400 0ZM300-160Z" />
</svg>
</button>
<button id="editText" class="mediumButtons" aria-label="edit text content" data-title="edit text content">
<svg id="iconText" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path d="M280-160v-520H80v-120h520v120H400v520H280Zm360 0v-320H520v-120h360v120H760v320H640Z" />
</svg>
</button>
<button id="editAttributes" class="mediumButtons" aria-label="edit attributes" data-title="edit attributes">
<svg id="iconAttributes" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960"
width="24px">
<path
d="M160-400v-80h280v80H160Zm0-160v-80h440v80H160Zm0-160v-80h440v80H160Zm360 560v-123l221-220q9-9 20-13t22-4q12 0 23 4.5t20 13.5l37 37q8 9 12.5 20t4.5 22q0 11-4 22.5T863-380L643-160H520Zm300-263-37-37 37 37ZM580-220h38l121-122-18-19-19-18-122 121v38Zm141-141-19-18 37 37-18-19Z" />
</svg>
</button>
<button id="editStyle" class="mediumButtons" aria-label="edit style" data-title="edit style">
<svg id="style" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M440-80q-33 0-56.5-23.5T360-160v-160H240q-33 0-56.5-23.5T160-400v-280q0-66 47-113t113-47h480v440q0 33-23.5 56.5T720-320H600v160q0 33-23.5 56.5T520-80h-80ZM240-560h480v-200h-40v160h-80v-160h-40v80h-80v-80H320q-33 0-56.5 23.5T240-680v120Zm0 160h480v-80H240v80Zm0 0v-80 80Z" />
</svg>
</button>
<button id="removeElement" class="mediumButtons" aria-label="remove element" data-title="remove element">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintSelector">
<button id="mainBlueprintSelectorBack" class="mediumButtons" aria-label="return to element selector"
data-title="return to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="mainBlueprintSelectorAdd" class="mediumButtons" aria-label="add new blueprint element"
data-title="add new blueprint element">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select blueprint element">
<select id="blueprintSelect" class="mediumButtons" aria-label="select blueprint element"></select>
</div>
<button id="mainBlueprintSelectorCounter" class="mediumButtons" aria-label="number of blueprint elements"
data-title="number of blueprint elements">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path d="M240-160v-80l260-240-260-240v-80h480v120H431l215 200-215 200h289v120H240Z" />
</svg>
</button>
<button id="mainBlueprintSelectorAlter" class="mediumButtons" aria-label="alter blueprint element"
data-title="alter blueprint element">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed">
<path
d="M756-120 537-339l84-84 219 219-84 84Zm-552 0-84-84 276-276-68-68-28 28-51-51v82l-28 28-121-121 28-28h82l-50-50 142-142q20-20 43-29t47-9q24 0 47 9t43 29l-92 92 50 50-28 28 68 68 90-90q-4-11-6.5-23t-2.5-24q0-59 40.5-99.5T701-841q15 0 28.5 3t27.5 9l-99 99 72 72 99-99q7 14 9.5 27.5T841-701q0 59-40.5 99.5T701-561q-12 0-24-2t-23-7L204-120Z" />
</svg>
</button>
<button id="mainBlueprintSelectorEditText" class="mediumButtons" aria-label="edit blueprint element text"
data-title="edit blueprint element text">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconText"></use>
</svg>
</button>
<button id="mainBlueprintSelectorAttributes" class="mediumButtons" aria-label="edit blueprint attributes"
data-title="edit blueprint attributes">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconAttributes"></use>
</svg>
</button>
<button id="mainBlueprintSelectorEditStyle" class="mediumButtons" aria-label="edit blueprint style"
data-title="edit blueprint style">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#style"></use>
</svg>
</button>
<button id="mainBlueprintSelectorDelete" class="mediumButtons" aria-label="delete blueprint element"
data-title="delete blueprint element">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintAlterSelector">
<button id="mainBlueprintAlterSelectorBack" class="mediumButtons" aria-label="back to blueprint selector"
data-title="back to blueprint selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select blueprints alter type">
<select id="mainBlueprintAlterSelectorSelectAlter" aria-label="select blueprints alter type"></select>
</div>
<div data-title="select blueprint ordinal number">
<select id="mainBlueprintAlterSelectorSelectOrdinal" aria-label="select blueprint ordinal number"></select>
</div>
<button id="mainBlueprintAlterSelectorEditText" class="mediumButtons"
aria-label="edit blueprint ordinal element text" data-title="edit blueprint ordinal element text">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconText"></use>
</svg>
</button>
<button id="mainBlueprintAlterSelectorAttributes" class="mediumButtons"
aria-label="edit blueprint alter attributes" data-title="edit blueprint alter attributes">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconAttributes"></use>
</svg>
</button>
<button id="mainBlueprintAlterSelectorEditStyle" class="mediumButtons" aria-label="edit blueprint alter style"
data-title="edit blueprint alter style">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#style"></use>
</svg>
</button>
</div>
<div id="mainBlueprintAlterAttributeSelector">
<button id="mainBlueprintAlterAttributeSelectorBack" class="mediumButtons"
aria-label="return to element selector" data-title="return to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="mainBlueprintAlterAttributeSelectorOpenAddAttribute" class="mediumButtons"
aria-label="open add attribute" data-title="open add attribute">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select attribute">
<select class="mediumButtons" id="mainBlueprintAlterAttributeSelectorSelect" aria-label="select attribute">
</select>
</div>
<button class="mediumButtons" id="mainBlueprintAlterAttributeSelectorRemoveAttribute"
aria-label="remove attribute" data-title="remove attribute">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintAlterAttributeSelectorAttributeAdd">
<button id="mainBlueprintAlterAttributeSelectorAttributeAddBack" class="mediumButtons"
aria-label="return to attribute selector" data-title="return to attribute selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select new attribute">
<select id="mainBlueprintAlterAttributeSelectorAttributeSelectAll" class="mediumButtons"
aria-label="select new attribute"></select>
</div>
<button id="mainBlueprintAlterAttributeSelectorAddAttribute" class="mediumButtons" aria-label="add attribute"
data-title="add attribute">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainBlueprintAlterStyleSelector">
<button id="mainBlueprintAlterStyleSelectorBack" class="mediumButtons" aria-label="back to element selector"
data-title="back to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<!-- TODO -->
<!-- <button id="mainBlueprintAlterStyleSelectorOpenState" class="mediumButtons" aria-label="manage state"
data-title="manage state">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconState"></use>
</svg>
</button> -->
<button id="mainBlueprintAlterStyleSelectorOpenAddProperty" class="mediumButtons"
aria-label="open add property" data-title="open add property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select property">
<select id="mainBlueprintAlterStyleSelectorPropertySelect" class="mediumButtons"
aria-label="select property"></select>
</div>
<button id="mainBlueprintAlterStyleSelectorRemoveSelectProperty" class="mediumButtons"
aria-label="remove property" data-title="remove property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintAlterStyleSelectorStyleAdd">
<button id="mainBlueprintAlterStyleSelectorStyleAddBack" class="mediumButtons"
aria-label="back to blueprint property selector" data-title="back to blueprint property selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select blueprint property">
<select id="mainBlueprintAlterStyleSelectorStyleAddPropertyBlueprintSelectAll" class="mediumButtons"
aria-label="select blueprint property"></select>
</div>
<button id="mainBlueprintAlterStyleSelectorStyleAddBlueprintProperty" class="mediumButtons"
aria-label="add blueprint property" data-title="add blueprint property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainBlueprintAlterSelectorTextEditor">
<button id="mainBlueprintAlterSelectorTextEditorBack" class="mediumButtons"
aria-label="return to element selector" data-title="return to blueprint ordinal element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="mainBlueprintAlterSelectorTextEditorUpdateText" class="mediumButtons"
aria-label="update text content" data-title="update text content">
<svg id="update" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M480-120q-75 0-140.5-28.5t-114-77q-48.5-48.5-77-114T120-480q0-75 28.5-140.5t77-114q48.5-48.5 114-77T480-840q82 0 155.5 35T760-706v-94h80v240H600v-80h110q-41-56-101-88t-129-32q-117 0-198.5 81.5T200-480q0 117 81.5 198.5T480-200q105 0 183.5-68T756-440h82q-15 137-117.5 228.5T480-120Zm112-192L440-464v-216h80v184l128 128-56 56Z" />
</svg>
</button>
</div>
<div id="mainBlueprintTextEditor">
<button id="mainBlueprintTextEditorBack" class="mediumButtons" aria-label="back to element selector"
data-title="back to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="mainBlueprintTextEditorUpdateBlueprintText" class="mediumButtons" aria-label="update text content"
data-title="update text content">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#update"></use>
</svg>
</button>
</div>
<div id="mainBlueprintAttributeSelector">
<button id="mainBlueprintAttributeSelectorBack" class="mediumButtons"
aria-label="back to blueprint element selector" data-title="back to blueprint element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="openBlueprintAddAttribute" class="mediumButtons" aria-label="open add attribute"
data-title="open add attribute">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select blueprint attribute">
<select id="blueprintAttributeSelect" class="mediumButtons"
aria-label="select blueprint attribute"></select>
</div>
<button id="blueprintRemoveAttribute" class="mediumButtons" aria-label="remove attribute"
data-title="remove attribute">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintAttributeAdd">
<button id="mainBlueprintAttributeAddBack" class="mediumButtons"
aria-label="back to blueprint attribute selector" data-title="back to blueprint attribute selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select blueprint attribute">
<select id="blueprintAttributeSelectAll" class="mediumButtons"
aria-label="select blueprint attribute"></select>
</div>
<button id="blueprintAddAttribute" class="mediumButtons" aria-label="add attribute"
data-title="add attribute">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainBlueprintCounter">
<button id="mainBlueprintCounterBack" class="mediumButtons" aria-label="return to select blueprint"
data-title="return to select blueprint">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="blueprint counter">
<input id="mainBlueprintCounterInput" type="number" aria-label="blueprint counter">
</div>
<button id="mainBlueprintCounterUpdate" class="mediumButtons" aria-label="update counter"
data-title="update counter">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#update"></use>
</svg>
</button>
</div>
<div id="mainBlueprintStyleSelector">
<button id="mainBlueprintStyleSelectorBack" class="mediumButtons" aria-label="back to element selector"
data-title="back to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="openBlueprintState" class="mediumButtons" aria-label="manage state" data-title="manage state">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconState"></use>
</svg>
</button>
<button id="openBlueprintAddProperty" class="mediumButtons" aria-label="open add property"
data-title="open add property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select property">
<select id="blueprintPropertySelect" class="mediumButtons" aria-label="select property"></select>
</div>
<button id="removePropertyBlueprintSelectProperty" class="mediumButtons" aria-label="remove property"
data-title="remove property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintStateSelector">
<button id="mainBlueprintStateSelectorBack" class="mediumButtons" aria-label="back to element selector"
data-title="back to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="openBlueprintAddState" class="mediumButtons" aria-label="open add state"
data-title="open add state">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select state">
<select id="elementBlueprintStateSelect" aria-label="select state"></select>
</div>
<div id="mainBlueprintStateStyleContextInfo">
<button id="stateBlueprintContextInfo" class="mediumButtons" readonly
aria-label="state property context info" data-title="state property context info" type="text">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconHighlight"></use>
</svg>
</button>
</div>
<button id="editBlueprintStateStyle" class="mediumButtons" aria-label="edit state style"
data-title="edit state style">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#style"></use>
</svg>
</button>
<button id="removeBlueprintState" class="mediumButtons" aria-label="remove state" data-title="remove state">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintStateAdd">
<button class="mediumButtons" id="closeBlueprintAddState" aria-label="return to select state"
data-title="return to select state">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div id="stateBlueprintSelectAllContainer" data-title="select new state">
<select id="stateBlueprintSelectAll" aria-label="select new state"></select>
</div>
<div id="selectBlueprintContextContainer" data-title="select new context">
<select id="selectBlueprintContext" aria-label="select new context"></select>
</div>
<button id="selectBlueprintContextHighlight" class="mediumButtons" aria-label="highlight new context"
data-title="highlight new context">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconHighlight"></use>
</svg>
</button>
<div id="selectBlueprintStateOfContextContainer" data-title="select new context state">
<select id="selectBlueprintStateOfContext" aria-label="select new context state"></select>
</div>
<button id="addBlueprintState" class="mediumButtons" aria-label="add state" data-title="add state">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainBlueprintStateStyleSelector">
<button id="mainBlueprintStateStyleSelectorBack" class="mediumButtons"
aria-label="back to element state selector" data-title="back to element state selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button id="openBlueprintAddStateProperty" class="mediumButtons" aria-label="open add state property"
data-title="open add state property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select state property">
<select id="stateBlueprintPropertySelect" class="mediumButtons" aria-label="select state property"></select>
</div>
<button id="removeBlueprintStateProperty" class="mediumButtons" aria-label="remove state property"
data-title="remove state property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintStateStyleAdd">
<button id="mainBlueprintStateStyleAddBack" class="mediumButtons" aria-label="back to property selector"
data-title="back to property selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select state property">
<select id="stateBlueprintPropertySelectAll" class="mediumButtons"
aria-label="select state property"></select>
</div>
<button id="addBlueprintStateProperty" class="mediumButtons" aria-label="add state property"
data-title="add state property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainBlueprintStyleAdd">
<button id="mainBlueprintStyleAddBack" class="mediumButtons" aria-label="back to blueprint property selector"
data-title="back to blueprint property selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select blueprint property">
<select id="propertyBlueprintSelectAll" class="mediumButtons"
aria-label="select blueprint property"></select>
</div>
<button id="addBlueprintProperty" class="mediumButtons" aria-label="add blueprint property"
data-title="add blueprint property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainClassroomSelector">
<button id="mainClassroomSelectorAdd" class="mediumButtons" aria-label="open add tag"
data-title="open add tag">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select type">
<select id="mainClassroomSelectorSelectType" class="mediumButtons" aria-label="select type"></select>
</div>
<div data-title="select name">
<select id="mainClassroomSelectorSelectName" class="mediumButtons" aria-label="select name"></select>
</div>
<button id="mainClassroomSelectorEditName" class="mediumButtons" aria-label="edit name"
data-title="edit name">
<svg id="iconEdit" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M200-200h57l391-391-57-57-391 391v57Zm-80 80v-170l528-527q12-11 26.5-17t30.5-6q16 0 31 6t26 18l55 56q12 11 17.5 26t5.5 30q0 16-5.5 30.5T817-647L290-120H120Zm640-584-56-56 56 56Zm-141 85-28-29 57 57-29-28Z" />
</svg>
</button>
<button id="mainClassroomSelectorEditStyle" class="mediumButtons" aria-label="edit style"
data-title="edit style">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#style"></use>
</svg>
</button>
<button id="mainClassroomSelectorDelete" class="mediumButtons" aria-label="remove style"
data-title="remove style">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainAddClassroomSelector">
<button id="mainAddClassroomSelectorBack" class="mediumButtons" aria-label="back to classroom selector"
data-title="back to classroom selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select new type">
<select id="mainAddClassroomSelectorSelectType" class="mediumButtons" aria-label="select new type"></select>
</div>
<div data-title="name">
<input id="mainAddClassroomSelectorInputName" aria-label="name" />
</div>
<button id="mainClassroomSelectorSelectExtend" type="button" class="mediumButtons"
aria-label="expand selector with extension" data-title="expand selector with extension">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconExtend"></use>
</svg>
</button>
<button id="mainAddClassroomSelectorAdd" class="mediumButtons" aria-label="add tag" data-title="add tag">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainTemplatesSelector">
<button id="mainTemplatesSelectorDesigner" class="mediumButtons" aria-label="design template"
data-title="design template">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="#e8eaed">
<path
d="m352-522 86-87-56-57-44 44-56-56 43-44-45-45-87 87 159 158Zm328 329 87-87-45-45-44 43-56-56 43-44-57-56-86 86 158 159Zm24-567 57 57-57-57ZM290-120H120v-170l175-175L80-680l200-200 216 216 151-152q12-12 27-18t31-6q16 0 31 6t27 18l53 54q12 12 18 27t6 31q0 16-6 30.5T816-647L665-495l215 215L680-80 465-295 290-120Zm-90-80h56l392-391-57-57-391 392v56Zm420-419-29-29 57 57-28-28Z" />
</svg>
</button>
<div data-title="select element for template">
<select class="mediumButtons" id="mainTemplatesSelectorParent"
aria-label="select element for template"></select>
</div>
<button id="mainTemplatesSelectorAdd" class="mediumButtons" aria-label="add template"
data-title="add template">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select template">
<select id="mainTemplatesSelectorOptions" class="mediumButtons" aria-label="select template"></select>
</div>
<button id="mainTemplatesSelectorPreview" class="mediumButtons" aria-label="preview template"
data-title="preview template">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#iconPreview"></use>
</svg>
</button>
<button id="mainTemplatesSelectorDelete" class="mediumButtons" aria-label="delete template"
data-title="delete template">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
<button id="mainTemplatesSelectorInject" class="mediumButtons" aria-label="inject template"
data-title="inject template">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160ZM200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm0-80h560v-560H200v560Zm0-560v560-560Z" />
</svg>
</button>
</div>
<div id="mainElementAdd">
<button class="mediumButtons" id="closeAddElement" aria-label="return to element selector"
data-title="return to element selector">
<svg id="back" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path d="m313-440 224 224-57 56-320-320 320-320 57 56-224 224h487v80H313Z" />
</svg>
</button>
<div data-title="select new element">
<select class="mediumButtons" id="elementSelectAll" aria-label="select new element"></select>
</div>
<button class="mediumButtons add" id="addElement" aria-label="add element" data-title="add element">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainStyleSelector">
<button id="mainStyleSelectorBack" class="mediumButtons" aria-label="return to element selector"
data-title="return to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button class="mediumButtons" id="openState" aria-label="manage state" data-title="manage state">
<svg id="iconState" xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M320-240h60v-200h100l40 80h200v-240H600l-40-80H320v440Zm237-180-40-80H380v-120h143l40 80h97v120H557ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<button class="mediumButtons" id="openAddProperty" aria-label="open add property"
data-title="open add property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select property">
<select class="mediumButtons" id="propertySelect" aria-label="select property"></select>
</div>
<button class="mediumButtons" id="removeProperty" aria-label="remove property" data-title="remove property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="m376-300 104-104 104 104 56-56-104-104 104-104-56-56-104 104-104-104-56 56 104 104-104 104 56 56Zm-96 180q-33 0-56.5-23.5T200-200v-520h-40v-80h200v-40h240v40h200v80h-40v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520Zm-400 0v520-520Z" />
</svg>
</button>
</div>
<div id="mainBlueprintElementAdd">
<button class="mediumButtons" id="closeBlueprintAddElement" aria-label="return to element selector"
data-title="return to element selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<div data-title="select new blueprint element">
<select class="mediumButtons" id="elementBlueprintSelectAll"
aria-label="select new blueprint element"></select>
</div>
<button class="mediumButtons add" id="addBlueprintElement" aria-label="add element" data-title="add element">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
</div>
<div id="mainClassroomStyleSelector">
<button id="mainClassroomStyleSelectorBack" class="mediumButtons" aria-label="return to classroom selector"
data-title="return to classroom selector">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px">
<use href="#back"></use>
</svg>
</button>
<button class="mediumButtons" id="openClassroomAddProperty" aria-label="open add property"
data-title="open add property">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960">
<path
d="M440-280h80v-160h160v-80H520v-160h-80v160H280v80h160v160Zm40 200q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" />
</svg>
</button>
<div data-title="select property">
<select class="mediumButtons" id="classroomPropertySelect" aria-label="select property"></select>
</div>
<button class="mediumButtons" id="removeClassroomProperty" aria-label="remove property"