summaryrefslogtreecommitdiff
path: root/data/personality_test.s
blob: ea138f53b3efa930132cabb0e8fed34da788bdd8 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
        .section .rodata

    @ Start of Personality Questions - 80F0054
    @ Question 1, Category 1 (Hardy)
    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xcc, 0x00, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xb8, 0x00, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xa4, 0x00, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Ignore it and play.\0"
    .string "At the last second.\0"
    .string "Study hard.\0"
    .byte 0xe4, 0x00, 0x0f, 0x08
    .byte 0x84, 0x00, 0x0f, 0x08
    .byte 0x54, 0x00, 0x0f, 0x08
    .string "A test is coming up.\n"
    .string "How do you study for it?\0"
    .align 2,0

    @ Question 2, Category 1 (Hardy)
    .byte 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x4c, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "No. \0"
    .align 2,0
    .string "Yes.\0"
    .align 2,0
    .byte 0x68, 0x01, 0x0f, 0x08
    .byte 0x34, 0x01, 0x0f, 0x08
    .byte 0x14, 0x01, 0x0f, 0x08
    .string "Can you focus on something you like?\0"
    .align 2,0

    @ Question 3, Category 1 (Hardy)
    .byte 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "No.\0"
    .byte 0xd8, 0x01, 0x0f, 0x08
    .byte 0xb0, 0x01, 0x0f, 0x08
    .byte 0x90, 0x01, 0x0f, 0x08
    .string "When the going gets tough~2c do you get\n"
    .string "going?\0"
    .align 2,0

    @ Question 4, Category 1 (Hardy)
    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x6c, 0x02, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x64, 0x02, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x58, 0x02, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "A little.\0"
    .align 2,0
    .string "Half.\0"
    .align 2,0
    .string "Full.\0"
    .align 2,0
    .byte 0x80, 0x02, 0x0f, 0x08
    .byte 0x38, 0x02, 0x0f, 0x08
    .byte 0x08, 0x02, 0x0f, 0x08
    .string "There is a bucket. If you put\n"
    .string "water in it~2c how high will you fill it?\0"
    .align 2,0

    @ Question 1, Category 2 (Docile)
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x0c, 0x03, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x03, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Small box.\0"
    .align 2,0
    .string "Big box.\0"
    .align 2,0
    .byte 0x24, 0x03, 0x0f, 0x08
    .byte 0xe8, 0x02, 0x0f, 0x08
    .byte 0xc8, 0x02, 0x0f, 0x08
    .string "You are offered a choice of two gifts.\n"
    .string "Which one will you take?\0"
    .align 2,0

    @ Question 2, Category 2 (Docile)
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xb0, 0x03, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x9c, 0x03, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Take a sniff first.\0"
    .align 2,0
    .string "Open a window right away.\0"
    .align 2,0
    .byte 0xd8, 0x03, 0x0f, 0x08
    .byte 0x84, 0x03, 0x0f, 0x08
    .byte 0x64, 0x03, 0x0f, 0x08
    .string "You broke a rotten egg in your room!\n"
    .string "What will you do?\0"
    .align 2,0

    @ Question 3, Category 2 (Docile)
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x94, 0x04, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x7c, 0x04, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x60, 0x04, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Say thanks~2c but be cool.\0"
    .align 2,0
    .string "Say thanks with a joke.\0"
    .align 2,0
    .string "Say thank you regularly.\0"
    .align 2,0
    .byte 0xbc, 0x04, 0x0f, 0x08
    .byte 0x40, 0x04, 0x0f, 0x08
    .byte 0x10, 0x04, 0x0f, 0x08
    .string "A friend brought over something you~27d\n"
    .string "forgotten.#W\n"
    .string "How do you thank your friend?\0"
    .align 2,0

    @ Question 4, Category 2 (Docile)
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x84, 0x05, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x78, 0x05, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x60, 0x05, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Is anyone watching...?\0"
    .align 2,0
    .string "Yay! Yay!\0"
    .align 2,0
    .string "Turn it in to the police!\0"
    .align 2,0
    .byte 0xac, 0x05, 0x0f, 0x08
    .byte 0x40, 0x05, 0x0f, 0x08
    .byte 0x10, 0x05, 0x0f, 0x08
    .string "There is a wallet at the side of a road.\0"
    .align 2,0

    @ Question 1, Category 3 (Brave)
    .byte 0x00, 0x00, 0x03, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x1c, 0x06, 0x0f, 0x08
    .byte 0xf8, 0x05, 0x0f, 0x08
    .byte 0xd8, 0x05, 0x0f, 0x08
    .string "You~27re going bungee jumping for the first\n"
    .string "time.#PSince it~27s scary~2c you decide to test the\n"
    .string "jump with a doll...#W\n"
    .string "And the bungee cord snaps!#P"
    .string "Will you still try to make a jump anyway?\0"
    .align 2,0

    @ Question 2, Category 3 (Brave)
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x3c, 0x07, 0x0f, 0x08
    .byte 0x63, 0x00, 0x00, 0x00
    .byte 0x34, 0x07, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x28, 0x07, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x0
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Ignore it.\0"
    .align 2,0
    .string "Run.\0"
    .align 2,0
    .string "Fight.\0"
    .align 2,0
    .byte 0x50, 0x07, 0x0f, 0x08
    .byte 0x08, 0x07, 0x0f, 0x08
    .byte 0xd8, 0x06, 0x0f, 0x08
    .string "There is an alien invasion!\n"
    .string "What will you do?\0"
    .align 2,0

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xc0, 0x07, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xb8, 0x07, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Refuse.\0"
    .align 2,0
    .string "Rule with the aliens.\0"
    .align 2,0
    .byte 0xe4, 0x07, 0x0f, 0x08
    .byte 0xa0, 0x07, 0x0f, 0x08
    .byte 0x80, 0x07, 0x0f, 0x08
    .string "You valiantly fight the aliens...#W\n"
    .string "But~2c you are defeated...#PAn alien says to you...#P~93YOU HAVE IMPRESSED US.\n"
    .string "IT WAS A PLEASURE TO SEE.#PJOIN US~2c AND TOGETHER WE SHALL\n"
    .string "RULE THE WORLD.~94#W\n"
    .string "What will you do?\0"
    .align 2,0

    .byte 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x08, 0x09, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xf4, 0x08, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Scream in unison.\0"
    .align 2,0
    .string "Yank open the door.\0"
    .align 2,0
    .byte 0x28, 0x09, 0x0f, 0x08
    .byte 0xdc, 0x08, 0x0f, 0x08
    .byte 0xbc, 0x08, 0x0f, 0x08
    .string "There is a scream from behind a door!#W\n"
    .string "How will you react?\0"
    .align 2,0

    .byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x10, 0x0a, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xf8, 0x09, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xe4, 0x09, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0xcc, 0x09, 0x0f, 0x08
    .byte 0x03, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x44, 0x6f, 0x20, 0x6e, 0x6f, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x20, 0x6f
    .byte 0x75, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x66, 0x65, 0x61, 0x72, 0x2e, 0x00, 0x43, 0x61, 0x6c, 0x6c, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x65, 0x2e, 0x00, 0x00, 0x00, 0x00
    .byte 0x48, 0x65, 0x6c, 0x70, 0x7e, 0x32, 0x63, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x69, 0x66, 0x20, 0x73, 0x63, 0x61, 0x72, 0x65, 0x64, 0x2e, 0x00, 0x48, 0x65, 0x6c, 0x70, 0x20, 0x77, 0x69, 0x74
    .byte 0x68, 0x6f, 0x75, 0x74, 0x20, 0x68, 0x65, 0x73, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x00, 0x00, 0x00, 0x00
    .byte 0x38, 0x0a, 0x0f, 0x08
    .byte 0xa4, 0x09, 0x0f, 0x08
    .byte 0x64, 0x09, 0x0f, 0x08
    .byte 0x41, 0x20, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x71, 0x75, 0x65, 0x6e, 0x74, 0x20, 0x69, 0x73, 0x20, 0x68, 0x61, 0x73, 0x73, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x20, 0x67, 0x69, 0x72, 0x6c, 0x20
    .byte 0x6f, 0x6e, 0x0a
    .byte 0x61, 0x20, 0x62, 0x75, 0x73, 0x79, 0x20, 0x63, 0x69, 0x74, 0x79, 0x20, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x21, 0x23, 0x57, 0x0a
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x77, 0x69
    .byte 0x6c, 0x6c, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xc8, 0x0a, 0x0f, 0x08
    .byte 0xa4, 0x0a, 0x0f, 0x08
    .byte 0x84, 0x0a, 0x0f, 0x08, 0x41, 0x72, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x61, 0x20, 0x63, 0x68, 0x65, 0x65, 0x72, 0x66
    .byte 0x75, 0x6c, 0x20, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x2c, 0x0b, 0x0f, 0x08
    .byte 0x08, 0x0b, 0x0f, 0x08
    .byte 0xe8, 0x0a, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20
    .byte 0x74, 0x6f, 0x20, 0x6e, 0x6f, 0x69, 0x73, 0x69, 0x6c, 0x79, 0x20, 0x65, 0x6e, 0x6a, 0x6f, 0x79, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x6c, 0x66, 0x0a
    .byte 0x77, 0x69, 0x74, 0x68, 0x20, 0x6f
    .byte 0x74, 0x68, 0x65, 0x72, 0x73, 0x3f, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0xc4, 0x0b, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xbc, 0x0b, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xb0, 0x0b, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x41, 0x6e, 0x79, 0x77, 0x68, 0x65, 0x72, 0x65
    .byte 0x2e, 0x00, 0x00, 0x00, 0x53, 0x70, 0x61, 0x73, 0x2e, 0x00, 0x00, 0x00, 0x54, 0x68, 0x65, 0x20, 0x62, 0x65, 0x61, 0x63, 0x68, 0x21, 0x00, 0x00
    .byte 0xdc, 0x0b, 0x0f, 0x08
    .byte 0x90, 0x0b, 0x0f, 0x08
    .byte 0x60, 0x0b, 0x0f, 0x08
    .byte 0x49, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x73, 0x75, 0x6d, 0x6d, 0x65, 0x72, 0x20, 0x68, 0x6f, 0x6c, 0x69, 0x64, 0x61, 0x79, 0x73, 0x21, 0x0a
    .byte 0x57, 0x68, 0x65, 0x72, 0x65, 0x20, 0x77, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x6f, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xa4, 0x0c, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x84, 0x0c, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x64, 0x0c, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x52, 0x69, 0x67, 0x68, 0x74, 0x2e, 0x2e, 0x2e, 0x20, 0x57, 0x65, 0x6c, 0x6c, 0x7e, 0x32, 0x63, 0x20, 0x49, 0x20, 0x67
    .byte 0x6f, 0x74, 0x74, 0x61, 0x20, 0x67, 0x6f, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x55, 0x6d, 0x2e, 0x2e, 0x2e, 0x20, 0x43, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x73, 0x61, 0x79, 0x20
    .byte 0x74, 0x68, 0x61, 0x74, 0x20, 0x61, 0x67, 0x61, 0x69, 0x6e, 0x3f, 0x00, 0x48, 0x61, 0x68, 0x61, 0x21, 0x20, 0x59, 0x65, 0x73, 0x2e, 0x20, 0x56, 0x65, 0x72, 0x79, 0x20, 0x66, 0x75, 0x6e, 0x6e
    .byte 0x79, 0x21, 0x00, 0x00
    .byte 0xc8, 0x0c, 0x0f, 0x08
    .byte 0x44, 0x0c, 0x0f, 0x08
    .byte 0x14, 0x0c, 0x0f, 0x08
    .byte 0x41, 0x20, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x20, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e
    .byte 0x20, 0x68, 0x61, 0x73, 0x20, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x20, 0x75, 0x70, 0x20, 0x61, 0x0a
    .byte 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x77
    .byte 0x69, 0x74, 0x68, 0x20, 0x79, 0x6f, 0x75, 0x2e, 0x23, 0x50, 0x54, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x68, 0x6f, 0x6e, 0x65, 0x73, 0x74, 0x7e, 0x32, 0x63, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f
    .byte 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x61, 0x20, 0x63, 0x6c, 0x75, 0x65, 0x20, 0x77, 0x68, 0x61, 0x74, 0x0a
    .byte 0x74, 0x68, 0x69, 0x73, 0x20, 0x66, 0x65, 0x6c, 0x6c
    .byte 0x6f, 0x77, 0x20, 0x69, 0x73, 0x20, 0x73, 0x61, 0x79, 0x69, 0x6e, 0x67, 0x2e, 0x23, 0x57, 0x0a
    .byte 0x48, 0x6f, 0x77, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x79
    .byte 0x3f, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xa0, 0x0d, 0x0f, 0x08
    .byte 0x7c, 0x0d, 0x0f, 0x08
    .byte 0x5c, 0x0d, 0x0f, 0x08
    .byte 0x48, 0x61, 0x76, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x65, 0x76, 0x65, 0x72, 0x20, 0x6d, 0x61, 0x64, 0x65, 0x20, 0x61, 0x20, 0x70, 0x69, 0x74
    .byte 0x66, 0x61, 0x6c, 0x6c, 0x20, 0x74, 0x72, 0x61, 0x70, 0x3f, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x08, 0x0e, 0x0f, 0x08
    .byte 0xe4, 0x0d, 0x0f, 0x08
    .byte 0xc4, 0x0d, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x70, 0x72, 0x61, 0x6e
    .byte 0x6b, 0x73, 0x3f, 0x00

    .byte 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x60, 0x0e, 0x0f, 0x08
    .byte 0x3c, 0x0e, 0x0f, 0x08
    .byte 0x1c, 0x0e, 0x0f, 0x08
    .byte 0x41, 0x72, 0x65, 0x20, 0x74, 0x68, 0x65, 0x72, 0x65, 0x20, 0x6d, 0x61, 0x6e, 0x79, 0x20, 0x74, 0x68, 0x69, 0x6e, 0x67, 0x73, 0x20, 0x74, 0x68
    .byte 0x61, 0x74, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x77, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x0a
    .byte 0x74, 0x6f, 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x24, 0x0f, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x04, 0x0f, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xe4, 0x0e, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x48, 0x65, 0x63, 0x6b, 0x6c, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x62, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x66, 0x72, 0x6f
    .byte 0x6d, 0x20, 0x62, 0x65, 0x68, 0x69, 0x6e, 0x64, 0x2e, 0x00, 0x00, 0x00, 0x43, 0x61, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20, 0x62, 0x75, 0x6c, 0x6c, 0x79, 0x20, 0x66, 0x72
    .byte 0x6f, 0x6d, 0x20, 0x61, 0x66, 0x61, 0x72, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x46, 0x61, 0x63, 0x65, 0x20, 0x75, 0x70, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x62, 0x75, 0x6c, 0x6c, 0x79
    .byte 0x2e, 0x00, 0x00, 0x00
    .byte 0x48, 0x0f, 0x0f, 0x08
    .byte 0xc4, 0x0e, 0x0f, 0x08
    .byte 0x94, 0x0e, 0x0f, 0x08
    .byte 0x59, 0x6f, 0x75, 0x72, 0x20, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x20, 0x69, 0x73, 0x20, 0x62
    .byte 0x65, 0x69, 0x6e, 0x67, 0x20, 0x62, 0x75, 0x6c, 0x6c, 0x69, 0x65, 0x64, 0x21, 0x0a, 0x57, 0x68, 0x61, 0x74, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xd4, 0x0f, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x58, 0x02, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xc8, 0x0f, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x53, 0x70, 0x61, 0x72, 0x65, 0x20, 0x6d, 0x65, 0x2e, 0x00, 0x00, 0x00, 0x4c, 0x6f, 0x76, 0x65
    .byte 0x20, 0x74, 0x68, 0x65, 0x6d, 0x21, 0x00, 0x00
    .byte 0xec, 0x0f, 0x0f, 0x08
    .byte 0xa8, 0x0f, 0x0f, 0x08
    .byte 0x78, 0x0f, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20
    .byte 0x67, 0x72, 0x6f, 0x61, 0x6e, 0x2d, 0x69, 0x6e, 0x64, 0x75, 0x63, 0x69, 0x6e, 0x67, 0x20, 0x70, 0x75, 0x6e, 0x73, 0x3f, 0x00, 0x00, 0x00, 0x00

    .byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x54, 0x10, 0x0f, 0x08
    .byte 0x30, 0x10, 0x0f, 0x08
    .byte 0x10, 0x10, 0x0f, 0x08, 0x44, 0x6f, 0x20, 0x79
    .byte 0x6f, 0x75, 0x20, 0x74, 0x65, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x61, 0x75, 0x67, 0x68, 0x20, 0x61, 0x20, 0x6c, 0x6f, 0x74, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xb4, 0x10, 0x0f, 0x08
    .byte 0x90, 0x10, 0x0f, 0x08
    .byte 0x70, 0x10, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x6f
    .byte 0x74, 0x68, 0x65, 0x72, 0x73, 0x20, 0x6f, 0x66, 0x74, 0x65, 0x6e, 0x20, 0x63, 0x61, 0x6c, 0x6c, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x63, 0x68, 0x69, 0x6c, 0x64, 0x69, 0x73, 0x68, 0x3f, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x1c, 0x11, 0x0f, 0x08
    .byte 0xf8, 0x10, 0x0f, 0x08
    .byte 0xd8, 0x10, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x69, 0x6d, 0x61, 0x67, 0x69, 0x6e, 0x65, 0x20, 0x74, 0x68, 0x69, 0x6e, 0x67
    .byte 0x73, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x0a
    .byte 0x61, 0x6d, 0x75, 0x73, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x3f, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x02, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xd8, 0x11, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xb8, 0x11, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xa0, 0x11, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x53, 0x68, 0x61, 0x6b, 0x65, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x73, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x69, 0x74, 0x2e, 0x00, 0x00, 0x00, 0x00
    .byte 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x69, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x61, 0x20, 0x77, 0x6f, 0x72, 0x64, 0x2e, 0x00, 0x00, 0x00
    .byte 0x53, 0x63, 0x72, 0x65, 0x61, 0x6d, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x72, 0x75, 0x6e, 0x2e, 0x00
    .byte 0xf4, 0x11, 0x0f, 0x08
    .byte 0x80, 0x11, 0x0f, 0x08
    .byte 0x50, 0x11, 0x0f, 0x08
    .byte 0x41, 0x20, 0x68, 0x75
    .byte 0x6d, 0x61, 0x6e, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x20, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x73, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x74, 0x6f, 0x69, 0x6c, 0x65, 0x74
    .byte 0x21, 0x0a
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x77, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
    .byte 0xf0, 0x12, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xe0, 0x12, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xd0, 0x12, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0xc0, 0x12, 0x0f, 0x08
    .byte 0x03, 0x00, 0x00, 0x00
    .byte 0xb0, 0x12, 0x0f, 0x08
    .byte 0x04, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x4c, 0x69, 0x74, 0x74, 0x6c, 0x65, 0x20, 0x66
    .byte 0x69, 0x6e, 0x67, 0x65, 0x72, 0x2e, 0x00, 0x00, 0x52, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x69, 0x6e, 0x67, 0x65, 0x72, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x4d, 0x69, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x66
    .byte 0x69, 0x6e, 0x67, 0x65, 0x72, 0x2e, 0x00, 0x00, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x20, 0x66, 0x69, 0x6e, 0x67, 0x65, 0x72, 0x2e, 0x00, 0x00, 0x00, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x2e, 0x00, 0x00
    .byte 0x04, 0x13, 0x0f, 0x08
    .byte 0x80, 0x12, 0x0f, 0x08
    .byte 0x30, 0x12, 0x0f, 0x08
    .byte 0x47, 0x72, 0x61, 0x62, 0x20, 0x61, 0x6e, 0x79, 0x20, 0x64, 0x69, 0x67, 0x69, 0x74, 0x20, 0x6f, 0x6e, 0x20, 0x79, 0x6f
    .byte 0x75, 0x72, 0x20, 0x6c, 0x65, 0x66, 0x74, 0x20, 0x68, 0x61, 0x6e, 0x64, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x0a
    .byte 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x68, 0x61, 0x6e
    .byte 0x64, 0x2e, 0x23, 0x57, 0x0a
    .byte 0x57, 0x68, 0x69, 0x63, 0x68, 0x20, 0x64, 0x69, 0x67, 0x69, 0x74, 0x20, 0x64, 0x69, 0x64, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x67, 0x72, 0x61, 0x62, 0x3f, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00
    .byte 0xbc, 0x13, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xb4, 0x13, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xa8, 0x13, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x43, 0x6c, 0x65, 0x61, 0x6e, 0x20, 0x69, 0x74, 0x2e, 0x00, 0x00, 0x00, 0x43, 0x72, 0x79, 0x2e
    .byte 0x00, 0x00, 0x00, 0x00, 0x4b, 0x69, 0x63, 0x6b, 0x20, 0x74, 0x68, 0x65, 0x20, 0x64, 0x6f, 0x6f, 0x72, 0x2e, 0x00, 0x00
    .byte 0xd8, 0x13, 0x0f, 0x08
    .byte 0x88, 0x13, 0x0f, 0x08
    .byte 0x58, 0x13, 0x0f, 0x08
    .byte 0x59, 0x6f, 0x75, 0x20, 0x61, 0x72, 0x65, 0x20, 0x73, 0x75, 0x64, 0x64, 0x65, 0x6e, 0x6c, 0x79, 0x20, 0x6c, 0x6f, 0x63, 0x6b, 0x65, 0x64, 0x20, 0x69, 0x6e, 0x73, 0x69, 0x64, 0x65, 0x20, 0x61
    .byte 0x0a
    .byte 0x70, 0x69, 0x74, 0x63, 0x68, 0x2d, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x21, 0x23, 0x57, 0x0a
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75
    .byte 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x98, 0x14, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x88, 0x14, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x70, 0x14, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x57, 0x69, 0x74, 0x68, 0x20, 0x73, 0x6f, 0x6d
    .byte 0x65, 0x6f, 0x6e, 0x65, 0x20, 0x49, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x55, 0x68, 0x2e, 0x2e, 0x2e, 0x20, 0x4e, 0x2d, 0x6e, 0x6f, 0x2e, 0x2e, 0x2e, 0x00, 0x00, 0x00
    .byte 0x4e, 0x6f, 0x20, 0x70, 0x72, 0x6f, 0x62, 0x6c, 0x65, 0x6d, 0x21, 0x00
    .byte 0xb0, 0x14, 0x0f, 0x08
    .byte 0x50, 0x14, 0x0f, 0x08
    .byte 0x20, 0x14, 0x0f, 0x08
    .byte 0x43, 0x61, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x20
    .byte 0x67, 0x6f, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x61, 0x20, 0x68, 0x61, 0x75, 0x6e, 0x74, 0x65, 0x64, 0x20, 0x68, 0x6f, 0x75, 0x73, 0x65, 0x3f, 0x00, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x4c, 0x15, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x3c, 0x15, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x24, 0x15, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x47, 0x65, 0x74, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x6f, 0x6e, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x6f, 0x70, 0x65, 0x6e, 0x20
    .byte 0x69, 0x74, 0x2e, 0x00, 0x4f, 0x70, 0x65, 0x6e, 0x20, 0x69, 0x74, 0x20, 0x6c, 0x61, 0x74, 0x65, 0x72, 0x2e, 0x00, 0x00, 0x4f, 0x70, 0x65, 0x6e, 0x20, 0x69, 0x74, 0x20, 0x6e, 0x6f, 0x77, 0x2e
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x68, 0x15, 0x0f, 0x08
    .byte 0x04, 0x15, 0x0f, 0x08
    .byte 0xd4, 0x14, 0x0f, 0x08
    .byte 0x59, 0x6f, 0x75, 0x20, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x20, 0x61, 0x20, 0x67, 0x69
    .byte 0x66, 0x74, 0x21, 0x23, 0x57, 0x0a
    .byte 0x42, 0x75, 0x74, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x6e, 0x7e, 0x32, 0x37, 0x74, 0x20, 0x6b, 0x6e, 0x6f, 0x77, 0x20, 0x77, 0x68, 0x61, 0x74, 0x7e
    .byte 0x32, 0x37, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x69, 0x74, 0x2e, 0x23, 0x57, 0x0a, 0x59, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x72, 0x65, 0x20, 0x63, 0x75, 0x72, 0x69, 0x6f, 0x75, 0x73, 0x7e, 0x32, 0x63
    .byte 0x20, 0x73, 0x6f, 0x20, 0x77, 0x68, 0x61, 0x74, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x38, 0x16, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x2c, 0x16, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x1c, 0x16, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x47, 0x69, 0x76, 0x65, 0x20, 0x69, 0x74, 0x20, 0x61, 0x77, 0x61, 0x79, 0x2e, 0x00, 0x00, 0x00
    .byte 0x53, 0x61, 0x76, 0x65, 0x20, 0x69, 0x74, 0x2e, 0x00, 0x00, 0x00, 0x00
    .byte 0x53, 0x70, 0x65, 0x6e, 0x64, 0x20, 0x69, 0x74, 0x20, 0x6e, 0x6f, 0x77, 0x2e, 0x00, 0x00, 0x00
    .byte 0x54, 0x16, 0x0f, 0x08
    .byte 0xfc, 0x15, 0x0f, 0x08
    .byte 0xcc, 0x15, 0x0f, 0x08
    .byte 0x59, 0x6f, 0x75, 0x20
    .byte 0x77, 0x69, 0x6e, 0x20, 0x61, 0x20, 0x6c, 0x6f, 0x74, 0x74, 0x65, 0x72, 0x79, 0x21, 0x23, 0x57, 0x0a
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x20
    .byte 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x10, 0x17, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xf4, 0x16, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xd8, 0x16, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff
    .byte 0x49, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x2e, 0x2e, 0x00, 0x4e, 0x6f, 0x2e, 0x2e
    .byte 0x2e, 0x20, 0x43, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x62, 0x65, 0x20, 0x61, 0x20, 0x74, 0x72, 0x61, 0x70, 0x2e, 0x2e, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x4f, 0x70, 0x65, 0x6e, 0x20, 0x69, 0x74, 0x20
    .byte 0x72, 0x69, 0x67, 0x68, 0x74, 0x20, 0x61, 0x77, 0x61, 0x79, 0x21, 0x00
    .byte 0x30, 0x17, 0x0f, 0x08
    .byte 0xb8, 0x16, 0x0f, 0x08
    .byte 0x88, 0x16, 0x0f, 0x08
    .byte 0x59, 0x6f, 0x75, 0x20, 0x63, 0x6f, 0x6d, 0x65
    .byte 0x20, 0x61, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x20, 0x61, 0x20, 0x74, 0x72, 0x65, 0x61, 0x73, 0x75, 0x72, 0x65, 0x20, 0x63, 0x68, 0x65, 0x73, 0x74, 0x21, 0x0a
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x64
    .byte 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00, 0x00

    .byte 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xd8, 0x17, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x17, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xb4, 0x17, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff, 0x47, 0x65, 0x74, 0x20
    .byte 0x61, 0x6e, 0x67, 0x72, 0x79, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x62, 0x61, 0x69, 0x6c, 0x2e, 0x00, 0x57, 0x61, 0x69, 0x74, 0x20, 0x70, 0x61, 0x74, 0x69, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x2e, 0x00
    .byte 0x42, 0x65, 0x63, 0x6f, 0x6d, 0x65, 0x20, 0x69, 0x72, 0x72, 0x69, 0x74, 0x61, 0x74, 0x65, 0x64, 0x2e, 0x00, 0x00, 0x00
    .byte 0xf8, 0x17, 0x0f, 0x08
    .byte 0x94, 0x17, 0x0f, 0x08
    .byte 0x64, 0x17, 0x0f, 0x08
    .byte 0x59, 0x6f, 0x75, 0x72, 0x20, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x20, 0x66, 0x61, 0x69, 0x6c, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x73, 0x68, 0x6f, 0x77, 0x20, 0x75, 0x70, 0x20, 0x66, 0x6f, 0x72
    .byte 0x20, 0x61, 0x20, 0x6d, 0x65, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x0a
    .byte 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x72, 0x6f, 0x6d, 0x69, 0x73, 0x65, 0x64, 0x20, 0x74, 0x69, 0x6d, 0x65, 0x2e
    .byte 0x0a
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00, 0x00, 0x00

    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xbc, 0x18, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xa8, 0x18, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x9c, 0x18, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x57, 0x48, 0x41, 0x54, 0x45, 0x56, 0x45, 0x52, 0x21, 0x21, 0x00, 0x00, 0x53, 0x70, 0x65, 0x61, 0x6b, 0x20, 0x6e, 0x65, 0x72, 0x76, 0x6f, 0x75, 0x73, 0x6c, 0x79, 0x2e
    .byte 0x00, 0x00, 0x00, 0x00, 0x53, 0x70, 0x65, 0x61, 0x6b, 0x20, 0x63, 0x61, 0x6c, 0x6d, 0x6c, 0x79, 0x2e, 0x00, 0x00, 0x00
    .byte 0xd8, 0x18, 0x0f, 0x08
    .byte 0x7c, 0x18, 0x0f, 0x08
    .byte 0x4c, 0x18, 0x0f, 0x08
    .byte 0x59, 0x6f, 0x75, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x20, 0x69, 0x73, 0x20, 0x69, 0x6e, 0x20, 0x66, 0x72
    .byte 0x6f, 0x6e, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x79, 0x6f, 0x75, 0x2e, 0x0a
    .byte 0x48, 0x6f, 0x77, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x73, 0x70, 0x65, 0x61, 0x6b, 0x20, 0x74, 0x6f, 0x20
    .byte 0x68, 0x69, 0x6d, 0x20, 0x6f, 0x72, 0x20, 0x68, 0x65, 0x72, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x68, 0x19, 0x0f, 0x08
    .byte 0x44, 0x19, 0x0f, 0x08
    .byte 0x24, 0x19, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x73, 0x20, 0x74, 0x65, 0x6c, 0x6c, 0x20, 0x79
    .byte 0x6f, 0x75, 0x20, 0x74, 0x6f, 0x20, 0x77, 0x61, 0x74, 0x63, 0x68, 0x20, 0x77, 0x68, 0x61, 0x74, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x73, 0x61, 0x79, 0x3f, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xd8, 0x19, 0x0f, 0x08
    .byte 0xb4, 0x19, 0x0f, 0x08
    .byte 0x94, 0x19, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x74, 0x68, 0x69, 0x6e, 0x6b, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x61, 0x72, 0x65, 0x20, 0x63, 0x6f, 0x6f, 0x6c, 0x3f, 0x0a
    .byte 0x42, 0x65, 0x20, 0x68, 0x6f
    .byte 0x6e, 0x65, 0x73, 0x74, 0x2e, 0x00, 0x00, 0x00

    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x44, 0x1a, 0x0f, 0x08
    .byte 0x20, 0x1a, 0x0f, 0x08
    .byte 0x00, 0x1a, 0x0f, 0x08
    .byte 0x43, 0x61, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x72, 0x65, 0x6c, 0x79, 0x20, 0x74, 0x68
    .byte 0x61, 0x6e, 0x6b, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x6f, 0x6e, 0x65, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x0a
    .byte 0x66, 0x65, 0x65, 0x6c, 0x20, 0x67, 0x72, 0x61, 0x74, 0x65, 0x66
    .byte 0x75, 0x6c, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xc0, 0x1a, 0x0f, 0x08
    .byte 0x9c, 0x1a, 0x0f, 0x08
    .byte 0x7c, 0x1a, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x6c, 0x79, 0x20, 0x63, 0x6f, 0x6e, 0x73
    .byte 0x69, 0x64, 0x65, 0x72, 0x20, 0x79, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x6c, 0x66, 0x0a
    .byte 0x64, 0x75, 0x6c, 0x6c, 0x20, 0x61, 0x6e, 0x64, 0x20, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x79, 0x20, 0x63, 0x61
    .byte 0x75, 0x74, 0x69, 0x6f, 0x75, 0x73, 0x3f, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x44, 0x1b, 0x0f, 0x08
    .byte 0x20, 0x1b, 0x0f, 0x08
    .byte 0x00, 0x1b, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x72, 0x65, 0x61, 0x6d, 0x20, 0x6f, 0x66, 0x20, 0x6c, 0x6f, 0x75, 0x6e
    .byte 0x67, 0x69, 0x6e, 0x67, 0x20, 0x61, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x69, 0x64, 0x6c, 0x79, 0x0a
    .byte 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x6d, 0x75, 0x63, 0x68, 0x20, 0x65, 0x78
    .byte 0x63, 0x69, 0x74, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x3f, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xc8, 0x1b, 0x0f, 0x08
    .byte 0xa4, 0x1b, 0x0f, 0x08
    .byte 0x84, 0x1b, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x66
    .byte 0x69, 0x67, 0x68, 0x74, 0x3f, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x24, 0x1c, 0x0f, 0x08
    .byte 0x00, 0x1c, 0x0f, 0x08
    .byte 0xe0, 0x1b, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6f, 0x66, 0x74, 0x65, 0x6e, 0x20, 0x79, 0x61, 0x77, 0x6e, 0x3f, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x7c, 0x1c, 0x0f, 0x08
    .byte 0x58, 0x1c, 0x0f, 0x08
    .byte 0x38, 0x1c, 0x0f, 0x08, 0x41, 0x72, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x6f, 0x66, 0x74, 0x65, 0x6e, 0x20, 0x6c, 0x61, 0x74, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x73, 0x63, 0x68, 0x6f, 0x6f
    .byte 0x6c, 0x20, 0x6f, 0x72, 0x20, 0x6d, 0x65, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x3f, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xec, 0x1c, 0x0f, 0x08
    .byte 0xc8, 0x1c, 0x0f, 0x08
    .byte 0xa8, 0x1c, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x67, 0x65, 0x74, 0x20, 0x74
    .byte 0x68, 0x65, 0x20, 0x66, 0x65, 0x65, 0x6c, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x76, 0x65, 0x20, 0x73, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x0a
    .byte 0x64, 0x6f, 0x77, 0x6e, 0x20, 0x6c, 0x61, 0x74, 0x65, 0x6c, 0x79, 0x3f, 0x00, 0x00, 0x00, 0x00

    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x9c, 0x1d, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x90, 0x1d, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x78, 0x1d, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x49, 0x20, 0x77, 0x61, 0x6e, 0x74, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x6f, 0x20, 0x68, 0x6f, 0x6d, 0x65, 0x20, 0x73, 0x6f, 0x6f, 0x6e, 0x21, 0x00, 0x53, 0x6e, 0x6f, 0x72, 0x65, 0x2e, 0x2e, 0x2e
    .byte 0x00, 0x00, 0x00, 0x00, 0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x65, 0x65, 0x6c, 0x73, 0x20, 0x67, 0x72, 0x65, 0x61, 0x74, 0x21, 0x00, 0x00, 0x00
    .byte 0xbc, 0x1d, 0x0f, 0x08
    .byte 0x58, 0x1d, 0x0f, 0x08
    .byte 0x28, 0x1d, 0x0f, 0x08
    .byte 0x49, 0x74, 0x20, 0x69, 0x73, 0x20, 0x61, 0x20, 0x70, 0x6c, 0x65, 0x61, 0x73, 0x61, 0x6e, 0x74, 0x20, 0x64, 0x61, 0x79, 0x20, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20
    .byte 0x62, 0x65, 0x61, 0x63, 0x68, 0x2e, 0x0a
    .byte 0x48, 0x6f, 0x77, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x66, 0x65, 0x65, 0x6c, 0x3f, 0x00


    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x34, 0x1e, 0x0f, 0x08
    .byte 0x10, 0x1e, 0x0f, 0x08
    .byte 0xf0, 0x1d, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79
    .byte 0x6f, 0x75, 0x20, 0x66, 0x61, 0x6c, 0x6c, 0x20, 0x61, 0x73, 0x6c, 0x65, 0x65, 0x70, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x6e, 0x6f, 0x74, 0x69, 0x63, 0x69, 0x6e, 0x67, 0x3f
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0xa0, 0x1e, 0x0f, 0x08
    .byte 0x7c, 0x1e, 0x0f, 0x08
    .byte 0x5c, 0x1e, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x66, 0x65, 0x65, 0x6c, 0x20, 0x6c, 0x6f, 0x6e, 0x65, 0x73, 0x6f, 0x6d, 0x65, 0x20, 0x77, 0x68, 0x65
    .byte 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x61, 0x72, 0x65, 0x20, 0x61, 0x6c, 0x6f, 0x6e, 0x65, 0x3f, 0x00, 0x00, 0x00, 0x00


    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x10, 0x1f, 0x0f, 0x08
    .byte 0xec, 0x1e, 0x0f, 0x08
    .byte 0xcc, 0x1e, 0x0f, 0x08
    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x68
    .byte 0x61, 0x74, 0x65, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20, 0x6c, 0x61, 0x73, 0x74, 0x20, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x65, 0x61
    .byte 0x76, 0x65, 0x0a
    .byte 0x63, 0x6c, 0x61, 0x73, 0x73, 0x20, 0x61, 0x74, 0x20, 0x74, 0x68, 0x65, 0x20, 0x65, 0x6e, 0x64, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x20
    .byte 0x64, 0x61, 0x79, 0x3f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xa8, 0x1f, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x98, 0x1f, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x54, 0x75, 0x72, 0x6e, 0x20, 0x69, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x2e, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x65, 0x61, 0x76, 0x65, 0x20, 0x69, 0x74, 0x20, 0x6f, 0x6e, 0x2e, 0x00, 0x00, 0x00, 0x00
    .byte 0xc4, 0x1f, 0x0f, 0x08
    .byte 0x80, 0x1f, 0x0f, 0x08
    .byte 0x60, 0x1f, 0x0f, 0x08
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20
    .byte 0x79, 0x6f, 0x75, 0x72, 0x20, 0x72, 0x6f, 0x6f, 0x6d, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x0a
    .byte 0x77, 0x68, 0x65, 0x6e, 0x20, 0x79, 0x6f, 0x75, 0x7e, 0x32, 0x37, 0x72
    .byte 0x65, 0x20, 0x67, 0x6f, 0x69, 0x6e, 0x67, 0x20, 0x74, 0x6f, 0x20, 0x62, 0x65, 0x64, 0x20, 0x61, 0x74, 0x20, 0x6e, 0x69, 0x67, 0x68, 0x74, 0x3f, 0x00, 0x00, 0x00, 0x00

    @ Question 4, Category 12 (Lonely)
    .byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00
    .byte 0x90, 0x20, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x78, 0x20, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x64, 0x20, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x48, 0x75, 0x64, 0x64, 0x6c, 0x65, 0x20, 0x69, 0x6e, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x72, 0x6e, 0x65, 0x72, 0x2e, 0x00
    .byte 0x48, 0x61, 0x6e, 0x67, 0x20, 0x61, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x20, 0x76, 0x61, 0x63, 0x61, 0x6e, 0x74, 0x6c, 0x79, 0x2e, 0x00, 0x00, 0x00, 0x47, 0x6f, 0x20, 0x6f, 0x6e, 0x20, 0x61, 0x20
    .byte 0x74, 0x72, 0x69, 0x70, 0x2e, 0x00, 0x00, 0x00
    .byte 0xac, 0x20, 0x0f, 0x08
    .byte 0x44, 0x20, 0x0f, 0x08
    .byte 0x14, 0x20, 0x0f, 0x08
    .byte 0x49, 0x74, 0x7e, 0x32, 0x37, 0x73, 0x20, 0x61, 0x20, 0x77, 0x65, 0x65
    .byte 0x6b, 0x65, 0x6e, 0x64, 0x7e, 0x32, 0x63, 0x20, 0x62, 0x75, 0x74, 0x20, 0x6e, 0x6f, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x77, 0x69, 0x6c, 0x6c, 0x20, 0x70, 0x6c, 0x61, 0x79, 0x0a, 0x77, 0x69, 0x74
    .byte 0x68, 0x20, 0x79, 0x6f, 0x75, 0x2e, 0x2e, 0x2e, 0x0a
    .byte 0x57, 0x68, 0x61, 0x74, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x64, 0x6f, 0x3f, 0x00, 0x00, 0x00, 0x00

    @ Question 1, Category 13 (Quirky)
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x54, 0x01, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xc8, 0x01, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff

    .global QuirkyQuest1
    QuirkyQuest1:
    .byte 0x38, 0x21, 0x0f, 0x08
    .byte 0x14, 0x21, 0x0f, 0x08
    .byte 0xf4, 0x20, 0x0f, 0x08

    .byte 0x44, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x73, 0x6f, 0x6d, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x20, 0x72, 0x75, 0x6e, 0x20, 0x6f, 0x75, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x69, 0x6e
    .byte 0x67, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x64, 0x6f, 0x0a
    .byte 0x61, 0x6c, 0x6c, 0x20, 0x6f, 0x66, 0x20, 0x61, 0x20, 0x73, 0x75, 0x64, 0x64, 0x65, 0x6e, 0x3f, 0x00, 0x00, 0x00

    @ Question 2, Category 13 (Quirky)
    .byte 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xf0, 0x21, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xd8, 0x21, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xc4, 0x21, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x54, 0x6f, 0x6f, 0x20, 0x6d, 0x75, 0x63, 0x68, 0x20, 0x74, 0x72, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x2e, 0x00, 0x00, 0x00
    .byte 0x4d, 0x61, 0x79, 0x20, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x7e, 0x32, 0x63, 0x20, 0x6d, 0x61, 0x79, 0x20, 0x6e, 0x6f, 0x74, 0x2e, 0x00, 0x00, 0x00, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x20, 0x72, 0x69
    .byte 0x67, 0x68, 0x74, 0x20, 0x61, 0x77, 0x61, 0x79, 0x2e, 0x00, 0x00, 0x00

    .global QuirkyQuest2
    QuirkyQuest2:
    .byte 0x10, 0x22, 0x0f, 0x08
    .byte 0xa4, 0x21, 0x0f, 0x08
    .byte 0x74, 0x21, 0x0f, 0x08

    .byte 0x48, 0x6f, 0x77, 0x20, 0x71, 0x75, 0x69, 0x63
    .byte 0x6b, 0x6c, 0x79, 0x20, 0x64, 0x6f, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20, 0x61, 0x6e, 0x20, 0x65, 0x2d, 0x6d, 0x61, 0x69, 0x6c, 0x3f, 0x00, 0x00, 0x00, 0x00

    @ Question 3, Category 13 (Quirky)
    .byte 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
    .byte 0xe8, 0x22, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xd4, 0x22, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xb4, 0x22, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0xa4, 0x22, 0x0f, 0x08
    .byte 0x03, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .byte 0x4c, 0x6f, 0x6f, 0x6b, 0x20, 0x66, 0x72, 0x6f, 0x6d, 0x20, 0x61, 0x66, 0x61, 0x72, 0x2e, 0x00, 0x50, 0x75, 0x6c, 0x6c
    .byte 0x20, 0x61, 0x20, 0x70, 0x72, 0x61, 0x6e, 0x6b, 0x20, 0x74, 0x6f, 0x20, 0x67, 0x65, 0x74, 0x20, 0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x00, 0x00, 0x4d, 0x69, 0x67, 0x68
    .byte 0x74, 0x20, 0x73, 0x61, 0x79, 0x20, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x2e, 0x2e, 0x2e, 0x00, 0x00, 0x42, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x79, 0x20, 0x64, 0x65, 0x63, 0x6c, 0x61, 0x72, 0x65, 0x20
    .byte 0x6d, 0x79, 0x20, 0x6c, 0x6f, 0x76, 0x65, 0x2e, 0x00, 0x00, 0x00, 0x00

    .global QuirkyQuest3
    QuirkyQuest3:
    .byte 0x10, 0x23, 0x0f, 0x08
    .byte 0x7c, 0x22, 0x0f, 0x08
    .byte 0x3c, 0x22, 0x0f, 0x08
    .string "There is a person you like...#W\n"
    .string "But there~27s no opportunity to get close.\n"
    .string "What do you do?\0"
    .align 2,0

    @ Question 4, Category 13 (Quirky)
    .byte 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +2 Docile
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +2 Sassy
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00 @ +2 Quirky

    .byte 0xe8, 0x23, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xd0, 0x23, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0xbc, 0x23, 0x0f, 0x08
    .byte 0x02, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff

    .string "Choose either side.\0"
    .align 2,0
    .string "It~27s a trap! Go left.\0"
    .align 2,0
    .string "Instantly go right.\0"
    .align 2,0

    .global QuirkyQuest4
    QuirkyQuest4:
    .byte 0x08, 0x24, 0x0f, 0x08
    .byte 0x9c, 0x23, 0x0f, 0x08
    .byte 0x6c, 0x23, 0x0f, 0x08

    .string "The road forks to the right and left.\n"
    .string "You are told there is a treasure on the\n"
    .string "right side. What do you do?\0"
    .align 2,0

    @ Question 1, Category 14 (Miscellaneous)
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 @ +1 Hasty, +1 Quirky
    .byte 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 @ +1 Jolly, +1 Lonely
    .byte 0xbc, 0x24, 0x0f, 0x08
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xac, 0x24, 0x0f, 0x08
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Go with others.\0"
    .align 2,0
    .string "Go alone.\0"
    .align 2,0

    .global MiscQuest1
    MiscQuest1:
    .byte 0xd4, 0x24, 0x0f, 0x08
    .byte 0x94, 0x24, 0x0f, 0x08
    .byte 0x74, 0x24, 0x0f, 0x08
    .string "On vacation outings~2c you want to...\0"
    .align 2,0

    @ Question 2, Category 14 (Miscellaneous)
    .byte 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +2 Jolly
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00 @ +1 Sassy, +1 Quirky
    .byte 0xd4, 0x0f, 0x0f, 0x08 @ Pointer to Love them!
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0x34, 0x25, 0x0f, 0x08 @ Pointer to Don't care.
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff
    .string "Don~27t care.\0"
    .align 2,0

    .global MiscQuest2
    MiscQuest2:
    .byte 0x50, 0x25, 0x0f, 0x08 @ Pointer to Question Text
    .byte 0x1c, 0x25, 0x0f, 0x08 @ Pointer to Answers Pointer Table
    .byte 0xfc, 0x24, 0x0f, 0x08 @ Nature Points for Answers
    .string "It~27s the summer festival!\n"
    .string "Do you like carnivals?\0"
    .align 2,0

    @ Question 3, Category 14 (Miscellaneous)
    .global MiscQuest3Points
    MiscQuest3Points:
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00  @ +1 Naive, +1 Lonely
    .byte 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 @ +1 Sassy, +1 Hasty

    .global MiscQuest3Answers
    MiscQuest3Answers:
    .4byte MiscQuest3Happy @ Happy pointer
    .byte 0x00, 0x00, 0x00, 0x00
    .4byte MiscQuest3NotHappy @ Not happy pointer
    .byte 0x01, 0x00, 0x00, 0x00
    .byte 0x00, 0x00, 0x00, 0x00
    .byte 0xff, 0xff, 0xff, 0xff

    .global MiscQuest3NotHappy
    MiscQuest3NotHappy:
    .string "Not happy.\0"
    .align 2,0

    .global MiscQuest3Happy
    MiscQuest3Happy:
    .string "Happy!\0"
    .align 2,0

    .global MiscQuest3
    MiscQuest3:
    .4byte MiscQuest3Text
    .4byte MiscQuest3Answers
    .4byte MiscQuest3Points

    .global MiscQuest3Text
    MiscQuest3Text:
    .string "Somebody calls you ~93weird but funny.~94\n"
    .string "How does that make you feel?\0"
    .align 2,0

	.global gPersonalityQuestionPointerTable
