-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCANON.nb
3371 lines (3356 loc) · 142 KB
/
CANON.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 11.1' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 144779, 3363]
NotebookOptionsPosition[ 144027, 3341]
NotebookOutlinePosition[ 144456, 3358]
CellTagsIndexPosition[ 144413, 3355]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"Sound", "[",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "1", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<F\[Sharp]5 E5 D5 C\[Sharp]5 B A B C\[Sharp]5 D5 C\[Sharp]5 B A G \
F\[Sharp] G E\>\"", "]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<D5 C\[Sharp]5 D5 D C\[Sharp] A E F\[Sharp] D D5 C\[Sharp]5 B C\
\[Sharp]5 F\[Sharp]5 A5 B5 G5 F\[Sharp]5 E5 G5 G5 F\[Sharp]5 D5 C\[Sharp]5 B \
A G F\[Sharp] E G F\[Sharp] E D E F\[Sharp] G A E A G F\[Sharp] B A G A G F\
\[Sharp] E D B3 B C\[Sharp]5 D5 C\[Sharp]5 B A G F\[Sharp] E B A B A G\>\"",
"]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.5", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp] F\[Sharp]5\>\"", "]"}]}],
")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "1", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<E5 D5 E5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.5", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 F\[Sharp]5 E5 G5\>\"", "]"}]}],
")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<A5\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5 G5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<A5\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<F\[Sharp]5 G5 A5 A B C\[Sharp]5 D5 E5 F\[Sharp]5 G5\>\"", "]"}]}],
")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 E5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[", "\"\<F\[Sharp] G A B A G A F\[Sharp] G A\>\"",
"]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<G\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B A\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<G\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<F\[Sharp] E F\[Sharp] E D E F\[Sharp] G A B\>\"", "]"}]}], ")"}],
"~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<G\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B A\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<C\[Sharp]5 D5 A B C\[Sharp]5 D5 E5 F\[Sharp]5 G5 A5\>\"", "]"}]}],
")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 E5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<E5 D5 E5 C\[Sharp]5 D5 E5 F\[Sharp]5 E5 D5 C\[Sharp]5\>\"",
"]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B C\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<D E F\[Sharp] G F\[Sharp] E F\[Sharp] D5 C\[Sharp]5 D5\>\"",
"]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 C\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[", "\"\<A G A G F\[Sharp] G A B C\[Sharp]5 D\>\"",
"]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 C\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<C\[Sharp]5 B C\[Sharp]5 D5 E5 D5 C\[Sharp]5 D5 B C\[Sharp]5\>\"",
"]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{
"StringSplit", "[",
"\"\<F\[Sharp]5 F\[Sharp] G F\[Sharp] E E5 F\[Sharp]5 E5 D5 F\
\[Sharp] D B A A3 G3 A3 B3 B C\[Sharp]5 B C\[Sharp]5 A3 G3 A3 B3 B A \
B C\[Sharp]5 C\[Sharp]5 B C\[Sharp]5 D D5 E5 D5 C\[Sharp]5 C\[Sharp] D \
C\[Sharp] B3 B A B C\[Sharp]5 C\[Sharp] F\[Sharp] E D D5 E5 G5 F\
\[Sharp]5 F\[Sharp] A F\[Sharp]5 D5 G5 F\[Sharp]5 G5 E5 A G A F\[Sharp]\
\>\"", "]"}]}], ")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 C\[Sharp]5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 F\[Sharp] A\>\"", "]"}]}], ")"}],
"~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<A B\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<C\[Sharp]5 A F\[Sharp]\>\"", "]"}]}],
")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 E5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5 D5 F\[Sharp]5\>\"", "]"}]}],
")"}], "~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5 E5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 C\[Sharp]5 B\>\"", "]"}]}], ")"}],
"~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B A\>\"", "]"}]}], ")"}], "~", "Append",
"~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<B C\[Sharp]5 D5\>\"", "]"}]}], ")"}],
"~", "Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.125", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<F\[Sharp]5 E5\>\"", "]"}]}], ")"}], "~",
"Append", "~",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"SoundNote", "[",
RowBox[{"#", ",", "0.25", ",", "\"\<Violin\>\""}], "]"}], "&"}], "/@",
RowBox[{"StringSplit", "[", "\"\<D5 F\[Sharp]5\>\"", "]"}]}], ")"}]}],
"]"}]], "Input",
CellChangeTimes->{{3.796084869546024*^9, 3.796084869551024*^9}, {
3.7960892829521327`*^9, 3.7960894048385963`*^9}, {3.7960895140661516`*^9,
3.7960898467041445`*^9}, 3.7960899913316827`*^9, {3.7960900410017424`*^9,
3.7960901882662277`*^9}, {3.7960904290352235`*^9, 3.796090492231735*^9}, {
3.7960905670437927`*^9, 3.7960907174437103`*^9}, {3.79609082124407*^9,
3.79609094183337*^9}, 3.7961158418707905`*^9, {3.7961159195321426`*^9,
3.7961160674619837`*^9}, {3.796117753467639*^9, 3.7961177682669487`*^9}, {
3.796117807591258*^9, 3.796117807844206*^9}, {3.796117838151698*^9,
3.7961178518484936`*^9}, {3.796117903300681*^9, 3.7961179037320857`*^9}, {
3.796117964796438*^9, 3.796118056427535*^9}, 3.7961181474535284`*^9, {
3.7961181891813507`*^9, 3.7961182157418814`*^9}, {3.7966767556026926`*^9,
3.7966768459001656`*^9}, 3.796676879082449*^9, {3.79667691723421*^9,
3.7966769617774105`*^9}, {3.7966770088805256`*^9,
3.7966770409653172`*^9}, {3.7966771944533806`*^9,
3.7966772435508986`*^9}, {3.7966772770872836`*^9, 3.796677280492877*^9}, {
3.796677316241816*^9, 3.7966774580556793`*^9}, {3.796677502846655*^9,
3.7966778284602585`*^9}, {3.796677880731311*^9, 3.7966778905745955`*^9}, {
3.796677941309429*^9, 3.7966780194603257`*^9}, {3.7966781236374335`*^9,
3.7966781283112807`*^9}, {3.7966782738539767`*^9, 3.796678304689811*^9}, {
3.7966784009244127`*^9, 3.7966784990615845`*^9}, {3.7966786093042564`*^9,
3.796678662025999*^9}, {3.7966788746515007`*^9, 3.796678886398838*^9}, {
3.7966790005979977`*^9, 3.796679007165013*^9}, {3.7966790948390913`*^9,
3.7966791246323028`*^9}, {3.796679220540886*^9, 3.79667928851082*^9}, {
3.796680017849781*^9, 3.796680020602996*^9}, {3.7966801039003143`*^9,
3.7966801384548025`*^9}, {3.796680277494645*^9, 3.796680278858991*^9}},
CellLabel->"In[1]:=",ExpressionUUID->"cc8b2365-a43f-4a85-a373-5ce86aac8ac2"],
Cell[BoxData[
InterpretationBox[
GraphicsBox[{
{RGBColor[0.9568627450980393, 0.9568627450980393, 0.9568627450980393],
RectangleBox[{0, 0}, {360, -164}]}, {InsetBox[
GraphicsBox[
{Hue[-0.1599553194190092, 0.9, 0.7],
StyleBox[{
RectangleBox[{57.5, 0.37246315650417705}, \
{57.7375, 0.3843679184089389}],
RectangleBox[{59.5, 0.37246315650417705}, \
{59.7375, 0.3843679184089389}],
RectangleBox[{57.25, 0.3962726803137009}, \
{57.4875, 0.40817744221846264}],
RectangleBox[{57.75, 0.3962726803137009}, \
{57.9875, 0.40817744221846264}],
RectangleBox[{59.25, 0.3962726803137009}, \
{59.4875, 0.40817744221846264}],
RectangleBox[{59.75, 0.3962726803137009}, \
{59.9875, 0.40817744221846264}],
RectangleBox[{28.25, 0.4200822041232246}, \
{28.4875, 0.43198696602798653}],
RectangleBox[{58., 0.4200822041232246}, \
{58.2375, 0.43198696602798653}],
RectangleBox[{60., 0.4200822041232246}, \
{60.2375, 0.43198696602798653}],
RectangleBox[{64., 0.4200822041232246}, \
{64.2375, 0.43198696602798653}],
RectangleBox[{17., 0.4438917279327484}, \
{17.2375, 0.45579648983751037}],
RectangleBox[{63.25, 0.4438917279327484}, \
{63.4875, 0.45579648983751037}],
RectangleBox[{63.75, 0.4438917279327484}, \
{63.9875, 0.45579648983751037}],
RectangleBox[{65.25, 0.4438917279327484}, \
{65.4875, 0.45579648983751037}],
RectangleBox[{16.75, 0.45579648983751037}, \
{16.9875, 0.4677012517422721}],
RectangleBox[{18., 0.45579648983751037}, \
{18.2375, 0.4677012517422721}],
RectangleBox[{24., 0.45579648983751037}, \
{24.2375, 0.4677012517422721}],
RectangleBox[{28., 0.45579648983751037}, \
{28.2375, 0.4677012517422721}],
RectangleBox[{43.25, 0.45579648983751037}, \
{43.36875, 0.4677012517422721}],
RectangleBox[{48.75, 0.45579648983751037}, \
{48.86875, 0.4677012517422721}],
RectangleBox[{51.875, 0.45579648983751037}, \
{51.99375, 0.4677012517422721}],
RectangleBox[{56.5, 0.45579648983751037}, \
{56.7375, 0.4677012517422721}],
RectangleBox[{62., 0.45579648983751037}, \
{62.2375, 0.4677012517422721}],
RectangleBox[{63.5, 0.45579648983751037}, \
{63.7375, 0.4677012517422721}],
RectangleBox[{66., 0.45579648983751037}, \
{66.2375, 0.4677012517422721}],
RectangleBox[{15., 0.4796060136470343}, \
{15.95, 0.49151077555179606}],
RectangleBox[{17.5, 0.4796060136470343}, \
{17.7375, 0.49151077555179606}],
RectangleBox[{23., 0.4796060136470343}, \
{23.2375, 0.49151077555179606}],
RectangleBox[{23.75, 0.4796060136470343}, \
{23.9875, 0.49151077555179606}],
RectangleBox[{24.25, 0.4796060136470343}, \
{24.4875, 0.49151077555179606}],
RectangleBox[{25.25, 0.4796060136470343}, \
{25.4875, 0.49151077555179606}],
RectangleBox[{27.75, 0.4796060136470343}, \
{27.9875, 0.49151077555179606}],
RectangleBox[{30.5, 0.4796060136470343}, \
{30.7375, 0.49151077555179606}],
RectangleBox[{42.875, 0.4796060136470343}, \
{42.99375, 0.49151077555179606}],
RectangleBox[{43.125, 0.4796060136470343}, \
{43.24375, 0.49151077555179606}],
RectangleBox[{43.375, 0.4796060136470343}, \
{43.49375, 0.49151077555179606}],
RectangleBox[{48.875, 0.4796060136470343}, \
{48.99375, 0.49151077555179606}],
RectangleBox[{49.375, 0.4796060136470343}, \
{49.49375, 0.49151077555179606}],
RectangleBox[{55., 0.4796060136470343}, \
{55.2375, 0.49151077555179606}],
RectangleBox[{65.75, 0.4796060136470343}, \
{65.9875, 0.49151077555179606}],
RectangleBox[{13., 0.5034155374565581}, \
{13.95, 0.5153202993613198}],
RectangleBox[{17.75, 0.5034155374565581}, \
{17.9875, 0.5153202993613198}],
RectangleBox[{22.75, 0.5034155374565581}, \
{22.9875, 0.5153202993613198}],
RectangleBox[{23.5, 0.5034155374565581}, \
{23.7375, 0.5153202993613198}],
RectangleBox[{24.5, 0.5034155374565581}, \
{24.7375, 0.5153202993613198}],
RectangleBox[{26., 0.5034155374565581}, \
{26.2375, 0.5153202993613198}],
RectangleBox[{27.5, 0.5034155374565581}, \
{27.7375, 0.5153202993613198}],
RectangleBox[{30.25, 0.5034155374565581}, \
{30.4875, 0.5153202993613198}],
RectangleBox[{32., 0.5034155374565581}, \
{32.475, 0.5153202993613198}],
RectangleBox[{40.75, 0.5034155374565581}, \
{40.86875, 0.5153202993613198}],
RectangleBox[{41.625, 0.5034155374565581}, \
{41.74375, 0.5153202993613198}],
RectangleBox[{42.75, 0.5034155374565581}, \
{42.86875, 0.5153202993613198}],
RectangleBox[{43., 0.5034155374565581}, \
{43.11875, 0.5153202993613198}],
RectangleBox[{43.5, 0.5034155374565581}, \
{43.61875, 0.5153202993613198}],
RectangleBox[{49., 0.5034155374565581}, \
{49.11875, 0.5153202993613198}],
RectangleBox[{49.25, 0.5034155374565581}, \
{49.36875, 0.5153202993613198}],
RectangleBox[{49.5, 0.5034155374565581}, \
{49.61875, 0.5153202993613198}],
RectangleBox[{51.25, 0.5034155374565581}, \
{51.36875, 0.5153202993613198}],
RectangleBox[{54.25, 0.5034155374565581}, \
{54.4875, 0.5153202993613198}],
RectangleBox[{54.75, 0.5034155374565581}, \
{54.9875, 0.5153202993613198}],
RectangleBox[{56.25, 0.5034155374565581}, \
{56.4875, 0.5153202993613198}],
RectangleBox[{65.5, 0.5034155374565581}, \
{65.7375, 0.5153202993613198}],
RectangleBox[{67.25, 0.5034155374565581}, \
{67.4875, 0.5153202993613198}],
RectangleBox[{70., 0.5034155374565581}, \
{70.2375, 0.5153202993613198}],
RectangleBox[{70.75, 0.5034155374565581}, \
{70.9875, 0.5153202993613198}],
RectangleBox[{72., 0.5034155374565581}, \
{72.2375, 0.5153202993613198}],
RectangleBox[{12., 0.5153202993613198}, \
{12.95, 0.5272250612660818}],
RectangleBox[{14., 0.5153202993613198}, \
{14.95, 0.5272250612660818}],
RectangleBox[{22.5, 0.5153202993613198}, \
{22.7375, 0.5272250612660818}],
RectangleBox[{23.25, 0.5153202993613198}, \
{23.4875, 0.5272250612660818}],
RectangleBox[{24.75, 0.5153202993613198}, \
{24.9875, 0.5272250612660818}],
RectangleBox[{25.75, 0.5153202993613198}, \
{25.9875, 0.5272250612660818}],
RectangleBox[{26.75, 0.5153202993613198}, \
{26.9875, 0.5272250612660818}],
RectangleBox[{27.25, 0.5153202993613198}, \
{27.4875, 0.5272250612660818}],
RectangleBox[{30., 0.5153202993613198}, \
{30.2375, 0.5272250612660818}],
RectangleBox[{31.75, 0.5153202993613198}, \
{31.9875, 0.5272250612660818}],
RectangleBox[{40.875, 0.5153202993613198}, \
{40.99375, 0.5272250612660818}],
RectangleBox[{41.375, 0.5153202993613198}, \
{41.49375, 0.5272250612660818}],
RectangleBox[{41.75, 0.5153202993613198}, \
{41.86875, 0.5272250612660818}],
RectangleBox[{42., 0.5153202993613198}, \
{42.2375, 0.5272250612660818}],
RectangleBox[{42.5, 0.5153202993613198}, \
{42.7375, 0.5272250612660818}],
RectangleBox[{43.625, 0.5153202993613198}, \
{43.74375, 0.5272250612660818}],
RectangleBox[{44., 0.5153202993613198}, \
{44.2375, 0.5272250612660818}],
RectangleBox[{49.125, 0.5153202993613198}, \
{49.24375, 0.5272250612660818}],
RectangleBox[{50.875, 0.5153202993613198}, \
{50.99375, 0.5272250612660818}],
RectangleBox[{51.125, 0.5153202993613198}, \
{51.24375, 0.5272250612660818}],
RectangleBox[{51.375, 0.5153202993613198}, \
{51.49375, 0.5272250612660818}],
RectangleBox[{54.5, 0.5153202993613198}, \
{54.7375, 0.5272250612660818}],
RectangleBox[{69.5, 0.5153202993613198}, \
{69.7375, 0.5272250612660818}],
RectangleBox[{5., 0.5391298231708438}, {5.95, 0.5510345850756055}],
RectangleBox[{11., 0.5391298231708438}, \
{11.95, 0.5510345850756055}],
RectangleBox[{17.25, 0.5391298231708438}, \
{17.4875, 0.5510345850756055}],
RectangleBox[{22.25, 0.5391298231708438}, \
{22.4875, 0.5510345850756055}],
RectangleBox[{25., 0.5391298231708438}, \
{25.2375, 0.5510345850756055}],
RectangleBox[{25.5, 0.5391298231708438}, \
{25.7375, 0.5510345850756055}],
RectangleBox[{26.5, 0.5391298231708438}, \
{26.7375, 0.5510345850756055}],
RectangleBox[{27., 0.5391298231708438}, \
{27.2375, 0.5510345850756055}],
RectangleBox[{29.75, 0.5391298231708438}, \
{29.9875, 0.5510345850756055}],
RectangleBox[{31., 0.5391298231708438}, \
{31.2375, 0.5510345850756055}],
RectangleBox[{31.5, 0.5391298231708438}, \
{31.7375, 0.5510345850756055}],
RectangleBox[{39.125, 0.5391298231708438}, \
{39.24375, 0.5510345850756055}],
RectangleBox[{41., 0.5391298231708438}, \
{41.11875, 0.5510345850756055}],
RectangleBox[{41.25, 0.5391298231708438}, \
{41.36875, 0.5510345850756055}],
RectangleBox[{41.5, 0.5391298231708438}, \
{41.61875, 0.5510345850756055}],
RectangleBox[{41.875, 0.5391298231708438}, \
{41.99375, 0.5510345850756055}],
RectangleBox[{42.375, 0.5391298231708438}, \
{42.49375, 0.5510345850756055}],
RectangleBox[{43.75, 0.5391298231708438}, \
{43.86875, 0.5510345850756055}],
RectangleBox[{44.375, 0.5391298231708438}, \
{44.49375, 0.5510345850756055}],
RectangleBox[{45., 0.5391298231708438}, \
{45.11875, 0.5510345850756055}],
RectangleBox[{50.75, 0.5391298231708438}, \
{50.86875, 0.5510345850756055}],
RectangleBox[{51., 0.5391298231708438}, \
{51.11875, 0.5510345850756055}],
RectangleBox[{51.5, 0.5391298231708438}, \
{51.61875, 0.5510345850756055}],
RectangleBox[{57., 0.5391298231708438}, \
{57.2375, 0.5510345850756055}],
RectangleBox[{60.5, 0.5391298231708438}, \
{60.7375, 0.5510345850756055}],
RectangleBox[{64.5, 0.5391298231708438}, \
{64.7375, 0.5510345850756055}],
RectangleBox[{67.5, 0.5391298231708438}, \
{67.7375, 0.5510345850756055}],
RectangleBox[{69.25, 0.5391298231708438}, \
{69.4875, 0.5510345850756055}],
RectangleBox[{69.75, 0.5391298231708438}, \
{69.9875, 0.5510345850756055}],
RectangleBox[{71., 0.5391298231708438}, \
{71.2375, 0.5510345850756055}],
RectangleBox[{71.25, 0.5391298231708438}, \
{71.36875, 0.5510345850756055}],
RectangleBox[{71.75, 0.5391298231708438}, \
{71.9875, 0.5510345850756055}],
RectangleBox[{74.375, 0.5391298231708438}, \
{74.49375, 0.5510345850756055}],
RectangleBox[{4., 0.5629393469803675}, {4.95, 0.5748441088851295}],
RectangleBox[{6., 0.5629393469803675}, {6.95, 0.5748441088851295}],
RectangleBox[{10., 0.5629393469803675}, \
{10.95, 0.5748441088851295}],
RectangleBox[{18.75, 0.5629393469803675}, \
{18.9875, 0.5748441088851295}],
RectangleBox[{22., 0.5629393469803675}, \
{22.2375, 0.5748441088851295}],
RectangleBox[{26.25, 0.5629393469803675}, \
{26.4875, 0.5748441088851295}],
RectangleBox[{28.5, 0.5629393469803675}, \
{28.7375, 0.5748441088851295}],
RectangleBox[{29.5, 0.5629393469803675}, \
{29.7375, 0.5748441088851295}],
RectangleBox[{30.75, 0.5629393469803675}, \
{30.9875, 0.5748441088851295}],
RectangleBox[{31.25, 0.5629393469803675}, \
{31.4875, 0.5748441088851295}],
RectangleBox[{39.25, 0.5629393469803675}, \
{39.36875, 0.5748441088851295}],
RectangleBox[{41.125, 0.5629393469803675}, \
{41.24375, 0.5748441088851295}],
RectangleBox[{42.25, 0.5629393469803675}, \
{42.36875, 0.5748441088851295}],
RectangleBox[{43.875, 0.5629393469803675}, \
{43.99375, 0.5748441088851295}],
RectangleBox[{44.25, 0.5629393469803675}, \
{44.36875, 0.5748441088851295}],
RectangleBox[{44.5, 0.5629393469803675}, \
{44.7375, 0.5748441088851295}],
RectangleBox[{45.125, 0.5629393469803675}, \
{45.24375, 0.5748441088851295}],
RectangleBox[{48.25, 0.5629393469803675}, \
{48.36875, 0.5748441088851295}],
RectangleBox[{50., 0.5629393469803675}, \
{50.2375, 0.5748441088851295}],
RectangleBox[{50.5, 0.5629393469803675}, \
{50.7375, 0.5748441088851295}],
RectangleBox[{51.625, 0.5629393469803675}, \
{51.74375, 0.5748441088851295}],
RectangleBox[{52., 0.5629393469803675}, \
{52.2375, 0.5748441088851295}],
RectangleBox[{52.5, 0.5629393469803675}, \
{52.7375, 0.5748441088851295}],
RectangleBox[{52.875, 0.5629393469803675}, \
{52.99375, 0.5748441088851295}],
RectangleBox[{53.75, 0.5629393469803675}, \
{53.86875, 0.5748441088851295}],
RectangleBox[{56.75, 0.5629393469803675}, \
{56.9875, 0.5748441088851295}],
RectangleBox[{58.25, 0.5629393469803675}, {58.4875, 0.5748441088851295}],\
RectangleBox[{58.75, 0.5629393469803675}, {58.9875, 0.5748441088851295}],
RectangleBox[{60.25, 0.5629393469803675}, \
{60.4875, 0.5748441088851295}],
RectangleBox[{60.75, 0.5629393469803675}, \
{60.9875, 0.5748441088851295}],
RectangleBox[{61.5, 0.5629393469803675}, \
{61.7375, 0.5748441088851295}],
RectangleBox[{64.25, 0.5629393469803675}, \
{64.4875, 0.5748441088851295}],
RectangleBox[{64.75, 0.5629393469803675}, \
{64.9875, 0.5748441088851295}],
RectangleBox[{71.375, 0.5629393469803675}, \
{71.49375, 0.5748441088851295}],
RectangleBox[{74., 0.5629393469803675}, \
{74.2375, 0.5748441088851295}],
RectangleBox[{74.25, 0.5629393469803675}, \
{74.36875, 0.5748441088851295}],
RectangleBox[{74.5, 0.5629393469803675}, \
{74.7375, 0.5748441088851295}],
RectangleBox[{3., 0.5867488707898912}, {3.95, 0.5986536326946532}],
RectangleBox[{7., 0.5867488707898912}, {7.95, 0.5986536326946532}],
RectangleBox[{9., 0.5867488707898912}, {9.95, 0.5986536326946532}],
RectangleBox[{16.25, 0.5867488707898912}, \
{16.4875, 0.5986536326946532}],
RectangleBox[{18.5, 0.5867488707898912}, \
{18.7375, 0.5986536326946532}],
RectangleBox[{19., 0.5867488707898912}, \
{19.2375, 0.5986536326946532}],
RectangleBox[{21.75, 0.5867488707898912}, \
{21.9875, 0.5986536326946532}],
RectangleBox[{28.75, 0.5867488707898912}, \
{28.9875, 0.5986536326946532}],
RectangleBox[{29.25, 0.5867488707898912}, \
{29.4875, 0.5986536326946532}],
RectangleBox[{39.375, 0.5867488707898912}, \
{39.49375, 0.5986536326946532}],
RectangleBox[{44.75, 0.5867488707898912}, \
{44.86875, 0.5986536326946532}],
RectangleBox[{45.25, 0.5867488707898912}, \
{45.36875, 0.5986536326946532}],
RectangleBox[{47.125, 0.5867488707898912}, \
{47.24375, 0.5986536326946532}],
RectangleBox[{47.875, 0.5867488707898912}, \
{47.99375, 0.5986536326946532}],
RectangleBox[{48.375, 0.5867488707898912}, \
{48.49375, 0.5986536326946532}],
RectangleBox[{49.75, 0.5867488707898912}, \
{49.86875, 0.5986536326946532}],
RectangleBox[{50.375, 0.5867488707898912}, \
{50.49375, 0.5986536326946532}],
RectangleBox[{51.75, 0.5867488707898912}, \
{51.86875, 0.5986536326946532}],
RectangleBox[{52.375, 0.5867488707898912}, \
{52.49375, 0.5986536326946532}],
RectangleBox[{52.75, 0.5867488707898912}, \
{52.86875, 0.5986536326946532}],
RectangleBox[{53., 0.5867488707898912}, \
{53.11875, 0.5986536326946532}],
RectangleBox[{53.5, 0.5867488707898912}, \
{53.61875, 0.5986536326946532}],
RectangleBox[{53.875, 0.5867488707898912}, \
{53.99375, 0.5986536326946532}],
RectangleBox[{58.5, 0.5867488707898912}, \
{58.7375, 0.5986536326946532}],
RectangleBox[{59., 0.5867488707898912}, \
{59.2375, 0.5986536326946532}],
RectangleBox[{61., 0.5867488707898912}, \
{61.2375, 0.5986536326946532}],
RectangleBox[{61.25, 0.5867488707898912}, \
{61.4875, 0.5986536326946532}],
RectangleBox[{61.75, 0.5867488707898912}, \
{61.9875, 0.5986536326946532}],
RectangleBox[{63., 0.5867488707898912}, \
{63.2375, 0.5986536326946532}],
RectangleBox[{65., 0.5867488707898912}, \
{65.2375, 0.5986536326946532}],
RectangleBox[{70.375, 0.5867488707898912}, \
{70.49375, 0.5986536326946532}],
RectangleBox[{71.5, 0.5867488707898912}, \
{71.7375, 0.5986536326946532}],
RectangleBox[{73.75, 0.5867488707898912}, \
{73.9875, 0.5986536326946532}],
RectangleBox[{74.75, 0.5867488707898912}, \
{74.9875, 0.5986536326946532}],
RectangleBox[{2., 0.5986536326946532}, {2.95, 0.610558394599415}],
RectangleBox[{8., 0.5986536326946532}, {8.95, 0.610558394599415}],
RectangleBox[{16., 0.5986536326946532}, \
{16.2375, 0.610558394599415}],
RectangleBox[{16.5, 0.5986536326946532}, \
{16.7375, 0.610558394599415}],
RectangleBox[{18.25, 0.5986536326946532}, \
{18.4875, 0.610558394599415}],
RectangleBox[{21.5, 0.5986536326946532}, \
{21.7375, 0.610558394599415}],
RectangleBox[{29., 0.5986536326946532}, \
{29.2375, 0.610558394599415}],
RectangleBox[{34., 0.5986536326946532}, {34.95, 0.610558394599415}],
RectangleBox[{36., 0.5986536326946532}, \
{36.475, 0.610558394599415}],
RectangleBox[{39.5, 0.5986536326946532}, \
{39.61875, 0.610558394599415}],
RectangleBox[{40.25, 0.5986536326946532}, \
{40.36875, 0.610558394599415}],
RectangleBox[{44.875, 0.5986536326946532}, \
{44.99375, 0.610558394599415}],
RectangleBox[{45.375, 0.5986536326946532}, \
{45.49375, 0.610558394599415}],
RectangleBox[{46.25, 0.5986536326946532}, \
{46.36875, 0.610558394599415}],
RectangleBox[{46.875, 0.5986536326946532}, \
{46.99375, 0.610558394599415}],
RectangleBox[{47.25, 0.5986536326946532}, \
{47.36875, 0.610558394599415}],
RectangleBox[{47.75, 0.5986536326946532}, \
{47.86875, 0.610558394599415}],
RectangleBox[{48., 0.5986536326946532}, \
{48.2375, 0.610558394599415}],
RectangleBox[{48.5, 0.5986536326946532}, \
{48.7375, 0.610558394599415}],
RectangleBox[{49.625, 0.5986536326946532}, \
{49.74375, 0.610558394599415}],
RectangleBox[{49.875, 0.5986536326946532}, \
{49.99375, 0.610558394599415}],
RectangleBox[{50.25, 0.5986536326946532}, \
{50.36875, 0.610558394599415}],
RectangleBox[{52.25, 0.5986536326946532}, \
{52.36875, 0.610558394599415}],
RectangleBox[{53.125, 0.5986536326946532}, \
{53.24375, 0.610558394599415}],
RectangleBox[{53.375, 0.5986536326946532}, \
{53.49375, 0.610558394599415}],
RectangleBox[{53.625, 0.5986536326946532}, \
{53.74375, 0.610558394599415}],
RectangleBox[{56., 0.5986536326946532}, \
{56.2375, 0.610558394599415}],
RectangleBox[{62.25, 0.5986536326946532}, \
{62.4875, 0.610558394599415}],
RectangleBox[{62.75, 0.5986536326946532}, \
{62.9875, 0.610558394599415}],
RectangleBox[{66.25, 0.5986536326946532}, \
{66.4875, 0.610558394599415}],
RectangleBox[{68., 0.5986536326946532}, \
{68.2375, 0.610558394599415}],
RectangleBox[{70.25, 0.5986536326946532}, \
{70.36875, 0.610558394599415}],
RectangleBox[{70.5, 0.5986536326946532}, \
{70.7375, 0.610558394599415}],
RectangleBox[{72.25, 0.5986536326946532}, \
{72.36875, 0.610558394599415}],
RectangleBox[{72.75, 0.5986536326946532}, \
{72.9875, 0.610558394599415}],
RectangleBox[{73.5, 0.5986536326946532}, \
{73.7375, 0.610558394599415}],
RectangleBox[{75., 0.5986536326946532}, \
{75.2375, 0.610558394599415}],
RectangleBox[{75.5, 0.5986536326946532}, \
{75.7375, 0.610558394599415}],
RectangleBox[{1., 0.6224631565041769}, {1.95, 0.6343679184089389}],
RectangleBox[{20.5, 0.6224631565041769}, \
{20.7375, 0.6343679184089389}],
RectangleBox[{33., 0.6224631565041769}, \
{33.95, 0.6343679184089389}],
RectangleBox[{35., 0.6224631565041769}, \
{35.95, 0.6343679184089389}],
RectangleBox[{37., 0.6224631565041769}, \
{37.475, 0.6343679184089389}],
RectangleBox[{39.625, 0.6224631565041769}, \
{39.74375, 0.6343679184089389}],
RectangleBox[{40.375, 0.6224631565041769}, \
{40.49375, 0.6343679184089389}],
RectangleBox[{45.5, 0.6224631565041769}, \
{45.61875, 0.6343679184089389}],
RectangleBox[{46.375, 0.6224631565041769}, \
{46.49375, 0.6343679184089389}],
RectangleBox[{46.75, 0.6224631565041769}, \
{46.86875, 0.6343679184089389}],
RectangleBox[{47., 0.6224631565041769}, \
{47.11875, 0.6343679184089389}],
RectangleBox[{47.375, 0.6224631565041769}, \
{47.49375, 0.6343679184089389}],
RectangleBox[{47.625, 0.6224631565041769}, \
{47.74375, 0.6343679184089389}],
RectangleBox[{53.25, 0.6224631565041769}, \
{53.36875, 0.6343679184089389}],
RectangleBox[{55.25, 0.6224631565041769}, \
{55.4875, 0.6343679184089389}],
RectangleBox[{55.75, 0.6224631565041769}, \
{55.9875, 0.6343679184089389}],
RectangleBox[{62.5, 0.6224631565041769}, \
{62.7375, 0.6343679184089389}],
RectangleBox[{66.5, 0.6224631565041769}, \
{66.7375, 0.6343679184089389}],
RectangleBox[{69., 0.6224631565041769}, \
{69.2375, 0.6343679184089389}],
RectangleBox[{72.375, 0.6224631565041769}, \
{72.49375, 0.6343679184089389}],
RectangleBox[{73.375, 0.6224631565041769}, \
{73.49375, 0.6343679184089389}],
RectangleBox[{75.375, 0.6224631565041769}, \
{75.49375, 0.6343679184089389}],
RectangleBox[{0., 0.646272680313701}, {0.95, 0.658177442218463}],
RectangleBox[{19.25, 0.646272680313701}, \
{19.4875, 0.658177442218463}],
RectangleBox[{20.25, 0.646272680313701}, \
{20.4875, 0.658177442218463}],
RectangleBox[{21.25, 0.646272680313701}, \
{21.4875, 0.658177442218463}],
RectangleBox[{32.5, 0.646272680313701}, \
{32.975, 0.658177442218463}],
RectangleBox[{36.5, 0.646272680313701}, \
{36.975, 0.658177442218463}],
RectangleBox[{38.25, 0.646272680313701}, \
{38.36875, 0.658177442218463}],
RectangleBox[{38.75, 0.646272680313701}, \
{38.86875, 0.658177442218463}],
RectangleBox[{39.75, 0.646272680313701}, \
{39.86875, 0.658177442218463}],
RectangleBox[{40., 0.646272680313701}, \
{40.2375, 0.658177442218463}],
RectangleBox[{40.5, 0.646272680313701}, \
{40.7375, 0.658177442218463}],
RectangleBox[{45.625, 0.646272680313701}, \
{45.74375, 0.658177442218463}],
RectangleBox[{46., 0.646272680313701}, \
{46.2375, 0.658177442218463}],
RectangleBox[{46.5, 0.646272680313701}, \
{46.7375, 0.658177442218463}],
RectangleBox[{47.5, 0.646272680313701}, \
{47.61875, 0.658177442218463}],
RectangleBox[{54., 0.646272680313701}, \
{54.2375, 0.658177442218463}],
RectangleBox[{55.5, 0.646272680313701}, \
{55.7375, 0.658177442218463}],
RectangleBox[{67., 0.646272680313701}, \
{67.2375, 0.658177442218463}],
RectangleBox[{67.75, 0.646272680313701}, \
{67.9875, 0.658177442218463}],
RectangleBox[{68.5, 0.646272680313701}, \
{68.7375, 0.658177442218463}],
RectangleBox[{72.5, 0.646272680313701}, \
{72.7375, 0.658177442218463}],
RectangleBox[{73., 0.646272680313701}, \
{73.2375, 0.658177442218463}],
RectangleBox[{73.25, 0.646272680313701}, \
{73.36875, 0.658177442218463}],
RectangleBox[{75.25, 0.646272680313701}, \
{75.36875, 0.658177442218463}],
RectangleBox[{75.75, 0.646272680313701}, \
{75.9875, 0.658177442218463}],
RectangleBox[{20., 0.658177442218463}, \
{20.2375, 0.6700822041232247}],
RectangleBox[{20.75, 0.658177442218463}, \
{20.9875, 0.6700822041232247}],
RectangleBox[{21., 0.658177442218463}, \
{21.2375, 0.6700822041232247}],
RectangleBox[{37.5, 0.658177442218463}, \
{37.975, 0.6700822041232247}],
RectangleBox[{38.375, 0.658177442218463}, \
{38.49375, 0.6700822041232247}],
RectangleBox[{38.875, 0.658177442218463}, \
{38.99375, 0.6700822041232247}],
RectangleBox[{39.875, 0.658177442218463}, \
{39.99375, 0.6700822041232247}],
RectangleBox[{45.75, 0.658177442218463}, \
{45.86875, 0.6700822041232247}],