-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Minecraft Note Block Studio.yyp
1625 lines (1625 loc) · 231 KB
/
Minecraft Note Block Studio.yyp
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
{
"resources": [
{"id":{"name":"spr_Fclef","path":"sprites/spr_Fclef/spr_Fclef.yy",},"order":0,},
{"id":{"name":"spr_Gclef","path":"sprites/spr_Gclef/spr_Gclef.yy",},"order":1,},
{"id":{"name":"spr_icons_d_hires","path":"sprites/spr_icons_d_hires/spr_icons_d_hires.yy",},"order":11,},
{"id":{"name":"spr_tabframe_hires","path":"sprites/spr_tabframe_hires/spr_tabframe_hires.yy",},"order":52,},
{"id":{"name":"spr_iconbar","path":"sprites/spr_iconbar/spr_iconbar.yy",},"order":2,},
{"id":{"name":"spr_interface1","path":"sprites/spr_interface1/spr_interface1.yy",},"order":3,},
{"id":{"name":"spr_interface2","path":"sprites/spr_interface2/spr_interface2.yy",},"order":4,},
{"id":{"name":"block_other_track","path":"scripts/block_other_track/block_other_track.yy",},"order":3,},
{"id":{"name":"spr_interface4","path":"sprites/spr_interface4/spr_interface4.yy",},"order":5,},
{"id":{"name":"spr_layerbox","path":"sprites/spr_layerbox/spr_layerbox.yy",},"order":6,},
{"id":{"name":"spr_layericons","path":"sprites/spr_layericons/spr_layericons.yy",},"order":7,},
{"id":{"name":"spr_macroicons","path":"sprites/spr_macroicons/spr_macroicons.yy",},"order":8,},
{"id":{"name":"spr_lock","path":"sprites/spr_lock/spr_lock.yy",},"order":9,},
{"id":{"name":"block_walkway_track","path":"scripts/block_walkway_track/block_walkway_track.yy",},"order":1,},
{"id":{"name":"spr_marker","path":"sprites/spr_marker/spr_marker.yy",},"order":10,},
{"id":{"name":"DialogModule","path":"extensions/DialogModule/DialogModule.yy",},"order":2,},
{"id":{"name":"spr_note_sharp","path":"sprites/spr_note_sharp/spr_note_sharp.yy",},"order":11,},
{"id":{"name":"spr_textbox_f_hires","path":"sprites/spr_textbox_f_hires/spr_textbox_f_hires.yy",},"order":45,},
{"id":{"name":"selection_extend_height","path":"scripts/selection_extend_height/selection_extend_height.yy",},"order":35,},
{"id":{"name":"spr_notechart","path":"sprites/spr_notechart/spr_notechart.yy",},"order":12,},
{"id":{"name":"spr_piano","path":"sprites/spr_piano/spr_piano.yy",},"order":13,},
{"id":{"name":"spr_schematic_exp","path":"sprites/spr_schematic_exp/spr_schematic_exp.yy",},"order":14,},
{"id":{"name":"spr_schematic_br","path":"sprites/spr_schematic_br/spr_schematic_br.yy",},"order":15,},
{"id":{"name":"spr_tabbar","path":"sprites/spr_tabbar/spr_tabbar.yy",},"order":16,},
{"id":{"name":"spr_tabbuttons","path":"sprites/spr_tabbuttons/spr_tabbuttons.yy",},"order":17,},
{"id":{"name":"spr_tabframe","path":"sprites/spr_tabframe/spr_tabframe.yy",},"order":18,},
{"id":{"name":"spr_tempobox","path":"sprites/spr_tempobox/spr_tempobox.yy",},"order":19,},
{"id":{"name":"spr_textbox","path":"sprites/spr_textbox/spr_textbox.yy",},"order":20,},
{"id":{"name":"spr_icons_d","path":"sprites/spr_icons_d/spr_icons_d.yy",},"order":7,},
{"id":{"name":"spr_timeline","path":"sprites/spr_timeline/spr_timeline.yy",},"order":21,},
{"id":{"name":"spr_shadow","path":"sprites/spr_shadow/spr_shadow.yy",},"order":36,},
{"id":{"name":"spr_volume","path":"sprites/spr_volume/spr_volume.yy",},"order":22,},
{"id":{"name":"spr_yesno","path":"sprites/spr_yesno/spr_yesno.yy",},"order":23,},
{"id":{"name":"spr_datapack_exp","path":"sprites/spr_datapack_exp/spr_datapack_exp.yy",},"order":24,},
{"id":{"name":"spr_mp3_exp","path":"sprites/spr_mp3_exp/spr_mp3_exp.yy",},"order":25,},
{"id":{"name":"spr_note_flat","path":"sprites/spr_note_flat/spr_note_flat.yy",},"order":54,},
{"id":{"name":"draw_piano_key","path":"scripts/draw_piano_key/draw_piano_key.yy",},"order":4,},
{"id":{"name":"spr_volume_f","path":"sprites/spr_volume_f/spr_volume_f.yy",},"order":32,},
{"id":{"name":"blur_scripts","path":"scripts/blur_scripts/blur_scripts.yy",},"order":28,},
{"id":{"name":"sh_blur_realtime","path":"shaders/sh_blur_realtime/sh_blur_realtime.yy",},"order":28,},
{"id":{"name":"sh_blur_static","path":"shaders/sh_blur_static/sh_blur_static.yy",},"order":28,},
{"id":{"name":"buffer_write_string_int","path":"scripts/buffer_write_string_int/buffer_write_string_int.yy",},"order":27,},
{"id":{"name":"spr_stereo","path":"sprites/spr_stereo/spr_stereo.yy",},"order":26,},
{"id":{"name":"string_height_dynamic","path":"scripts/string_height_dynamic/string_height_dynamic.yy",},"order":43,},
{"id":{"name":"spr_scrollbar_h_bar_fill","path":"sprites/spr_scrollbar_h_bar_fill/spr_scrollbar_h_bar_fill.yy",},"order":0,},
{"id":{"name":"draw_debug_overlay","path":"scripts/draw_debug_overlay/draw_debug_overlay.yy",},"order":42,},
{"id":{"name":"download_song_start","path":"scripts/download_song_start/download_song_start.yy",},"order":18,},
{"id":{"name":"spr_scrollbar_h_bar_handle","path":"sprites/spr_scrollbar_h_bar_handle/spr_scrollbar_h_bar_handle.yy",},"order":1,},
{"id":{"name":"spr_scrollbar_h_bar_left","path":"sprites/spr_scrollbar_h_bar_left/spr_scrollbar_h_bar_left.yy",},"order":2,},
{"id":{"name":"string_format_thousands","path":"scripts/string_format_thousands/string_format_thousands.yy",},"order":10,},
{"id":{"name":"spr_scrollbar_h_bar_right","path":"sprites/spr_scrollbar_h_bar_right/spr_scrollbar_h_bar_right.yy",},"order":3,},
{"id":{"name":"spr_scrollbar_h_button_left","path":"sprites/spr_scrollbar_h_button_left/spr_scrollbar_h_button_left.yy",},"order":0,},
{"id":{"name":"spr_scrollbar_h_button_right","path":"sprites/spr_scrollbar_h_button_right/spr_scrollbar_h_button_right.yy",},"order":1,},
{"id":{"name":"FileDropper","path":"extensions/FileDropper/FileDropper.yy",},"order":3,},
{"id":{"name":"fnt_wslui_med","path":"fonts/fnt_wslui_med/fnt_wslui_med.yy",},"order":5,},
{"id":{"name":"spr_bigicons_d","path":"sprites/spr_bigicons_d/spr_bigicons_d.yy",},"order":5,},
{"id":{"name":"try_decompress_selection","path":"scripts/try_decompress_selection/try_decompress_selection.yy",},"order":32,},
{"id":{"name":"spr_scrollbar_h_background","path":"sprites/spr_scrollbar_h_background/spr_scrollbar_h_background.yy",},"order":2,},
{"id":{"name":"spr_scrollbar_v_bar_handle","path":"sprites/spr_scrollbar_v_bar_handle/spr_scrollbar_v_bar_handle.yy",},"order":0,},
{"id":{"name":"spr_switch","path":"sprites/spr_switch/spr_switch.yy",},"order":9,},
{"id":{"name":"spr_scrollbar_v_bar_up","path":"sprites/spr_scrollbar_v_bar_up/spr_scrollbar_v_bar_up.yy",},"order":1,},
{"id":{"name":"spr_scrollbar_v_bar_down","path":"sprites/spr_scrollbar_v_bar_down/spr_scrollbar_v_bar_down.yy",},"order":2,},
{"id":{"name":"spr_frame4_hires","path":"sprites/spr_frame4_hires/spr_frame4_hires.yy",},"order":13,},
{"id":{"name":"spr_scrollbar_v_bar_fill","path":"sprites/spr_scrollbar_v_bar_fill/spr_scrollbar_v_bar_fill.yy",},"order":3,},
{"id":{"name":"spr_scrollbar_v_button_up","path":"sprites/spr_scrollbar_v_button_up/spr_scrollbar_v_button_up.yy",},"order":0,},
{"id":{"name":"spr_scrollbar_v_button_down","path":"sprites/spr_scrollbar_v_button_down/spr_scrollbar_v_button_down.yy",},"order":1,},
{"id":{"name":"spr_scrollbar_v_background","path":"sprites/spr_scrollbar_v_background/spr_scrollbar_v_background.yy",},"order":2,},
{"id":{"name":"spr_tooltip_sl_left","path":"sprites/spr_tooltip_sl_left/spr_tooltip_sl_left.yy",},"order":0,},
{"id":{"name":"spr_tooltip_sl_middle","path":"sprites/spr_tooltip_sl_middle/spr_tooltip_sl_middle.yy",},"order":1,},
{"id":{"name":"extra_characters","path":"scripts/extra_characters/extra_characters.yy",},"order":12,},
{"id":{"name":"spr_tooltip_sl_right","path":"sprites/spr_tooltip_sl_right/spr_tooltip_sl_right.yy",},"order":2,},
{"id":{"name":"spr_tooltip_ml_left","path":"sprites/spr_tooltip_ml_left/spr_tooltip_ml_left.yy",},"order":0,},
{"id":{"name":"spr_tooltip_ml_middle","path":"sprites/spr_tooltip_ml_middle/spr_tooltip_ml_middle.yy",},"order":1,},
{"id":{"name":"spr_bigicons_f","path":"sprites/spr_bigicons_f/spr_bigicons_f.yy",},"order":3,},
{"id":{"name":"block_circuit_track","path":"scripts/block_circuit_track/block_circuit_track.yy",},"order":0,},
{"id":{"name":"selection_extend_length","path":"scripts/selection_extend_length/selection_extend_length.yy",},"order":34,},
{"id":{"name":"spr_tooltip_ml_right","path":"sprites/spr_tooltip_ml_right/spr_tooltip_ml_right.yy",},"order":2,},
{"id":{"name":"fnt_wslui_hires","path":"fonts/fnt_wslui_hires/fnt_wslui_hires.yy",},"order":0,},
{"id":{"name":"spr_inputbox_n_right","path":"sprites/spr_inputbox_n_right/spr_inputbox_n_right.yy",},"order":0,},
{"id":{"name":"spr_inputbox_n_middle","path":"sprites/spr_inputbox_n_middle/spr_inputbox_n_middle.yy",},"order":1,},
{"id":{"name":"spr_inputbox_n_left","path":"sprites/spr_inputbox_n_left/spr_inputbox_n_left.yy",},"order":2,},
{"id":{"name":"spr_inputbox_s_left","path":"sprites/spr_inputbox_s_left/spr_inputbox_s_left.yy",},"order":0,},
{"id":{"name":"spr_scrollbar_v_button_up_hires","path":"sprites/spr_scrollbar_v_button_up_hires/spr_scrollbar_v_button_up_hires.yy",},"order":3,},
{"id":{"name":"spr_inputbox_s_middle","path":"sprites/spr_inputbox_s_middle/spr_inputbox_s_middle.yy",},"order":1,},
{"id":{"name":"spr_inputbox_s_right","path":"sprites/spr_inputbox_s_right/spr_inputbox_s_right.yy",},"order":2,},
{"id":{"name":"spr_frame1","path":"sprites/spr_frame1/spr_frame1.yy",},"order":0,},
{"id":{"name":"fnt_wslui_info_big","path":"fonts/fnt_wslui_info_big/fnt_wslui_info_big.yy",},"order":2,},
{"id":{"name":"spr_frame2","path":"sprites/spr_frame2/spr_frame2.yy",},"order":1,},
{"id":{"name":"spr_frame4","path":"sprites/spr_frame4/spr_frame4.yy",},"order":2,},
{"id":{"name":"spr_frame5","path":"sprites/spr_frame5/spr_frame5.yy",},"order":3,},
{"id":{"name":"spr_checkbox","path":"sprites/spr_checkbox/spr_checkbox.yy",},"order":4,},
{"id":{"name":"fnt_wslui_info_med_bold","path":"fonts/fnt_wslui_info_med_bold/fnt_wslui_info_med_bold.yy",},"order":4,},
{"id":{"name":"get_default_window_scale","path":"scripts/get_default_window_scale/get_default_window_scale.yy",},"order":14,},
{"id":{"name":"spr_radiobox","path":"sprites/spr_radiobox/spr_radiobox.yy",},"order":5,},
{"id":{"name":"spr_button","path":"sprites/spr_button/spr_button.yy",},"order":6,},
{"id":{"name":"spr_button_arrow","path":"sprites/spr_button_arrow/spr_button_arrow.yy",},"order":7,},
{"id":{"name":"spr_icons","path":"sprites/spr_icons/spr_icons.yy",},"order":0,},
{"id":{"name":"spr_bigicons","path":"sprites/spr_bigicons/spr_bigicons.yy",},"order":1,},
{"id":{"name":"spr_yesno_f_hires","path":"sprites/spr_yesno_f_hires/spr_yesno_f_hires.yy",},"order":53,},
{"id":{"name":"spr_block","path":"sprites/spr_block/spr_block.yy",},"order":0,},
{"id":{"name":"spr_block_color","path":"sprites/spr_block_color/spr_block_color.yy",},"order":1,},
{"id":{"name":"spr_block_shape","path":"sprites/spr_block_shape/spr_block_shape.yy",},"order":2,},
{"id":{"name":"spr_block_color_shape","path":"sprites/spr_block_color_shape/spr_block_color_shape.yy",},"order":3,},
{"id":{"name":"draw_theme_font","path":"scripts/draw_theme_font/draw_theme_font.yy",},"order":32,},
{"id":{"name":"spr_minecraft","path":"sprites/spr_minecraft/spr_minecraft.yy",},"order":4,},
{"id":{"name":"spr_block_sel","path":"sprites/spr_block_sel/spr_block_sel.yy",},"order":5,},
{"id":{"name":"spr_instrumenticons","path":"sprites/spr_instrumenticons/spr_instrumenticons.yy",},"order":6,},
{"id":{"name":"spr_logo","path":"sprites/spr_logo/spr_logo.yy",},"order":3,},
{"id":{"name":"bg_message","path":"sprites/bg_message/bg_message.yy",},"order":0,},
{"id":{"name":"fnt_wslui_bold_hires","path":"fonts/fnt_wslui_bold_hires/fnt_wslui_bold_hires.yy",},"order":1,},
{"id":{"name":"bg_message_classic","path":"sprites/bg_message_classic/bg_message_classic.yy",},"order":1,},
{"id":{"name":"macros","path":"scripts/macros/macros.yy",},"order":0,},
{"id":{"name":"action_copy","path":"scripts/action_copy/action_copy.yy",},"order":0,},
{"id":{"name":"action_cut","path":"scripts/action_cut/action_cut.yy",},"order":1,},
{"id":{"name":"action_delete","path":"scripts/action_delete/action_delete.yy",},"order":2,},
{"id":{"name":"action_paste","path":"scripts/action_paste/action_paste.yy",},"order":3,},
{"id":{"name":"action_redo","path":"scripts/action_redo/action_redo.yy",},"order":4,},
{"id":{"name":"action_undo","path":"scripts/action_undo/action_undo.yy",},"order":5,},
{"id":{"name":"fnt_wslui_small_bold","path":"fonts/fnt_wslui_small_bold/fnt_wslui_small_bold.yy",},"order":7,},
{"id":{"name":"control_create","path":"scripts/control_create/control_create.yy",},"order":0,},
{"id":{"name":"control_draw","path":"scripts/control_draw/control_draw.yy",},"order":1,},
{"id":{"name":"control_end","path":"scripts/control_end/control_end.yy",},"order":2,},
{"id":{"name":"control_http","path":"scripts/control_http/control_http.yy",},"order":3,},
{"id":{"name":"control_step","path":"scripts/control_step/control_step.yy",},"order":4,},
{"id":{"name":"history_set","path":"scripts/history_set/history_set.yy",},"order":5,},
{"id":{"name":"audio_export","path":"scripts/audio_export/audio_export.yy",},"order":6,},
{"id":{"name":"reset","path":"scripts/reset/reset.yy",},"order":7,},
{"id":{"name":"update_window","path":"scripts/update_window/update_window.yy",},"order":8,},
{"id":{"name":"icons_init","path":"scripts/icons_init/icons_init.yy",},"order":9,},
{"id":{"name":"log","path":"scripts/log/log.yy",},"order":10,},
{"id":{"name":"log_init","path":"scripts/log_init/log_init.yy",},"order":11,},
{"id":{"name":"check_updates","path":"scripts/check_updates/check_updates.yy",},"order":12,},
{"id":{"name":"get_update","path":"scripts/get_update/get_update.yy",},"order":13,},
{"id":{"name":"spr_button_arrow_hires","path":"sprites/spr_button_arrow_hires/spr_button_arrow_hires.yy",},"order":10,},
{"id":{"name":"buffer_export","path":"scripts/buffer_export/buffer_export.yy",},"order":0,},
{"id":{"name":"buffer_import","path":"scripts/buffer_import/buffer_import.yy",},"order":1,},
{"id":{"name":"buffer_is_eof","path":"scripts/buffer_is_eof/buffer_is_eof.yy",},"order":2,},
{"id":{"name":"buffer_read_byte","path":"scripts/buffer_read_byte/buffer_read_byte.yy",},"order":3,},
{"id":{"name":"buffer_read_byte_signed","path":"scripts/buffer_read_byte_signed/buffer_read_byte_signed.yy",},"order":4,},
{"id":{"name":"spr_tooltip_sl_right_hires","path":"sprites/spr_tooltip_sl_right_hires/spr_tooltip_sl_right_hires.yy",},"order":5,},
{"id":{"name":"fnt_wslui","path":"fonts/fnt_wslui/fnt_wslui.yy",},"order":0,},
{"id":{"name":"buffer_read_double","path":"scripts/buffer_read_double/buffer_read_double.yy",},"order":5,},
{"id":{"name":"buffer_read_int","path":"scripts/buffer_read_int/buffer_read_int.yy",},"order":6,},
{"id":{"name":"buffer_read_int_be","path":"scripts/buffer_read_int_be/buffer_read_int_be.yy",},"order":7,},
{"id":{"name":"sound_import","path":"scripts/sound_import/sound_import.yy",},"order":15,},
{"id":{"name":"buffer_read_short","path":"scripts/buffer_read_short/buffer_read_short.yy",},"order":8,},
{"id":{"name":"buffer_read_short_be","path":"scripts/buffer_read_short_be/buffer_read_short_be.yy",},"order":9,},
{"id":{"name":"buffer_read_string_byte","path":"scripts/buffer_read_string_byte/buffer_read_string_byte.yy",},"order":10,},
{"id":{"name":"buffer_read_string_utf8_int","path":"scripts/buffer_read_string_utf8_int/buffer_read_string_utf8_int.yy",},"order":11,},
{"id":{"name":"buffer_read_string_short_be","path":"scripts/buffer_read_string_short_be/buffer_read_string_short_be.yy",},"order":12,},
{"id":{"name":"buffer_read_varlen","path":"scripts/buffer_read_varlen/buffer_read_varlen.yy",},"order":13,},
{"id":{"name":"spr_tooltip_ml_right_hires","path":"sprites/spr_tooltip_ml_right_hires/spr_tooltip_ml_right_hires.yy",},"order":5,},
{"id":{"name":"buffer_read_string_int","path":"scripts/buffer_read_string_int/buffer_read_string_int.yy",},"order":28,},
{"id":{"name":"buffer_skip","path":"scripts/buffer_skip/buffer_skip.yy",},"order":14,},
{"id":{"name":"buffer_write_byte","path":"scripts/buffer_write_byte/buffer_write_byte.yy",},"order":15,},
{"id":{"name":"buffer_write_double","path":"scripts/buffer_write_double/buffer_write_double.yy",},"order":16,},
{"id":{"name":"buffer_write_double_be","path":"scripts/buffer_write_double_be/buffer_write_double_be.yy",},"order":17,},
{"id":{"name":"buffer_write_float_be","path":"scripts/buffer_write_float_be/buffer_write_float_be.yy",},"order":18,},
{"id":{"name":"instrument_remove","path":"scripts/instrument_remove/instrument_remove.yy",},"order":4,},
{"id":{"name":"buffer_write_int","path":"scripts/buffer_write_int/buffer_write_int.yy",},"order":19,},
{"id":{"name":"buffer_write_int_be","path":"scripts/buffer_write_int_be/buffer_write_int_be.yy",},"order":20,},
{"id":{"name":"buffer_write_short","path":"scripts/buffer_write_short/buffer_write_short.yy",},"order":21,},
{"id":{"name":"fnt_wslui_small","path":"fonts/fnt_wslui_small/fnt_wslui_small.yy",},"order":6,},
{"id":{"name":"buffer_write_short_be","path":"scripts/buffer_write_short_be/buffer_write_short_be.yy",},"order":22,},
{"id":{"name":"spr_inputbox_f_left","path":"sprites/spr_inputbox_f_left/spr_inputbox_f_left.yy",},"order":0,},
{"id":{"name":"scr_RGBtoHSB","path":"scripts/scr_RGBtoHSB/scr_RGBtoHSB.yy",},"order":8,},
{"id":{"name":"buffer_write_string_utf8_int","path":"scripts/buffer_write_string_utf8_int/buffer_write_string_utf8_int.yy",},"order":23,},
{"id":{"name":"buffer_write_string_short_be","path":"scripts/buffer_write_string_short_be/buffer_write_string_short_be.yy",},"order":24,},
{"id":{"name":"wallpaper_init","path":"scripts/wallpaper_init/wallpaper_init.yy",},"order":40,},
{"id":{"name":"draw_dragbar","path":"scripts/draw_dragbar/draw_dragbar.yy",},"order":41,},
{"id":{"name":"anim_window_open","path":"scripts/anim_window_open/anim_window_open.yy",},"order":28,},
{"id":{"name":"buffer_write_string","path":"scripts/buffer_write_string/buffer_write_string.yy",},"order":25,},
{"id":{"name":"fnt_src_small_bold_hires","path":"fonts/fnt_src_small_bold_hires/fnt_src_small_bold_hires.yy",},"order":7,},
{"id":{"name":"buffer_read_string","path":"scripts/buffer_read_string/buffer_read_string.yy",},"order":26,},
{"id":{"name":"add_to_recent","path":"scripts/add_to_recent/add_to_recent.yy",},"order":1,},
{"id":{"name":"easings","path":"scripts/easings/easings.yy",},"order":9,},
{"id":{"name":"confirm","path":"scripts/confirm/confirm.yy",},"order":2,},
{"id":{"name":"load_settings","path":"scripts/load_settings/load_settings.yy",},"order":3,},
{"id":{"name":"load_song","path":"scripts/load_song/load_song.yy",},"order":4,},
{"id":{"name":"new_song","path":"scripts/new_song/new_song.yy",},"order":5,},
{"id":{"name":"save_settings","path":"scripts/save_settings/save_settings.yy",},"order":6,},
{"id":{"name":"save_song","path":"scripts/save_song/save_song.yy",},"order":7,},
{"id":{"name":"pattern_import","path":"scripts/pattern_import/pattern_import.yy",},"order":8,},
{"id":{"name":"pattern_export","path":"scripts/pattern_export/pattern_export.yy",},"order":9,},
{"id":{"name":"open_song_zip","path":"scripts/open_song_zip/open_song_zip.yy",},"order":15,},
{"id":{"name":"download_song_from_url","path":"scripts/download_song_from_url/download_song_from_url.yy",},"order":16,},
{"id":{"name":"filename_new_ext","path":"scripts/filename_new_ext/filename_new_ext.yy",},"order":10,},
{"id":{"name":"spr_back_hires","path":"sprites/spr_back_hires/spr_back_hires.yy",},"order":51,},
{"id":{"name":"ini_write_real_clean","path":"scripts/ini_write_real_clean/ini_write_real_clean.yy",},"order":11,},
{"id":{"name":"backup_clear","path":"scripts/backup_clear/backup_clear.yy",},"order":12,},
{"id":{"name":"file_get_size","path":"scripts/file_get_size/file_get_size.yy",},"order":13,},
{"id":{"name":"load_text","path":"scripts/load_text/load_text.yy",},"order":14,},
{"id":{"name":"ds_list_delete_value","path":"scripts/ds_list_delete_value/ds_list_delete_value.yy",},"order":0,},
{"id":{"name":"spr_piano_hires","path":"sprites/spr_piano_hires/spr_piano_hires.yy",},"order":44,},
{"id":{"name":"condstr","path":"scripts/condstr/condstr.yy",},"order":0,},
{"id":{"name":"seconds_to_str","path":"scripts/seconds_to_str/seconds_to_str.yy",},"order":1,},
{"id":{"name":"string_lastline","path":"scripts/string_lastline/string_lastline.yy",},"order":2,},
{"id":{"name":"string_maxwidth","path":"scripts/string_maxwidth/string_maxwidth.yy",},"order":3,},
{"id":{"name":"string_truncate","path":"scripts/string_truncate/string_truncate.yy",},"order":4,},
{"id":{"name":"string_word_wrap","path":"scripts/string_word_wrap/string_word_wrap.yy",},"order":5,},
{"id":{"name":"spr_inputbox_n_right_hires","path":"sprites/spr_inputbox_n_right_hires/spr_inputbox_n_right_hires.yy",},"order":5,},
{"id":{"name":"string_format_auto","path":"scripts/string_format_auto/string_format_auto.yy",},"order":6,},
{"id":{"name":"time_str","path":"scripts/time_str/time_str.yy",},"order":7,},
{"id":{"name":"string_path","path":"scripts/string_path/string_path.yy",},"order":8,},
{"id":{"name":"spr_volume_f_hires","path":"sprites/spr_volume_f_hires/spr_volume_f_hires.yy",},"order":50,},
{"id":{"name":"string_digits_symbol","path":"scripts/string_digits_symbol/string_digits_symbol.yy",},"order":9,},
{"id":{"name":"spr_scrollbar_v_button_down_hires","path":"sprites/spr_scrollbar_v_button_down_hires/spr_scrollbar_v_button_down_hires.yy",},"order":2,},
{"id":{"name":"window_unset_darkmode","path":"scripts/window_unset_darkmode/window_unset_darkmode.yy",},"order":6,},
{"id":{"name":"is_inside","path":"scripts/is_inside/is_inside.yy",},"order":2,},
{"id":{"name":"mouse_rectangle","path":"scripts/mouse_rectangle/mouse_rectangle.yy",},"order":3,},
{"id":{"name":"test","path":"scripts/test/test.yy",},"order":4,},
{"id":{"name":"new","path":"scripts/new/new.yy",},"order":5,},
{"id":{"name":"ExecuteShell","path":"scripts/ExecuteShell/ExecuteShell.yy",},"order":6,},
{"id":{"name":"instrument_free","path":"scripts/instrument_free/instrument_free.yy",},"order":0,},
{"id":{"name":"instrument_load","path":"scripts/instrument_load/instrument_load.yy",},"order":1,},
{"id":{"name":"fnt_src_med_hires","path":"fonts/fnt_src_med_hires/fnt_src_med_hires.yy",},"order":5,},
{"id":{"name":"draw_icon_customins","path":"scripts/draw_icon_customins/draw_icon_customins.yy",},"order":30,},
{"id":{"name":"load_instruments","path":"scripts/load_instruments/load_instruments.yy",},"order":2,},
{"id":{"name":"new_instrument","path":"scripts/new_instrument/new_instrument.yy",},"order":3,},
{"id":{"name":"spr_bigicons_d_hires","path":"sprites/spr_bigicons_d_hires/spr_bigicons_d_hires.yy",},"order":13,},
{"id":{"name":"check","path":"scripts/check/check.yy",},"order":0,},
{"id":{"name":"clean","path":"scripts/clean/clean.yy",},"order":1,},
{"id":{"name":"inactive","path":"scripts/inactive/inactive.yy",},"order":2,},
{"id":{"name":"menu_click","path":"scripts/menu_click/menu_click.yy",},"order":3,},
{"id":{"name":"menu_draw","path":"scripts/menu_draw/menu_draw.yy",},"order":4,},
{"id":{"name":"menu_print","path":"scripts/menu_print/menu_print.yy",},"order":5,},
{"id":{"name":"draw_window_tempo_tapper","path":"scripts/draw_window_tempo_tapper/draw_window_tempo_tapper.yy",},"order":28,},
{"id":{"name":"blur_scripts_alt","path":"scripts/blur_scripts_alt/blur_scripts_alt.yy",},"order":39,},
{"id":{"name":"message","path":"scripts/message/message.yy",},"order":6,},
{"id":{"name":"popup_set","path":"scripts/popup_set/popup_set.yy",},"order":7,},
{"id":{"name":"popup_set_window","path":"scripts/popup_set_window/popup_set_window.yy",},"order":8,},
{"id":{"name":"spr_hsv","path":"sprites/spr_hsv/spr_hsv.yy",},"order":40,},
{"id":{"name":"question","path":"scripts/question/question.yy",},"order":9,},
{"id":{"name":"fnt_src_info_med_bold_hires","path":"fonts/fnt_src_info_med_bold_hires/fnt_src_info_med_bold_hires.yy",},"order":4,},
{"id":{"name":"spr_icons_f","path":"sprites/spr_icons_f/spr_icons_f.yy",},"order":6,},
{"id":{"name":"fnt_src_small_bold","path":"fonts/fnt_src_small_bold/fnt_src_small_bold.yy",},"order":7,},
{"id":{"name":"spr_icons_f_hires","path":"sprites/spr_icons_f_hires/spr_icons_f_hires.yy",},"order":9,},
{"id":{"name":"show_menu_ext","path":"scripts/show_menu_ext/show_menu_ext.yy",},"order":10,},
{"id":{"name":"draw_window_about","path":"scripts/draw_window_about/draw_window_about.yy",},"order":0,},
{"id":{"name":"draw_window_update","path":"scripts/draw_window_update/draw_window_update.yy",},"order":1,},
{"id":{"name":"spr_frame5_hires","path":"sprites/spr_frame5_hires/spr_frame5_hires.yy",},"order":14,},
{"id":{"name":"draw_window_minecraft","path":"scripts/draw_window_minecraft/draw_window_minecraft.yy",},"order":2,},
{"id":{"name":"draw_window_greeting","path":"scripts/draw_window_greeting/draw_window_greeting.yy",},"order":3,},
{"id":{"name":"draw_window_set_tempo","path":"scripts/draw_window_set_tempo/draw_window_set_tempo.yy",},"order":26,},
{"id":{"name":"draw_window_instruments","path":"scripts/draw_window_instruments/draw_window_instruments.yy",},"order":4,},
{"id":{"name":"spr_scrollbar_h_bar_fill_hires","path":"sprites/spr_scrollbar_h_bar_fill_hires/spr_scrollbar_h_bar_fill_hires.yy",},"order":4,},
{"id":{"name":"draw_window_mididevices","path":"scripts/draw_window_mididevices/draw_window_mididevices.yy",},"order":5,},
{"id":{"name":"draw_window_midi_import","path":"scripts/draw_window_midi_import/draw_window_midi_import.yy",},"order":6,},
{"id":{"name":"draw_window_preferences","path":"scripts/draw_window_preferences/draw_window_preferences.yy",},"order":7,},
{"id":{"name":"draw_window_clip_editor","path":"scripts/draw_window_clip_editor/draw_window_clip_editor.yy",},"order":8,},
{"id":{"name":"draw_window_properties","path":"scripts/draw_window_properties/draw_window_properties.yy",},"order":9,},
{"id":{"name":"draw_window_schematic_export","path":"scripts/draw_window_schematic_export/draw_window_schematic_export.yy",},"order":10,},
{"id":{"name":"spr_stereo_f","path":"sprites/spr_stereo_f/spr_stereo_f.yy",},"order":31,},
{"id":{"name":"draw_window_branch_export","path":"scripts/draw_window_branch_export/draw_window_branch_export.yy",},"order":11,},
{"id":{"name":"draw_window_datapack_export","path":"scripts/draw_window_datapack_export/draw_window_datapack_export.yy",},"order":12,},
{"id":{"name":"draw_window_songinfo","path":"scripts/draw_window_songinfo/draw_window_songinfo.yy",},"order":13,},
{"id":{"name":"draw_window_stats","path":"scripts/draw_window_stats/draw_window_stats.yy",},"order":14,},
{"id":{"name":"spr_layericons_f","path":"sprites/spr_layericons_f/spr_layericons_f.yy",},"order":30,},
{"id":{"name":"draw_windows","path":"scripts/draw_windows/draw_windows.yy",},"order":15,},
{"id":{"name":"draw_window_audio_export","path":"scripts/draw_window_audio_export/draw_window_audio_export.yy",},"order":16,},
{"id":{"name":"draw_window_macro_arpeggio","path":"scripts/draw_window_macro_arpeggio/draw_window_macro_arpeggio.yy",},"order":17,},
{"id":{"name":"draw_window_macro_portamento","path":"scripts/draw_window_macro_portamento/draw_window_macro_portamento.yy",},"order":18,},
{"id":{"name":"draw_window_macro_setvelocity","path":"scripts/draw_window_macro_setvelocity/draw_window_macro_setvelocity.yy",},"order":19,},
{"id":{"name":"draw_window_macro_setpanning","path":"scripts/draw_window_macro_setpanning/draw_window_macro_setpanning.yy",},"order":20,},
{"id":{"name":"draw_window_macro_setpitch","path":"scripts/draw_window_macro_setpitch/draw_window_macro_setpitch.yy",},"order":21,},
{"id":{"name":"draw_window_macro_stereo","path":"scripts/draw_window_macro_stereo/draw_window_macro_stereo.yy",},"order":22,},
{"id":{"name":"spr_frame1_hires","path":"sprites/spr_frame1_hires/spr_frame1_hires.yy",},"order":11,},
{"id":{"name":"fnt_wslui_med_hires","path":"fonts/fnt_wslui_med_hires/fnt_wslui_med_hires.yy",},"order":5,},
{"id":{"name":"fnt_wslui_info_med_bold_hires","path":"fonts/fnt_wslui_info_med_bold_hires/fnt_wslui_info_med_bold_hires.yy",},"order":4,},
{"id":{"name":"draw_window_macro_stagger","path":"scripts/draw_window_macro_stagger/draw_window_macro_stagger.yy",},"order":23,},
{"id":{"name":"draw_window_macro_tremolo","path":"scripts/draw_window_macro_tremolo/draw_window_macro_tremolo.yy",},"order":24,},
{"id":{"name":"draw_window_save_options","path":"scripts/draw_window_save_options/draw_window_save_options.yy",},"order":25,},
{"id":{"name":"get_keyname","path":"scripts/get_keyname/get_keyname.yy",},"order":0,},
{"id":{"name":"spr_scrollbar_h_bar_left_hires","path":"sprites/spr_scrollbar_h_bar_left_hires/spr_scrollbar_h_bar_left_hires.yy",},"order":5,},
{"id":{"name":"init_keys","path":"scripts/init_keys/init_keys.yy",},"order":1,},
{"id":{"name":"spr_inputbox_f_right","path":"sprites/spr_inputbox_f_right/spr_inputbox_f_right.yy",},"order":2,},
{"id":{"name":"fnt_src_med","path":"fonts/fnt_src_med/fnt_src_med.yy",},"order":5,},
{"id":{"name":"spr_tooltip_ml_left_hires","path":"sprites/spr_tooltip_ml_left_hires/spr_tooltip_ml_left_hires.yy",},"order":3,},
{"id":{"name":"fnt_src_small_hires","path":"fonts/fnt_src_small_hires/fnt_src_small_hires.yy",},"order":6,},
{"id":{"name":"draw_piano","path":"scripts/draw_piano/draw_piano.yy",},"order":2,},
{"id":{"name":"draw_notechart","path":"scripts/draw_notechart/draw_notechart.yy",},"order":3,},
{"id":{"name":"draw_scrollbar","path":"scripts/draw_scrollbar/draw_scrollbar.yy",},"order":0,},
{"id":{"name":"draw_popup","path":"scripts/draw_popup/draw_popup.yy",},"order":41,},
{"id":{"name":"create_scrollbar","path":"scripts/create_scrollbar/create_scrollbar.yy",},"order":1,},
{"id":{"name":"spr_minecraft_f","path":"sprites/spr_minecraft_f/spr_minecraft_f.yy",},"order":9,},
{"id":{"name":"change_theme","path":"scripts/change_theme/change_theme.yy",},"order":4,},
{"id":{"name":"spr_numbers_mc","path":"sprites/spr_numbers_mc/spr_numbers_mc.yy",},"order":8,},
{"id":{"name":"draw_abutton","path":"scripts/draw_abutton/draw_abutton.yy",},"order":5,},
{"id":{"name":"draw_area","path":"scripts/draw_area/draw_area.yy",},"order":6,},
{"id":{"name":"draw_areaheader","path":"scripts/draw_areaheader/draw_areaheader.yy",},"order":7,},
{"id":{"name":"draw_button2","path":"scripts/draw_button2/draw_button2.yy",},"order":8,},
{"id":{"name":"draw_checkbox","path":"scripts/draw_checkbox/draw_checkbox.yy",},"order":9,},
{"id":{"name":"draw_dragvalue","path":"scripts/draw_dragvalue/draw_dragvalue.yy",},"order":10,},
{"id":{"name":"draw_frame","path":"scripts/draw_frame/draw_frame.yy",},"order":11,},
{"id":{"name":"draw_icon","path":"scripts/draw_icon/draw_icon.yy",},"order":12,},
{"id":{"name":"string_width_dynamic","path":"scripts/string_width_dynamic/string_width_dynamic.yy",},"order":37,},
{"id":{"name":"draw_text_dynamic","path":"scripts/draw_text_dynamic/draw_text_dynamic.yy",},"order":36,},
{"id":{"name":"draw_icon_insbox","path":"scripts/draw_icon_insbox/draw_icon_insbox.yy",},"order":13,},
{"id":{"name":"draw_inputbox","path":"scripts/draw_inputbox/draw_inputbox.yy",},"order":14,},
{"id":{"name":"draw_layericon","path":"scripts/draw_layericon/draw_layericon.yy",},"order":15,},
{"id":{"name":"draw_macroicon","path":"scripts/draw_macroicon/draw_macroicon.yy",},"order":16,},
{"id":{"name":"obj_presence","path":"objects/obj_presence/obj_presence.yy",},"order":7,},
{"id":{"name":"draw_loading","path":"scripts/draw_loading/draw_loading.yy",},"order":17,},
{"id":{"name":"get_execution_command","path":"scripts/get_execution_command/get_execution_command.yy",},"order":18,},
{"id":{"name":"draw_downloadprogress","path":"scripts/draw_downloadprogress/draw_downloadprogress.yy",},"order":18,},
{"id":{"name":"draw_radiobox","path":"scripts/draw_radiobox/draw_radiobox.yy",},"order":19,},
{"id":{"name":"fnt_src_info_med","path":"fonts/fnt_src_info_med/fnt_src_info_med.yy",},"order":3,},
{"id":{"name":"draw_separator","path":"scripts/draw_separator/draw_separator.yy",},"order":20,},
{"id":{"name":"pygml","path":"extensions/pygml/pygml.yy",},"order":4,},
{"id":{"name":"draw_tab","path":"scripts/draw_tab/draw_tab.yy",},"order":21,},
{"id":{"name":"draw_text_center","path":"scripts/draw_text_center/draw_text_center.yy",},"order":22,},
{"id":{"name":"fnt_src_info_big_hires","path":"fonts/fnt_src_info_big_hires/fnt_src_info_big_hires.yy",},"order":2,},
{"id":{"name":"draw_text_edit","path":"scripts/draw_text_edit/draw_text_edit.yy",},"order":23,},
{"id":{"name":"draw_textarea","path":"scripts/draw_textarea/draw_textarea.yy",},"order":24,},
{"id":{"name":"draw_window","path":"scripts/draw_window/draw_window.yy",},"order":25,},
{"id":{"name":"window_setnormal","path":"scripts/window_setnormal/window_setnormal.yy",},"order":4,},
{"id":{"name":"icon","path":"scripts/icon/icon.yy",},"order":26,},
{"id":{"name":"draw_theme_color","path":"scripts/draw_theme_color/draw_theme_color.yy",},"order":27,},
{"id":{"name":"swap_text_edit","path":"scripts/swap_text_edit/swap_text_edit.yy",},"order":28,},
{"id":{"name":"draw_text_url","path":"scripts/draw_text_url/draw_text_url.yy",},"order":29,},
{"id":{"name":"spr_minecraft_f_hires","path":"sprites/spr_minecraft_f_hires/spr_minecraft_f_hires.yy",},"order":10,},
{"id":{"name":"audio_file_add","path":"scripts/audio_file_add/audio_file_add.yy",},"order":0,},
{"id":{"name":"audio_file_decode","path":"scripts/audio_file_decode/audio_file_decode.yy",},"order":1,},
{"id":{"name":"Taskbar","path":"extensions/Taskbar/Taskbar.yy",},"order":1,},
{"id":{"name":"fnt_wslui_bold","path":"fonts/fnt_wslui_bold/fnt_wslui_bold.yy",},"order":1,},
{"id":{"name":"audio_sound_add","path":"scripts/audio_sound_add/audio_sound_add.yy",},"order":2,},
{"id":{"name":"audio_start","path":"scripts/audio_start/audio_start.yy",},"order":3,},
{"id":{"name":"audio_combine","path":"scripts/audio_combine/audio_combine.yy",},"order":4,},
{"id":{"name":"directory_create_lib","path":"scripts/directory_create_lib/directory_create_lib.yy",},"order":0,},
{"id":{"name":"directory_delete_lib","path":"scripts/directory_delete_lib/directory_delete_lib.yy",},"order":1,},
{"id":{"name":"directory_exists_lib","path":"scripts/directory_exists_lib/directory_exists_lib.yy",},"order":2,},
{"id":{"name":"spr_tooltip_sl_middle_hires","path":"sprites/spr_tooltip_sl_middle_hires/spr_tooltip_sl_middle_hires.yy",},"order":4,},
{"id":{"name":"execute","path":"scripts/execute/execute.yy",},"order":3,},
{"id":{"name":"spr_acrylic_texture","path":"sprites/spr_acrylic_texture/spr_acrylic_texture.yy",},"order":42,},
{"id":{"name":"NekoPresence","path":"extensions/NekoPresence/NekoPresence.yy",},"order":0,},
{"id":{"name":"file_exists_lib","path":"scripts/file_exists_lib/file_exists_lib.yy",},"order":4,},
{"id":{"name":"file_rename_lib","path":"scripts/file_rename_lib/file_rename_lib.yy",},"order":5,},
{"id":{"name":"spr_scrollbar_v_bar_down_hires","path":"sprites/spr_scrollbar_v_bar_down_hires/spr_scrollbar_v_bar_down_hires.yy",},"order":5,},
{"id":{"name":"files_delete_lib","path":"scripts/files_delete_lib/files_delete_lib.yy",},"order":6,},
{"id":{"name":"spr_tooltip_ml_middle_hires","path":"sprites/spr_tooltip_ml_middle_hires/spr_tooltip_ml_middle_hires.yy",},"order":4,},
{"id":{"name":"files_copy_lib","path":"scripts/files_copy_lib/files_copy_lib.yy",},"order":7,},
{"id":{"name":"spr_numbers","path":"sprites/spr_numbers/spr_numbers.yy",},"order":7,},
{"id":{"name":"window_set_icon","path":"extensions/window_set_icon/window_set_icon.yy",},"order":4,},
{"id":{"name":"draw_window_sound_import","path":"scripts/draw_window_sound_import/draw_window_sound_import.yy",},"order":31,},
{"id":{"name":"gzunzip","path":"scripts/gzunzip/gzunzip.yy",},"order":8,},
{"id":{"name":"gzzip","path":"scripts/gzzip/gzzip.yy",},"order":9,},
{"id":{"name":"instrument_change","path":"scripts/instrument_change/instrument_change.yy",},"order":5,},
{"id":{"name":"try_compress_selection","path":"scripts/try_compress_selection/try_compress_selection.yy",},"order":31,},
{"id":{"name":"open_url","path":"scripts/open_url/open_url.yy",},"order":10,},
{"id":{"name":"window_minimize","path":"scripts/window_minimize/window_minimize.yy",},"order":3,},
{"id":{"name":"program_path","path":"scripts/program_path/program_path.yy",},"order":11,},
{"id":{"name":"midi_input_devices","path":"scripts/midi_input_devices/midi_input_devices.yy",},"order":0,},
{"id":{"name":"midi_input_device_name","path":"scripts/midi_input_device_name/midi_input_device_name.yy",},"order":1,},
{"id":{"name":"midi_input_key_presses","path":"scripts/midi_input_key_presses/midi_input_key_presses.yy",},"order":2,},
{"id":{"name":"spr_inputbox_f_middle","path":"sprites/spr_inputbox_f_middle/spr_inputbox_f_middle.yy",},"order":1,},
{"id":{"name":"midi_input_key_press_note","path":"scripts/midi_input_key_press_note/midi_input_key_press_note.yy",},"order":3,},
{"id":{"name":"midi_input_key_press_velocity","path":"scripts/midi_input_key_press_velocity/midi_input_key_press_velocity.yy",},"order":4,},
{"id":{"name":"midi_input_key_press_time","path":"scripts/midi_input_key_press_time/midi_input_key_press_time.yy",},"order":5,},
{"id":{"name":"spr_tempobox_hires","path":"sprites/spr_tempobox_hires/spr_tempobox_hires.yy",},"order":46,},
{"id":{"name":"midi_input_key_releases","path":"scripts/midi_input_key_releases/midi_input_key_releases.yy",},"order":6,},
{"id":{"name":"midi_input_key_release_note","path":"scripts/midi_input_key_release_note/midi_input_key_release_note.yy",},"order":7,},
{"id":{"name":"midi_input_key_release_time","path":"scripts/midi_input_key_release_time/midi_input_key_release_time.yy",},"order":8,},
{"id":{"name":"draw_accent_init","path":"scripts/draw_accent_init/draw_accent_init.yy",},"order":33,},
{"id":{"name":"spr_scrollbar_h_button_right_hires","path":"sprites/spr_scrollbar_h_button_right_hires/spr_scrollbar_h_button_right_hires.yy",},"order":3,},
{"id":{"name":"spr_back","path":"sprites/spr_back/spr_back.yy",},"order":39,},
{"id":{"name":"midi_input_instrument","path":"scripts/midi_input_instrument/midi_input_instrument.yy",},"order":9,},
{"id":{"name":"midi_input_pitch_wheel","path":"scripts/midi_input_pitch_wheel/midi_input_pitch_wheel.yy",},"order":10,},
{"id":{"name":"midi_input_pedal","path":"scripts/midi_input_pedal/midi_input_pedal.yy",},"order":11,},
{"id":{"name":"midi_input_sound_controller","path":"scripts/midi_input_sound_controller/midi_input_sound_controller.yy",},"order":12,},
{"id":{"name":"midi_input_control","path":"scripts/midi_input_control/midi_input_control.yy",},"order":13,},
{"id":{"name":"midi_input_set_key","path":"scripts/midi_input_set_key/midi_input_set_key.yy",},"order":14,},
{"id":{"name":"spr_icons_col_hires","path":"sprites/spr_icons_col_hires/spr_icons_col_hires.yy",},"order":10,},
{"id":{"name":"window_maximize","path":"scripts/window_maximize/window_maximize.yy",},"order":0,},
{"id":{"name":"window_set_focus","path":"scripts/window_set_focus/window_set_focus.yy",},"order":1,},
{"id":{"name":"message_yesnocancel","path":"scripts/message_yesnocancel/message_yesnocancel.yy",},"order":2,},
{"id":{"name":"fnt_src_info_med_bold","path":"fonts/fnt_src_info_med_bold/fnt_src_info_med_bold.yy",},"order":4,},
{"id":{"name":"lib_init","path":"scripts/lib_init/lib_init.yy",},"order":4,},
{"id":{"name":"import_midi","path":"scripts/import_midi/import_midi.yy",},"order":0,},
{"id":{"name":"fnt_wslui_info_med_hires","path":"fonts/fnt_wslui_info_med_hires/fnt_wslui_info_med_hires.yy",},"order":3,},
{"id":{"name":"init_midi","path":"scripts/init_midi/init_midi.yy",},"order":1,},
{"id":{"name":"midi_add_note","path":"scripts/midi_add_note/midi_add_note.yy",},"order":2,},
{"id":{"name":"spr_value","path":"sprites/spr_value/spr_value.yy",},"order":41,},
{"id":{"name":"midi_instruments","path":"scripts/midi_instruments/midi_instruments.yy",},"order":3,},
{"id":{"name":"open_midi","path":"scripts/open_midi/open_midi.yy",},"order":4,},
{"id":{"name":"fnt_src","path":"fonts/fnt_src/fnt_src.yy",},"order":0,},
{"id":{"name":"reset_midi","path":"scripts/reset_midi/reset_midi.yy",},"order":5,},
{"id":{"name":"region_code_get","path":"scripts/region_code_get/region_code_get.yy",},"order":0,},
{"id":{"name":"fnt_src_info_med_hires","path":"fonts/fnt_src_info_med_hires/fnt_src_info_med_hires.yy",},"order":3,},
{"id":{"name":"region_code_load","path":"scripts/region_code_load/region_code_load.yy",},"order":1,},
{"id":{"name":"select_all","path":"scripts/select_all/select_all.yy",},"order":2,},
{"id":{"name":"select_outside","path":"scripts/select_outside/select_outside.yy",},"order":3,},
{"id":{"name":"select_custom","path":"scripts/select_custom/select_custom.yy",},"order":4,},
{"id":{"name":"selection_add","path":"scripts/selection_add/selection_add.yy",},"order":5,},
{"id":{"name":"selection_changeins","path":"scripts/selection_changeins/selection_changeins.yy",},"order":6,},
{"id":{"name":"selection_changekey","path":"scripts/selection_changekey/selection_changekey.yy",},"order":7,},
{"id":{"name":"selection_changevel","path":"scripts/selection_changevel/selection_changevel.yy",},"order":8,},
{"id":{"name":"selection_changepan","path":"scripts/selection_changepan/selection_changepan.yy",},"order":9,},
{"id":{"name":"obj_removeeff","path":"objects/obj_removeeff/obj_removeeff.yy",},"order":8,},
{"id":{"name":"selection_changepit","path":"scripts/selection_changepit/selection_changepit.yy",},"order":10,},
{"id":{"name":"selection_setkey","path":"scripts/selection_setkey/selection_setkey.yy",},"order":11,},
{"id":{"name":"selection_setvel","path":"scripts/selection_setvel/selection_setvel.yy",},"order":12,},
{"id":{"name":"selection_setpan","path":"scripts/selection_setpan/selection_setpan.yy",},"order":13,},
{"id":{"name":"selection_setpit","path":"scripts/selection_setpit/selection_setpit.yy",},"order":14,},
{"id":{"name":"selection_change","path":"scripts/selection_change/selection_change.yy",},"order":15,},
{"id":{"name":"selection_code_update","path":"scripts/selection_code_update/selection_code_update.yy",},"order":16,},
{"id":{"name":"spr_textbox_f","path":"sprites/spr_textbox_f/spr_textbox_f.yy",},"order":34,},
{"id":{"name":"selection_delete","path":"scripts/selection_delete/selection_delete.yy",},"order":17,},
{"id":{"name":"selection_draw","path":"scripts/selection_draw/selection_draw.yy",},"order":18,},
{"id":{"name":"selection_expand","path":"scripts/selection_expand/selection_expand.yy",},"order":19,},
{"id":{"name":"selection_compress","path":"scripts/selection_compress/selection_compress.yy",},"order":20,},
{"id":{"name":"selection_invert","path":"scripts/selection_invert/selection_invert.yy",},"order":21,},
{"id":{"name":"selection_load","path":"scripts/selection_load/selection_load.yy",},"order":22,},
{"id":{"name":"selection_load_ext","path":"scripts/selection_load_ext/selection_load_ext.yy",},"order":23,},
{"id":{"name":"fnt_src_bold","path":"fonts/fnt_src_bold/fnt_src_bold.yy",},"order":1,},
{"id":{"name":"selection_place","path":"scripts/selection_place/selection_place.yy",},"order":24,},
{"id":{"name":"selection_remove","path":"scripts/selection_remove/selection_remove.yy",},"order":25,},
{"id":{"name":"spr_tabsel","path":"sprites/spr_tabsel/spr_tabsel.yy",},"order":43,},
{"id":{"name":"selection_transpose","path":"scripts/selection_transpose/selection_transpose.yy",},"order":26,},
{"id":{"name":"selection_trim","path":"scripts/selection_trim/selection_trim.yy",},"order":27,},
{"id":{"name":"selection_to_array","path":"scripts/selection_to_array/selection_to_array.yy",},"order":28,},
{"id":{"name":"spr_macroicons_hires","path":"sprites/spr_macroicons_hires/spr_macroicons_hires.yy",},"order":47,},
{"id":{"name":"check_custom_instrument","path":"scripts/check_custom_instrument/check_custom_instrument.yy",},"order":29,},
{"id":{"name":"spr_layericons_f_hires","path":"sprites/spr_layericons_f_hires/spr_layericons_f_hires.yy",},"order":48,},
{"id":{"name":"array_to_selection","path":"scripts/array_to_selection/array_to_selection.yy",},"order":30,},
{"id":{"name":"add_layer","path":"scripts/add_layer/add_layer.yy",},"order":0,},
{"id":{"name":"remove_layer","path":"scripts/remove_layer/remove_layer.yy",},"order":1,},
{"id":{"name":"spr_donate","path":"sprites/spr_donate/spr_donate.yy",},"order":55,},
{"id":{"name":"shift_layers","path":"scripts/shift_layers/shift_layers.yy",},"order":2,},
{"id":{"name":"calculate_locked_layers","path":"scripts/calculate_locked_layers/calculate_locked_layers.yy",},"order":3,},
{"id":{"name":"draw_msg","path":"scripts/draw_msg/draw_msg.yy",},"order":31,},
{"id":{"name":"macro_chorus","path":"scripts/macro_chorus/macro_chorus.yy",},"order":0,},
{"id":{"name":"macro_velocitylfo","path":"scripts/macro_velocitylfo/macro_velocitylfo.yy",},"order":1,},
{"id":{"name":"macro_vibrato","path":"scripts/macro_vibrato/macro_vibrato.yy",},"order":2,},
{"id":{"name":"macro_fadein","path":"scripts/macro_fadein/macro_fadein.yy",},"order":3,},
{"id":{"name":"macro_fadeout","path":"scripts/macro_fadeout/macro_fadeout.yy",},"order":4,},
{"id":{"name":"macro_tremolo","path":"scripts/macro_tremolo/macro_tremolo.yy",},"order":5,},
{"id":{"name":"macro_tremolo_fadein","path":"scripts/macro_tremolo_fadein/macro_tremolo_fadein.yy",},"order":6,},
{"id":{"name":"macro_tremolo_fadeout","path":"scripts/macro_tremolo_fadeout/macro_tremolo_fadeout.yy",},"order":7,},
{"id":{"name":"macro_replacekey","path":"scripts/macro_replacekey/macro_replacekey.yy",},"order":8,},
{"id":{"name":"macro_reset","path":"scripts/macro_reset/macro_reset.yy",},"order":9,},
{"id":{"name":"add_block","path":"scripts/add_block/add_block.yy",},"order":3,},
{"id":{"name":"add_block_manual","path":"scripts/add_block_manual/add_block_manual.yy",},"order":4,},
{"id":{"name":"spr_icons_col","path":"sprites/spr_icons_col/spr_icons_col.yy",},"order":8,},
{"id":{"name":"add_block_select","path":"scripts/add_block_select/add_block_select.yy",},"order":5,},
{"id":{"name":"change_block","path":"scripts/change_block/change_block.yy",},"order":6,},
{"id":{"name":"change_block_manual","path":"scripts/change_block_manual/change_block_manual.yy",},"order":7,},
{"id":{"name":"spr_inputbox_n_left_hires","path":"sprites/spr_inputbox_n_left_hires/spr_inputbox_n_left_hires.yy",},"order":3,},
{"id":{"name":"draw_block","path":"scripts/draw_block/draw_block.yy",},"order":8,},
{"id":{"name":"blocks_set_instruments","path":"scripts/blocks_set_instruments/blocks_set_instruments.yy",},"order":9,},
{"id":{"name":"draw_acrylic_texture","path":"scripts/draw_acrylic_texture/draw_acrylic_texture.yy",},"order":38,},
{"id":{"name":"fnt_wslui_info_big_hires","path":"fonts/fnt_wslui_info_big_hires/fnt_wslui_info_big_hires.yy",},"order":2,},
{"id":{"name":"open_song_nbs","path":"scripts/open_song_nbs/open_song_nbs.yy",},"order":16,},
{"id":{"name":"remove_block","path":"scripts/remove_block/remove_block.yy",},"order":10,},
{"id":{"name":"selection_expand_layers","path":"scripts/selection_expand_layers/selection_expand_layers.yy",},"order":37,},
{"id":{"name":"remove_block_manual","path":"scripts/remove_block_manual/remove_block_manual.yy",},"order":11,},
{"id":{"name":"scr_HSBtoRGB","path":"scripts/scr_HSBtoRGB/scr_HSBtoRGB.yy",},"order":7,},
{"id":{"name":"spr_tooltip_sl_left_hires","path":"sprites/spr_tooltip_sl_left_hires/spr_tooltip_sl_left_hires.yy",},"order":3,},
{"id":{"name":"remove_block_select","path":"scripts/remove_block_select/remove_block_select.yy",},"order":12,},
{"id":{"name":"update_songsize","path":"scripts/update_songsize/update_songsize.yy",},"order":13,},
{"id":{"name":"toggle_playing","path":"scripts/toggle_playing/toggle_playing.yy",},"order":14,},
{"id":{"name":"play_sound","path":"scripts/play_sound/play_sound.yy",},"order":15,},
{"id":{"name":"save_song_zip","path":"scripts/save_song_zip/save_song_zip.yy",},"order":17,},
{"id":{"name":"remove_emitters","path":"scripts/remove_emitters/remove_emitters.yy",},"order":16,},
{"id":{"name":"spr_scrollbar_h_bar_right_hires","path":"sprites/spr_scrollbar_h_bar_right_hires/spr_scrollbar_h_bar_right_hires.yy",},"order":6,},
{"id":{"name":"get_mode_actions","path":"scripts/get_mode_actions/get_mode_actions.yy",},"order":17,},
{"id":{"name":"mode_action","path":"scripts/mode_action/mode_action.yy",},"order":18,},
{"id":{"name":"fnt_wslui_small_bold_hires","path":"fonts/fnt_wslui_small_bold_hires/fnt_wslui_small_bold_hires.yy",},"order":7,},
{"id":{"name":"draw_window_track_export","path":"scripts/draw_window_track_export/draw_window_track_export.yy",},"order":30,},
{"id":{"name":"TAG_Byte","path":"scripts/TAG_Byte/TAG_Byte.yy",},"order":0,},
{"id":{"name":"TAG_Compound","path":"scripts/TAG_Compound/TAG_Compound.yy",},"order":1,},
{"id":{"name":"TAG_Double","path":"scripts/TAG_Double/TAG_Double.yy",},"order":2,},
{"id":{"name":"TAG_End","path":"scripts/TAG_End/TAG_End.yy",},"order":3,},
{"id":{"name":"TAG_Float","path":"scripts/TAG_Float/TAG_Float.yy",},"order":4,},
{"id":{"name":"TAG_Int","path":"scripts/TAG_Int/TAG_Int.yy",},"order":5,},
{"id":{"name":"TAG_Short","path":"scripts/TAG_Short/TAG_Short.yy",},"order":6,},
{"id":{"name":"block_repeater_track","path":"scripts/block_repeater_track/block_repeater_track.yy",},"order":2,},
{"id":{"name":"set_msg","path":"scripts/set_msg/set_msg.yy",},"order":11,},
{"id":{"name":"TAG_String","path":"scripts/TAG_String/TAG_String.yy",},"order":7,},
{"id":{"name":"TAG_List","path":"scripts/TAG_List/TAG_List.yy",},"order":8,},
{"id":{"name":"TAG_Byte_Array","path":"scripts/TAG_Byte_Array/TAG_Byte_Array.yy",},"order":9,},
{"id":{"name":"block_circuit","path":"scripts/block_circuit/block_circuit.yy",},"order":1,},
{"id":{"name":"control_networking","path":"scripts/control_networking/control_networking.yy",},"order":17,},
{"id":{"name":"block_get_name","path":"scripts/block_get_name/block_get_name.yy",},"order":2,},
{"id":{"name":"block_other","path":"scripts/block_other/block_other.yy",},"order":3,},
{"id":{"name":"block_repeater","path":"scripts/block_repeater/block_repeater.yy",},"order":4,},
{"id":{"name":"block_walkway","path":"scripts/block_walkway/block_walkway.yy",},"order":5,},
{"id":{"name":"fnt_wslui_small_hires","path":"fonts/fnt_wslui_small_hires/fnt_wslui_small_hires.yy",},"order":6,},
{"id":{"name":"calculate_size","path":"scripts/calculate_size/calculate_size.yy",},"order":6,},
{"id":{"name":"fnt_src_small","path":"fonts/fnt_src_small/fnt_src_small.yy",},"order":6,},
{"id":{"name":"reset_schematic_export","path":"scripts/reset_schematic_export/reset_schematic_export.yy",},"order":7,},
{"id":{"name":"spr_scrollbar_h_button_left_hires","path":"sprites/spr_scrollbar_h_button_left_hires/spr_scrollbar_h_button_left_hires.yy",},"order":2,},
{"id":{"name":"schematic_export","path":"scripts/schematic_export/schematic_export.yy",},"order":8,},
{"id":{"name":"branch_export_old","path":"scripts/branch_export_old/branch_export_old.yy",},"order":9,},
{"id":{"name":"lang_en_us","path":"scripts/lang_en_us/lang_en_us.yy",},"order":0,},
{"id":{"name":"schematic_height","path":"scripts/schematic_height/schematic_height.yy",},"order":10,},
{"id":{"name":"spr_inputbox_n_middle_hires","path":"sprites/spr_inputbox_n_middle_hires/spr_inputbox_n_middle_hires.yy",},"order":4,},
{"id":{"name":"schematic_length","path":"scripts/schematic_length/schematic_length.yy",},"order":11,},
{"id":{"name":"schematic_width","path":"scripts/schematic_width/schematic_width.yy",},"order":12,},
{"id":{"name":"branch_export","path":"scripts/branch_export/branch_export.yy",},"order":13,},
{"id":{"name":"block_get_ins","path":"scripts/block_get_ins/block_get_ins.yy",},"order":0,},
{"id":{"name":"get_repeater_delay","path":"scripts/get_repeater_delay/get_repeater_delay.yy",},"order":1,},
{"id":{"name":"get_repeater_direction","path":"scripts/get_repeater_direction/get_repeater_direction.yy",},"order":2,},
{"id":{"name":"buffer_pos_char","path":"scripts/buffer_pos_char/buffer_pos_char.yy",},"order":10,},
{"id":{"name":"id_isblock","path":"scripts/id_isblock/id_isblock.yy",},"order":3,},
{"id":{"name":"open_schematic","path":"scripts/open_schematic/open_schematic.yy",},"order":4,},
{"id":{"name":"read_tags","path":"scripts/read_tags/read_tags.yy",},"order":5,},
{"id":{"name":"sch_block_read","path":"scripts/sch_block_read/sch_block_read.yy",},"order":2,},
{"id":{"name":"sch_block_write","path":"scripts/sch_block_write/sch_block_write.yy",},"order":3,},
{"id":{"name":"sch_data_read","path":"scripts/sch_data_read/sch_data_read.yy",},"order":4,},
{"id":{"name":"sch_data_write","path":"scripts/sch_data_write/sch_data_write.yy",},"order":5,},
{"id":{"name":"draw_window_set_accent","path":"scripts/draw_window_set_accent/draw_window_set_accent.yy",},"order":29,},
{"id":{"name":"fnt_src_hires","path":"fonts/fnt_src_hires/fnt_src_hires.yy",},"order":1,},
{"id":{"name":"schematic_start","path":"scripts/schematic_start/schematic_start.yy",},"order":0,},
{"id":{"name":"buffer_substr_copy","path":"scripts/buffer_substr_copy/buffer_substr_copy.yy",},"order":11,},
{"id":{"name":"fnt_src_bold_hires","path":"fonts/fnt_src_bold_hires/fnt_src_bold_hires.yy",},"order":0,},
{"id":{"name":"schematic_create","path":"scripts/schematic_create/schematic_create.yy",},"order":1,},
{"id":{"name":"spr_tabbuttons_f","path":"sprites/spr_tabbuttons_f/spr_tabbuttons_f.yy",},"order":38,},
{"id":{"name":"fnt_wslui_info_med","path":"fonts/fnt_wslui_info_med/fnt_wslui_info_med.yy",},"order":3,},
{"id":{"name":"instrument_swap","path":"scripts/instrument_swap/instrument_swap.yy",},"order":6,},
{"id":{"name":"schematic_load","path":"scripts/schematic_load/schematic_load.yy",},"order":2,},
{"id":{"name":"schematic_size","path":"scripts/schematic_size/schematic_size.yy",},"order":3,},
{"id":{"name":"schematic_cell_set","path":"scripts/schematic_cell_set/schematic_cell_set.yy",},"order":4,},
{"id":{"name":"schematic_block_set","path":"scripts/schematic_block_set/schematic_block_set.yy",},"order":5,},
{"id":{"name":"schematic_block_get","path":"scripts/schematic_block_get/schematic_block_get.yy",},"order":6,},
{"id":{"name":"schematic_data_set","path":"scripts/schematic_data_set/schematic_data_set.yy",},"order":7,},
{"id":{"name":"schematic_data_get","path":"scripts/schematic_data_get/schematic_data_get.yy",},"order":8,},
{"id":{"name":"schematic_count","path":"scripts/schematic_count/schematic_count.yy",},"order":9,},
{"id":{"name":"schematic_replace","path":"scripts/schematic_replace/schematic_replace.yy",},"order":10,},
{"id":{"name":"track_export","path":"scripts/track_export/track_export.yy",},"order":14,},
{"id":{"name":"spr_bigicons_f_hires","path":"sprites/spr_bigicons_f_hires/spr_bigicons_f_hires.yy",},"order":12,},
{"id":{"name":"schematic_line","path":"scripts/schematic_line/schematic_line.yy",},"order":11,},
{"id":{"name":"schematic_fill","path":"scripts/schematic_fill/schematic_fill.yy",},"order":12,},
{"id":{"name":"schematic_fill_hollow","path":"scripts/schematic_fill_hollow/schematic_fill_hollow.yy",},"order":13,},
{"id":{"name":"schematic_save","path":"scripts/schematic_save/schematic_save.yy",},"order":14,},
{"id":{"name":"spr_scrollbar_v_bar_fill_hires","path":"sprites/spr_scrollbar_v_bar_fill_hires/spr_scrollbar_v_bar_fill_hires.yy",},"order":4,},
{"id":{"name":"window_set_darkmode","path":"scripts/window_set_darkmode/window_set_darkmode.yy",},"order":5,},
{"id":{"name":"schematic_destroy","path":"scripts/schematic_destroy/schematic_destroy.yy",},"order":15,},
{"id":{"name":"spr_yesno_f","path":"sprites/spr_yesno_f/spr_yesno_f.yy",},"order":35,},
{"id":{"name":"schematic_end","path":"scripts/schematic_end/schematic_end.yy",},"order":16,},
{"id":{"name":"nbt_string_read","path":"scripts/nbt_string_read/nbt_string_read.yy",},"order":0,},
{"id":{"name":"nbt_string_write","path":"scripts/nbt_string_write/nbt_string_write.yy",},"order":1,},
{"id":{"name":"nbt_tag_end","path":"scripts/nbt_tag_end/nbt_tag_end.yy",},"order":2,},
{"id":{"name":"nbt_tag_byte","path":"scripts/nbt_tag_byte/nbt_tag_byte.yy",},"order":3,},
{"id":{"name":"nbt_tag_short","path":"scripts/nbt_tag_short/nbt_tag_short.yy",},"order":4,},
{"id":{"name":"fnt_src_info_big","path":"fonts/fnt_src_info_big/fnt_src_info_big.yy",},"order":2,},
{"id":{"name":"nbt_tag_int","path":"scripts/nbt_tag_int/nbt_tag_int.yy",},"order":5,},
{"id":{"name":"nbt_tag_float","path":"scripts/nbt_tag_float/nbt_tag_float.yy",},"order":6,},
{"id":{"name":"nbt_tag_double","path":"scripts/nbt_tag_double/nbt_tag_double.yy",},"order":7,},
{"id":{"name":"spr_scrollbar_v_bar_up_hires","path":"sprites/spr_scrollbar_v_bar_up_hires/spr_scrollbar_v_bar_up_hires.yy",},"order":6,},
{"id":{"name":"register_url_protocol","path":"scripts/register_url_protocol/register_url_protocol.yy",},"order":15,},
{"id":{"name":"nbt_tag_byte_array","path":"scripts/nbt_tag_byte_array/nbt_tag_byte_array.yy",},"order":8,},
{"id":{"name":"nbt_tag_list","path":"scripts/nbt_tag_list/nbt_tag_list.yy",},"order":9,},
{"id":{"name":"spr_mp3_exp_f","path":"sprites/spr_mp3_exp_f/spr_mp3_exp_f.yy",},"order":33,},
{"id":{"name":"nbt_tag_string","path":"scripts/nbt_tag_string/nbt_tag_string.yy",},"order":10,},
{"id":{"name":"spr_stereo_f_hires","path":"sprites/spr_stereo_f_hires/spr_stereo_f_hires.yy",},"order":49,},
{"id":{"name":"nbt_tag_compound","path":"scripts/nbt_tag_compound/nbt_tag_compound.yy",},"order":11,},
{"id":{"name":"nbt_tags_read","path":"scripts/nbt_tags_read/nbt_tags_read.yy",},"order":12,},
{"id":{"name":"datapack_export","path":"scripts/datapack_export/datapack_export.yy",},"order":0,},
{"id":{"name":"dat_generate","path":"scripts/dat_generate/dat_generate.yy",},"order":1,},
{"id":{"name":"dat_reset","path":"scripts/dat_reset/dat_reset.yy",},"order":2,},
{"id":{"name":"dat_pitch","path":"scripts/dat_pitch/dat_pitch.yy",},"order":3,},
{"id":{"name":"dat_instrument","path":"scripts/dat_instrument/dat_instrument.yy",},"order":4,},
{"id":{"name":"dat_getpath","path":"scripts/dat_getpath/dat_getpath.yy",},"order":5,},
{"id":{"name":"dat_preview","path":"scripts/dat_preview/dat_preview.yy",},"order":6,},
{"id":{"name":"dat_writefile","path":"scripts/dat_writefile/dat_writefile.yy",},"order":7,},
{"id":{"name":"dat_makefolders","path":"scripts/dat_makefolders/dat_makefolders.yy",},"order":8,},
{"id":{"name":"draw_accent_rainbow","path":"scripts/draw_accent_rainbow/draw_accent_rainbow.yy",},"order":34,},
{"id":{"name":"datapack_getextranotes","path":"scripts/datapack_getextranotes/datapack_getextranotes.yy",},"order":9,},
{"id":{"name":"datapack_getinstextures","path":"scripts/datapack_getinstextures/datapack_getinstextures.yy",},"order":10,},
{"id":{"name":"block_get_namespaced_id","path":"scripts/block_get_namespaced_id/block_get_namespaced_id.yy",},"order":11,},
{"id":{"name":"fnt_main","path":"fonts/fnt_main/fnt_main.yy",},"order":3,},
{"id":{"name":"fnt_mainbold","path":"fonts/fnt_mainbold/fnt_mainbold.yy",},"order":4,},
{"id":{"name":"fnt_small","path":"fonts/fnt_small/fnt_small.yy",},"order":5,},
{"id":{"name":"fnt_smallbold","path":"fonts/fnt_smallbold/fnt_smallbold.yy",},"order":6,},
{"id":{"name":"fnt_info_big","path":"fonts/fnt_info_big/fnt_info_big.yy",},"order":0,},
{"id":{"name":"fnt_info_med","path":"fonts/fnt_info_med/fnt_info_med.yy",},"order":1,},
{"id":{"name":"fnt_info_med_bold","path":"fonts/fnt_info_med_bold/fnt_info_med_bold.yy",},"order":2,},
{"id":{"name":"spr_shadowext","path":"sprites/spr_shadowext/spr_shadowext.yy",},"order":37,},
{"id":{"name":"string_buffer_create","path":"scripts/string_buffer_create/string_buffer_create.yy",},"order":11,},
{"id":{"name":"obj_controller","path":"objects/obj_controller/obj_controller.yy",},"order":0,},
{"id":{"name":"pack_instruments","path":"scripts/pack_instruments/pack_instruments.yy",},"order":7,},
{"id":{"name":"obj_popup","path":"objects/obj_popup/obj_popup.yy",},"order":1,},
{"id":{"name":"obj_menu","path":"objects/obj_menu/obj_menu.yy",},"order":2,},
{"id":{"name":"obj_dummy","path":"objects/obj_dummy/obj_dummy.yy",},"order":3,},
{"id":{"name":"obj_dummy2","path":"objects/obj_dummy2/obj_dummy2.yy",},"order":4,},
{"id":{"name":"spr_frame2_hires","path":"sprites/spr_frame2_hires/spr_frame2_hires.yy",},"order":12,},
{"id":{"name":"obj_instrument","path":"objects/obj_instrument/obj_instrument.yy",},"order":5,},
{"id":{"name":"obj_schematic","path":"objects/obj_schematic/obj_schematic.yy",},"order":6,},
{"id":{"name":"rm_app","path":"rooms/rm_app/rm_app.yy",},"order":0,},
{"id":{"name":"selection_to_array_ext","path":"scripts/selection_to_array_ext/selection_to_array_ext.yy",},"order":33,},
{"id":{"name":"macro_column_count","path":"scripts/macro_column_count/macro_column_count.yy",},"order":10,},
{"id":{"name":"array_grow_then_set","path":"scripts/array_grow_then_set/array_grow_then_set.yy",},"order":12,},
{"id":{"name":"selection_load_from_array","path":"scripts/selection_load_from_array/selection_load_from_array.yy",},"order":36,},
],
"Options": [
{"name":"Linux","path":"options/linux/options_linux.yy",},
{"name":"Windows","path":"options/windows/options_windows.yy",},
{"name":"macOS","path":"options/mac/options_mac.yy",},
{"name":"Main","path":"options/main/options_main.yy",},
{"name":"operagx","path":"options/operagx/options_operagx.yy",},
{"name":"Android","path":"options/android/options_android.yy",},
{"name":"HTML5","path":"options/html5/options_html5.yy",},
{"name":"iOS","path":"options/ios/options_ios.yy",},
{"name":"tvOS","path":"options/tvos/options_tvos.yy",},
],
"defaultScriptType": 1,
"isEcma": false,
"configs": {
"name": "Default",
"children": [],
},
"RoomOrderNodes": [
{"roomId":{"name":"rm_app","path":"rooms/rm_app/rm_app.yy",},},
],
"Folders": [
{"folderPath":"folders/Sprites.yy","order":0,"resourceVersion":"1.0","name":"Sprites","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface.yy","order":0,"resourceVersion":"1.0","name":"Interface","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/scrollbar.yy","order":27,"resourceVersion":"1.0","name":"scrollbar","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/scrollbar/horizontal.yy","order":0,"resourceVersion":"1.0","name":"horizontal","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/scrollbar/horizontal/bar.yy","order":0,"resourceVersion":"1.0","name":"bar","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/scrollbar/horizontal/buttons.yy","order":1,"resourceVersion":"1.0","name":"buttons","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/scrollbar/vertical.yy","order":1,"resourceVersion":"1.0","name":"vertical","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/scrollbar/vertical/bar.yy","order":0,"resourceVersion":"1.0","name":"bar","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/scrollbar/vertical/buttons.yy","order":1,"resourceVersion":"1.0","name":"buttons","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/tooltip.yy","order":28,"resourceVersion":"1.0","name":"tooltip","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/tooltip/single line.yy","order":0,"resourceVersion":"1.0","name":"single line","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/tooltip/multi ine.yy","order":1,"resourceVersion":"1.0","name":"multi ine","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/inputbox.yy","order":29,"resourceVersion":"1.0","name":"inputbox","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/inputbox/normal.yy","order":0,"resourceVersion":"1.0","name":"normal","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/inputbox/selected.yy","order":1,"resourceVersion":"1.0","name":"selected","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Buttons.yy","order":1,"resourceVersion":"1.0","name":"Buttons","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Buttons/icons.yy","order":8,"resourceVersion":"1.0","name":"icons","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Other.yy","order":2,"resourceVersion":"1.0","name":"Other","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/tilesets.yy","order":4,"resourceVersion":"1.0","name":"tilesets","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts.yy","order":60,"resourceVersion":"1.0","name":"Scripts","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Actions.yy","order":1,"resourceVersion":"1.0","name":"Actions","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Controller.yy","order":2,"resourceVersion":"1.0","name":"Controller","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/File.yy","order":3,"resourceVersion":"1.0","name":"File","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/File/Buffer.yy","order":0,"resourceVersion":"1.0","name":"Buffer","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Functions.yy","order":4,"resourceVersion":"1.0","name":"Functions","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Functions/Strings.yy","order":1,"resourceVersion":"1.0","name":"Strings","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Instruments.yy","order":5,"resourceVersion":"1.0","name":"Instruments","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Interface.yy","order":6,"resourceVersion":"1.0","name":"Interface","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Interface/Menu.yy","order":0,"resourceVersion":"1.0","name":"Menu","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Interface/Menu/Popup.yy","order":0,"resourceVersion":"1.0","name":"Popup","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Interface/Windows.yy","order":1,"resourceVersion":"1.0","name":"Windows","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Interface/Piano.yy","order":2,"resourceVersion":"1.0","name":"Piano","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Interface/Scrollbars.yy","order":3,"resourceVersion":"1.0","name":"Scrollbars","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Libraries.yy","order":7,"resourceVersion":"1.0","name":"Libraries","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Libraries/audio.yy","order":0,"resourceVersion":"1.0","name":"audio","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Libraries/file.yy","order":1,"resourceVersion":"1.0","name":"file","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Libraries/midiinput.yy","order":2,"resourceVersion":"1.0","name":"midiinput","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Libraries/window.yy","order":3,"resourceVersion":"1.0","name":"window","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Midi.yy","order":8,"resourceVersion":"1.0","name":"Midi","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Note Blocks.yy","order":9,"resourceVersion":"1.0","name":"Note Blocks","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Note Blocks/Selection.yy","order":0,"resourceVersion":"1.0","name":"Selection","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Note Blocks/Layers.yy","order":1,"resourceVersion":"1.0","name":"Layers","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Note Blocks/Macros.yy","order":2,"resourceVersion":"1.0","name":"Macros","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Schematic.yy","order":10,"resourceVersion":"1.0","name":"Schematic","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Schematic/Export.yy","order":0,"resourceVersion":"1.0","name":"Export","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Schematic/Export/Tags.yy","order":0,"resourceVersion":"1.0","name":"Tags","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Schematic/Import.yy","order":1,"resourceVersion":"1.0","name":"Import","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Schematic/GMSchematic.yy","order":6,"resourceVersion":"1.0","name":"GMSchematic","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Schematic/GMSchematic/NBT.yy","order":17,"resourceVersion":"1.0","name":"NBT","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Datapack.yy","order":11,"resourceVersion":"1.0","name":"Datapack","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Fonts.yy","order":57,"resourceVersion":"1.0","name":"Fonts","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Objects.yy","order":58,"resourceVersion":"1.0","name":"Objects","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Rooms.yy","order":59,"resourceVersion":"1.0","name":"Rooms","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Sprites/Interface/inputbox/focused.yy","order":2,"resourceVersion":"1.0","name":"focused","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Extensions.yy","order":61,"resourceVersion":"1.0","name":"Extensions","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Shaders.yy","order":62,"resourceVersion":"1.0","name":"Shaders","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Languages.yy","order":13,"resourceVersion":"1.0","name":"Languages","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Scripts/Schematic/Export/Track.yy","order":15,"resourceVersion":"1.0","name":"Track","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Fonts/fnt_classic.yy","order":23,"resourceVersion":"1.0","name":"fnt_classic","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Fonts/fnt_src.yy","order":24,"resourceVersion":"1.0","name":"fnt_src","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Fonts/fnt_wslui.yy","order":25,"resourceVersion":"1.0","name":"fnt_wslui","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Fonts/fnt_src_hires.yy","order":26,"resourceVersion":"1.0","name":"fnt_src_hires","tags":[],"resourceType":"GMFolder",},
{"folderPath":"folders/Fonts/fnt_wslui_hires.yy","order":27,"resourceVersion":"1.0","name":"fnt_wslui_hires","tags":[],"resourceType":"GMFolder",},
],
"AudioGroups": [
{"targets":-1,"resourceVersion":"1.3","name":"audiogroup_default","resourceType":"GMAudioGroup",},
],
"TextureGroups": [
{"isScaled":false,"compressFormat":"bz2","autocrop":true,"border":2,"mipsToGenerate":0,"groupParent":null,"targets":-1,"resourceVersion":"1.3","name":"Default","resourceType":"GMTextureGroup",},
{"isScaled":true,"compressFormat":"bz2","autocrop":true,"border":2,"mipsToGenerate":0,"groupParent":null,"targets":-1,"resourceVersion":"1.3","name":"Fonts","resourceType":"GMTextureGroup",},
],
"IncludedFiles": [
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"banjo.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"bdrum.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"bell.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/Custom","resourceVersion":"1.0","name":"block.portal.trigger.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"bit.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"dbass.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"click.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"guitar.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"cow_bell.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"didgeridoo.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"harp.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"iron_xylophone.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/Custom","resourceVersion":"1.0","name":"entity.firework.blast_far.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"icechime.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"sdrum.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/Custom","resourceVersion":"1.0","name":"entity.experience_orb.pickup.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"flute.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"xylobone.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds","resourceVersion":"1.0","name":"pling.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"file.dll","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"gmbinaryfile.dll","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"extranotes.zip","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"instrumenttextures.zip","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"move.bat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Patterns","resourceVersion":"1.0","name":"Drum Example.nbp","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Songs","resourceVersion":"1.0","name":"Megalovania - Super Smash Bros. Ultimate.nbs","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Songs","resourceVersion":"1.0","name":"The Ground's Colour Is Yellow.nbs","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles","resourceVersion":"1.0","name":"ExecuteShell.dll","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles","resourceVersion":"1.0","name":"7za.exe","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/UI","resourceVersion":"1.0","name":"show.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/UI","resourceVersion":"1.0","name":"goback.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/UI","resourceVersion":"1.0","name":"invoke.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/UI","resourceVersion":"1.0","name":"hide.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles","resourceVersion":"1.0","name":"NBS Player Mode.bat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/Custom","resourceVersion":"1.0","name":"block.sand.break.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Songs","resourceVersion":"1.0","name":"Turkish March.nbs","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"wallpaper.bat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"credits.txt","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/UI","resourceVersion":"1.0","name":"metronome_click.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/UI","resourceVersion":"1.0","name":"metronome.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Songs","resourceVersion":"1.0","name":"Nyan Cat.nbs","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Sounds/UI","resourceVersion":"1.0","name":"ding.ogg","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"icon.ico","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"audio.dll","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"midiinput.dll","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data","resourceVersion":"1.0","name":"window.dll","resourceType":"GMIncludedFile",},
{"CopyToMask":0,"filePath":"datafiles/Data/Python","resourceVersion":"1.0","name":".gitignore","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python","resourceVersion":"1.0","name":"audio_export.py","resourceType":"GMIncludedFile",},
{"CopyToMask":0,"filePath":"datafiles/Data/Python","resourceVersion":"1.0","name":"package.py","resourceType":"GMIncludedFile",},
{"CopyToMask":0,"filePath":"datafiles/Data/Python","resourceVersion":"1.0","name":"poetry.lock","resourceType":"GMIncludedFile",},
{"CopyToMask":0,"filePath":"datafiles/Data/Python","resourceVersion":"1.0","name":"poetry.toml","resourceType":"GMIncludedFile",},
{"CopyToMask":0,"filePath":"datafiles/Data/Python","resourceVersion":"1.0","name":"pyproject.toml","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles","resourceVersion":"1.0","name":"ffmpeg.exe","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles","resourceVersion":"1.0","name":"ffprobe.exe","resourceType":"GMIncludedFile",},
{"CopyToMask":0,"filePath":"datafiles/Data/Python","resourceVersion":"1.0","name":"README.md","resourceType":"GMIncludedFile",},
{"CopyToMask":0,"filePath":"datafiles/Data/Python/.vscode","resourceVersion":"1.0","name":"settings.json","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib","resourceVersion":"1.0","name":"site-packages.zip","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"conftest.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"ctypeslib.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"ctypeslib.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"LICENSE.txt","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"dual.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"py.typed","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"setup.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"matlib.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"version.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"_distributor_init.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"_globals.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"_pytesttester.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"_pytesttester.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"_version.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"__init__.cython-30.pxd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"__config__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"__init__.pxd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"__init__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy","resourceVersion":"1.0","name":"__init__.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/.libs","resourceVersion":"1.0","name":"libopenblas_v0.3.21-gcc_8_3_0.dll","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"setup.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"linalg.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_constants.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_array_object.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_creation_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_data_type_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_elementwise_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_dtypes.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_searching_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_manipulation_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_set_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_sorting_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_statistical_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_typing.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"_utility_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api","resourceVersion":"1.0","name":"__init__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"test_array_object.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"test_creation_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"test_data_type_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"test_elementwise_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"test_set_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"test_validation.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"test_sorting_functions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/array_api/tests","resourceVersion":"1.0","name":"__init__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/compat","resourceVersion":"1.0","name":"py3k.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/compat","resourceVersion":"1.0","name":"_inspect.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/compat","resourceVersion":"1.0","name":"setup.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/compat","resourceVersion":"1.0","name":"_pep440.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/compat","resourceVersion":"1.0","name":"__init__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/compat/tests","resourceVersion":"1.0","name":"__init__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/compat/tests","resourceVersion":"1.0","name":"test_compat.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"arrayprint.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"arrayprint.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"cversions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"defchararray.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"defchararray.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"einsumfunc.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"einsumfunc.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"fromnumeric.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"fromnumeric.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"function_base.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"function_base.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"generate_numpy_api.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"getlimits.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"getlimits.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"memmap.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"multiarray.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"multiarray.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"memmap.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"numeric.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"numeric.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"numerictypes.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"numerictypes.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"records.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"overrides.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"records.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"setup.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"setup_common.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"shape_base.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"shape_base.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"umath.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"umath_tests.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_add_newdocs.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_add_newdocs_scalars.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_asarray.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_asarray.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_dtype.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_dtype_ctypes.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_exceptions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_internal.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_internal.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_methods.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_machar.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_multiarray_tests.cp38-win32.pyd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_multiarray_umath.cp38-win32.pyd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_rational_tests.cp38-win32.pyd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_operand_flag_tests.cp38-win32.pyd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_simd.cp38-win32.pyd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_struct_ufunc_tests.cp38-win32.pyd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_string_helpers.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_type_aliases.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_type_aliases.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_ufunc_config.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_ufunc_config.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"_umath_tests.cp38-win32.pyd","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"__init__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core","resourceVersion":"1.0","name":"__init__.pyi","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":".doxyfile","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"arrayobject.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"arrayscalars.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"experimental_dtype_api.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"halffloat.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"multiarray_api.txt","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"ndarrayobject.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"noprefix.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"ndarraytypes.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_1_7_deprecated_api.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_3kcompat.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_common.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_endian.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_cpu.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_interrupt.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_math.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_no_deprecated_api.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"npy_os.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"numpyconfig.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"oldnumeric.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"ufuncobject.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"old_defines.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"ufunc_api.txt","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"utils.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"_neighborhood_iterator_imp.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"__multiarray_api.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"_numpyconfig.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy/libdivide","resourceVersion":"1.0","name":"libdivide.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy","resourceVersion":"1.0","name":"__ufunc_api.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy/libdivide","resourceVersion":"1.0","name":"LICENSE.txt","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy/random","resourceVersion":"1.0","name":"bitgen.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/include/numpy/random","resourceVersion":"1.0","name":"distributions.h","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/lib/npy-pkg-config","resourceVersion":"1.0","name":"mlib.ini","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/lib","resourceVersion":"1.0","name":"npymath.lib","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/lib/npy-pkg-config","resourceVersion":"1.0","name":"npymath.ini","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_abc.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_argparse.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_api.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_arraymethod.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_arrayprint.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_array_interface.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_array_coercion.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_casting_floatingpoint_errors.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_casting_unittests.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_cpu_dispatcher.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_cpu_features.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_conversion_utils.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_cython.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_custom_dtypes.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_defchararray.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_datetime.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_deprecations.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_dlpack.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_dtype.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_errstate.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_einsum.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_function_base.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_extint128.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_getlimits.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_half.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_hashtable.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_indexerrors.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_indexing.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_item_selection.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_limited_api.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_longdouble.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_machar.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_memmap.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_mem_overlap.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_mem_policy.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_multiarray.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_nditer.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_nep50_promotions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_numeric.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_overrides.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_numerictypes.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_records.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_print.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_protocols.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_regression.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_scalarbuffer.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_scalarinherit.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_scalarmath.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_scalarprint.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_scalar_ctors.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_shape_base.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_scalar_methods.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_simd.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_simd_module.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_strings.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_ufunc.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_umath_complex.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_umath.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_umath_accuracy.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test_unicode.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"test__exceptions.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"_locales.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests","resourceVersion":"1.0","name":"__init__.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"generate_umath_validation_data.cpp","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"astype_copy.pkl","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-arccos.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"recarray_from_file.fits","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-arcsin.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-arccosh.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-arcsinh.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-arctan.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-arctanh.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-cbrt.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-cos.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-cosh.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-exp.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-exp2.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-expm1.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-log.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-log10.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-log2.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-log1p.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-README.txt","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-sin.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-tan.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-sinh.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/data","resourceVersion":"1.0","name":"umath-validation-set-tanh.csv","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/examples/cython","resourceVersion":"1.0","name":"checks.pyx","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/examples/cython","resourceVersion":"1.0","name":"setup.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/examples/limited_api","resourceVersion":"1.0","name":"limited_api.c","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/core/tests/examples/limited_api","resourceVersion":"1.0","name":"setup.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"armccompiler.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"ccompiler.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"ccompiler_opt.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"conv_template.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"core.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"cpuinfo.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"exec_command.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"extension.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"from_template.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"lib2def.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"intelccompiler.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"log.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"line_endings.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"mingw32ccompiler.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"misc_util.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"msvc9compiler.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"msvccompiler.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"numpy_distribution.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"npy_pkg_config.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"setup.pyc","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Data/Python/Lib/site-packages/numpy/distutils","resourceVersion":"1.0","name":"pathccompiler.pyc","resourceType":"GMIncludedFile",},