gPersonalityQuestionPointerTable: @ 80F2624 (pointers to each question text)
        .byte 0xD8, 0x00, 0x0F, 0x08
        .byte 0x5C, 0x01, 0x0F, 0x08
        .byte 0xCC, 0x01, 0x0F, 0x08
        .byte 0x74, 0x02, 0x0F, 0x08
        .byte 0x18, 0x03, 0x0F, 0x08
        .byte 0xCC, 0x03, 0x0F, 0x08
        .byte 0xB0, 0x04, 0x0F, 0x08
        .byte 0xA0, 0x05, 0x0F, 0x08
        .byte 0x10, 0x06, 0x0F, 0x08
        .byte 0x44, 0x07, 0x0F, 0x08
        .byte 0x1C, 0x09, 0x0F, 0x08
        .byte 0x2C, 0x0A, 0x0F, 0x08
        .byte 0xBC, 0x0A, 0x0F, 0x08
        .byte 0x20, 0x0B, 0x0F, 0x08
        .byte 0xD0, 0x0B, 0x0F, 0x08
        .byte 0xBC, 0x0C, 0x0F, 0x08
        .byte 0x94, 0x0D, 0x0F, 0x08
        .byte 0xFC, 0x0D, 0x0F, 0x08
        .byte 0x54, 0x0E, 0x0F, 0x08
        .byte 0x3C, 0x0F, 0x0F, 0x08
        .byte 0xE0, 0x0F, 0x0F, 0x08
        .byte 0x48, 0x10, 0x0F, 0x08
        .byte 0xA8, 0x10, 0x0F, 0x08
        .byte 0x10, 0x11, 0x0F, 0x08
        .byte 0xE8, 0x11, 0x0F, 0x08
        .byte 0xF8, 0x12, 0x0F, 0x08
        .byte 0xCC, 0x13, 0x0F, 0x08
        .byte 0xA4, 0x14, 0x0F, 0x08
        .byte 0x5C, 0x15, 0x0F, 0x08
        .byte 0x48, 0x16, 0x0F, 0x08
        .byte 0x24, 0x17, 0x0F, 0x08
        .byte 0xEC, 0x17, 0x0F, 0x08
        .byte 0xCC, 0x18, 0x0F, 0x08
        .byte 0x5C, 0x19, 0x0F, 0x08
        .byte 0xCC, 0x19, 0x0F, 0x08
        .byte 0x38, 0x1A, 0x0F, 0x08
        .byte 0xB4, 0x1A, 0x0F, 0x08
        .byte 0x38, 0x1B, 0x0F, 0x08
        .byte 0xBC, 0x1B, 0x0F, 0x08
        .byte 0x18, 0x1C, 0x0F, 0x08
        .byte 0x70, 0x1C, 0x0F, 0x08
        .byte 0xE0, 0x1C, 0x0F, 0x08
        .byte 0xB0, 0x1D, 0x0F, 0x08
        .byte 0x28, 0x1E, 0x0F, 0x08
        .byte 0x94, 0x1E, 0x0F, 0x08
        .byte 0x04, 0x1F, 0x0F, 0x08
        .byte 0xB8, 0x1F, 0x0F, 0x08
        .byte 0xA0, 0x20, 0x0F, 0x08
        .4byte QuirkyQuest1
        .4byte QuirkyQuest2
        .4byte QuirkyQuest3
        .4byte QuirkyQuest4
        .4byte MiscQuest1
        .4byte MiscQuest2
        .4byte MiscQuest3
        .byte 0xD8, 0x07, 0x0F, 0x08 @ (pointer to Question 2B for Brave)

	.global gNatureQuestionTable
