-
Notifications
You must be signed in to change notification settings - Fork 0
/
PointsOfInterest.htm
5473 lines (4920 loc) · 519 KB
/
PointsOfInterest.htm
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>
<head>
<title>POINTS OF INTEREST</title>
<script src="https://cdn.jsdelivr.net/npm/d3-selection@3"></script>
<script src="https://cdn.jsdelivr.net/npm/d3-dispatch@3"></script>
<script src="https://cdn.jsdelivr.net/npm/d3-drag@3"></script>
<script src="https://cdn.jsdelivr.net/npm/d3-zoom@3"></script>
<script src="https://cdn.jsdelivr.net/npm/d3-transition@3"></script>
<script>
window.onload = function () {
var svg = d3.select("svg");
var g = svg.select("g");
var [x, y, width, height] = svg.attr("viewBox").split(" ");
var zoom = d3.zoom();
svg.call(zoom
.extent([[0, 0], [width, height]])
.scaleExtent([0.5, 9])
.on("zoom", ({ transform }) => g.attr("transform", transform))
);
svg.call(zoom.translateTo, width / 2, height / 2);
};
</script>
</head>
<body>
<svg version="1.1" baseProfile="full" width="11302.0" height="55932.0" viewBox="0 0 113020 559320" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events">
<desc >#arrowSize: 1
#bendSize: 0.6
#direction: right
#edgeMargin: 1
#font: Verdana
#fontSize: 15
#gravity: 3
#gutter: 80
#leading: 2
#lineWidth: 4
#padding: 60
#ranker: tight-tree
#spacing: 70
#.digitalcouragefosstodon: fill=#D9BF99 title=center,bold body=center //[5 TAN, the WISTERIA complement]
#.hci: fill=#C6B5AF title=center,bold body=center //[1 SILVER, the ASH GRAY complement]
#.exquisitehostuxmastomastodonmastodontsfbatoot: fill=#FFFFFF title=center,bold body=center //[8 WHITE, no complement used]
#.icosahedrontoot: fill=#C79132 title=center,bold body=center //[2 DARK GOLDENROD, no complement used]
#.indieweb: fill=#FAD2B3 title=center,bold body=center //[1 APRICOT, the PERIWINKLE complement]
#.infosec: fill=#FFA3B7 title=center,bold body=center //[1 BAKER-MILLER PINK, the LIGHT GREEN complement]
#.glasgowkamu: fill=#E9DDD5 title=center,bold body=center //[2 CHAMPAGNE PINK, the ALICE BLUE complement]
#.vis: fill=#8EA7E0 title=center,bold body=center //[2 VISTA BLUE, the BUFF complement]
#.mastodon: fill=#A599D9 title=center,bold body=center //[1 WISTERIA, the TAN complement]
#.mathstodon: fill=#AFC4C6 title=center,bold body=center //[50+ ASH GRAY, the SILVER complement]
#.sunny: fill=#BFAF20 title=center,bold body=center //[2 OLD GOLD, no complement used]
#.tech: fill=#EDD3E9 title=center,bold body=center //[1 PALE PURPLE, no complement used]
#.federatedtilde: fill=#B3C7FA title=center,bold body=center //[2 PERIWINKLE, the APRICOT complement]
#.fedisciencemamot: fill=#B7FFA3 title=center,bold body=center //[2 LIGHT GREEN, the BAKER-MILLER PINK complement]
#.mas: fill=#D5DDE9 title=center,bold body=center //[1 ALICE BLUE, the CHAMPAGNE PINK complement]
#.types: fill=#E0B18E title=center,bold body=center //[16 BUFF, the VISTA BLUE complement]
[ HCI.SOCIAL POST AND RELATED ACTIVITY
(IDs assigned by the color-coded original instances) |
| Universal Decimal Classification: 0.514.17(0.034.2HTML)
"Geometric figure arrangements"
[<state> https://hci.social/@chrisamaphone/113047099668507283 ]--
[<hci> @[email protected] 113047099668507283 | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<types> @[email protected] 113047188356135146 ]
]
[ MASTODON.SOCIAL POST AND RELATED ACTIVITY
(IDs assigned by the color-coded original instances) |
| Universal Decimal Classification: 0.514.11(0.034.2HTML)
"Elementary geometry, trigonometry, polygonometry"
[<state> https://mastodon.social/@mengen/113029152659979320 ]--
[<mastodon> @[email protected] 113029152659979320 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mastodon> @[email protected] 113034812424707433 | @[email protected] ]->
[<mastodon> @[email protected] 113046110744648567 ]->
[<mastodon> @[email protected] 113076991250664744 ]->
[<mastodon> @[email protected] 113077037292399205 ]
[<mastodon> @[email protected] 113046110744648567 ]->
[<mathstodon> @[email protected] 113050259428040119 ]->
[<mastodon> @[email protected] 113050565215783817 ]
[<mastodon> @[email protected] 113029152659979320 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113049857100025436 ]
[<mastodon> @[email protected] 113029152659979320 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113050696402373682 ]->
[<mastodon> @[email protected] 113050870861801033 ]->
[<mathstodon> @[email protected] 113051330911288773 ]
]
[ MATHSTODON.XYZ POSTS AND RELATED ACTIVITY
(IDs assigned by the color-coded original instances) |
| Universal Decimal Classification: 0.001.92(0.034.2HTML)
"Dissemination of factual knowledge"
[<state> https://mathstodon.xyz/@codyroux/112995755395233037 ]--
[<mathstodon> @[email protected] 112995755395233037 | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112995768775752568 | @[email protected] ]->
[<mathstodon> @[email protected] 112996186670482918 ]->
[<mathstodon> @[email protected] 112996188636701144 | @[email protected] ]
[<mathstodon> @[email protected] 112995755395233037 | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112995934361055714 | @[email protected] ]->
[<mathstodon> @[email protected] 113001640737021214 | @[email protected] ]->
[<mathstodon> @[email protected] 113001642350924495 | @[email protected] ]->
[<mathstodon> @[email protected] 113001785526607133 | @[email protected] ]
[<mathstodon> @[email protected] 112995755395233037 | @[email protected] | @[email protected] ]->
[<types> @[email protected] 112996360852366279 ]->
[<mathstodon> @[email protected] 112996444668826292 ]->
[<types> @[email protected] 112996541433766068 | @[email protected] ]->
[<mathstodon> @[email protected] 112996545907133938 ]->
[<mathstodon> [email protected] 112996600479672550 | @[email protected]]->
[<mathstodon> @[email protected] 112996622501166453 ]
| Universal Decimal Classification: 0.004.773(0.034.2HTML)
"Computer conferencing"
[<state> https://mathstodon.xyz/@stecks/112908957264217046 ]--
[<mathstodon> @[email protected] 112908957264217046 | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<exquisitehostuxmastomastodonmastodontsfbatoot> @[email protected] 113006515619443314 ]
| Universal Decimal Classification: 0.004.773(0.034.2HTML)
"Computer conferencing"
[<state> https://mathstodon.xyz/@stecks/113006506602917590 ]--
[<mathstodon> @[email protected] 113006506602917590 | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113006515619443314 | @[email protected] ]->
[<mathstodon> @[email protected] 113006532379154761 | @[email protected] ]
| Universal Decimal Classification: 0.004.774(0.034.2HTML)
"Web content"
[<state> https://mathstodon.xyz/@aperiodical/112893370178185299 ]--
[<mathstodon> @[email protected] 112893370178185299 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]
| Universal Decimal Classification: 0.004.774(0.034.2HTML)
"Web content"
[<state> https://mathstodon.xyz/@aperiodical/112908595806485559 ]--
[<mathstodon> @[email protected] 112908595806485559 | @[email protected] ]
| Universal Decimal Classification: 0.004.774(0.034.2HTML)
"Web content"
[<state> https://mathstodon.xyz/@aperiodical/112909413727426836 ]--
[<mathstodon> @[email protected] 112909413727426836 | @[email protected] | @[email protected] | @[email protected] ]
| Universal Decimal Classification: 0.004.774(0.034.2HTML)
"Web content"
[<state> https://mathstodon.xyz/@aperiodical/112925919548991759 ]--
[<mathstodon> @[email protected] 112925919548991759 | @[email protected] | @[email protected] | @[email protected] ]
| Universal Decimal Classification: 0.004.774(0.034.2HTML)
"Web content"
[<state> https://mathstodon.xyz/@aperiodical/113040063242318194 ]--
[<mathstodon> @[email protected] 113040063242318194 | @[email protected] ]
| Universal Decimal Classification: 0.004.774(0.034.2HTML)
"Web content"
[<state> https://mathstodon.xyz/@aperiodical/113056408589154923 ]--
[<mathstodon> @[email protected] 113056408589154923 | @[email protected] | @[email protected] ]
| Universal Decimal Classification: 0.004.89(0.034.2HTML)
"Artificial intelligence application systems"
[<state> https://mathstodon.xyz/@tao/113059676877945580 ]--#AI
[<mathstodon> @[email protected] 113059676877945580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<digitalcouragefosstodon> @[email protected] 113060007150395964 ]
[<mathstodon> @[email protected] 113059676877945580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<exquisitehostuxmastomastodonmastodontsfbatoot> @[email protected] 113060274729134449 ]->
[<mathstodon> @[email protected] 113062770566337800 ]
[<mathstodon> @[email protected] 113059676877945580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113062253887968265 ]
[<mathstodon> @[email protected] 113059676877945580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113063238470292646 ]->
[<mathstodon> @[email protected] 113069147520933316 ]->
[<mathstodon> @[email protected] 113069950250961001 ]
| Universal Decimal Classification: 0.370.09(0.034.2HTML)
"Organization of instruction"
[<state> https://mathstodon.xyz/@christianp/112891257945283156 ]--
[<mathstodon> @[email protected] 112891257945283156 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @bdesmons | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @ColinTheMathmo | @[email protected] | @[email protected] ]
| Universal Decimal Classification: 0.370.09(0.034.2HTML)
"Organization of instruction"
[<state> https://mathstodon.xyz/@tao/113058843359470529 ]--
[<mathstodon> @[email protected] 113058843359470529 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected]| @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113062745745010820 ]->
[<mathstodon> @[email protected] 113062761961618296 ]
| Universal Decimal Classification: 0.510-8(0.034.2HTML)
"Mathematical games and recreations"
[<state> https://mathstodon.xyz/@DavidWood/113041969693435003 ]--
[<mathstodon> @[email protected] 113041969693435003 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113042306104433614 ]
[<mathstodon> @[email protected] 113041969693435003 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113042958400134562 ]
[<mathstodon> @[email protected] 113041969693435003 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113044596439823830 ]->
[<mathstodon> @[email protected] 113052858829741642 ]->
[<mathstodon> @[email protected] 113054763191661548 ]
| Universal Decimal Classification: 0.510.21(0.034.2HTML)
"General philosophical considerations"
[<state> https://mathstodon.xyz/@johncarlosbaez/112927133696918580 ]--
[<mathstodon> @[email protected] 112927133696918580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mastodon> @[email protected] 112927143065553924 ]
[<mathstodon> @[email protected] 112927133696918580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112927255413806501 | @[email protected] ]->
[<mathstodon> @[email protected] 112928351679606840 ]->
[<mathstodon> @[email protected] 112928615670903278 ]->
[<mathstodon> @[email protected] 112928883016345380 ]
[<mathstodon> @[email protected] 112928351679606840 ]->
[<mathstodon> @[email protected] 112933243256389692 | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112937180442842834 ]
[<mathstodon> @[email protected] 112927133696918580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112927276051087532 ]
[<mathstodon> @[email protected] 112927133696918580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<vis> @[email protected] 112928044901049419 ]
[<mathstodon> @[email protected] 112927133696918580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112927166238973033 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<indieweb> @[email protected] 112927303574823344 ]->
[<mathstodon> @[email protected] 112928594953565480 ]
[<mathstodon> @[email protected] 112927166238973033 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112927224281882469 | @[email protected] | @[email protected] ]->
[<icosahedrontoot> @[email protected] 112927297453433287 ]
[<mathstodon> @[email protected] 112927224281882469 | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112927269691350207 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112927338242255795 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<digitalcouragefosstodon> @[email protected] 112927643964209760 ]->
[<mathstodon> @[email protected] 112927706231828937 ]->
[<digitalcouragefosstodon> @[email protected] 112927753104940328 ]->
[<mathstodon> @[email protected] 112928157080408271 ]->
[<digitalcouragefosstodon> @[email protected] 112928473392882361 ]
[<digitalcouragefosstodon> @[email protected] 112927643964209760 ]->
[<mathstodon> @[email protected] 112927804993257812 ]
[<mathstodon> @[email protected] 112927338242255795 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112928080795512512 ]->
[<mathstodon> @[email protected] 112928301872289845 ]
[<mathstodon> @[email protected] 112927338242255795 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112929022805765782 ]->
[<mathstodon> @[email protected] 112929179116017607 ]->
[<mathstodon> @[email protected] 112929586508031748 | @[email protected] ]->
[<mas> @[email protected] 112952086659894347 ]->
[<mathstodon> @[email protected] 112952164039838772 ]
[<mathstodon> @[email protected] 112927338242255795 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<exquisitehostuxmastomastodonmastodontsfbatoot> @[email protected] 112930450560160891 ]
[<mathstodon> @[email protected] 112927338242255795 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112930722309870796 | @[email protected] ]->
[<mathstodon> @[email protected] 112931585283245745 ]
[<mathstodon> @[email protected] 112927338242255795 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<fedisciencemamot> @[email protected] 112956245802729374 ]->
[<mathstodon> @[email protected] 112956560396129482 ]
[<mathstodon> @[email protected] 112927224281882469 | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112928229583136921 ]->
[<mathstodon> @[email protected] 112928283332752649 ]
[<mathstodon> @[email protected] 112927166238973033 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<glasgowkamu> @[email protected] 112927332286547936 ]->
[<mathstodon> @[email protected] 112927332286547936 ]
[<mathstodon> @[email protected] 112927166238973033 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<infosec> @[email protected] 112927443405211248 ]
[<mathstodon> @[email protected] 112927166238973033 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112930802216470822 ]->
[<mathstodon> @[email protected] 112932365240559081 ]->
[<federatedtilde> @[email protected] 112935181094192494 ]
[<mathstodon> @[email protected] 112927133696918580 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112929514752781430 ]->
[<mathstodon> @[email protected] 112930890075530866 ]->
[<mathstodon> @[email protected] 112931127741747620 ]->
[<mathstodon> @[email protected] 112931138025128820 ]->
[<mathstodon> @[email protected] 112931164452957718 ]->
[<mathstodon> @[email protected] 112931203743733787 ]->
[<mathstodon> @[email protected] 112931206677228093 ]->
[<mathstodon> @[email protected] 112931292665976579 ]
[<mathstodon> @[email protected] 112931203743733787 ]->
[<mathstodon> @[email protected] 112931209124604962 ]
[<mathstodon> @[email protected] 112930890075530866 ]->
[<mathstodon> @[email protected] 112932606198631041 ]->
[<mathstodon> @[email protected] 112933055394442870 ]->
[<mathstodon> @[email protected] 112934466300112333 ]->
[<mathstodon> @[email protected] 112934558783331644 ]
| Universal Decimal Classification: 0.510.60(0.034.2HTML)
"Mathematical logic"
[<state> https://mathstodon.xyz/@MartinEscardo/113001536506411322 ]--
[<mathstodon> @[email protected] 113001536506411322 | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113006909917651426 | @[email protected] ]->
[<mathstodon> @[email protected] 113007234392836221 ]->
[<mathstodon> @[email protected] 113007360502915157 ]->
[<mathstodon> @[email protected] 113012662034662886 ]
[<mathstodon> @[email protected] 113007360502915157 ]->
[<types> @[email protected] 113011360418429261 ]
[<mathstodon> @[email protected] 113001536506411322 | @[email protected] | @[email protected] | @[email protected] ]->
[<exquisitehostuxmastomastodonmastodontsfbatoot> @[email protected] 113003905653367385 ]
[<mathstodon> @[email protected] 113001536506411322 | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113007905072076964 ]
| Universal Decimal Classification: 0.510.60(0.034.2HTML)
"Mathematical logic"
[<state> https://mathstodon.xyz/@codyroux/113001918255306096 ]--
[<mathstodon> @[email protected] 113001918255306096 ]->
[<types> @[email protected] 113003764428696420 | @[email protected] ]->
[<mathstodon> @[email protected] 113006053068601309 ]
| Universal Decimal Classification: 0.511.11(0.034.2HTML)
"Number notations"
[<state> https://mathstodon.xyz/@11011110/112958638780917209 ]--
[<mathstodon> @[email protected] 112958638780917209 | @[email protected] | @[email protected] ]
| Universal Decimal Classification: 0.511.17(0.034.2HTML)
"Elementary number theory"
[<state> https://mathstodon.xyz/@johncarlosbaez/112971381178698747 ]--
[<mathstodon> @[email protected] 112971381178698747 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112971463146105996 | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112972534280159591 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<icosahedrontoot> @[email protected] 112972657393774856 ]->
[<mathstodon> @[email protected] 112973531908230567 ]
[<mathstodon> @[email protected] 112972534280159591 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112972657393774856 ]->
[<mathstodon> @[email protected] 112976136377384118 ]->
[<mathstodon> @[email protected] 112976745142240716 ]->
[<mathstodon> @[email protected] 112977050463741084 ]
[<mathstodon> @[email protected] 112971381178698747 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mastodon> @[email protected] 112971424366018119 ]
[<mathstodon> @[email protected] 112971381178698747 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112972810249702408 ]->
[<mathstodon> @[email protected] 112972954754480795 ]
[<mathstodon> @[email protected] 112972810249702408 ]->
[<mathstodon> @[email protected] 112973104692000554 ]
[<mathstodon> @[email protected] 112972810249702408 ]->
[<mathstodon> @[email protected] 112973143268318805 ]
[<mathstodon> @[email protected] 112971381178698747 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<exquisitehostuxmastomastodonmastodontsfbatoot> @[email protected] 112973262030693719 ]
[<mathstodon> @[email protected] 112971381178698747 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112973544725803322 ]->
[<mathstodon> @[email protected] 112973864339568031 ]->
[<mathstodon> @[email protected] 112973966246033446 ]->
[<mathstodon> @[email protected] 112974025106029468 ]
| Universal Decimal Classification: 0.514.17(0.034.2HTML)
"Geometric figure arrangements"
[<state> https://mathstodon.xyz/@bleuje/112933792125156917 ]--
[<mathstodon> @[email protected] 112933792125156917 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @JeanBaptisteEt4 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112933829622048540 ]->
[<mathstodon> @[email protected] 112933839442839094 ]
[<mathstodon> @[email protected] 112933792125156917 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @JeanBaptisteEt4 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<fedisciencemamot> @[email protected] 112933974288642275 ]
[<mathstodon> @[email protected] 112933792125156917 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @JeanBaptisteEt4 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<digitalcouragefosstodon> @[email protected] 112934129589363344 ]->
[<vis> @[email protected] 112936284480284206 ]
[<mathstodon> @[email protected] 112933792125156917 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @JeanBaptisteEt4 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<exquisitehostuxmastomastodonmastodontsfbatoot> @[email protected] 112936484473080167 ]
[<mathstodon> @[email protected] 112933792125156917 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @JeanBaptisteEt4 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<glasgowkamu> @[email protected] 112937684581829048 ]
]
[ SUNNY.GARDEN POST AND RELATED ACTIVITY
(IDs assigned by the color-coded original instances) |
| Universal Decimal Classification: 0.510.25(0.034.2HTML)
"Constructive mathematics"
[<state> https://sunny.garden/@hallasurvivor/112989318671720062 ]--#math
[<sunny> @[email protected] 112989318671720062 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 112990633665412074 ]->
[<mathstodon> @[email protected] 112990639734188917 ]->
[<mathstodon> @[email protected] 112990854010506631 ]->
[<mathstodon> @[email protected] 112993364331984135 ]
]
[TECH.LGBT POST AND RELATED ACTIVITY
(IDs assigned by the color-coded original instances) |
| Universal Decimal Classification: 0.511.17(0.034.2HTML)
"Elementary number theory"
[<state> https://tech.lgbt/@0x10f/113003064221600346 ]--#OEIS
[<tech> @[email protected] 113003064221600346 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<federatedtilde> @[email protected] 113003452553117598 ]
[<tech> @[email protected] 113003064221600346 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<exquisitehostuxmastomastodonmastodontsfbatoot> @[email protected] 113004281921146617 ]
]
[TYPES.PL POSTS AND RELATED ACTIVITY
(IDs assigned by the color-coded original instances) |
| Universal Decimal Classification: 0.510.25(0.034.2HTML)
"Constructive approach"
[<state> https://types.pl/@totbwf/112895318009236146 ]--
[<types> @[email protected] 112895318009236146 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<sunny> @[email protected] 112895407414481249 ]->
[<types> @[email protected] 112901611735046365 ]->
[<types> @[email protected] 112901612681803486 ]->
[<types> @[email protected] 112901615058839035 ]->
[<types> @[email protected] 112901618714801153 ]->
[<types> @[email protected] 112901626436528554 ]
| Universal Decimal Classification: 0.510.60(0.034.2HTML)
"Mathematical logic"
[<state> https://types.pl/@totbwf/113013049707993153 ]--
[<types> @[email protected] 113013049707993153 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<types> @[email protected] 113013070564882580 | @[email protected] | @[email protected] ]->
[<types> @[email protected] 113013076005370118 ]
[<types> @[email protected] 113013049707993153 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]->
[<mathstodon> @[email protected] 113014328122802062 | @[email protected] ]->
[<types> @[email protected] 113014406431727271 ]->
[<mathstodon> @[email protected] 113016299771878625 ]
| Universal Decimal Classification: 0.515.14(0.034.2HTML)
"Algebraic topology"
[<state> https://types.pl/@trebor/112975748020561509 ]--
[<types> @[email protected] 112975748020561509 | @[email protected] | @[email protected] | @[email protected] | @[email protected] | @[email protected] ]
]</desc>
<g stroke-width="1.0" text-align="left" font="12pt Helvetica, Arial, sans-serif" font-size="15pt" font-family="Verdana" font-weight="normal" font-style="normal">
<g font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" stroke-width="4.0" stroke-linejoin="round" stroke-linecap="round" stroke="#33322E">
<g stroke="transparent" fill="transparent">
<rect x="0.0" y="0.0" height="55932.0" width="11302.0" stroke="none"></rect>
</g>
<g transform="translate(60, 60)" fill="#33322E">
<g transform="translate(80, 80)">
<g data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<g fill="#eee8d5" stroke="#33322E" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<rect x="4133.5" y="1.0" height="1392.0" width="2755.0" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY"></rect>
<path d="M4133.5 181.0 L6888.5 181.0" fill="none" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M4133.5 241.0 L6888.5 241.0" fill="none" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY"></path>
</g>
<g transform="translate(4133.5, 1)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<text x="1317.5" y="22.5" stroke="none" text-anchor="middle" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">HCI.SOCIAL POST AND RELATED ACTIVITY</text>
<text x="1317.5" y="52.5" stroke="none" text-anchor="middle" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">(IDs assigned by the color-coded original instances)</text>
</g>
</g>
<g transform="translate(4133.5, 181)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
</g>
</g>
<g transform="translate(4133.5, 241)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" text-align="left" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<text x="0.0" y="22.5" stroke="none" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">Universal Decimal Classification: 0.514.17(0.034.2HTML)</text>
<text x="0.0" y="52.5" stroke="none" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">"Geometric figure arrangements"</text>
<g transform="translate(80, 80)" fill="#33322E" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<g stroke-dasharray="8 8" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY">
<path d="M795.0 376.0 L830 376 L865 376 L865 376 L900 376 L900 376 L935 376 L935 376 L970 376 L970 376 L1005 376 L1005.0 376.0 " fill="none" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY"></path>
</g>
<path d="M1705.0 376.0 L1740 376 L1775 376 L1775 376 L1810 376 L1810 376 L1845 376 L1845 376 L1880 376 L1880 376 L1903.3333333333333 376 L1903.3 376.0 " fill="none" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M1891.7 385.3 L1903.3 376.0 L1891.7 366.7 L1915.0 376.0 Z" data-name="HCI.SOCIAL POST AND RELATED ACTIVITY"></path>
<g data-name="https://hci.social/@chrisamaphone/113047099668507283">
<g fill="#fdf6e3" stroke="#33322E" data-name="https://hci.social/@chrisamaphone/113047099668507283">
<rect x="1.0" y="301.0" rx="75.0" ry="75.0" height="150.0" width="793.0" data-name="https://hci.social/@chrisamaphone/113047099668507283"></rect>
</g>
<g transform="translate(1, 301)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="https://hci.social/@chrisamaphone/113047099668507283">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="https://hci.social/@chrisamaphone/113047099668507283">
<text x="336.5" y="22.5" stroke="none" text-anchor="middle" data-name="https://hci.social/@chrisamaphone/113047099668507283">https://hci.social/@chrisamaphone/113047099668507283</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113047099668507283">
<g fill="#C6B5AF" stroke="#33322E" data-name="@[email protected] 113047099668507283">
<rect x="1006.0" y="1.0" height="750.0" width="698.0" data-name="@[email protected] 113047099668507283"></rect>
<path d="M1006.0 151.0 L1704.0 151.0" fill="none" data-name="@[email protected] 113047099668507283"></path>
<path d="M1006.0 301.0 L1704.0 301.0" fill="none" data-name="@[email protected] 113047099668507283"></path>
<path d="M1006.0 451.0 L1704.0 451.0" fill="none" data-name="@[email protected] 113047099668507283"></path>
<path d="M1006.0 601.0 L1704.0 601.0" fill="none" data-name="@[email protected] 113047099668507283"></path>
</g>
<g transform="translate(1006, 1)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113047099668507283">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113047099668507283">
<text x="289.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113047099668507283">@[email protected] 113047099668507283</text>
</g>
</g>
<g transform="translate(1006, 151)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113047099668507283">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113047099668507283">
<text x="289.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113047099668507283">@[email protected]</text>
</g>
</g>
<g transform="translate(1006, 301)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113047099668507283">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113047099668507283">
<text x="289.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113047099668507283">@[email protected]</text>
</g>
</g>
<g transform="translate(1006, 451)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113047099668507283">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113047099668507283">
<text x="289.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113047099668507283">@[email protected]</text>
</g>
</g>
<g transform="translate(1006, 601)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113047099668507283">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113047099668507283">
<text x="289.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113047099668507283">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113047188356135146">
<g fill="#E0B18E" stroke="#33322E" data-name="@[email protected] 113047188356135146">
<rect x="1916.0" y="301.0" height="150.0" width="558.0" data-name="@[email protected] 113047188356135146"></rect>
</g>
<g transform="translate(1916, 301)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113047188356135146">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113047188356135146">
<text x="219.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113047188356135146">@[email protected] 113047188356135146</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<g fill="#eee8d5" stroke="#33322E" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<rect x="2650.5" y="1465.0" height="1842.0" width="5721.0" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></rect>
<path d="M2650.5 1645.0 L8371.5 1645.0" fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M2650.5 1705.0 L8371.5 1705.0" fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
</g>
<g transform="translate(2650.5, 1465)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<text x="2800.5" y="22.5" stroke="none" text-anchor="middle" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">MASTODON.SOCIAL POST AND RELATED ACTIVITY</text>
<text x="2800.5" y="52.5" stroke="none" text-anchor="middle" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">(IDs assigned by the color-coded original instances)</text>
</g>
</g>
<g transform="translate(2650.5, 1645)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
</g>
</g>
<g transform="translate(2650.5, 1705)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" text-align="left" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<text x="0.0" y="22.5" stroke="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">Universal Decimal Classification: 0.514.11(0.034.2HTML)</text>
<text x="0.0" y="52.5" stroke="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">"Elementary geometry, trigonometry, polygonometry"</text>
<g transform="translate(80, 80)" fill="#33322E" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<g stroke-dasharray="8 8" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY">
<path d="M792.0 601.0 L827 601 L862 601 L862 601 L897 601 L897 601 L932 601 L932 601 L967 601 L967 601 L1002 601 L1002.0 601.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
</g>
<path d="M1699.0 331.1 L1734 304 L1769 304 L1769 304 L1804 304 L1804 304 L1839 304 L1839 304 L1874 304 L1874 304 L1925.8333333333333 304 L1925.8 304.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M1914.2 313.3 L1925.8 304.0 L1914.2 294.7 L1937.5 304.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M2634.5 304.0 L2698 304 L2733 304 L2733 304 L2768 304 L2768 304 L2803 304 L2803 304 L2838 304 L2838 304 L2861.3333333333335 304 L2861.3 304.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M2849.7 313.3 L2861.3 304.0 L2849.7 294.7 L2873.0 304.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M3484.1 228.0 L3605 193 L3640 193 L3640 193 L3675 193 L3675 193 L3710 193 L3710 193 L3745 193 L3745 193 L3796.8333333333335 193 L3796.8 193.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M3785.2 202.3 L3796.8 193.0 L3785.2 183.7 L3808.5 193.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M4505.5 193.0 L4569 193 L4604 193 L4604 193 L4639 193 L4639 193 L4674 193 L4674 193 L4709 193 L4709 193 L4732.333333333333 193 L4732.3 193.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M4720.7 202.3 L4732.3 193.0 L4720.7 183.7 L4744.0 193.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M3417.8 380.0 L3605 452.5 L3640 452.5 L3640 452.5 L3675 452.5 L3675 452.5 L3710 452.5 L3710 452.5 L3745 452.5 L3745 452.5 L3768.3333333333335 452.5 L3768.3 452.5 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M3756.7 461.8 L3768.3 452.5 L3756.7 443.2 L3780.0 452.5 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M4534.0 452.5 L4569 452.5 L4604 452.5 L4604 452.5 L4639 452.5 L4639 452.5 L4674 452.5 L4674 452.5 L4709 452.5 L4709 452.5 L4732.333333333333 452.5 L4732.3 452.5 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M4720.7 461.8 L4732.3 452.5 L4720.7 443.2 L4744.0 452.5 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M1699.0 601.0 L1734 601 L1769 601 L1769 601 L1804 601 L1804 601 L1839 601 L1839 601 L1874 601 L1874 601 L1897.3333333333333 601 L1897.3 601.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M1885.7 610.3 L1897.3 601.0 L1885.7 591.7 L1909.0 601.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M1699.0 802.7 L1734 823 L1769 823 L1769 823 L1804 823 L1804 823 L1839 823 L1839 823 L1874 823 L1874 823 L1925.3333333333333 823 L1925.3 823.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M1913.7 832.3 L1925.3 823.0 L1913.7 813.7 L1937.0 823.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M2635.0 823.0 L2698 823 L2733 823 L2733 823 L2768 823 L2768 823 L2803 823 L2803 823 L2838 823 L2838 823 L2861.3333333333335 823 L2861.3 823.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M2849.7 832.3 L2861.3 823.0 L2849.7 813.7 L2873.0 823.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M3570.0 823.0 L3605 823 L3640 823 L3640 823 L3675 823 L3675 823 L3710 823 L3710 823 L3745 823 L3745 823 L3796.3333333333335 823 L3796.3 823.0 " fill="none" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<path d="M3784.7 832.3 L3796.3 823.0 L3784.7 813.7 L3808.0 823.0 Z" data-name="MASTODON.SOCIAL POST AND RELATED ACTIVITY"></path>
<g data-name="https://mastodon.social/@mengen/113029152659979320">
<g fill="#fdf6e3" stroke="#33322E" data-name="https://mastodon.social/@mengen/113029152659979320">
<rect x="1.0" y="526.0" rx="75.0" ry="75.0" height="150.0" width="790.0" data-name="https://mastodon.social/@mengen/113029152659979320"></rect>
</g>
<g transform="translate(1, 526)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="https://mastodon.social/@mengen/113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="https://mastodon.social/@mengen/113029152659979320">
<text x="335.0" y="22.5" stroke="none" text-anchor="middle" data-name="https://mastodon.social/@mengen/113029152659979320">https://mastodon.social/@mengen/113029152659979320</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113029152659979320">
<g fill="#A599D9" stroke="#33322E" data-name="@[email protected] 113029152659979320">
<rect x="1003.0" y="1.0" height="1200.0" width="695.0" data-name="@[email protected] 113029152659979320"></rect>
<path d="M1003.0 151.0 L1698.0 151.0" fill="none" data-name="@[email protected] 113029152659979320"></path>
<path d="M1003.0 301.0 L1698.0 301.0" fill="none" data-name="@[email protected] 113029152659979320"></path>
<path d="M1003.0 451.0 L1698.0 451.0" fill="none" data-name="@[email protected] 113029152659979320"></path>
<path d="M1003.0 601.0 L1698.0 601.0" fill="none" data-name="@[email protected] 113029152659979320"></path>
<path d="M1003.0 751.0 L1698.0 751.0" fill="none" data-name="@[email protected] 113029152659979320"></path>
<path d="M1003.0 901.0 L1698.0 901.0" fill="none" data-name="@[email protected] 113029152659979320"></path>
<path d="M1003.0 1051.0 L1698.0 1051.0" fill="none" data-name="@[email protected] 113029152659979320"></path>
</g>
<g transform="translate(1003, 1)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected] 113029152659979320</text>
</g>
</g>
<g transform="translate(1003, 151)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected]</text>
</g>
</g>
<g transform="translate(1003, 301)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected]</text>
</g>
</g>
<g transform="translate(1003, 451)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected]</text>
</g>
</g>
<g transform="translate(1003, 601)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected]</text>
</g>
</g>
<g transform="translate(1003, 751)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected]</text>
</g>
</g>
<g transform="translate(1003, 901)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected]</text>
</g>
</g>
<g transform="translate(1003, 1051)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113029152659979320">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113029152659979320">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113029152659979320">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113034812424707433">
<g fill="#A599D9" stroke="#33322E" data-name="@[email protected] 113034812424707433">
<rect x="1938.5" y="154.0" height="300.0" width="695.0" data-name="@[email protected] 113034812424707433"></rect>
<path d="M1938.5 304.0 L2633.5 304.0" fill="none" data-name="@[email protected] 113034812424707433"></path>
</g>
<g transform="translate(1938.5, 154)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113034812424707433">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113034812424707433">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113034812424707433">@[email protected] 113034812424707433</text>
</g>
</g>
<g transform="translate(1938.5, 304)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113034812424707433">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113034812424707433">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113034812424707433">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113046110744648567">
<g fill="#A599D9" stroke="#33322E" data-name="@[email protected] 113046110744648567">
<rect x="2874.0" y="229.0" height="150.0" width="695.0" data-name="@[email protected] 113046110744648567"></rect>
</g>
<g transform="translate(2874, 229)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113046110744648567">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113046110744648567">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113046110744648567">@[email protected] 113046110744648567</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113076991250664744">
<g fill="#A599D9" stroke="#33322E" data-name="@[email protected] 113076991250664744">
<rect x="3809.5" y="118.0" height="150.0" width="695.0" data-name="@[email protected] 113076991250664744"></rect>
</g>
<g transform="translate(3809.5, 118)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113076991250664744">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113076991250664744">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113076991250664744">@[email protected] 113076991250664744</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113077037292399205">
<g fill="#A599D9" stroke="#33322E" data-name="@[email protected] 113077037292399205">
<rect x="4745.0" y="118.0" height="150.0" width="695.0" data-name="@[email protected] 113077037292399205"></rect>
</g>
<g transform="translate(4745, 118)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113077037292399205">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113077037292399205">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113077037292399205">@[email protected] 113077037292399205</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113050259428040119">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 113050259428040119">
<rect x="3781.0" y="377.5" height="150.0" width="752.0" data-name="@[email protected] 113050259428040119"></rect>
</g>
<g transform="translate(3781, 377.5)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113050259428040119">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113050259428040119">
<text x="316.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113050259428040119">@[email protected] 113050259428040119</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113050565215783817">
<g fill="#A599D9" stroke="#33322E" data-name="@[email protected] 113050565215783817">
<rect x="4745.0" y="377.5" height="150.0" width="695.0" data-name="@[email protected] 113050565215783817"></rect>
</g>
<g transform="translate(4745, 377.5)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113050565215783817">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113050565215783817">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113050565215783817">@[email protected] 113050565215783817</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113049857100025436">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 113049857100025436">
<rect x="1910.0" y="526.0" height="150.0" width="752.0" data-name="@[email protected] 113049857100025436"></rect>
</g>
<g transform="translate(1910, 526)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113049857100025436">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113049857100025436">
<text x="316.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113049857100025436">@[email protected] 113049857100025436</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113050696402373682">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 113050696402373682">
<rect x="1938.0" y="748.0" height="150.0" width="696.0" data-name="@[email protected] 113050696402373682"></rect>
</g>
<g transform="translate(1938, 748)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113050696402373682">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113050696402373682">
<text x="288.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113050696402373682">@[email protected] 113050696402373682</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113050870861801033">
<g fill="#A599D9" stroke="#33322E" data-name="@[email protected] 113050870861801033">
<rect x="2874.0" y="748.0" height="150.0" width="695.0" data-name="@[email protected] 113050870861801033"></rect>
</g>
<g transform="translate(2874, 748)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113050870861801033">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113050870861801033">
<text x="287.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113050870861801033">@[email protected] 113050870861801033</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113051330911288773">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 113051330911288773">
<rect x="3809.0" y="748.0" height="150.0" width="696.0" data-name="@[email protected] 113051330911288773"></rect>
</g>
<g transform="translate(3809, 748)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113051330911288773">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113051330911288773">
<text x="288.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113051330911288773">@[email protected] 113051330911288773</text>
</g>
</g>
</g>
</g>
</g>
</g>
</g>
<g data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<g fill="#eee8d5" stroke="#33322E" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<rect x="1.0" y="3379.0" height="44076.0" width="11020.0" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></rect>
<path d="M1.0 3559.0 L11021.0 3559.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 3619.0 L11021.0 3619.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 5065.0 L11021.0 5065.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 6217.0 L11021.0 6217.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 7369.0 L11021.0 7369.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 9271.0 L11021.0 9271.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 9973.0 L11021.0 9973.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 10975.0 L11021.0 10975.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 11977.0 L11021.0 11977.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 12679.0 L11021.0 12679.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 13531.0 L11021.0 13531.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 17683.0 L11021.0 17683.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 23485.0 L11021.0 23485.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 26437.0 L11021.0 26437.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 28039.0 L11021.0 28039.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 32962.0 L11021.0 32962.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 34147.0 L11021.0 34147.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 34849.0 L11021.0 34849.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 35701.0 L11021.0 35701.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1.0 40153.0 L11021.0 40153.0" fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
</g>
<g transform="translate(1, 3379)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<text x="5450.0" y="22.5" stroke="none" text-anchor="middle" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">MATHSTODON.XYZ POSTS AND RELATED ACTIVITY</text>
<text x="5450.0" y="52.5" stroke="none" text-anchor="middle" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">(IDs assigned by the color-coded original instances)</text>
</g>
</g>
<g transform="translate(1, 3559)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
</g>
</g>
<g transform="translate(1, 3619)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<g transform="translate(60, 60)" fill="#33322E" text-align="left" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<text x="0.0" y="22.5" stroke="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">Universal Decimal Classification: 0.001.92(0.034.2HTML)</text>
<text x="0.0" y="52.5" stroke="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">"Dissemination of factual knowledge"</text>
<g transform="translate(80, 80)" fill="#33322E" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<g stroke-dasharray="8 8" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY">
<path d="M803.0 523.0 L838 523 L873 523 L873 523 L908 523 L908 523 L943 523 L943 523 L978 523 L978 523 L1013 523 L1013.0 523.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
</g>
<path d="M1602.5 297.0 L1755 151 L1790 151 L1790 151 L1825 151 L1825 151 L1860 151 L1860 151 L1895 151 L1895 151 L1918.3333333333333 151 L1918.3 151.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1906.7 160.3 L1918.3 151.0 L1906.7 141.7 L1930.0 151.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M2694.0 151.0 L2729 151 L2764 151 L2764 151 L2799 151 L2799 151 L2834 151 L2834 151 L2869 151 L2869 151 L2892.3333333333335 151 L2892.3 151.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M2880.7 160.3 L2892.3 151.0 L2880.7 141.7 L2904.0 151.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M3611.0 151.0 L3646 151 L3681 151 L3681 151 L3716 151 L3716 151 L3751 151 L3751 151 L3786 151 L3786 151 L3809.3333333333335 151 L3809.3 151.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M3797.7 160.3 L3809.3 151.0 L3797.7 141.7 L3821.0 151.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1720.0 523.0 L1755 523 L1790 523 L1790 523 L1825 523 L1825 523 L1860 523 L1860 523 L1895 523 L1895 523 L1979.8333333333333 523 L1979.8 523.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1968.2 532.3 L1979.8 523.0 L1968.2 513.7 L1991.5 523.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M2632.5 523.0 L2729 523 L2764 523 L2764 523 L2799 523 L2799 523 L2834 523 L2834 523 L2869 523 L2869 523 L2925.3333333333335 523 L2925.3 523.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M2913.7 532.3 L2925.3 523.0 L2913.7 513.7 L2937.0 523.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M3578.0 523.0 L3646 523 L3681 523 L3681 523 L3716 523 L3716 523 L3751 523 L3751 523 L3786 523 L3786 523 L3870.8333333333335 523 L3870.8 523.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M3859.2 532.3 L3870.8 523.0 L3859.2 513.7 L3882.5 523.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M4523.5 523.0 L4620 523 L4655 523 L4655 523 L4690 523 L4690 523 L4725 523 L4725 523 L4760 523 L4760 523 L4783.333333333333 523 L4783.3 523.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M4771.7 532.3 L4783.3 523.0 L4771.7 513.7 L4795.0 523.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1602.5 749.0 L1755 895 L1790 895 L1790 895 L1825 895 L1825 895 L1860 895 L1860 895 L1895 895 L1895 895 L1990.3333333333333 895 L1990.3 895.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M1978.7 904.3 L1990.3 895.0 L1978.7 885.7 L2002.0 895.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M2622.0 895.0 L2729 895 L2764 895 L2764 895 L2799 895 L2799 895 L2834 895 L2834 895 L2869 895 L2869 895 L2892.3333333333335 895 L2892.3 895.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M2880.7 904.3 L2892.3 895.0 L2880.7 885.7 L2904.0 895.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M3611.0 895.0 L3646 895 L3681 895 L3681 895 L3716 895 L3716 895 L3751 895 L3751 895 L3786 895 L3786 895 L3881.3333333333335 895 L3881.3 895.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M3869.7 904.3 L3881.3 895.0 L3869.7 885.7 L3893.0 895.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M4513.0 895.0 L4620 895 L4655 895 L4655 895 L4690 895 L4690 895 L4725 895 L4725 895 L4760 895 L4760 895 L4783.333333333333 895 L4783.3 895.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M4771.7 904.3 L4783.3 895.0 L4771.7 885.7 L4795.0 895.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M5502.0 895.0 L5537 895 L5572 895 L5572 895 L5607 895 L5607 895 L5642 895 L5642 895 L5677 895 L5677 895 L5700.333333333333 895 L5700.3 895.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M5688.7 904.3 L5700.3 895.0 L5688.7 885.7 L5712.0 895.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M6434.0 895.0 L6469 895 L6504 895 L6504 895 L6539 895 L6539 895 L6574 895 L6574 895 L6609 895 L6609 895 L6632.333333333333 895 L6632.3 895.0 " fill="none" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<path d="M6620.7 904.3 L6632.3 895.0 L6620.7 885.7 L6644.0 895.0 Z" data-name="MATHSTODON.XYZ POSTS AND RELATED ACTIVITY"></path>
<g data-name="https://mathstodon.xyz/@codyroux/112995755395233037">
<g fill="#fdf6e3" stroke="#33322E" data-name="https://mathstodon.xyz/@codyroux/112995755395233037">
<rect x="1.0" y="448.0" rx="75.0" ry="75.0" height="150.0" width="801.0" data-name="https://mathstodon.xyz/@codyroux/112995755395233037"></rect>
</g>
<g transform="translate(1, 448)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="https://mathstodon.xyz/@codyroux/112995755395233037">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="https://mathstodon.xyz/@codyroux/112995755395233037">
<text x="340.5" y="22.5" stroke="none" text-anchor="middle" data-name="https://mathstodon.xyz/@codyroux/112995755395233037">https://mathstodon.xyz/@codyroux/112995755395233037</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112995755395233037">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 112995755395233037">
<rect x="1014.0" y="298.0" height="450.0" width="705.0" data-name="@[email protected] 112995755395233037"></rect>
<path d="M1014.0 448.0 L1719.0 448.0" fill="none" data-name="@[email protected] 112995755395233037"></path>
<path d="M1014.0 598.0 L1719.0 598.0" fill="none" data-name="@[email protected] 112995755395233037"></path>
</g>
<g transform="translate(1014, 298)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112995755395233037">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112995755395233037">
<text x="292.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112995755395233037">@[email protected] 112995755395233037</text>
</g>
</g>
<g transform="translate(1014, 448)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 112995755395233037">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112995755395233037">
<text x="292.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112995755395233037">@[email protected]</text>
</g>
</g>
<g transform="translate(1014, 598)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 112995755395233037">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112995755395233037">
<text x="292.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112995755395233037">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112995768775752568">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 112995768775752568">
<rect x="1931.0" y="1.0" height="300.0" width="762.0" data-name="@[email protected] 112995768775752568"></rect>
<path d="M1931.0 151.0 L2693.0 151.0" fill="none" data-name="@[email protected] 112995768775752568"></path>
</g>
<g transform="translate(1931, 1)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112995768775752568">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112995768775752568">
<text x="321.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112995768775752568">@[email protected] 112995768775752568</text>
</g>
</g>
<g transform="translate(1931, 151)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 112995768775752568">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112995768775752568">
<text x="321.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112995768775752568">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112996186670482918">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 112996186670482918">
<rect x="2905.0" y="76.0" height="150.0" width="705.0" data-name="@[email protected] 112996186670482918"></rect>
</g>
<g transform="translate(2905, 76)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112996186670482918">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112996186670482918">
<text x="292.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112996186670482918">@[email protected] 112996186670482918</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112996188636701144">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 112996188636701144">
<rect x="3822.0" y="1.0" height="300.0" width="762.0" data-name="@[email protected] 112996188636701144"></rect>
<path d="M3822.0 151.0 L4584.0 151.0" fill="none" data-name="@[email protected] 112996188636701144"></path>
</g>
<g transform="translate(3822, 1)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112996188636701144">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112996188636701144">
<text x="321.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112996188636701144">@[email protected] 112996188636701144</text>
</g>
</g>
<g transform="translate(3822, 151)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 112996188636701144">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112996188636701144">
<text x="321.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112996188636701144">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112995934361055714">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 112995934361055714">
<rect x="1992.5" y="373.0" height="300.0" width="639.0" data-name="@[email protected] 112995934361055714"></rect>
<path d="M1992.5 523.0 L2631.5 523.0" fill="none" data-name="@[email protected] 112995934361055714"></path>
</g>
<g transform="translate(1992.5, 373)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112995934361055714">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112995934361055714">
<text x="259.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112995934361055714">@[email protected] 112995934361055714</text>
</g>
</g>
<g transform="translate(1992.5, 523)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 112995934361055714">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112995934361055714">
<text x="259.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112995934361055714">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113001640737021214">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 113001640737021214">
<rect x="2938.0" y="373.0" height="300.0" width="639.0" data-name="@[email protected] 113001640737021214"></rect>
<path d="M2938.0 523.0 L3577.0 523.0" fill="none" data-name="@[email protected] 113001640737021214"></path>
</g>
<g transform="translate(2938, 373)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113001640737021214">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113001640737021214">
<text x="259.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113001640737021214">@[email protected] 113001640737021214</text>
</g>
</g>
<g transform="translate(2938, 523)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113001640737021214">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113001640737021214">
<text x="259.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113001640737021214">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113001642350924495">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 113001642350924495">
<rect x="3883.5" y="373.0" height="300.0" width="639.0" data-name="@[email protected] 113001642350924495"></rect>
<path d="M3883.5 523.0 L4522.5 523.0" fill="none" data-name="@[email protected] 113001642350924495"></path>
</g>
<g transform="translate(3883.5, 373)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113001642350924495">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113001642350924495">
<text x="259.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113001642350924495">@[email protected] 113001642350924495</text>
</g>
</g>
<g transform="translate(3883.5, 523)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113001642350924495">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113001642350924495">
<text x="259.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113001642350924495">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 113001785526607133">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 113001785526607133">
<rect x="4796.0" y="373.0" height="300.0" width="705.0" data-name="@[email protected] 113001785526607133"></rect>
<path d="M4796.0 523.0 L5501.0 523.0" fill="none" data-name="@[email protected] 113001785526607133"></path>
</g>
<g transform="translate(4796, 373)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 113001785526607133">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113001785526607133">
<text x="292.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113001785526607133">@[email protected] 113001785526607133</text>
</g>
</g>
<g transform="translate(4796, 523)" font-family="Verdana" font-size="15pt" font-weight="normal" font-style="normal" data-name="@[email protected] 113001785526607133">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 113001785526607133">
<text x="292.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 113001785526607133">@[email protected]</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112996360852366279">
<g fill="#E0B18E" stroke="#33322E" data-name="@[email protected] 112996360852366279">
<rect x="2003.0" y="820.0" height="150.0" width="618.0" data-name="@[email protected] 112996360852366279"></rect>
</g>
<g transform="translate(2003, 820)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112996360852366279">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112996360852366279">
<text x="249.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112996360852366279">@[email protected] 112996360852366279</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112996444668826292">
<g fill="#AFC4C6" stroke="#33322E" data-name="@[email protected] 112996444668826292">
<rect x="2905.0" y="820.0" height="150.0" width="705.0" data-name="@[email protected] 112996444668826292"></rect>
</g>
<g transform="translate(2905, 820)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112996444668826292">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112996444668826292">
<text x="292.5" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112996444668826292">@[email protected] 112996444668826292</text>
</g>
</g>
</g>
<g data-name="@[email protected] 112996541433766068">
<g fill="#E0B18E" stroke="#33322E" data-name="@[email protected] 112996541433766068">
<rect x="3894.0" y="745.0" height="300.0" width="618.0" data-name="@[email protected] 112996541433766068"></rect>
<path d="M3894.0 895.0 L4512.0 895.0" fill="none" data-name="@[email protected] 112996541433766068"></path>
</g>
<g transform="translate(3894, 745)" font-family="Verdana" font-size="15pt" font-weight="bold" font-style="normal" data-name="@[email protected] 112996541433766068">
<g transform="translate(60, 60)" fill="#33322E" text-align="center" data-name="@[email protected] 112996541433766068">
<text x="249.0" y="22.5" stroke="none" text-anchor="middle" data-name="@[email protected] 112996541433766068">@[email protected] 112996541433766068</text>
</g>