-
Notifications
You must be signed in to change notification settings - Fork 0
/
ダンス.RM4
executable file
·1121 lines (966 loc) · 75.9 KB
/
ダンス.RM4
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
<medit>
<format data="2"/>
</medit>
<medit>
<block name="" type="3" xpos="21" ypos="8" bluearrow="6" redarrow="0"/>
</medit>
<jump adr="0x00012df3"/>
<medit>
<block name="POSE 0" type="0" xpos="173" ypos="27" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001a</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x000005c9"/>
<medit>
<block name=" END " type="4" xpos="50" ypos="2028" bluearrow="16" redarrow="46"/>
</medit>
<wait size="1" adr="0x0b43"/>
<return/>
<medit>
<block name="<< SOUND >>" type="6" xpos="266" ypos="33" bluearrow="6" redarrow="6"/>
</medit>
<wait size="1" adr="0x0b43"/>
<play filename="voice\ダンス音楽.wav"/>
<medit>
<block name="リズム" type="0" xpos="214" ypos="83" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0x0014,0x0064,0xffec,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="" type="0" xpos="215" ypos="134" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0xffb0,0x0064,0x0050,0x0064,0x0000,0x0064,0x0000,0x0064,0xff7e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0082,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="" type="0" xpos="290" ypos="84" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0x0014,0x0064,0xffec,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="" type="0" xpos="290" ypos="143" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0xffb0,0x0064,0x0050,0x0064,0x0000,0x0064,0x0000,0x0064,0xff7e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0082,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000ca4c"/>
<medit>
<block name="右腕リズム" type="0" xpos="372" ypos="204" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffbf,0x0064,0xffce,0x0064,0x0036,0x0064,0x0040,0x0064,0xfeea,0x0064,0xfd58,0x0064,0x0066,0x0064,0xfeca,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="" type="0" xpos="373" ypos="250" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffc9,0x0064,0x000a,0x0064,0x0032,0x0064,0xffee,0x0064,0xfeea,0x0064,0xfbd1,0x0064,0x011e,0x0064,0xffb4,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="" type="0" xpos="447" ypos="202" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffbf,0x0064,0xffce,0x0064,0x0036,0x0064,0x0040,0x0064,0xfeea,0x0064,0xfbd1,0x0064,0x011e,0x0064,0xfecb,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="" type="0" xpos="448" ypos="248" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffc9,0x0064,0x000a,0x0064,0x0032,0x0064,0xffee,0x0064,0xfeea,0x0064,0xfbd1,0x0064,0x011e,0x0064,0xffb4,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000832c"/>
<medit>
<block name="腕開左右" type="0" xpos="27" ypos="536" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0023,0x0064,0xfff1,0x0064,0xfff5,0x0064,0xffc4,0x0064,0xffda,0x0064,0xffeb,0x0064,0x0005,0x0064,0x0002,0x0064,0x001f,0x0064,0x0023,0x0064,0xffc9,0x0064,
0x0030,0x0064,0x0014,0x0064,0xffec,0x0064,0x02e9,0x0064,0x00c3,0x0064,0x012a,0x0064,0xfd8e,0x0064,0x0002,0x0064,0xfe01,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="30" ypos="581" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0017,0x0064,0xfff8,0x0064,0xfff8,0x0064,0xffc9,0x0064,0xffdf,0x0064,0xffec,0x0064,0xfffd,0x0064,0x0001,0x0064,0x001c,0x0064,0x001f,0x0064,0xffcc,0x0064,
0x002f,0x0064,0x0014,0x0064,0xffea,0x0064,0x02e2,0x0064,0x00c3,0x0064,0x0123,0x0064,0xfd93,0x0064,0x0000,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="111" ypos="537" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x00b7,0x0064,0xffcf,0x0064,0xfffc,0x0064,0xffd8,0x0064,0xff50,0x0064,0x0043,0x0064,0x000b,0x0064,0x0000,0x0064,0x0000,0x0064,0xffdb,0x0064,0xffcc,0x0064,
0x03b7,0x0064,0x0014,0x0064,0xffed,0x0064,0x02e6,0x0064,0xfd9a,0x0064,0xfef5,0x0064,0xfcc8,0x0064,0x0273,0x0064,0x018e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="114" ypos="582" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x00b8,0x0064,0xffce,0x0064,0xfffb,0x0064,0xffd8,0x0064,0xff50,0x0064,0x0043,0x0064,0x000a,0x0064,0xffff,0x0064,0x0000,0x0064,0xffda,0x0064,0xffcc,0x0064,
0x03b7,0x0064,0x0014,0x0064,0xffec,0x0064,0x02e6,0x0064,0xfd9a,0x0064,0xfef5,0x0064,0xfcc8,0x0064,0x0273,0x0064,0x018e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x000044d6"/>
<medit>
<block name="右腕振" type="0" xpos="30" ypos="326" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff8c,0x0064,0xff5d,0x0064,0xfff1,0x0064,0xff71,0x0064,0x0029,0x0064,0xff87,0x0064,0x01c2,0x0064,0xfe23,0x0064,0xffb1,0x0064,0x004a,0x0064,0x002f,0x0064,
0x00f0,0x0064,0xff15,0x0064,0x0000,0x0064,0x005c,0x0064,0xffbd,0x0064,0x0001,0x0064,0xfc5b,0x0064,0xffac,0x0064,0xff09,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="31" ypos="372" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff8c,0x0064,0xff5d,0x0064,0xfff1,0x0064,0xff70,0x0064,0x0029,0x0064,0xff86,0x0064,0x01c2,0x0064,0xfe23,0x0064,0xffb1,0x0064,0x0049,0x0064,0x002f,0x0064,
0x00f0,0x0064,0xfefc,0x0064,0x0014,0x0064,0x005b,0x0064,0xffbe,0x0064,0x0001,0x0064,0xfc5b,0x0064,0xffac,0x0064,0xff09,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00004dc6"/>
<medit>
<block name="~" type="0" xpos="189" ypos="539" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0012,0x0064,0xfff4,0x0064,0xfff6,0x0064,0xffc7,0x0064,0xffe2,0x0064,0xffef,0x0064,0x0000,0x0064,0x0002,0x0064,0x001d,0x0064,0x0019,0x0064,0xffcd,0x0064,
0x002f,0x0064,0x001a,0x0064,0xffe8,0x0064,0x02e5,0x0064,0x00c3,0x0064,0x012d,0x0064,0xfd93,0x0064,0xffff,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="192" ypos="584" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0012,0x0064,0xfff4,0x0064,0xfff5,0x0064,0xffc7,0x0064,0xffe1,0x0064,0xffee,0x0064,0x0000,0x0064,0x0002,0x0064,0x001d,0x0064,0x0018,0x0064,0xffcd,0x0064,
0x002f,0x0064,0x001a,0x0064,0xffe7,0x0064,0x02e5,0x0064,0x00c3,0x0064,0x012d,0x0064,0xfd92,0x0064,0x0000,0x0064,0xfe01,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x000056b6"/>
<medit>
<block name="~" type="0" xpos="106" ypos="326" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xfff1,0x0064,0xfef2,0x0064,0x011c,0x0064,0x0034,0x0064,0x0022,0x0064,0xffdf,0x0064,0x006b,0x0064,0x0007,0x0064,0x0060,0x0064,0x0046,0x0064,0x0017,0x0064,
0x00f0,0x0064,0x00f5,0x0064,0xffec,0x0064,0x005d,0x0064,0xffd5,0x0064,0xfe58,0x0064,0xfbdf,0x0064,0x0263,0x0064,0xffc0,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="108" ypos="372" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xfff1,0x0064,0xfef3,0x0064,0x011d,0x0064,0x0035,0x0064,0x0022,0x0064,0xffde,0x0064,0x006b,0x0064,0x0006,0x0064,0x0060,0x0064,0x0046,0x0064,0x0018,0x0064,
0x00f0,0x0064,0x00dc,0x0064,0x0000,0x0064,0x005d,0x0064,0xffd6,0x0064,0xfe57,0x0064,0xfbdf,0x0064,0x0264,0x0064,0xffbf,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x000094fc"/>
<medit>
<block name="~" type="0" xpos="263" ypos="538" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xffd0,0x0064,0xffc7,0x0064,0xfff8,0x0064,0xffc9,0x0064,0x0014,0x0064,0xff60,0x0064,0x0053,0x0064,0x0001,0x0064,0x0037,0x0064,0x008e,0x0064,0x002b,0x0064,
0xfcc5,0x0064,0xfee8,0x0064,0x0014,0x0064,0x02e3,0x0064,0xfdd1,0x0064,0xfeed,0x0064,0xfccd,0x0064,0x0273,0x0064,0x018a,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="278" ypos="584" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xffd0,0x0064,0xffc7,0x0064,0xfff8,0x0064,0xffc9,0x0064,0x0014,0x0064,0xff60,0x0064,0x0053,0x0064,0x0001,0x0064,0x0037,0x0064,0x008e,0x0064,0x002c,0x0064,
0xfcc4,0x0064,0xfee8,0x0064,0x0014,0x0064,0x02e4,0x0064,0xfdd0,0x0064,0xfeed,0x0064,0xfccd,0x0064,0x0273,0x0064,0x018a,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000a6cb"/>
<medit>
<block name="手腰リズム" type="0" xpos="35" ypos="210" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x001f,0x0064,0x0014,0x0064,0xffec,0x0064,0xff48,0x0064,0xff51,0x0064,0x0203,0x0064,0x00a7,0x0064,0x00b9,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="36" ypos="256" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0020,0x0064,0xff92,0x0064,0x006e,0x0064,0xff48,0x0064,0xff50,0x0064,0x0203,0x0064,0x00a6,0x0064,0x00b8,0x0064,0xfe03,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="111" ypos="211" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x001f,0x0064,0x0014,0x0064,0xffec,0x0064,0xff47,0x0064,0xff51,0x0064,0x0203,0x0064,0x00a7,0x0064,0x00b8,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="112" ypos="257" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0020,0x0064,0xff92,0x0064,0x006e,0x0064,0xff48,0x0064,0xff50,0x0064,0x0203,0x0064,0x00a6,0x0064,0x00b8,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="手腰リズム~" type="0" xpos="208" ypos="203" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x001f,0x0064,0x0014,0x0064,0xffec,0x0064,0xff48,0x0064,0xff51,0x0064,0x0203,0x0064,0x00a7,0x0064,0x00b9,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="208" ypos="249" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0020,0x0064,0xff92,0x0064,0x006e,0x0064,0xff48,0x0064,0xff50,0x0064,0x0203,0x0064,0x00a6,0x0064,0x00b8,0x0064,0xfe03,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="283" ypos="204" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x001f,0x0064,0x0014,0x0064,0xffec,0x0064,0xff47,0x0064,0xff51,0x0064,0x0203,0x0064,0x00a7,0x0064,0x00b8,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="284" ypos="250" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0020,0x0064,0xff92,0x0064,0x006e,0x0064,0xff48,0x0064,0xff50,0x0064,0x0203,0x0064,0x00a6,0x0064,0x00b8,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000184c"/>
<medit>
<block name="右腕リズム~" type="0" xpos="535" ypos="198" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffbf,0x0064,0xffce,0x0064,0x0036,0x0064,0x0040,0x0064,0xfeea,0x0064,0xfbd1,0x0064,0x011e,0x0064,0xfecb,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="535" ypos="244" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffbf,0x0064,0x0014,0x0064,0x0032,0x0064,0xffee,0x0064,0xfeea,0x0064,0xfbd1,0x0064,0x011e,0x0064,0xffb4,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="609" ypos="196" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffbf,0x0064,0xffce,0x0064,0x0036,0x0064,0x0040,0x0064,0xfeea,0x0064,0xfbd1,0x0064,0x011e,0x0064,0xfecb,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="610" ypos="242" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x00cf,0x0064,
0x00fc,0x0064,0xffbf,0x0064,0x0014,0x0064,0x0032,0x0064,0xffee,0x0064,0xfeea,0x0064,0xfbd1,0x0064,0x011e,0x0064,0xffb4,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00003be3"/>
<medit>
<block name="右腕振~" type="0" xpos="197" ypos="327" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff8c,0x0064,0xff5d,0x0064,0xfff1,0x0064,0xff71,0x0064,0x0029,0x0064,0xff87,0x0064,0x01c2,0x0064,0xfe23,0x0064,0xffb1,0x0064,0x004a,0x0064,0x002f,0x0064,
0x00f0,0x0064,0xff10,0x0064,0x0005,0x0064,0x005c,0x0064,0xffbd,0x0064,0x0001,0x0064,0xfc5b,0x0064,0xffac,0x0064,0xff09,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="198" ypos="373" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff8c,0x0064,0xff5d,0x0064,0xfff1,0x0064,0xff70,0x0064,0x0029,0x0064,0xff86,0x0064,0x01c2,0x0064,0xfe23,0x0064,0xffb1,0x0064,0x0049,0x0064,0x002f,0x0064,
0x00f0,0x0064,0xfefc,0x0064,0x0014,0x0064,0x005b,0x0064,0xffbe,0x0064,0x0001,0x0064,0xfc5b,0x0064,0xffac,0x0064,0xff09,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="274" ypos="327" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xfff1,0x0064,0xfef2,0x0064,0x011c,0x0064,0x0034,0x0064,0x0022,0x0064,0xffdf,0x0064,0x006b,0x0064,0x0007,0x0064,0x0060,0x0064,0x0046,0x0064,0x0017,0x0064,
0x00f0,0x0064,0x00f5,0x0064,0xffec,0x0064,0x005d,0x0064,0xffd5,0x0064,0xfe58,0x0064,0xfbdf,0x0064,0x0263,0x0064,0xffc0,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="275" ypos="373" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xfff1,0x0064,0xfef3,0x0064,0x011d,0x0064,0x0035,0x0064,0x0022,0x0064,0xffde,0x0064,0x006b,0x0064,0x0006,0x0064,0x0060,0x0064,0x0046,0x0064,0x0018,0x0064,
0x00f0,0x0064,0x00dc,0x0064,0x0000,0x0064,0x005d,0x0064,0xffd6,0x0064,0xfe57,0x0064,0xfbdf,0x0064,0x0264,0x0064,0xffbf,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000e09a"/>
<medit>
<block name="腕開左右~" type="0" xpos="360" ypos="531" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0023,0x0064,0xfff1,0x0064,0xfff5,0x0064,0xffc4,0x0064,0xffda,0x0064,0xffeb,0x0064,0x0005,0x0064,0x0002,0x0064,0x001f,0x0064,0x0023,0x0064,0xffc9,0x0064,
0x0030,0x0064,0x0017,0x0064,0xffe9,0x0064,0x02e9,0x0064,0x00c3,0x0064,0x012a,0x0064,0xfd8e,0x0064,0x0002,0x0064,0xfe01,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="362" ypos="576" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0017,0x0064,0xfff8,0x0064,0xfff8,0x0064,0xffc9,0x0064,0xffdf,0x0064,0xffec,0x0064,0xfffd,0x0064,0x0001,0x0064,0x001c,0x0064,0x001f,0x0064,0xffcc,0x0064,
0x002f,0x0064,0x0014,0x0064,0xffea,0x0064,0x02e2,0x0064,0x00c3,0x0064,0x0123,0x0064,0xfd93,0x0064,0x0000,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="443" ypos="532" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x00b7,0x0064,0xffcf,0x0064,0xfffc,0x0064,0xffd8,0x0064,0xff50,0x0064,0x0043,0x0064,0x000b,0x0064,0x0000,0x0064,0x0000,0x0064,0xffdb,0x0064,0xffcc,0x0064,
0x03b7,0x0064,0x0014,0x0064,0xffed,0x0064,0x02e6,0x0064,0xfd9a,0x0064,0xfef5,0x0064,0xfcc8,0x0064,0x0273,0x0064,0x018e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="446" ypos="577" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x00b8,0x0064,0xffce,0x0064,0xfffb,0x0064,0xffd8,0x0064,0xff50,0x0064,0x0043,0x0064,0x000a,0x0064,0xffff,0x0064,0x0000,0x0064,0xffda,0x0064,0xffcc,0x0064,
0x03b7,0x0064,0x0014,0x0064,0xffec,0x0064,0x02e6,0x0064,0xfd9a,0x0064,0xfef5,0x0064,0xfcc8,0x0064,0x0273,0x0064,0x018e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="521" ypos="534" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0012,0x0064,0xfff4,0x0064,0xfff6,0x0064,0xffc7,0x0064,0xffe2,0x0064,0xffef,0x0064,0x0000,0x0064,0x0002,0x0064,0x001d,0x0064,0x0019,0x0064,0xffcd,0x0064,
0x002f,0x0064,0x001a,0x0064,0xffe8,0x0064,0x02e5,0x0064,0x00c3,0x0064,0x012d,0x0064,0xfd93,0x0064,0xffff,0x0064,0xfe02,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="524" ypos="579" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0012,0x0064,0xfff4,0x0064,0xfff5,0x0064,0xffc7,0x0064,0xffe1,0x0064,0xffee,0x0064,0x0000,0x0064,0x0002,0x0064,0x001d,0x0064,0x0018,0x0064,0xffcd,0x0064,
0x002f,0x0064,0x001a,0x0064,0xffe7,0x0064,0x02e5,0x0064,0x00c3,0x0064,0x012d,0x0064,0xfd92,0x0064,0x0000,0x0064,0xfe01,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="595" ypos="533" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xffd0,0x0064,0xffc7,0x0064,0xfff8,0x0064,0xffc9,0x0064,0x0014,0x0064,0xff60,0x0064,0x0053,0x0064,0x0001,0x0064,0x0037,0x0064,0x008e,0x0064,0x002b,0x0064,
0xfcc5,0x0064,0xfee8,0x0064,0x0014,0x0064,0x02e3,0x0064,0xfdd1,0x0064,0xfeed,0x0064,0xfccd,0x0064,0x0273,0x0064,0x018a,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0012</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~~" type="0" xpos="614" ypos="571" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xffd0,0x0064,0xffc7,0x0064,0xfff8,0x0064,0xffc9,0x0064,0x0014,0x0064,0xff60,0x0064,0x0053,0x0064,0x0001,0x0064,0x0037,0x0064,0x008e,0x0064,0x002c,0x0064,
0xfcc4,0x0064,0xfee8,0x0064,0x0014,0x0064,0x02e4,0x0064,0xfdd0,0x0064,0xfeed,0x0064,0xfccd,0x0064,0x0273,0x0064,0x018a,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x0004</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00012529"/>
<medit>
<block name="リズム~" type="0" xpos="383" ypos="81" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0x0014,0x0064,0xffec,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="383" ypos="140" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0xffb0,0x0064,0x0050,0x0064,0x0000,0x0064,0x0000,0x0064,0xff7e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0082,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="459" ypos="82" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0x0014,0x0064,0xffec,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<medit>
<block name="~" type="0" xpos="459" ypos="141" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0x006e,0x0064,0x0055,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,0xff92,0x0064,0xffab,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0064,0xffb0,0x0064,0x0050,0x0064,0x0000,0x0064,0x0000,0x0064,0xff7e,0x0064,0x0000,0x0064,0x0000,0x0064,0x0082,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00a0,0x0000,0x00ff,0x00a0,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000b</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00005fa6"/>
<medit>
<block name="" type="0" xpos="103" ypos="432" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff87,0x0064,0xff7f,0x0064,0xfff1,0x0064,0xff85,0x0064,0x002a,0x0064,0xff5e,0x0064,0x01b8,0x0064,0xfdf8,0x0064,0xff86,0x0064,0x006b,0x0064,0x002e,0x0064,
0xff97,0x0064,0xfeac,0x0064,0x0023,0x0064,0x0436,0x0064,0xfd74,0x0064,0x00ee,0x0064,0xfbe7,0x0064,0x007d,0x0064,0xfe57,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x0000,0x0000,0x00ff,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x000104ca"/>
<medit>
<block name="腰振り" type="0" xpos="31" ypos="433" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x009e,0x0064,0xfe6f,0x0064,0x01d0,0x0064,0x0064,0x0064,0xff93,0x0064,0x005f,0x0064,0x0057,0x0064,0x0003,0x0064,0x0046,0x0064,0xffe3,0x0064,0xffe1,0x0064,
0x00f5,0x0064,0x012c,0x0064,0x005f,0x0064,0x042a,0x0064,0xfffe,0x0064,0x0174,0x0064,0xfbd3,0x0064,0x025c,0x0064,0xffd1,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00e0,0x0000,0x00ff,0x00e0,0x0000,0x00ff,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00010041"/>
<medit>
<block name="~" type="0" xpos="250" ypos="433" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff87,0x0064,0xff7f,0x0064,0xfff1,0x0064,0xff85,0x0064,0x002a,0x0064,0xff5e,0x0064,0x01b8,0x0064,0xfdf8,0x0064,0xff86,0x0064,0x006b,0x0064,0x002e,0x0064,
0xff97,0x0064,0xfeac,0x0064,0x0023,0x0064,0x0436,0x0064,0xfd74,0x0064,0x00ee,0x0064,0xfbe7,0x0064,0x007d,0x0064,0xfe57,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001d,0x001d,0x00ff,0x001d,0x001d,0x00ff,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00010dde"/>
<medit>
<block name="" type="0" xpos="176" ypos="432" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x009e,0x0064,0xfe6f,0x0064,0x01d0,0x0064,0x0064,0x0064,0xff93,0x0064,0x005f,0x0064,0x0057,0x0064,0x0003,0x0064,0x0046,0x0064,0xffe3,0x0064,0xffe1,0x0064,
0x00f5,0x0064,0x012c,0x0064,0x005f,0x0064,0x042a,0x0064,0xfffe,0x0064,0x0174,0x0064,0xfbd3,0x0064,0x025c,0x0064,0xffd1,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x002e,0x002e,0x00ff,0x002e,0x002e,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00010954"/>
<medit>
<block name="~~" type="0" xpos="399" ypos="430" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff87,0x0064,0xff7f,0x0064,0xfff1,0x0064,0xff85,0x0064,0x002a,0x0064,0xff5e,0x0064,0x01b8,0x0064,0xfdf8,0x0064,0xff86,0x0064,0x006b,0x0064,0x002e,0x0064,
0xff97,0x0064,0xfeac,0x0064,0x0023,0x0064,0x0436,0x0064,0xfd74,0x0064,0x00ee,0x0064,0xfbe7,0x0064,0x007d,0x0064,0xfe57,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0068,0x00ff,0x0068,0x0068,0x00ff,0x0068,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x000116f2"/>
<medit>
<block name="" type="0" xpos="327" ypos="430" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x009e,0x0064,0xfe6f,0x0064,0x01d0,0x0064,0x0064,0x0064,0xff93,0x0064,0x005f,0x0064,0x0057,0x0064,0x0003,0x0064,0x0046,0x0064,0xffe3,0x0064,0xffe1,0x0064,
0x00f5,0x0064,0x012c,0x0064,0x005f,0x0064,0x042a,0x0064,0xfffe,0x0064,0x0174,0x0064,0xfbd3,0x0064,0x025c,0x0064,0xffd1,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00ff,0x0000,0x00ff,0x00ff,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00011268"/>
<medit>
<block name="~~~" type="0" xpos="550" ypos="423" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff87,0x0064,0xff7f,0x0064,0xfff1,0x0064,0xff85,0x0064,0x002a,0x0064,0xff5e,0x0064,0x01b8,0x0064,0xfdf8,0x0064,0xff86,0x0064,0x006b,0x0064,0x002e,0x0064,
0xff97,0x0064,0xfeac,0x0064,0x0023,0x0064,0x0436,0x0064,0xfd74,0x0064,0x00ee,0x0064,0xfbe7,0x0064,0x007d,0x0064,0xfe57,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x0000,0x0000,0x00ff,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00012006"/>
<medit>
<block name="" type="0" xpos="473" ypos="428" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x009e,0x0064,0xfe6f,0x0064,0x01d0,0x0064,0x0064,0x0064,0xff93,0x0064,0x005f,0x0064,0x0057,0x0064,0x0003,0x0064,0x0046,0x0064,0xffe3,0x0064,0xffe1,0x0064,
0x00f5,0x0064,0x012c,0x0064,0x005f,0x0064,0x042a,0x0064,0xfffe,0x0064,0x0174,0x0064,0xfbd3,0x0064,0x025c,0x0064,0xffd1,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x0000,0x0000,0x00ff,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x001e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x00011b7c"/>
<medit>
<block name="POSE 1" type="0" xpos="33" ypos="476" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x009e,0x0064,0xfe6f,0x0064,0x01d0,0x0064,0x0064,0x0064,0xff93,0x0064,0x005f,0x0064,0x0057,0x0064,0x0003,0x0064,0x0046,0x0064,0xffe3,0x0064,0xffe1,0x0064,
0x00f4,0x0064,0x00c8,0x0064,0x00a0,0x0064,0x0392,0x0064,0xfffa,0x0064,0x0170,0x0064,0xfc31,0x0064,0x023f,0x0064,0xffd2,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00e0,0x0000,0x00ff,0x00e0,0x0000,0x00ff,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000dc16"/>
<medit>
<block name="POSE 2" type="0" xpos="105" ypos="475" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff87,0x0064,0xff7f,0x0064,0xfff1,0x0064,0xff85,0x0064,0x002a,0x0064,0xff5e,0x0064,0x01b8,0x0064,0xfdf8,0x0064,0xff86,0x0064,0x006b,0x0064,0x002e,0x0064,
0xff9a,0x0064,0xfe84,0x0064,0x0096,0x0064,0x03b7,0x0064,0xfd76,0x0064,0x00ef,0x0064,0xfc2f,0x0064,0x007f,0x0064,0xfe55,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x0000,0x0000,0x00ff,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000e9a8"/>
<medit>
<block name="POSE 3" type="0" xpos="184" ypos="475" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x009e,0x0064,0xfe6f,0x0064,0x01d0,0x0064,0x0064,0x0064,0xff93,0x0064,0x005f,0x0064,0x0057,0x0064,0x0003,0x0064,0x0046,0x0064,0xffe3,0x0064,0xffe1,0x0064,
0x00f4,0x0064,0x00c8,0x0064,0x00aa,0x0064,0x03c7,0x0064,0xfff7,0x0064,0x0171,0x0064,0xfc30,0x0064,0x023f,0x0064,0xffd0,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x002e,0x002e,0x00ff,0x002e,0x002e,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000e523"/>
<medit>
<block name="POSE 4" type="0" xpos="255" ypos="473" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff87,0x0064,0xff7f,0x0064,0xfff1,0x0064,0xff85,0x0064,0x002a,0x0064,0xff5e,0x0064,0x01b8,0x0064,0xfdf8,0x0064,0xff86,0x0064,0x006b,0x0064,0x002e,0x0064,
0xff99,0x0064,0xfe84,0x0064,0x008c,0x0064,0x03ad,0x0064,0xfd77,0x0064,0x00ef,0x0064,0xfc50,0x0064,0x007e,0x0064,0xfe55,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x001d,0x001d,0x00ff,0x001d,0x001d,0x00ff,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000f2b2"/>
<medit>
<block name="POSE 5" type="0" xpos="331" ypos="470" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0x009e,0x0064,0xfe6f,0x0064,0x01d0,0x0064,0x0064,0x0064,0xff93,0x0064,0x005f,0x0064,0x0057,0x0064,0x0003,0x0064,0x0046,0x0064,0xffe3,0x0064,0xffe1,0x0064,
0x00f3,0x0064,0x00c8,0x0064,0x007d,0x0064,0x03b6,0x0064,0xfffe,0x0064,0x0170,0x0064,0xfc94,0x0064,0x0242,0x0064,0xffd0,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00ff,0x00ff,0x0000,0x00ff,0x00ff,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000ee2c"/>
<medit>
<block name="POSE 6" type="0" xpos="401" ypos="470" bluearrow="6" redarrow="6"/>
</medit>
<mem_w size="2" adr="0x0a00">
0x0000,0x0064,0xff87,0x0064,0xff7f,0x0064,0xfff1,0x0064,0xff85,0x0064,0x002a,0x0064,0xff5e,0x0064,0x01b8,0x0064,0xfdf8,0x0064,0xff86,0x0064,0x006b,0x0064,0x002e,0x0064,
0xff99,0x0064,0xfe84,0x0064,0x0073,0x0064,0x03a0,0x0064,0xfd72,0x0064,0x00ef,0x0064,0xfc5b,0x0064,0x007e,0x0064,0xfe56,0x0064,0x0000,0x0064,0x0000,0x0064,0x0000,0x0064,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0068,0x00ff,0x0068,0x0068,0x00ff,0x0068,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,
0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000
</mem_w>
<mem_w size="2" adr="0x0b00">0x000e</mem_w>
<wait size="1" adr="0x0b43"/>
<jump adr="0x0000fbbd"/>
<medit>
<block name="POSE 7" type="0" xpos="477" ypos="467" bluearrow="6" redarrow="6"/>
</medit>