gNatureQuestionTable: @ 80F2704 (Categories??)
        .byte 0x00, 0x00, 0x00, 0x00 @ (Hardy)
        .byte 0x01, 0x01, 0x01, 0x01 @ (Docile)
        .byte 0x02, 0x02, 0x02, 0x02 @ (Brave)
        .byte 0x03, 0x03, 0x03, 0x03 @ (Jolly)
        .byte 0x04, 0x04, 0x04, 0x04 @ (Impish)
        .byte 0x05, 0x05, 0x05, 0x05 @ (Naive)
        .byte 0x06, 0x06, 0x06, 0x06 @ (Timid)
        .byte 0x07, 0x07, 0x07, 0x07 @ (Hasty)
        .byte 0x08, 0x08, 0x08, 0x08 @ (Sassy)
        .byte 0x09, 0x09, 0x09, 0x09 @ (Calm)
        .byte 0x0A, 0x0A, 0x0A, 0x0A @ (Relaxed)
        .byte 0x0B, 0x0B, 0x0B, 0x0B @ (Lonely)
        .byte 0x0C, 0x0C, 0x0C, 0x0C @ (Quirky)
        .byte 0x0D, 0x0D, 0x0D @ (Miscellaneous)
        .byte 0x02 @ (Question 2b for Brave Category)

	.global gGenderText
