aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/dreamgen.h
blob: c3451342eb8266b00fe14bf4f816063590abd286 (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
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
#ifndef TASMRECOVER_DREAMGEN_STUBS_H__
#define TASMRECOVER_DREAMGEN_STUBS_H__

#	include "runtime.h"

namespace dreamgen {

	void __dispatch_call(Context &context, unsigned addr);
	void __start(Context &context);

	void randomnumber(Context &context);
	void quickquit(Context &context);
	void quickquit2(Context &context);
	void keyboardread(Context &context);
	void resetkeyboard(Context &context);
	void setkeyboardint(Context &context);
	void readfromfile(Context &context);
	void closefile(Context &context);
	void openforsave(Context &context);
	void openfilenocheck(Context &context);
	void openfile(Context &context);
	void createfile(Context &context);
	void dontloadseg(Context &context);
	void mousecall(Context &context);
	void setmouse(Context &context);
	void gettime(Context &context);
	void allocatemem(Context &context);
	void deallocatemem(Context &context);
	void removeemm(Context &context);
	void setupemm(Context &context);
	void pitinterupt(Context &context);
	void getridofpit(Context &context);
	void setuppit(Context &context);
	void startdmablock(Context &context);
	void dmaend(Context &context);
	void restoreems(Context &context);
	void saveems(Context &context);
	void bothchannels(Context &context);
	void channel1only(Context &context);
	void channel0only(Context &context);
	void out22c(Context &context);
	void soundend(Context &context);
	void interupttest(Context &context);
	void disablesoundint(Context &context);
	void enablesoundint(Context &context);
	void checksoundint(Context &context);
	void setsoundoff(Context &context);
	void soundstartup(Context &context);
	void loadsecondsample(Context &context);
	void loadsample(Context &context);
	void loadspeech(Context &context);
	void scanfornames(Context &context);
	void saveseg(Context &context);
	void loadseg(Context &context);
	void loadposition(Context &context);
	void saveposition(Context &context);
	void error(Context &context);
	void generalerror(Context &context);
	void dosreturn(Context &context);
	void set16colpalette(Context &context);
	void mode640x480(Context &context);
	void showgroup(Context &context);
	void fadedos(Context &context);
	void doshake(Context &context);
	void vsync(Context &context);
	void setmode(Context &context);
	void readoneblock(Context &context);
	void showpcx(Context &context);

	const static uint16 kWaitabit = 1105;
	const static uint16 kShuffletextads = 2660;
	const static uint16 kCanopenpool = 3385;
	const static uint16 kGottrainframe = 1105;
	const static uint16 kInteruptworked = 4949;
	const static uint16 kIsmorereel2 = 4949;
	const static uint16 kCannotuseopen = 2660;
	const static uint16 kNotret = 3861;
	const static uint16 kNextmonkspeak = 2494;
	const static uint16 kNothoteldoor1 = 1214;
	const static uint16 kNothoteldoor2 = 1214;
	const static uint16 kWearingshades = 3385;
	const static uint16 kKillryan = 1105;
	const static uint16 kSameline = 1711;
	const static uint16 kNotuseinv = 2494;
	const static uint16 kDoneit = 4949;
	const static uint16 kNotunderchurch = 4949;
	const static uint16 kNowatch = 4949;
	const static uint16 kBlankex = 2660;
	const static uint16 kOberase = 2660;
	const static uint16 kNowornerror = 2660;
	const static uint16 kNotdes2 = 1105;
	const static uint16 kAlreadyactload = 3861;
	const static uint16 kNotrightcont = 3385;
	const static uint16 kNotch0only = 4949;
	const static uint16 kNotwatchpath = 4949;
	const static uint16 kEdensdhere = 3385;
	const static uint16 kUnscrewplate = 3393;
	const static uint16 kGotmonkryan = 1105;
	const static uint16 kFindopen1a = 2494;
	const static uint16 kSearchmess = 5691;
	const static uint16 kNotworn = 2494;
	const static uint16 kError6patch = 4261;
	const static uint16 kNextcheck = 5691;
	const static uint16 kPlayingalready = 5073;
	const static uint16 kStereonotok = 3393;
	const static uint16 kSearchagain = 2660;
	const static uint16 kNotnewdirect = 1113;
	const static uint16 kEarlyendrun = 2494;
	const static uint16 kWidth18 = 1819;
	const static uint16 kNotbeforehdead = 1105;
	const static uint16 kNotheldtrainer = 3385;
	const static uint16 kAfterprintname = 3861;
	const static uint16 kIncdir = 1113;
	const static uint16 kError1 = 3861;
	const static uint16 kError2 = 3861;
	const static uint16 kError3 = 3861;
	const static uint16 kError4 = 3861;
	const static uint16 kError5 = 3861;
	const static uint16 kError6 = 3861;
	const static uint16 kError7 = 3861;
	const static uint16 kError8 = 3861;
	const static uint16 kNotendcard = 1105;
	const static uint16 kNotneg2 = 5691;
	const static uint16 kCantpick = 2660;
	const static uint16 kNodown = 2494;
	const static uint16 kNotaxeonpool = 1105;
	const static uint16 kIsbaseadd = 4949;
	const static uint16 kShuffleadsdown = 2660;
	const static uint16 kFindtopictext = 2895;
	const static uint16 kFinishevery2 = 1711;
	const static uint16 kCheckuselist = 2895;
	const static uint16 kFinishevery1 = 1711;
	const static uint16 kBigroom = 1711;
	const static uint16 kAlreadyplce = 2660;
	const static uint16 kMenuframeok = 3547;
	const static uint16 kNotdelhotel = 2776;
	const static uint16 kAlreadydu = 2776;
	const static uint16 kGotintro1text = 1105;
	const static uint16 kNotnewintro = 5674;
	const static uint16 kRootdir = 2885;
	const static uint16 kDorain = 1113;
	const static uint16 kAlreadydd = 2776;
	const static uint16 kNotblast = 4949;
	const static uint16 kNorex = 2494;
	const static uint16 kNosetloop = 4949;
	const static uint16 kMonmessageloop = 2895;
	const static uint16 kAlreadyplc2 = 2660;
	const static uint16 kNotarrow = 5698;
	const static uint16 kUpdateloop = 1214;
	const static uint16 kIdentifyex = 5073;
	const static uint16 kSeencard = 2660;
	const static uint16 kAlreadygetops = 3777;
	const static uint16 kNotenter = 3525;
	const static uint16 kRainloop = 1214;
	const static uint16 kNotplot = 1214;
	const static uint16 kIdentifyreel = 5073;
	const static uint16 kStillline = 1113;
	const static uint16 kSetallloop = 3393;
	const static uint16 kDiscopslist = 3777;
	const static uint16 kBacktosolid = 1819;
	const static uint16 kNotloc43 = 4949;
	const static uint16 kTapwith = 3385;
	const static uint16 kFinishrain = 1214;
	const static uint16 kNotgunonpool = 1105;
	const static uint16 kNotsmally2 = 5698;
	const static uint16 kBotlotv = 4949;
	const static uint16 kNotendkey = 3393;
	const static uint16 kAlreadyblnk = 5698;
	const static uint16 kPasspassed = 2895;
	const static uint16 kMoreintroseq = 2494;
	const static uint16 kNotplset = 1711;
	const static uint16 kPathoktv = 3393;
	const static uint16 kIsex = 2660;
	const static uint16 kLineexit = 5691;
	const static uint16 kNotupperc = 2776;
	const static uint16 kGotsoldframe = 1105;
	const static uint16 kDonextf = 3589;
	const static uint16 kNomorethan6 = 5691;
	const static uint16 kTendstohoriz = 5691;
	const static uint16 kTwolotsleft = 3589;
	const static uint16 kCanmore = 2692;
	const static uint16 kArrow = 5698;
	const static uint16 kHigher = 1113;
	const static uint16 kAtmospherelist = 5073;
	const static uint16 kHundredsc = 4945;
	const static uint16 kNotbeforedead = 1105;
	const static uint16 kNofindininv = 3393;
	const static uint16 kFinmonscroll = 1711;
	const static uint16 kFindinv2 = 2660;
	const static uint16 kFindinv1 = 2660;
	const static uint16 kNotsparkys = 4949;
	const static uint16 kSpacepress = 3861;
	const static uint16 kWaitstep = 1105;
	const static uint16 kNofill = 1819;
	const static uint16 kFolderlist = 3547;
	const static uint16 kNoleftpage = 3589;
	const static uint16 kFoundcharacter = 3861;
	const static uint16 kHangonloop = 5862;
	const static uint16 kTopleft = 5691;
	const static uint16 kGetscash = 3385;
	const static uint16 kNotlastraise = 1105;
	const static uint16 kNumberpoke3 = 3393;
	const static uint16 kNumberpoke2 = 3393;
	const static uint16 kNumberpoke1 = 3393;
	const static uint16 kNumberpoke0 = 3393;
	const static uint16 kNotsparky1 = 1105;
	const static uint16 kAlreadygrab = 2660;
	const static uint16 kNotsamealready = 5691;
	const static uint16 kInitrainside = 1113;
	const static uint16 kShutdoor = 1214;
	const static uint16 kOktalk2 = 1105;
	const static uint16 kNotmonkryan = 1105;
	const static uint16 kNotendcreds = 1105;
	const static uint16 kNotworntoopen = 2660;
	const static uint16 kNotsmokeb2 = 1105;
	const static uint16 kNotsmokeb1 = 1105;
	const static uint16 kAlreadyexinv = 2660;
	const static uint16 kShowwatchreel = 4949;
	const static uint16 kNoshow = 1105;
	const static uint16 kRandomlouis = 1105;
	const static uint16 kNotnexttalk = 2660;
	const static uint16 kSteadyframe = 1105;
	const static uint16 kDiarylist = 3651;
	const static uint16 kNotlouisanim = 1105;
	const static uint16 kNotonbalc = 3385;
	const static uint16 kNotout2 = 2660;
	const static uint16 kClosedfolder = 3589;
	const static uint16 kNomadtext = 1105;
	const static uint16 kCorrectcard = 3385;
	const static uint16 kTalking = 1105;
	const static uint16 kExframe = 2660;
	const static uint16 kFoundfile2 = 2895;
	const static uint16 kNotover32 = 5691;
	const static uint16 kAlreadywalking = 5691;
	const static uint16 kCansaveok = 3819;
	const static uint16 kWatchison = 5691;
	const static uint16 kKernit = 2494;
	const static uint16 kNotinlouiss = 3393;
	const static uint16 kOver1001 = 1105;
	const static uint16 kOver1000 = 1105;
	const static uint16 kFillcupfromtap = 3385;
	const static uint16 kOpenlift = 1214;
	const static uint16 kMakeswapex = 2660;
	const static uint16 kAlreadyinfo = 2776;
	const static uint16 kGotlighterwith = 3385;
	const static uint16 kNowristwatch = 5691;
	const static uint16 kNotfirstmad = 1105;
	const static uint16 kCurfileloop = 2895;
	const static uint16 kGameerror1 = 3861;
	const static uint16 kGotcopframe = 1105;
	const static uint16 kAlreadykeyp = 3693;
	const static uint16 kDob = 3525;
	const static uint16 kNotdiffdest = 1819;
	const static uint16 kNotremset = 1711;
	const static uint16 kDumpallloop = 1711;
	const static uint16 kNextcheck2 = 5691;
	const static uint16 kAlreadykeyn = 3693;
	const static uint16 kEndwatchtalk = 2692;
	const static uint16 kNottalked = 1105;
	const static uint16 kNotsetd = 2660;
	const static uint16 kSkipreelsound = 1214;
	const static uint16 kNotspokento = 1105;
	const static uint16 kEndofenvironment = 4949;
	const static uint16 kEndofgame = 4949;
	const static uint16 kNoselslot2 = 3861;
	const static uint16 kScanloop = 4884;
	const static uint16 kNotskip1 = 1711;
	const static uint16 kKeybuffer = 5715;
	const static uint16 kNotendcopper = 1105;
	const static uint16 kFrameloopfx1 = 1819;
	const static uint16 kFrameloopfx3 = 1819;
	const static uint16 kFrameloopfx2 = 1819;
	const static uint16 kNotpressed = 5698;
	const static uint16 kNotmonk2text8 = 1105;
	const static uint16 kNotmonk2text9 = 1105;
	const static uint16 kNotmonk2text2 = 1105;
	const static uint16 kNotmonk2text3 = 1105;
	const static uint16 kNotmonk2text1 = 1105;
	const static uint16 kNotmonk2text6 = 1105;
	const static uint16 kNotmonk2text7 = 1105;
	const static uint16 kNotmonk2text4 = 1105;
	const static uint16 kNotmonk2text5 = 1105;
	const static uint16 kNot164 = 2494;
	const static uint16 kNot165 = 2494;
	const static uint16 kNot160 = 2494;
	const static uint16 kNot161 = 2494;
	const static uint16 kNot162 = 2494;
	const static uint16 kNot163 = 2494;
	const static uint16 kNot168 = 2494;
	const static uint16 kNocopper = 1105;
	const static uint16 kCantdrip = 1105;
	const static uint16 kFlashdots = 4949;
	const static uint16 kTopfinished = 3651;
	const static uint16 kOktalk = 1105;
	const static uint16 kNonefound = 5073;
	const static uint16 kNofindingtopic = 2895;
	const static uint16 kGotgraphic = 2776;
	const static uint16 kOnelot2 = 2494;
	const static uint16 kFirstdes = 1105;
	const static uint16 kWordloop = 2494;
	const static uint16 kBotlot = 4949;
	const static uint16 kDonterase = 2660;
	const static uint16 kAtlast4 = 1214;
	const static uint16 kEndofcolon = 2660;
	const static uint16 kNotcentre = 2494;
	const static uint16 kDontbother28 = 4949;
	const static uint16 kNomadspeed = 1105;
	const static uint16 kCanselectob = 3393;
	const static uint16 kNotgunonrock = 1105;
	const static uint16 kPath = 3393;
	const static uint16 kNomorefading = 2494;
	const static uint16 kAlreadydiscops = 3777;
	const static uint16 kWidth80 = 1819;
	const static uint16 kNotsartadd = 3693;
	const static uint16 kRyanloop1 = 2494;
	const static uint16 kRyanloop2 = 2494;
	const static uint16 kLoop120 = 1819;
	const static uint16 kLoop127 = 2660;
	const static uint16 kLoop124 = 1819;
	const static uint16 kLoop125 = 1819;
	const static uint16 kLessthanapage = 2494;
	const static uint16 kMoreloadspeech = 4926;
	const static uint16 kCupfromtapfull = 3385;
	const static uint16 kCombatover1 = 1105;
	const static uint16 kCombatover2 = 1105;
	const static uint16 kFlunkedit = 5073;
	const static uint16 kCutgate = 3393;
	const static uint16 kNotlastf = 3589;
	const static uint16 kDoswap1 = 2660;
	const static uint16 kDoswap2 = 2660;
	const static uint16 kNotdes1 = 1105;
	const static uint16 kBuscombatwonend = 1105;
	const static uint16 kAddloop = 2660;
	const static uint16 kWidth10 = 1819;
	const static uint16 kWidth11 = 1819;
	const static uint16 kWidth12 = 1819;
	const static uint16 kWidth13 = 1819;
	const static uint16 kWidth14 = 1819;
	const static uint16 kWidth15 = 1819;
	const static uint16 kWidth16 = 1819;
	const static uint16 kWidth17 = 1819;
	const static uint16 kWaitstopwalk = 4949;
	const static uint16 kWidth19 = 1819;
	const static uint16 kNonoise = 3525;
	const static uint16 kSlabdwrong = 3385;
	const static uint16 kUselist = 2895;
	const static uint16 kMovealtar = 3385;
	const static uint16 kQuickquit2 = 3861;
	const static uint16 kFoundlen = 4884;
	const static uint16 kOperand1 = 2883;
	const static uint16 kMake = 5691;
	const static uint16 kFinishidentify = 5073;
	const static uint16 kNotlouiscard = 2660;
	const static uint16 kIswalking = 5674;
	const static uint16 kIsntcolon = 2660;
	const static uint16 kZoomit = 1819;
	const static uint16 kFoundnews = 2776;
	const static uint16 kSlabbwrong = 3385;
	const static uint16 kSlotloop = 3861;
	const static uint16 kNotsarters2 = 4949;
	const static uint16 kNotneg1 = 5691;
	const static uint16 kDoopeninv = 2660;
	const static uint16 kFoodinside = 3393;
	const static uint16 kClearedlocations = 2776;
	const static uint16 kNomore = 2692;
	const static uint16 kAlreadyusedit = 3385;
	const static uint16 kRetryreel = 1214;
	const static uint16 kTalklist = 2660;
	const static uint16 kNotexist = 4884;
	const static uint16 kRockcombatend = 1105;
	const static uint16 kWidth57 = 1819;
	const static uint16 kPrtspriteloop = 1105;
	const static uint16 kOpenboxwith = 3385;
	const static uint16 kNotloop = 4949;
	const static uint16 kNotinalley = 3393;
	const static uint16 kPrintloopslow6 = 2494;
	const static uint16 kPrintloopslow5 = 2494;
	const static uint16 kNextone = 4884;
	const static uint16 kExloop = 2660;
	const static uint16 kCantdrip2 = 1105;
	const static uint16 kSecondlot = 2776;
	const static uint16 kAlreadysel = 3861;
	const static uint16 kNotfreename = 5691;
	const static uint16 kNotover2 = 5073;
	const static uint16 kCanplace1 = 2660;
	const static uint16 kCanplace3 = 2660;
	const static uint16 kFinishmon = 2494;
	const static uint16 kDeleteconts = 2660;
	const static uint16 kLooknext2 = 2494;
	const static uint16 kNotwalk = 1105;
	const static uint16 kNotzeronum = 4949;
	const static uint16 kError8patch = 4370;
	const static uint16 kNodos = 3861;
	const static uint16 kIsedens = 4949;
	const static uint16 kNotlouisvol2 = 5073;
	const static uint16 kHeavywait = 1105;
	const static uint16 kPickupcontloop = 2660;
	const static uint16 kHavegotcard = 1113;
	const static uint16 kNotlastslab = 3385;
	const static uint16 kComloop2 = 2776;
	const static uint16 kSpeechfile = 4932;
	const static uint16 kFindlenextext = 2660;
	const static uint16 kSecurwait = 1105;
	const static uint16 kComloop = 2776;
	const static uint16 kNotboss = 1105;
	const static uint16 kLine23 = 5691;
	const static uint16 kDiscopsloop = 3777;
	const static uint16 kKeypadlist = 3393;
	const static uint16 kWearingwatch = 3385;
	const static uint16 kSoundfail = 4949;
	const static uint16 kHislope = 5691;
	const static uint16 kGeneralerror = 3861;
	const static uint16 kGotmonktext = 1105;
	const static uint16 kNovolumeload = 5862;
	const static uint16 kGotkeyn = 3693;
	const static uint16 kDiffsub3 = 3393;
	const static uint16 kGotlength = 2660;
	const static uint16 kAnimsparky = 1105;
	const static uint16 kNought = 1711;
	const static uint16 kNotendtitles = 1105;
	const static uint16 kIswatchingmode = 4949;
	const static uint16 kNotquickp = 1105;
	const static uint16 kNotwaitingheli = 1105;
	const static uint16 kNotright = 3385;
	const static uint16 kNolook = 2660;
	const static uint16 kAxeoncontrols = 3393;
	const static uint16 kFoundpersonal = 2776;
	const static uint16 kNotaristoadd = 3589;
	const static uint16 kFinishpars = 2895;
	const static uint16 kNotnearly = 1214;
	const static uint16 kSlabawrong = 3385;
	const static uint16 kAfterpress = 3393;
	const static uint16 kFinishedwalk = 1113;
	const static uint16 kGotnext2 = 2494;
	const static uint16 kNozoomonoff = 3693;
	const static uint16 kDdok = 2776;
	const static uint16 kLiftclosed = 1214;
	const static uint16 kNotmonktext11 = 1105;
	const static uint16 kNotafreeid = 5073;
	const static uint16 kEndreelsound = 1214;
	const static uint16 kNotendguard1 = 1105;
	const static uint16 kWidth29 = 1819;
	const static uint16 kWidth28 = 1819;
	const static uint16 kWidth25 = 1819;
	const static uint16 kWidth24 = 1819;
	const static uint16 kWidth27 = 1819;
	const static uint16 kWidth26 = 1819;
	const static uint16 kAlreadydos = 3861;
	const static uint16 kWidth20 = 1819;
	const static uint16 kWidth23 = 1819;
	const static uint16 kWidth22 = 1819;
	const static uint16 kNodd = 2776;
	const static uint16 kPipewith = 3385;
	const static uint16 kShutdoor2 = 1214;
	const static uint16 kGotdrinker = 1105;
	const static uint16 kDogrb = 2660;
	const static uint16 kNodu = 2776;
	const static uint16 kHangonloope = 2494;
	const static uint16 kShaketable = 1711;
	const static uint16 kAfterinfo = 2776;
	const static uint16 kCanredes = 2714;
	const static uint16 kNotbeforedeadb = 1105;
	const static uint16 kFinishshake = 1711;
	const static uint16 kNomake = 2660;
	const static uint16 kNotclear = 4949;
	const static uint16 kNotwithboss = 3393;
	const static uint16 kAlreadylastf = 3589;
	const static uint16 kConvertpcx = 1711;
	const static uint16 kFadedosloop = 2494;
	const static uint16 kMiddleofwalk = 5674;
	const static uint16 kFinflashmouse = 5698;
	const static uint16 kScrollmonloop1 = 1711;
	const static uint16 kMenulist = 3525;
	const static uint16 kScrollmonloop2 = 1711;
	const static uint16 kAlreadytrav = 2776;
	const static uint16 kNotfirstdest = 2776;
	const static uint16 kWidth55 = 1819;
	const static uint16 kNotendtelly = 1105;
	const static uint16 kNotch1endofpage1 = 4949;
	const static uint16 kNotedens2 = 3393;
	const static uint16 kBlimey = 5862;
	const static uint16 kNotxover = 5715;
	const static uint16 kGotconst = 1214;
	const static uint16 kContinuewalk = 1113;
	const static uint16 kLeftpageloop = 3589;
	const static uint16 kCantsetup = 3393;
	const static uint16 kNottrigger = 2494;
	const static uint16 kIsanextra = 2494;
	const static uint16 kNotonsartroof = 3393;
	const static uint16 kCombathand = 5698;
	const static uint16 kGotreader1with = 3385;
	const static uint16 kCanpick2 = 2660;
	const static uint16 kNodistortv = 4949;
	const static uint16 kCanpick4 = 2660;
	const static uint16 kSlowgates = 1105;
	const static uint16 kNotsetd2 = 2660;
	const static uint16 kNotnearframeend = 2660;
	const static uint16 kInsideloop = 3393;
	const static uint16 kCommandline = 5674;
	const static uint16 kEndofdir = 2895;
	const static uint16 kLouisvol = 5073;
	const static uint16 kNotdrinker1 = 1105;
	const static uint16 kGobackover = 3393;
	const static uint16 kIswatchinv = 2660;
	const static uint16 kHissnoise = 1214;
	const static uint16 kNodumptimed = 3393;
	const static uint16 kLoloop = 5691;
	const static uint16 kNotplfree = 1711;
	const static uint16 kLooky2 = 5862;
	const static uint16 kSetframe = 2660;
	const static uint16 kLine31 = 5691;
	const static uint16 kHalfend = 2494;
	const static uint16 kLine32 = 5691;
	const static uint16 kIsntspecial = 2660;
	const static uint16 kAlreadynextf = 3589;
	const static uint16 kBeforethisone = 2660;
	const static uint16 kRtofdoor = 1214;
	const static uint16 kGotkeyp = 3693;
	const static uint16 kNotinsartroom = 3393;
	const static uint16 kChosenaccess = 2776;
	const static uint16 kNofoundchange = 3393;
	const static uint16 kIstravel = 2714;
	const static uint16 kOddwidth2 = 1819;
	const static uint16 kOddwidth3 = 1819;
	const static uint16 kIswatchmad = 1105;
	const static uint16 kNomorereel = 4949;
	const static uint16 kDosparky = 1105;
	const static uint16 kCandle1 = 1105;
	const static uint16 kNextbit = 2494;
	const static uint16 kSizeok1 = 2660;
	const static uint16 kSizeok2 = 2660;
	const static uint16 kNoadd = 5674;
	const static uint16 kLookattail = 4949;
	const static uint16 kBacktootherfx = 1819;
	const static uint16 kIsautoloc = 2714;
	const static uint16 kFoundcom = 2776;
	const static uint16 kFreeobject = 3393;
	const static uint16 kWidth38 = 1819;
	const static uint16 kWidth39 = 1819;
	const static uint16 kWidth32 = 1819;
	const static uint16 kWidth33 = 1819;
	const static uint16 kNotendblock = 1711;
	const static uint16 kWidth31 = 1819;
	const static uint16 kWidth36 = 1819;
	const static uint16 kWidth37 = 1819;
	const static uint16 kWidth34 = 1819;
	const static uint16 kWidth35 = 1819;
	const static uint16 kNotwrapforb = 3651;
	const static uint16 kAlreadyload = 3735;
	const static uint16 kCantpurge = 2660;
	const static uint16 kHelicombatend = 1105;
	const static uint16 kEmptyinterface = 2776;
	const static uint16 kSymbolwrong = 3589;
	const static uint16 kNotlouis = 1113;
	const static uint16 kWaitops = 3693;
	const static uint16 kNotedensagain = 4949;
	const static uint16 kNotyetrecep = 3385;
	const static uint16 kInitrainside2 = 1113;
	const static uint16 kGotheliframe = 1105;
	const static uint16 kNevershown = 5698;
	const static uint16 kDodiscops = 3777;
	const static uint16 kNotlasttalk1 = 1105;
	const static uint16 kAlreadyreds = 2714;
	const static uint16 kNotext = 3393;
	const static uint16 kNodiscops = 3777;
	const static uint16 kGotrockframe = 1105;
	const static uint16 kNotloc15 = 4949;
	const static uint16 kWaittalk = 2660;
	const static uint16 kChannel0once = 1214;
	const static uint16 kEndline = 1711;
	const static uint16 kNomoreatmos = 5073;
	const static uint16 kDestoryopenbox = 3385;
	const static uint16 kNotsmally = 5698;
	const static uint16 kBotofdoor = 1214;
	const static uint16 kNotqk = 3525;
	const static uint16 kNotqs = 3651;
	const static uint16 kCantopinv = 2660;
	const static uint16 kWidth8 = 1819;
	const static uint16 kWidth9 = 1819;
	const static uint16 kWidth2 = 1819;
	const static uint16 kWidth3 = 1819;
	const static uint16 kWidth0 = 1819;
	const static uint16 kWidth1 = 1819;
	const static uint16 kWidth6 = 1819;
	const static uint16 kWidth7 = 1819;
	const static uint16 kWidth4 = 1819;
	const static uint16 kWidth5 = 1819;
	const static uint16 kAlreadybotl = 3651;
	const static uint16 kNotsetcard = 1105;
	const static uint16 kVolok = 4949;
	const static uint16 kAlreadysave = 3819;
	const static uint16 kGotwirewith = 3393;
	const static uint16 kBhloop2 = 1819;
	const static uint16 kBhloop1 = 1819;
	const static uint16 kHangonearly = 2494;
	const static uint16 kTakenloop = 2660;
	const static uint16 kGotmonks2text = 1105;
	const static uint16 kNotanimend1 = 1105;
	const static uint16 kNoopenob = 2660;
	const static uint16 kLookx2 = 5862;
	const static uint16 kFindsometext = 2660;
	const static uint16 kNotnextf = 3589;
	const static uint16 kGameerror8 = 4326;
	const static uint16 kNotdelboathouse = 2776;
	const static uint16 kGameerror6 = 4197;
	const static uint16 kGameerror7 = 4267;
	const static uint16 kGameerror4 = 4062;
	const static uint16 kGameerror5 = 4123;
	const static uint16 kGameerror2 = 3929;
	const static uint16 kGameerror3 = 4010;
	const static uint16 kNomatch = 2895;
	const static uint16 kVolloop = 4949;
	const static uint16 kPlatewith = 3393;
	const static uint16 kHiloop = 5691;
	const static uint16 kNodrop2 = 2660;
	const static uint16 kSkipoffsets = 1819;
	const static uint16 kRockspeed = 1105;
	const static uint16 kWantstowalk = 5674;
	const static uint16 kNotfirstpool = 1105;
	const static uint16 kNotlocky = 1214;
	const static uint16 kGotalong = 2660;
	const static uint16 kNoinfo = 2776;
	const static uint16 kToofaraway = 5674;
	const static uint16 kMoney2poke = 3390;
	const static uint16 kThousandsc = 4945;
	const static uint16 kNotb = 3525;
	const static uint16 kKeeplooking = 2895;
	const static uint16 kDontrestore = 5862;
	const static uint16 kNotlastspeed2 = 4949;
	const static uint16 kOver242 = 2660;
	const static uint16 kInitraintop = 1113;
	const static uint16 kError2patch = 3997;
	const static uint16 kNoplot = 1214;
	const static uint16 kNormal = 1711;
	const static uint16 kFinishslow = 2494;
	const static uint16 kMustgo = 4949;
	const static uint16 kLesscolour = 2494;
	const static uint16 kOpenboxwrong = 3385;
	const static uint16 kNotch1only = 4949;
	const static uint16 kClearboxwith = 3385;
	const static uint16 kEndoflist = 1214;
	const static uint16 kNotblock = 5674;
	const static uint16 kNotbothendofpage0 = 4949;
	const static uint16 kNotbothendofpage1 = 4949;
	const static uint16 kGotrecep = 1105;
	const static uint16 kNoreset = 5862;
	const static uint16 kKeypadloop = 3393;
	const static uint16 kPoolwith = 3385;
	const static uint16 kOddwidthframe = 1819;
	const static uint16 kGuardspeed = 1105;
	const static uint16 kNocountclose = 1214;
	const static uint16 kRightcard = 3385;
	const static uint16 kWireknife = 3393;
	const static uint16 kNouse = 2895;
	const static uint16 kNotdream3 = 2660;
	const static uint16 kDolastf = 3589;
	const static uint16 kDirectloop1 = 2895;
	const static uint16 kSlow = 4949;
	const static uint16 kAlreadynewgame = 4926;
	const static uint16 kLoop048 = 5073;
	const static uint16 kIntrom2fin = 1105;
	const static uint16 kDiaryloop = 3651;
	const static uint16 kRyansoff = 5073;
	const static uint16 kDoneover2 = 1105;
	const static uint16 kNotinroom = 2660;
	const static uint16 kIsaperson = 5674;
	const static uint16 kNotadown = 1113;
	const static uint16 kFoundchange = 3393;
	const static uint16 kNumloop1 = 4949;
	const static uint16 kNoaddg = 2494;
	const static uint16 kEndoftext = 2494;
	const static uint16 kNoaddb = 2494;
	const static uint16 kKeepgoing = 2494;
	const static uint16 kNotintro1text2 = 1105;
	const static uint16 kGotintromonk2 = 1105;
	const static uint16 kNoaddr = 2494;
	const static uint16 kGotintromonk1 = 1105;
	const static uint16 kAccesscom = 2776;
	const static uint16 kNotshieldonbus = 1105;
	const static uint16 kDontplace = 1711;
	const static uint16 kAlreadydrop = 2660;
	const static uint16 kLoadmode = 3861;
	const static uint16 kGotendseq = 1105;
	const static uint16 kNotverycool = 5691;
	const static uint16 kNorightpage = 3589;
	const static uint16 kChangeloop = 3393;
	const static uint16 kGotintro2text = 1105;
	const static uint16 kItsanobject = 5698;
	const static uint16 kGotquad = 5691;
	const static uint16 kNotsmoket1 = 1105;
	const static uint16 kNotsmoket2 = 1105;
	const static uint16 kAlreadymore = 2692;
	const static uint16 kFoundlineend = 1214;
	const static uint16 kHasloadedroom = 4884;
	const static uint16 kShowobsloop = 2660;
	const static uint16 kNogetback = 2660;
	const static uint16 kLooknext = 1105;
	const static uint16 kGotthere = 2494;
	const static uint16 kIsrightkey = 3385;
	const static uint16 kGameover = 4949;
	const static uint16 kRainlocations = 1113;
	const static uint16 kFolderloop = 3547;
	const static uint16 kNotactload = 3861;
	const static uint16 kBotfinished = 3651;
	const static uint16 kNotthisob = 2660;
	const static uint16 kSteadyob = 1214;
	const static uint16 kNoneedforemm = 4949;
	const static uint16 kDirroot = 2895;
	const static uint16 kSearchdestup = 2776;
	const static uint16 kUsedpriority = 2660;
	const static uint16 kFinishedsetobs = 2660;
	const static uint16 kNotlouisthund = 1214;
	const static uint16 kNotmapupspec = 1711;
	const static uint16 kGotkey = 3525;
	const static uint16 kNotraisearm = 1105;
	const static uint16 kFoundmatch = 2660;
	const static uint16 kRightkey = 3393;
	const static uint16 kEndoftopic = 2895;
	const static uint16 kBotwrap = 3651;
	const static uint16 kSame = 5862;
	const static uint16 kNotwrapback = 3651;
	const static uint16 kCantswap1 = 2660;
	const static uint16 kCantswap2 = 2660;
	const static uint16 kTryagain = 2660;
	const static uint16 kNotnewpath = 5674;
	const static uint16 kTvdoorwith = 3385;
	const static uint16 kFinishearly = 4949;
	const static uint16 kCantpurge2 = 2660;
	const static uint16 kGetloop = 2494;
	const static uint16 kLine12 = 5691;
	const static uint16 kRestartlouis = 1105;
	const static uint16 kAlreadyactsave = 3861;
	const static uint16 kNotaleft = 1113;
	const static uint16 kNobark = 1105;
	const static uint16 kTopok = 4949;
	const static uint16 kQuitconv = 2692;
	const static uint16 kFacelist = 1105;
	const static uint16 kNomadspeak = 1105;
	const static uint16 kSymbolloop = 3589;
	const static uint16 kEmmerror1 = 4949;
	const static uint16 kEmmerror2 = 4945;
	const static uint16 kNoload = 3735;
	const static uint16 kNowatchworn = 4949;
	const static uint16 kWithlist1 = 2618;
	const static uint16 kNotaide = 3393;
	const static uint16 kNotinhere = 2660;
	const static uint16 kNotnew = 5073;
	const static uint16 kDestlist = 2714;
	const static uint16 kNocountopen = 1214;
	const static uint16 kNextatmos = 5073;
	const static uint16 kNokern = 2494;
	const static uint16 kAnimating = 2660;
	const static uint16 kNomorekeys = 3525;
	const static uint16 kWaitinit = 4945;
	const static uint16 kGotdoorwith = 3393;
	const static uint16 kBeforethistext = 2660;
	const static uint16 kNotyetassigned = 2895;
	const static uint16 kDifffound = 5698;
	const static uint16 kNotfoundinside = 3393;
	const static uint16 kFpathloop = 5073;
	const static uint16 kNottrigger2 = 2494;
	const static uint16 kNotdoor = 1214;
	const static uint16 kFinishback = 1214;
	const static uint16 kLookforpurge2 = 2660;
	const static uint16 kNotnegative2 = 1105;
	const static uint16 kNotgotgun = 1105;
	const static uint16 kNotnegative1 = 1105;
	const static uint16 kGotreader2with = 3385;
	const static uint16 kSavelist = 3819;
	const static uint16 kMousehand = 5698;
	const static uint16 kFindnewpage = 2660;
	const static uint16 kNotspeed = 1105;
	const static uint16 kFinishmakename = 5691;
	const static uint16 kNotlock = 2895;
	const static uint16 kNormalreel = 1214;
	const static uint16 kFoundsign = 2895;
	const static uint16 kGotnext = 1105;
	const static uint16 kNofog = 1105;
	const static uint16 kNopresses = 3393;
	const static uint16 kComplete = 2895;
	const static uint16 kSizewrong = 2660;
	const static uint16 kAlreadytopl = 3651;
	const static uint16 kNoneedtorecon = 1711;
	const static uint16 kGatewith = 3393;
	const static uint16 kPrintloop7 = 2494;
	const static uint16 kPrintloop6 = 2494;
	const static uint16 kPrintloop5 = 2494;
	const static uint16 kNullframe = 2660;
	const static uint16 kNotcrystal = 4949;
	const static uint16 kAlreadytopr = 3651;
	const static uint16 kPrintloop8 = 2494;
	const static uint16 kNotinthisone = 2776;
	const static uint16 kNotblankshow = 1819;
	const static uint16 kNoshoe2 = 1113;
	const static uint16 kDspready = 4945;
	const static uint16 kToplotv = 4949;
	const static uint16 kIdentifyfree = 5073;
	const static uint16 kSignonloop = 2895;
	const static uint16 kEndcredits21 = 2494;
	const static uint16 kDescribe = 2660;
	const static uint16 kNotinnewroom = 1105;
	const static uint16 kPathokboss = 3393;
	const static uint16 kOpendoor2 = 1214;
	const static uint16 kJustcancel = 4945;
	const static uint16 kOpenchangesize = 2588;
	const static uint16 kIncorrect = 3393;
	const static uint16 kZeroblock = 1819;
	const static uint16 kFindsetloop = 3393;
	const static uint16 kNotxover2 = 5715;
	const static uint16 kNotsecondbank = 4949;
	const static uint16 kNextline = 1819;
	const static uint16 kNotheldob = 2660;
	const static uint16 kGotfirst = 5073;
	const static uint16 kPowerok = 2895;
	const static uint16 kCheckdestloop = 5691;
	const static uint16 kMadmanspoken = 1105;
	const static uint16 kTensc = 4945;
	const static uint16 kDosave = 3819;
	const static uint16 kDirectory = 2776;
	const static uint16 kKeyontv = 3385;
	const static uint16 kDoselob = 3393;
	const static uint16 kDuok = 2776;
	const static uint16 kChangelight = 3525;
	const static uint16 kIsinleft = 5691;
	const static uint16 kIsdream1 = 5691;
	const static uint16 kDodecisions = 4949;
	const static uint16 kNotlockdoor = 1214;
	const static uint16 kNotinlift = 2660;
	const static uint16 kNotplayingreel = 4949;
	const static uint16 kNodumpwatch = 4949;
	const static uint16 kTrampgone = 1105;
	const static uint16 kObnotexist = 2660;
	const static uint16 kNodumptextline = 5698;
	const static uint16 kTwolotsright = 3589;
	const static uint16 kCantopenit = 2660;
	const static uint16 kCantwalk = 5691;
	const static uint16 kCdinside = 3393;
	const static uint16 kMakedoorsopen = 4949;
	const static uint16 kPowerloop = 2776;
	const static uint16 kNotanexid = 5073;
	const static uint16 kNotcent2 = 2494;
	const static uint16 kOpenbox = 3385;
	const static uint16 kNotwatching = 4949;
	const static uint16 kNosetpick = 2660;
	const static uint16 kPlaceit = 1711;
	const static uint16 kNotwatchinv = 2660;
	const static uint16 kDiff2 = 5674;
	const static uint16 kEndupdate = 1214;
	const static uint16 kNotendcandle1 = 1105;
	const static uint16 kFlipfolder = 3589;
	const static uint16 kNokeyatall = 3693;
	const static uint16 kGotlight = 3525;
	const static uint16 kAlreadyqs = 3651;
	const static uint16 kDifsub8 = 2660;
	const static uint16 kWidth88 = 1819;
	const static uint16 kAlreadyqk = 3525;
	const static uint16 kCanpick = 2660;
	const static uint16 kDifsub1 = 2660;
	const static uint16 kDifsub2 = 2660;
	const static uint16 kDifsub3 = 2660;
	const static uint16 kDifsub4 = 2660;
	const static uint16 kNotinedenslift = 1113;
	const static uint16 kDifsub7 = 2660;
	const static uint16 kSearch = 2660;
	const static uint16 kDomoretalk = 2692;
	const static uint16 kNotbystudio = 3393;
	const static uint16 kDonethisbit = 3393;
	const static uint16 kNotrainatall = 1105;
	const static uint16 kNotremfree = 1711;
	const static uint16 kNomatchslot2 = 3861;
	const static uint16 kSelect = 2714;
	const static uint16 kGotheavyframe = 1105;
	const static uint16 kDrawnsetob = 2660;
	const static uint16 kNotloc23 = 4949;
	const static uint16 kNotopright = 3651;
	const static uint16 kCheckpurgeagain = 2660;
	const static uint16 kNotleave = 1113;
	const static uint16 kGotendtext = 1105;
	const static uint16 kNotdel = 2776;
	const static uint16 kNotmonktext10 = 1105;
	const static uint16 kNotmonktext13 = 1105;
	const static uint16 kNotmonktext12 = 1105;
	const static uint16 kDogetbackops = 3777;
	const static uint16 kNoautolook = 2660;
	const static uint16 kDecdir = 1113;
	const static uint16 kNotaright = 1113;
	const static uint16 kZoomswitch = 1819;
	const static uint16 kFoundnewex = 2660;
	const static uint16 kNodream7 = 2895;
	const static uint16 kIswatching = 2494;
	const static uint16 kNotfudge = 1711;
	const static uint16 kZerostill = 3861;
	const static uint16 kNotenterdream = 4949;
	const static uint16 kNotlastdest = 2776;
	const static uint16 kDoexinv = 2660;
	const static uint16 kOpsblock1 = 3735;
	const static uint16 kGotsecurframe = 1105;
	const static uint16 kEndearly2 = 2494;
	const static uint16 kPlaygame = 4949;
	const static uint16 kNotdiff = 1105;
	const static uint16 kNotaftersshot = 1105;
	const static uint16 kSet16palloop2 = 2494;
	const static uint16 kPriestspoken = 1105;
	const static uint16 kOpenloop1 = 2494;
	const static uint16 kMoreload2 = 4945;
	const static uint16 kGotstartletter = 2660;
	const static uint16 kEndmugger1 = 1105;
	const static uint16 kEndmugger2 = 1105;
	const static uint16 kGotintrom1 = 1105;
	const static uint16 kGotintrom3 = 1105;
	const static uint16 kGotintrom2 = 1105;
	const static uint16 kWaitkey = 2776;
	const static uint16 kNozoom1 = 5691;
	const static uint16 kWantstotalk = 5674;
	const static uint16 kNotfirst = 1113;
	const static uint16 kSlabewrong = 3385;
	const static uint16 kCantmakeoneup = 2660;
	const static uint16 kNotdoorsound1 = 1214;
	const static uint16 kNotdoorsound3 = 1214;
	const static uint16 kNotdoorsound2 = 1214;
	const static uint16 kNotdoorsound4 = 1214;
	const static uint16 kDirectloop2 = 2895;
	const static uint16 kNomatchslot = 3861;
	const static uint16 kNotzoomon = 5698;
	const static uint16 kDontcheck = 5674;
	const static uint16 kLookforlineend = 1214;
	const static uint16 kFrameloop1 = 1819;
	const static uint16 kFrameloop3 = 1819;
	const static uint16 kFrameloop2 = 1819;
	const static uint16 kRightspeed3 = 5698;
	const static uint16 kFinex = 2660;
	const static uint16 kIscup = 2660;
	const static uint16 kNoconvnum = 4949;
	const static uint16 kEmmerror = 4945;
	const static uint16 kLiftopen = 1214;
	const static uint16 kClearloop = 1711;
	const static uint16 kDumpevery2 = 1711;
	const static uint16 kDumpevery1 = 1711;
	const static uint16 kAlreadyb = 3525;
	const static uint16 kFirsttimed = 3393;
	const static uint16 kNotboth = 5698;
	const static uint16 kKeyconverttab = 5731;
	const static uint16 kNoturnonyet = 1214;
	const static uint16 kNotmonk2text10 = 1105;
	const static uint16 kNotmonk2text11 = 1105;
	const static uint16 kNotinbath = 1105;
	const static uint16 kActuallyswap = 2660;
	const static uint16 kKeyscom = 2776;
	const static uint16 kNormalline = 5691;
	const static uint16 kEndcredits2 = 1105;
	const static uint16 kEndcredits1 = 1105;
	const static uint16 kNofindex = 3393;
	const static uint16 kLoslope = 5691;
	const static uint16 kNottalkedboss = 1105;
	const static uint16 kWrongroom1 = 3393;
	const static uint16 kWaitexam = 2494;
	const static uint16 kNotsetname = 5691;
	const static uint16 kFileerror = 5862;
	const static uint16 kLoop2 = 1711;
	const static uint16 kLoop1 = 1711;
	const static uint16 kRtofdoor2 = 1214;
	const static uint16 kNotmaprightspec = 1711;
	const static uint16 kIsnosound = 4949;
	const static uint16 kInwatching = 1819;
	const static uint16 kNotthirdtrigger = 2895;
	const static uint16 kHavesetwatch = 1105;
	const static uint16 kIsthunder1 = 1214;
	const static uint16 kMainlist = 4949;
	const static uint16 kNotopenchurch = 3393;
	const static uint16 kPriorityloop = 1105;
	const static uint16 kEdenspart2 = 3393;
	const static uint16 kRyansded = 1105;
	const static uint16 kNotwrapfor = 3651;
	const static uint16 kNotintro3text2 = 1105;
	const static uint16 kNotafterhshot = 1105;
	const static uint16 kNottalkedsparky = 1105;
	const static uint16 kZoomloop2 = 1819;
	const static uint16 kNotmugger = 1105;
	const static uint16 kNotcarpark = 4949;
	const static uint16 kLoadlist = 3735;
	const static uint16 kWaitdecide = 4884;
	const static uint16 kSkiptalk = 2692;
	const static uint16 kNextopenslot = 2494;
	const static uint16 kNotfound = 2895;
	const static uint16 kDosetpick = 2660;
	const static uint16 kTryanotherex = 2660;
	const static uint16 kNotaideadd = 3589;
	const static uint16 kNotshown = 3693;
	const static uint16 kNotshowp = 3693;
	const static uint16 kNotendadvis = 1105;
	const static uint16 kAlreadylook = 2660;
	const static uint16 kNotblankpers = 5073;
	const static uint16 kCorrectcard2 = 3385;
	const static uint16 kGetslotnum = 3861;
	const static uint16 kNogetbackops = 3777;
	const static uint16 kNotinsideex = 2660;
	const static uint16 kHangloopw = 5698;
	const static uint16 kHangloopq = 2692;
	const static uint16 kCigarette = 3385;
	const static uint16 kDonefirstops = 3693;
	const static uint16 kBotright = 5691;
	const static uint16 kNotwalkandexam = 5691;
	const static uint16 kFinishfile = 2895;
	const static uint16 kAlreadyselob = 3393;
	const static uint16 kFinishfill = 2494;
	const static uint16 kPickupexob = 2660;
	const static uint16 kTriedknife = 3393;
	const static uint16 kIsinexlist = 2660;
	const static uint16 kAfterkey = 3861;
	const static uint16 kDoopenob = 2660;
	const static uint16 kFinishdirct = 2494;
	const static uint16 kLoadedalready = 5862;
	const static uint16 kWatchtalk = 2692;
	const static uint16 kKeysloop = 2895;
	const static uint16 kFailed = 2895;
	const static uint16 kEndearly = 2494;
	const static uint16 kNotfirsttimed = 3393;
	const static uint16 kIswaitingpool = 1105;
	const static uint16 kBlinktab = 5691;
	const static uint16 kNotcentred = 1819;
	const static uint16 kCandles2fin = 1105;
	const static uint16 kMoretext = 2660;
	const static uint16 kNormalwalk = 1113;
	const static uint16 kNokey = 5715;
	const static uint16 kGotpl = 5691;
	const static uint16 kAlreadyswap1 = 2660;
	const static uint16 kSignoncom = 2776;
	const static uint16 kOpenpool = 3385;
	const static uint16 kOpslist = 3693;
	const static uint16 kNoneedtoremove = 4949;
	const static uint16 kNoloadold = 4926;
	const static uint16 kNotintro2text1 = 1105;
	const static uint16 kNotintro2text2 = 1105;
	const static uint16 kNobotleft = 3651;
	const static uint16 kIgnoreit = 2494;
	const static uint16 kNotalley = 4949;
	const static uint16 kSpecialcase = 2660;
	const static uint16 kNodumpsym = 3651;
	const static uint16 kCanopenit1 = 2660;
	const static uint16 kNotsecondpart = 2692;
	const static uint16 kNotmapup2 = 1711;
	const static uint16 kIsfree = 2660;
	const static uint16 kOver045 = 5073;
	const static uint16 kGoingdown = 3393;
	const static uint16 kNotedenlob = 4949;
	const static uint16 kNoclear = 4949;
	const static uint16 kNoobselect = 5674;
	const static uint16 kLowvolumetran = 4949;
	const static uint16 kCh0oksecond = 4945;
	const static uint16 kFlashmousetab = 5698;
	const static uint16 kIntrom3fin = 1105;
	const static uint16 kNotareelid = 5073;
	const static uint16 kKeyok = 2895;
	const static uint16 kDontbother4 = 4949;
	const static uint16 kExamlist = 2494;
	const static uint16 kDontbother2 = 4945;
	const static uint16 kDontbother3 = 4949;
	const static uint16 kNotlair = 5674;
	const static uint16 kDontbother8 = 4926;
	const static uint16 kDontbother9 = 4945;
	const static uint16 kNotfirstbiz = 1105;
	const static uint16 kWrongatmos = 5073;
	const static uint16 kContleftpage = 3589;
	const static uint16 kAlreadysp = 2660;
	const static uint16 kMustbeopen = 1214;
	const static uint16 kNotryanoff = 1711;
	const static uint16 kSkip1 = 1711;
	const static uint16 kOver138 = 2660;
	const static uint16 kNotkeyn = 3693;
	const static uint16 kWholeloop1 = 2494;
	const static uint16 kCanlastf = 3589;
	const static uint16 kStereook = 3393;
	const static uint16 kStereoon = 3393;
	const static uint16 kEmptycup = 2660;
	const static uint16 kQuitloaded = 3735;
	const static uint16 kNotkeyp = 3693;
	const static uint16 kFlipfolderline = 3589;
	const static uint16 kIdentifyset = 5073;
	const static uint16 kWalkandexamine = 5674;
	const static uint16 kFirstbitofblock = 1819;
	const static uint16 kNotloc44 = 4949;
	const static uint16 kRighthand = 3385;
	const static uint16 kBacktoother = 1819;
	const static uint16 kEndofdir2 = 2895;
	const static uint16 kNotendsmallcandle = 1105;
	const static uint16 kIsbright = 4949;
	const static uint16 kWidth63 = 1819;
	const static uint16 kEndofinput = 2776;
	const static uint16 kGotadvframe = 1105;
	const static uint16 kQuitlist = 2692;
	const static uint16 kNotwornswap = 2660;
	const static uint16 kKeys = 2807;
	const static uint16 kNomod = 2494;
	const static uint16 kNodumpeye = 5698;
	const static uint16 kCopyin1 = 2895;
	const static uint16 kHorizloop = 5691;
	const static uint16 kFquit = 4884;
	const static uint16 kFullcup = 2660;
	const static uint16 kPurgeloc = 2660;
	const static uint16 kNotendmonk1 = 1105;
	const static uint16 kDontpurge = 2660;
	const static uint16 kExecutewalk = 1105;
	const static uint16 kIntrom1fin = 1105;
	const static uint16 kNotout = 2660;
	const static uint16 kGamerfin = 1105;
	const static uint16 kAfterwalk = 1105;
	const static uint16 kNotgotobject = 2660;
	const static uint16 kDoincryan = 2660;
	const static uint16 kCopytext = 5691;
	const static uint16 kIsntsame = 2660;
	const static uint16 kNoeffects = 1819;
	const static uint16 kFindblaster = 4949;
	const static uint16 kNottalkedrecep = 1105;
	const static uint16 kDecidelist = 4884;
	const static uint16 kIsdouble = 1105;
	const static uint16 kNoswap2 = 5691;
	const static uint16 kNoswap1 = 5691;
	const static uint16 kNotspeaking = 2692;
	const static uint16 kMorerain = 1214;
	const static uint16 kSizeok = 2660;
	const static uint16 kNotdeltvstud = 2776;
	const static uint16 kEndofline = 1113;
	const static uint16 kOddwidth = 1819;
	const static uint16 kBacktosolidfx = 1819;
	const static uint16 kNotinedens = 3393;
	const static uint16 kMoreload = 4945;
	const static uint16 kIntoopen = 2660;
	const static uint16 kIsfree3 = 2660;
	const static uint16 kIsfree2 = 2660;
	const static uint16 kActuallyout = 2660;
	const static uint16 kFailrain = 1214;
	const static uint16 kFullvol = 5073;
	const static uint16 kGotreader3with = 3385;
	const static uint16 kNmloop1 = 1819;
	const static uint16 kNmloop2 = 1819;
	const static uint16 kIntromonk2fin = 1105;
	const static uint16 kNotnocurs = 3861;
	const static uint16 kMultiloop1 = 1819;
	const static uint16 kWithit = 2494;
	const static uint16 kMultiloop3 = 1819;
	const static uint16 kMultiloop2 = 1819;
	const static uint16 kMultiloop5 = 1819;
	const static uint16 kMultiloop4 = 1819;
	const static uint16 kMultiloop6 = 1819;
	const static uint16 kInpoolhall = 3393;
	const static uint16 kUsekey1 = 3393;
	const static uint16 kUsekey2 = 3393;
	const static uint16 kGetoutofit = 5698;
	const static uint16 kNotrav = 2776;
	const static uint16 kDouse = 2895;
	const static uint16 kNotdelsarters = 2776;
	const static uint16 kNottvsoldier = 3393;
	const static uint16 kAddloop2 = 2660;
	const static uint16 kJustgetback = 2494;
	const static uint16 kNotreleasehold = 4949;
	const static uint16 kMightwait = 1105;
	const static uint16 kNotyet = 3385;
	const static uint16 kNotintro1text1 = 1105;
	const static uint16 kNotintro1text3 = 1105;
	const static uint16 kIsdma = 4949;
	const static uint16 kNotinbed = 1105;
	const static uint16 kPlinthwith = 3385;
	const static uint16 kAxeondoor = 3393;
	const static uint16 kOkcom = 2895;
	const static uint16 kNotover1 = 5073;
	const static uint16 kHorizline = 5691;
	const static uint16 kBuscombatwon = 1105;
	const static uint16 kAlreadyincryan = 2660;
	const static uint16 kPalloop = 1711;
	const static uint16 kGotguardframe = 1105;
	const static uint16 kGotcrystal = 3385;
	const static uint16 kLookcolon = 3385;
	const static uint16 kAccessloop = 2776;
	const static uint16 kSaveops = 3819;
	const static uint16 kMonloop1 = 5698;
	const static uint16 kCheckmain = 4949;
	const static uint16 kWidth128 = 1819;
	const static uint16 kNotheld = 2895;
	const static uint16 kNotopleft = 3651;
	const static uint16 kDeallerror = 4949;
	const static uint16 kEndtail = 4949;
	const static uint16 kEndofthisline = 1214;
	const static uint16 kSignonloop2 = 2895;
	const static uint16 kSymbollist = 3589;
	const static uint16 kNofirst = 5073;
	const static uint16 kLockloop = 2895;
	const static uint16 kFinishslow2 = 2494;
	const static uint16 kNopathoff = 5073;
	const static uint16 kCantsetup2 = 3393;
	const static uint16 kHaventfound = 3393;
	const static uint16 kIsmorereel = 4949;
	const static uint16 kNotbracket = 2895;
	const static uint16 kMoreendseq = 2494;
	const static uint16 kEndlessloop = 4949;
	const static uint16 kNodel2 = 3861;
	const static uint16 kNodroperror = 2660;
	const static uint16 kEndgametext1 = 4835;
	const static uint16 kNoops = 3693;
	const static uint16 kNotclear3 = 4949;
	const static uint16 kNotclear2 = 4949;
	const static uint16 kNotclear1 = 4949;
	const static uint16 kLoadnew = 4949;
	const static uint16 kFinishtime = 4949;
	const static uint16 kBusspeed = 1105;
	const static uint16 kGotbusframe = 1105;
	const static uint16 kGrafwith = 3385;
	const static uint16 kIsex2 = 2660;
	const static uint16 kIsex3 = 2660;
	const static uint16 kDoplace = 2660;
	const static uint16 kSoldierwait = 1105;
	const static uint16 kGotsmoket = 1105;
	const static uint16 kNothingund = 5073;
	const static uint16 kPlotloop = 1214;
	const static uint16 kWaiting = 1105;
	const static uint16 kNoresetpit = 4949;
	const static uint16 kGotsmokeb = 1105;
	const static uint16 kFoundfile = 2895;
	const static uint16 kRightpageloop = 3589;
	const static uint16 kBothspecial = 2660;
	const static uint16 kIssoundint = 4949;
	const static uint16 kNotspace1 = 2895;
	const static uint16 kLowvolumemix = 4949;
	const static uint16 kNoactsave = 3861;
	const static uint16 kWalkman = 1105;
	const static uint16 kNotinrockroom = 3393;
	const static uint16 kNodrop = 2660;
	const static uint16 kKeyonhotel2 = 3385;
	const static uint16 kKeyonhotel1 = 3385;
	const static uint16 kGotcontrolwith = 3393;
	const static uint16 kThingsonaltar = 3385;
	const static uint16 kAlreadywon = 1105;
	const static uint16 kNextslab = 3385;
	const static uint16 kAlreadyrun = 5073;
	const static uint16 kFinishclose = 1214;
	const static uint16 kHangloop = 5698;
	const static uint16 kNonewgame = 4926;
	const static uint16 kCh1oksecond = 4945;
	const static uint16 kForcenext = 1105;
	const static uint16 kUpordown2 = 1214;
	const static uint16 kBalls = 3393;
	const static uint16 kWidth21 = 1819;
	const static uint16 kAlreadyops = 3693;
	const static uint16 kEndword = 2494;
	const static uint16 kIsntblank = 4884;
	const static uint16 kNotfadeend = 1105;
	const static uint16 kDoqk = 3525;
	const static uint16 kQuitcom = 2776;
	const static uint16 kNotyover = 5715;
	const static uint16 kDoqs = 3651;
	const static uint16 kNotdreamcentre = 4949;
	const static uint16 kLine4 = 5691;
	const static uint16 kLine3 = 5691;
	const static uint16 kLine1 = 5691;
	const static uint16 kGotgates = 1105;
	const static uint16 kZoomisoff = 5691;
	const static uint16 kForgotone = 1113;
	const static uint16 kNotch0endofpage0 = 4949;
	const static uint16 kWidth49 = 1819;
	const static uint16 kWidth48 = 1819;
	const static uint16 kWidth47 = 1819;
	const static uint16 kWidth46 = 1819;
	const static uint16 kNoselslot = 3861;
	const static uint16 kWidth44 = 1819;
	const static uint16 kFoundlinestart = 1214;
	const static uint16 kWidth42 = 1819;
	const static uint16 kWidth41 = 1819;
	const static uint16 kWidth40 = 1819;
	const static uint16 kNotletgo4 = 2660;
	const static uint16 kWidth110 = 1819;
	const static uint16 kNotletgo3 = 2660;
	const static uint16 kNotletgo2 = 2660;
	const static uint16 kGotsoundbuff = 4949;
	const static uint16 kSearchdestdown = 2776;
	const static uint16 kNotneartextend = 2660;
	const static uint16 kHelispeed = 1105;
	const static uint16 kQuickquit = 3861;
	const static uint16 kAfterlook = 2660;
	const static uint16 kNotwaiting = 1105;
	const static uint16 kCheckmorerain = 1113;
	const static uint16 kDontbother = 4945;
	const static uint16 kAlreadyloadold = 4926;
	const static uint16 kAlreadyopob = 2660;
	const static uint16 kTestcom = 2776;
	const static uint16 kNotinryaninv = 2494;
	const static uint16 kLookx = 5862;
	const static uint16 kLooky = 5862;
	const static uint16 kDozoomonoff = 3693;
	const static uint16 kNotyover2 = 5715;
	const static uint16 kAfterslow = 2494;
	const static uint16 kGotoverend2 = 2494;
	const static uint16 kNotletgo = 2660;
	const static uint16 kAlreadyget = 2660;
	const static uint16 kHoteldoorwith2 = 3385;
	const static uint16 kNoteden2 = 4949;
	const static uint16 kNowinch = 3393;
	const static uint16 kKeyloop = 2776;
	const static uint16 kNocross = 5698;
	const static uint16 kNotpersonname = 5691;
	const static uint16 kFindexloop = 3393;
	const static uint16 kNotlouis2 = 1105;
	const static uint16 kNothelicopter = 3393;
	const static uint16 kNotlouis1 = 1105;
	const static uint16 kFacingok = 1105;
	const static uint16 kNotrandom = 1214;
	const static uint16 kGotoverend = 2494;
	const static uint16 kNotgunonheli = 1105;
	const static uint16 kNoslow = 2494;
	const static uint16 kFinishmon2 = 2494;
	const static uint16 kFinishsparky = 1105;
	const static uint16 kNotselob = 3393;
	const static uint16 kSkipsprite = 1105;
	const static uint16 kFinishconv = 2692;
	const static uint16 kIsinright = 5691;
	const static uint16 kWidth45 = 1819;
	const static uint16 kHavecutwire = 3393;
	const static uint16 kFinfree = 2660;
	const static uint16 kWidth43 = 1819;
	const static uint16 kHolewith = 3385;
	const static uint16 kNodistort = 4949;
	const static uint16 kBackwards = 3651;
	const static uint16 kNotasetid = 5073;
	const static uint16 kNotholdingreel = 4949;
	const static uint16 kAlreadygotnew = 3385;
	const static uint16 kFlashcurs = 2895;
	const static uint16 kCantuseopen = 2660;
	const static uint16 kHoteldoorwith = 3385;
	const static uint16 kIsloadmode = 3861;
	const static uint16 kNot129 = 2494;
	const static uint16 kNobotright = 3651;
	const static uint16 kMemerror = 4949;
	const static uint16 kBlankframe = 2660;
	const static uint16 kOpendoor = 1214;
	const static uint16 kNotbang = 1105;
	const static uint16 kFadecolloop = 2494;
	const static uint16 kNotlouisvol = 5073;
	const static uint16 kBotok = 4949;
	const static uint16 kNextcart = 3385;
	const static uint16 kFillcup = 3385;
	const static uint16 kNotopenable = 2660;
	const static uint16 kWireaxe = 3393;
	const static uint16 kNotinsidethis = 2660;
	const static uint16 kAtlast2 = 1214;
	const static uint16 kAtlast3 = 1214;
	const static uint16 kAtlast1 = 1214;
	const static uint16 kHoldingreel = 5691;
	const static uint16 kFindopen2 = 2494;
	const static uint16 kFindopen1 = 2494;
	const static uint16 kEndsetloop = 3393;
	const static uint16 kGotcart = 2776;
	const static uint16 kNot10 = 3525;
	const static uint16 kLookforlinestart = 1214;
	const static uint16 kCanpick2a = 2660;
	const static uint16 kAlreadyonoff = 3693;
	const static uint16 kNotsarters = 3393;
	const static uint16 kDogetback = 2660;
	const static uint16 kNotthrough2 = 1214;
	const static uint16 kNotprintlist = 1819;
	const static uint16 kNotwrapbackb = 3651;
	const static uint16 kNoadvisor = 1105;
	const static uint16 kWidth30 = 1819;
	const static uint16 kNotleadingspace = 2776;
	const static uint16 kMoney1poke = 3385;
	const static uint16 kFinishwatch = 4949;
	const static uint16 kQuittravel = 2714;
	const static uint16 kDontgetrid = 5862;
	const static uint16 kVolfinish = 4949;
	const static uint16 kDograf = 3385;
	const static uint16 kDograb = 2660;
	const static uint16 kWidth58 = 1819;
	const static uint16 kWidth59 = 1819;
	const static uint16 kEnoughmem = 4949;
	const static uint16 kWidth54 = 1819;
	const static uint16 kMainloop = 4949;
	const static uint16 kWidth56 = 1819;
	const static uint16 kShowgroup1 = 2494;
	const static uint16 kWidth50 = 1819;
	const static uint16 kWidth51 = 1819;
	const static uint16 kWidth52 = 1819;
	const static uint16 kWidth53 = 1819;
	const static uint16 kOver148 = 2660;
	const static uint16 kWord4 = 4949;
	const static uint16 kNottalk1 = 1105;
	const static uint16 kWord1 = 4949;
	const static uint16 kWord3 = 4949;
	const static uint16 kWord2 = 4949;
	const static uint16 kPriestwait = 1105;
	const static uint16 kKeepchecking = 2660;
	const static uint16 kOver146 = 2660;
	const static uint16 kOver147 = 2660;
	const static uint16 kAlreadyopinv = 2660;
	const static uint16 kIsntblock = 5674;
	const static uint16 kKeyok2 = 2895;
	const static uint16 kKeyok1 = 2895;
	const static uint16 kFinishtalk = 2660;
	const static uint16 kNumberright = 3393;
	const static uint16 kFindryanloop = 2494;
	const static uint16 kAlreadyfull = 3385;
	const static uint16 kNotchangeloc = 1711;
	const static uint16 kNotweb = 5073;
	const static uint16 kNotendseq = 1105;
	const static uint16 kSecdes = 1105;
	const static uint16 kComparefin = 3393;
	const static uint16 kAlreadygrb = 2660;
	const static uint16 kNoshoe1 = 1113;
	const static uint16 kFinishdim4 = 2660;
	const static uint16 kRestartlook = 2895;
	const static uint16 kFinishdim1 = 2660;
	const static uint16 kFinishdim3 = 2660;
	const static uint16 kFinishdim2 = 2660;
	const static uint16 kNotnomask = 1819;
	const static uint16 kNorun = 5073;
	const static uint16 kNotryanon = 1711;
	const static uint16 kFinishmain = 4949;
	const static uint16 kFinishfade = 2494;
	const static uint16 kNopitflip = 4949;
	const static uint16 kStereook2 = 3393;
	const static uint16 kGreysumloop1 = 2494;
	const static uint16 kGreysumloop2 = 2494;
	const static uint16 kNotaftersec = 1105;
	const static uint16 kNotinthelift = 4949;
	const static uint16 kAdjustemmpage = 4945;
	const static uint16 kNotendtext2 = 1105;
	const static uint16 kNotendtext3 = 1105;
	const static uint16 kNotendtext1 = 1105;
	const static uint16 kNospeech1 = 2692;
	const static uint16 kSlabfwrong = 3385;
	const static uint16 kNotdumpdiary = 3693;
	const static uint16 kNokeypress = 3861;
	const static uint16 kFindten = 4945;
	const static uint16 kBuscombatend = 1105;
	const static uint16 kIstakengun = 3393;
	const static uint16 kFindopenp1 = 2660;
	const static uint16 kNotstartshake = 4949;
	const static uint16 kNoloccheck = 2494;
	const static uint16 kJustret = 3693;
	const static uint16 kAlreadyturned = 1105;
	const static uint16 kNothunder = 1214;
	const static uint16 kNotmonktext5 = 1105;
	const static uint16 kNotmonktext4 = 1105;
	const static uint16 kNotmonktext7 = 1105;
	const static uint16 kNotmonktext6 = 1105;
	const static uint16 kNotmonktext1 = 1105;
	const static uint16 kNotmonktext3 = 1105;
	const static uint16 kNotmonktext2 = 1105;
	const static uint16 kGotcandles = 1105;
	const static uint16 kNotmonktext9 = 1105;
	const static uint16 kNotmonktext8 = 1105;
	const static uint16 kSatdown = 3385;
	const static uint16 kSlabwith = 3385;
	const static uint16 kIntromonk1fin = 1105;
	const static uint16 kContrightpage = 3589;
	const static uint16 kCantwalk2 = 5691;
	const static uint16 kDeltimedtext = 3393;
	const static uint16 kEndcredits22 = 2494;
	const static uint16 kBackwardsbot = 3651;
	const static uint16 kNot130 = 2494;
	const static uint16 kFinished = 5073;
	const static uint16 kAlreadyswap2 = 2660;
	const static uint16 kEndall = 2494;
	const static uint16 kMoreinput = 2776;
	const static uint16 kFinishinitrain = 1113;
	const static uint16 kNotsecondbank1 = 4949;
	const static uint16 kDimloop4 = 2660;
	const static uint16 kDontwalkin = 5862;
	const static uint16 kReelsoundloop = 1214;
	const static uint16 kDimloop1 = 2660;
	const static uint16 kDimloop2 = 2660;
	const static uint16 kDimloop3 = 2660;
	const static uint16 kNotinpool = 3393;
	const static uint16 kIskern = 2494;
	const static uint16 kEyesshut = 5691;
	const static uint16 kDoload = 3735;
	const static uint16 kCantzoom = 1819;
	const static uint16 kToplot = 4949;
	const static uint16 kNotfirsttrigger = 2895;
	const static uint16 kMenuloop = 3525;
	const static uint16 kNotmapdownspec = 1711;
	const static uint16 kUptime = 4949;
	const static uint16 kFindopen2a = 2494;
	const static uint16 kPathloop = 5073;
	const static uint16 kCheckrain = 1113;
	const static uint16 kNotyetboss = 3385;
	const static uint16 kNoincryan = 2660;
	const static uint16 kSpeechfilename = 4926;
	const static uint16 kComlist = 2776;
	const static uint16 kGotallboss = 1105;
	const static uint16 kNottopchurch = 4949;
	const static uint16 kBeenpickedup = 3393;
	const static uint16 kNotintro3text1 = 1105;
	const static uint16 kNopathon = 5073;
	const static uint16 kOff = 2776;
	const static uint16 kAlreadyuse = 2895;
	const static uint16 kInvlist1 = 2556;
	const static uint16 kObject = 3393;
	const static uint16 kMorethan10 = 4949;
	const static uint16 kMightbeonlych1 = 4949;
	const static uint16 kMightbeonlych0 = 4949;
	const static uint16 kPasserror = 2895;
	const static uint16 kAlreadyloaded = 4949;
	const static uint16 kNopriesttext = 1105;
	const static uint16 kNotanup = 1113;
	const static uint16 kEndmon = 2776;
	const static uint16 kMoretopic = 2895;
	const static uint16 kGatesfin = 1105;
	const static uint16 kNokeyn = 3693;
	const static uint16 kFinishcurdel = 2895;
	const static uint16 kCheckpass = 2895;
	const static uint16 kNotlift = 1214;
	const static uint16 kWidth61 = 1819;
	const static uint16 kWidth60 = 1819;
	const static uint16 kNofind = 3393;
	const static uint16 kWidth62 = 1819;
	const static uint16 kNotsmallx2 = 5698;
	const static uint16 kDos2 = 2494;
	const static uint16 kDos3 = 2494;
	const static uint16 kNocash = 3385;
	const static uint16 kDos1 = 2494;
	const static uint16 kNotendmonk2 = 1105;
	const static uint16 kDiffmouse = 2660;
	const static uint16 kNotinthebeach = 4949;
	const static uint16 kPcxpal = 1711;
	const static uint16 kCandlesfin = 1105;
	const static uint16 kSuccess = 5691;
	const static uint16 kGotvalidpath = 5073;
	const static uint16 kTopokv = 4949;
	const static uint16 kNotinpoolroom = 3393;
	const static uint16 kGothand = 5698;
	const static uint16 kCantuse2 = 2895;
	const static uint16 kDiff = 5674;
	const static uint16 kSearchinv = 3393;
	const static uint16 kIsblock = 5674;
	const static uint16 kJimmycontrols = 3393;
	const static uint16 kItsfrominv = 5698;
	const static uint16 kNotgeneralstart = 1105;
	const static uint16 kMakeintoex = 2660;
	const static uint16 kDoredes = 2714;
	const static uint16 kLookforpurge = 2660;
	const static uint16 kNochange2 = 1214;
	const static uint16 kUpordown = 1214;
	const static uint16 kDontbother5 = 4949;
	const static uint16 kZoomloop = 1819;
	const static uint16 kStillspace1 = 2895;
	const static uint16 kHeliwon = 1105;
	const static uint16 kGameinfo = 4375;
	const static uint16 kNotalkrock = 1105;
	const static uint16 kShownameloop = 3861;
	const static uint16 kNotblankinp = 2776;
	const static uint16 kJustshutting = 1214;
	const static uint16 kNotwidedoor = 1214;
	const static uint16 kNotdiffob = 5674;
	const static uint16 kNotthrough = 1214;
	const static uint16 kExamineagain = 2494;
	const static uint16 kVertline = 5691;
	const static uint16 kRestartops = 3693;
	const static uint16 kNotsmallx = 5698;
	const static uint16 kNotwatchpoint = 5698;
	const static uint16 kNotflippedx = 1819;
	const static uint16 kBotokv = 4949;
	const static uint16 kSmallcandlef = 1105;
	const static uint16 kGotcandles2 = 1105;
	const static uint16 kFinblink1 = 5691;
	const static uint16 kNotinthisroom = 1214;
	const static uint16 kNospeech = 2660;
	const static uint16 kSlabcwrong = 3385;
	const static uint16 kPokelift = 1214;
	const static uint16 kLoadops = 3735;
	const static uint16 kNotextraname = 5691;
	const static uint16 kCantredes = 2714;
	const static uint16 kOnelot = 1105;
	const static uint16 kDeloneloop = 1819;
	const static uint16 kDodrop = 2660;
	const static uint16 kDoplace2 = 2660;
	const static uint16 kNopath = 3393;
	const static uint16 kBotofdoor2 = 1214;
	const static uint16 kNotnewlogo = 2895;
	const static uint16 kIsntsame2 = 2660;
	const static uint16 kNotfadedown = 1105;
	const static uint16 kNot173 = 2494;
	const static uint16 kTopwrap = 3651;
	const static uint16 kCannextf = 3589;
	const static uint16 kCartwith = 3385;
	const static uint16 kGotintro3text = 1105;
	const static uint16 kAlreadybotr = 3651;
	const static uint16 kMainlist2 = 5011;
	const static uint16 kNotrainyet = 1105;
	const static uint16 kNotsecondtrigger = 2895;
	const static uint16 kNotravmessage = 1113;
	const static uint16 kNotunsized = 2660;
	const static uint16 kGameragain = 1105;


}

#endif