gGenderText: @ 80F273C
	.string "Are you a boy or a girl?\0"
        .align 2,0
        .byte 0x3C, 0x27, 0x0F, 0x08 @ pointer to above text

	.global gUnknown_80F275C
gUnknown_80F275C: @ 80F275C
        .4byte BoyText @ Pointer to boy text
        .byte 0x00, 0x00, 0x00, 0x00
        .4byte GirlText @ Pointer to girl text
        .byte 0x01, 0x00, 0x00, 0x00
        .byte 0x00, 0x00, 0x00, 0x00 @ end of table
        .byte 0xFF, 0xFF, 0xFF, 0xFF

        .global GirlText
        GirlText:
        .string "Girl.\0"
        .align 2,0

        .global BoyText
        BoyText:
        .string "Boy.\0"

        .byte 0x01
        .byte 0x02
        .byte 0x03
        .byte 0x04
        .byte 0x05
        .byte 0x06
        .byte 0x07
        .byte 0x08
        .byte 0x09
        .byte 0x0A
        .byte 0x0B
        .byte 0x0C
        .byte 0x0D

	.global gStarters
gStarters: @ 80F278E
        .byte 0x04, 0x00 @ Charmander (Hardy M)
        .byte 0x19, 0x00 @ Pikachu (Hardy F)
        .byte 0x01, 0x00 @ Bulbasaur (Docile M)
        .byte 0x98, 0x00 @ Chikorita (Docile F)
        .byte 0x42, 0x00 @ Machop (Brave M)
        .byte 0x04, 0x00 @ Charmander (Brave F)
        .byte 0x07, 0x00 @ Squirtle (Jolly M)
        .byte 0x9E, 0x00 @ Totodile (Jolly F)
        .byte 0x19, 0x00 @ Pikachu (Impish M)
        .byte 0x68, 0x00 @ Cubone (Impish F)
        .byte 0x9E, 0x00 @ Totodile (Naive M)
        .byte 0x85, 0x00 @ Eevee (Naive F)
        .byte 0x9B, 0x00 @ Cyndaquil (Timid M)
        .byte 0x1B, 0x01 @ Mudkip (Timid F)
        .byte 0x18, 0x01 @ Torchic (Hasty M)
        .byte 0x45, 0x01 @ Skitty (Hasty F)
        .byte 0x15, 0x01 @ Treecko (Sassy M)
        .byte 0x18, 0x01 @ Torchic (Sassy F)
        .byte 0x1B, 0x01 @ Mudkip (Calm M)
        .byte 0x01, 0x00 @ Bulbasaur (Calm F)
        .byte 0x36, 0x00 @ Psyduck (Relaxed M)
        .byte 0x07, 0x00 @ Squirtle (Relaxed F)
        .byte 0x68, 0x00 @ Cubone (Lonely M)
        .byte 0x36, 0x00 @ Psyduck (Lonely F)
        .byte 0x34, 0x00 @ Meowth (Quirky M)
        .byte 0x15, 0x01 @ Treecko (Quirky F)
        .byte 0x00, 0x00 @ End of table

	.global gStarterReveal
gStarterReveal: @ 80F27C4
        .string "\n"
        .string "#+The Pokémon $m0!\0"
        .4byte gStarterReveal

	.global gUnknown_80F27DC
gUnknown_80F27DC: @ 80F27DC
        .string "#+This is the final step.#W\n"
        .string "#+Who would you like to have as a partner?#P" @ #P -> scroll down
        .string "#+Choose the Pokémon you want\n"
        .string "#+as your partner from this group.\0"
        .align 2,0
        .4byte gUnknown_80F27DC

	.global gUnknown_80F286C
gUnknown_80F286C: @ 80F286C
        .string "#+What is your partner~27s nickname?\0"
        .align 2,0
        .4byte gUnknown_80F286C

	.global gUnknown_80F2898
gUnknown_80F2898: @ 80F2898
        .string "#+OK! We~27re all set!#P"
        .string "#+Let~27s get you into the\n"
        .string "#+world of Pokémon!#P"
        .string "#+Go for it!\0"
        .align 2,0
        .4byte gUnknown_80F2898

	.global gPersonalityTypeDescriptionTable
gPersonalityTypeDescriptionTable: @ 80F28F4
        .4byte gHardyDescription
        .4byte gDocileDescription
        .4byte gBraveDescription
        .4byte gJollyDescription
        .4byte gImpishDescription
        .4byte gNaiveDescription
        .4byte gTimidDescription
        .4byte gHastyDescription
        .4byte gSassyDescription
        .4byte gCalmDescription
        .4byte gRelaxedDescription
        .4byte gLonelyDescription
        .4byte gQuirkyDescription

        .global gQuirkyDescription
        gQuirkyDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The quirky type.#P"
        .string "#+People consider you an eccentric\n"
        .string "#+who does things at your own pace.#P"
        .string "#+You never break tempo.#P"
        .string "#+Your carefree nature makes you\n"
        .string "#+attractive. But you also happen\n"
        .string "#+to be somewhat childish...#P"
        .string "#+You are fickle and cause problems for the\n"
        .string "#+people who have to go along with you.#P"
        .string "#+Maybe people are even upset\n"
        .string "#+with you for being so fickle?#P"
        .string "#+If you realize how selfishly\n"
        .string "#+you~27re behaving~2c try to think\n"
        .string "#+before you do anything rash.#P"
        .string "#+A quirky person like you should be...\0"
        .align 2,0

        .global gLonelyDescription
        gLonelyDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The lonely type.#P"
        .string "#+You always act cheerful and\n"
        .string "#+jocular around other people.#P"
        .string "#+But that~27s only because\n"
        .string "#+you are with other people.#P"
        .string "#+However~2c when you get alone...#P"
        .string "#+Do you find yourself\n"
        .string "#+feeling oddly depressed?#P"
        .string "#+That~27s why you always\n"
        .string "#+want to be with others.#P"
        .string "#+But if you go around feeling\n"
        .string "#+depressed too much...#P"
        .string "#+Your nutritional balance goes out\n"
        .string "#+of wack. Eat more vegetables!#P"
        .string "#+However...#W\n"
        .string "#+It~27s not a bad thing\n"
        .string "#+to feel lonely.#P"
        .string "#+You know what it~27s like when you aren~27t\n"
        .string "#+alone~2c so that~27s why you feel lonesome.#P"
        .string "#+And that~27s why you aren~27t really alone.#P"
        .string "#+A lonely person like you should be...\0"
        .align 2,0

        .global gRelaxedDescription
        gRelaxedDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The relaxed type.#P"
        .string "#+Do you occasionally\n"
        .string "#+zone out and miss a bus?#P"
        .string "#+Or do you find yourself dozing off?#P"
        .string "#+Or is your reaction time\n"
        .string "#+a little slower than others?#P"
        .string "#+But that~27s not necessarily\n"
        .string "#+a bad thing.#P"
        .string "#+You can do things at your own\n"
        .string "#+tempo without feeling pressured.#P"
        .string "#+You can live in a relaxed and\n"
        .string "#+unhurried manner without worries.#P"
        .string "#+I think that~27s a happy\n"
        .string "#+lifestyle to be envied~2c even.#P"
        .string "#+You~27re also surprisingly popular.#P"
        .string "#+The way you vacantly stare\n"
        .string "#+off into the distance...#P"
        .string "#+It should make that someone\n"
        .string "#+special~27s pulse race.#P"
        .string "#+A relaxed person like you should be...\0"
        .align 2,0

        .global gCalmDescription
        gCalmDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The calm type.#P"
        .string "#+You~27re capable of giving advice\n"
        .string "#+to friends with worries.#P"
        .string "#+You don~27t like to fight.#P"
        .string "#+You~27re a warm~2c kindhearted\n"
        .string "#+person who cares.#P"
        .string "#+You must have many friends\n"
        .string "#+who look up to you.#P"
        .string "#+However...#W\n"
        .string "#+You may also be somewhat gullible...#P"
        .string "#+As well as a little careless...#P"
        .string "#+And even a little sloppy.#P"
        .string "#+You might want to keep\n"
        .string "#+those points in mind.#P"
        .string "#+A calm person like you should be...\0"
        .align 2,0

        .global gSassyDescription
        gSassyDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The sassy type.#P"
        .string "#+You tend to be somewhat cynical.#P"
        .string "#+Despite that~2c there is something\n"
        .string "#+appealing and lovable about you.#P"
        .string "#+But do you occasionally say something\n"
        .string "#+arrogant that angers others?#P"
        .string "#+Do you make that mistake?#P"
        .string "#+Or have people called you\n"
        .string "#+conceited~2c vain~2c or selfish?#P"
        .string "#+Have people said that about you?#P"
        .string "#+Huh?#W You~27re telling me to get lost?#P"
        .string "#+Why~2c you... Come here and say that!#W\n"
        .string "#+......Gasp!#P"
        .string "#+...I~27m sorry.\n"
        .string "#+I let my feelings run away.\n"
        .string "#+I truly regret this~2c really.#P"
        .string "#+Anyway~2c your cool and aloof\n"
        .string "#+attitude is what defines you.#P"
        .string "#+It makes you exasperating and\n"
        .string "#+appealing at the same time.#P"
        .string "#+A sassy person like you should be...\0"
        .align 2,0

        .global gHastyDescription
        gHastyDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The hasty type.#P"
        .string "#+You like to take charge\n"
        .string "#+and get things done.#P"
        .string "#+You~27re a real go-getter.#P"
        .string "#+But are you also stressed out?#P"
        .string "#+You get irritated when your\n"
        .string "#+friends don~27t show up on time.#P"
        .string "#+You get frustrated when things\n"
        .string "#+don~27t turn out the way you expect.#P"
        .string "#+Maybe you jab the elevator button\n"
        .string "#+if the elevator is slow to arrive.#P"
        .string "#+...Maybe you~27re already jabbing\n"
        .string "#+the A Button repeatedly now.#P"
        .string "#+Beware--getting too easily irritated\n"
        .string "#+just isn~27t good for your well-being.#P"
        .string "#+A hasty person like you should be...\0"
        .align 2,0

        .global gTimidDescription
        gTimidDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The timid type.#P"
        .string "#+You may find it hard to go\n"
        .string "#+to the washroom at night.#P"
        .string "#+You may also find it too frightening\n"
        .string "#+to go back to school to get something\n"
        .string "#+you left behind in class.#P"
        .string "#+If you~27re ever walking on a dark\n"
        .string "#+street at night~2c you probably turn\n"
        .string "#+around often to check behind you.#P"
        .string "#+But your timid nature is\n"
        .string "#+also your good point!#P"
        .string "#+Because those who know fear are\n"
        .string "#+those who know true courage.#P"
        .string "#+A timid person like you should be...\0"
        .align 2,0

        .global gNaiveDescription
        gNaiveDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The naive type.#P"
        .string "#+You are highly curious~2c\n"
        .string "#+and you love rare things.#P"
        .string "#+Your cheerful and carefree\n"
        .string "#+attitude should make things fun\n"
        .string "#+for the people around you.#P"
        .string "#+But you do have one flaw.\n"
        .string "#+You can be childish.#P"
        .string "#+You can never sit still.\n"
        .string "#+You~27re always on the move.#P"
        .string "#+You can also be selfish~2c\n"
        .string "#+so you should watch yourself.#P"
        .string "#+A naive person like you should be...\0"
        .align 2,0

        .global gImpishDescription
        gImpishDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The impish type.#P"
        .string "#+You~27re playful~2c cheerful~2c\n"
        .string "#+and you love pranks.#P"
        .string "#+You~27re also kindhearted.#P"
        .string "#+That~27s why the people around\n"
        .string "#+you find you so irresistible.#P"
        .string "#+You must be the most\n"
        .string "#+popular person around!#P"
        .string "#+Oh?#W You~27re not that popular?#W\n"
        .string "#+You~27re either being modest...\n"
        .string "#+or you just don~27t notice it.#P"
        .string "#+I bet people are just too shy\n"
        .string "#+to let their feelings be known.#P"
        .string "#+There~27s someone out there who~27s\n"
        .string "#+afraid to declare their love for you!#P"
        .string "#+An impish person like you should be...\0"
        .align 2,0

        .global gJollyDescription
        gJollyDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The jolly type.#P"
        .string "#+Always laughing and smiling~2c\n"
        .string "#+you uplift everyone around you.#P"
        .string "#+You love jokes!#P"
        .string "#+You have lots of friends~2c and\n"
        .string "#+you~27re popular wherever you go.#P"
        .string "#+But sometimes you get carried away\n"
        .string "#+and say things that get you in trouble.#P"
        .string "#+You should learn to think before\n"
        .string "#+saying or doing anything.#P"
        .string "#+A jolly person like you should be...\0"
        .align 2,0

        .global gBraveDescription
        gBraveDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The brave type.#P"
        .string "#+You have a strong sense of justice.#W\n"
        .string "#+You hate evil.#W\n"
        .string "#+You will take on any opponent.#P"
        .string "#+You are truly a hero!#P"
        .string "#+Go forth!#P"
        .string "#+For justice...#W\n"
        .string "#+For peace on earth...#W\n"
        .string "#+Fight the forces of evil!#P"
        .string "#+......#WIf I~27m wrong...#W\n"
        .string "#+Work at becoming a true hero!#P"
        .string "#+A brave person like you should be...\0"
        .align 2,0

        .global gDocileDescription
        gDocileDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The docile type.#P"
        .string "#+You~27re very kindhearted.#W\n"
        .string "#+Very helpful.#W\n"
        .string "#+You can make friends with anyone.#P"
        .string "#+You~27re a wonderful person.#P"
        .string "#+......#WIs that going overboard?#W\n"
        .string "#+I don~27t think so.#P"
        .string "#+You yourself should be\n"
        .string "#+the best judge of that.#P"
        .string "#+A docile person like you should be...\0"
        .align 2,0

        .global gHardyDescription
        gHardyDescription:
        .string "#+You appear to be...#W\n"
        .string "#+The hardy type.#P"
        .string "#+You do your homework diligently~2c\n"
        .string "#+and you know to eat properly.#P"
        .string "#+You have strong willpower that lets\n"
        .string "#+you complete tasks~2c however tough.#P"
        .string "#+But~2c you can also be stubborn to the\n"
        .string "#+point of even feuding with friends...#P"
        .string "#+Nothing will go right for you when you~27re\n"
        .string "#+irritated~2c so learn to laugh it off.#P"
        .string "#+A hardy person like you should be...\0"
        .align 2,0