-
Notifications
You must be signed in to change notification settings - Fork 14
/
spy.record
1527 lines (1511 loc) · 35.9 KB
/
spy.record
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
Combined ZIL Compiler Ver 2.0 (MIM)
-----------------------------------
Input file: SPY.ZIL
Input file: MACROS.ZIL
Compiling routine: START-SENTENCE
Compiling routine: PRINTT
Compiling routine: THE?
Compiling routine: PRINTA
Compiling routine: NO-PRONOUN?
Compiling routine: HE-SHE-IT
Compiling routine: ONE?
Compiling routine: HIM-HER-IT
Compiling routine: PICK-ONE-NEW
Compiling routine: PICK-ONE
Input file: SYNTAX.ZIL
Input file: MAIN.ZIL
Compiling routine: GO
Compiling routine: INTRO
Compiling routine: READ-WORD
Compiling routine: PLEASE-TYPE-OR
Compiling routine: RANDOM-PER-VAR
Compiling routine: TAKE-YOUR-PLACES
Compiling routine: SET-PASSES
Compiling routine: TAKE-YOUR-PLACES-CAST
Compiling routine: TAKE-YOUR-PLACE-TEST
Compiling routine: OCCUPIED?
Compiling routine: MOVE-CONTACT
Compiling routine: INIT-STATUS-LINE
Compiling routine: INVERSE-LINE
Compiling routine: PRINT-SPACES
Compiling routine: STATUS-LINE
Compiling routine: TELL-LOCATION
Input file: THINGS.ZIL
Compiling routine: RANDOM-PSEUDO
Compiling routine: NOT-HERE-OBJECT-F
Compiling routine: PRSO-VERB?
Compiling routine: PRSI-VERB?
Compiling routine: GEN-TEST
Compiling routine: FIND-NOT-HERE
Compiling routine: NOT-HERE-PRINT
Compiling routine: GIVE-SHOW
Compiling routine: TICKET-F
Compiling routine: PASSPORT-F
Compiling routine: CHECK-F
Compiling routine: CAMERA-F
Compiling routine: FILM-F
Compiling routine: GLASS-F
Compiling routine: MCGUFFIN-F
Compiling routine: SPY-LIST-F
Compiling routine: PAD-READ
Compiling routine: BRIEFCASE-F
Compiling routine: TELL-GAS
Compiling routine: LATCH-F
Compiling routine: CASE-CAREFUL
Compiling routine: BRIEFCASE-HANDLE-F
Compiling routine: PLAQUE-F
Compiling routine: TBL-FIRST?
Compiling routine: TBL-TO-INSIDE
Compiling routine: INSIDE-OBJ-TO
Compiling routine: OBJS-SLIDE-OFF
Compiling routine: NEWSPAPER-F
Compiling routine: CIGARETTE-F
Compiling routine: LIGHTER-F
Compiling routine: FLOWER-F
Compiling routine: SEARCHING-FOR?
** Warning: Unknown value - KNIFE
Compiling routine: BLOOD-SPOT-DESC
Compiling routine: FIND-SEARCH
Compiling routine: BLOOD-SPOT-F
Compiling routine: KNIFE-F
Compiling routine: KNIFE-NAPKIN-F
Compiling routine: NAPKIN-F
Compiling routine: SNEAKY-TAKE?
Input file: PEOPLE.ZIL
Compiling routine: PREVENTS-YOU?
Compiling routine: PLAYER-F
Compiling routine: TOO-BAD-SIT-HIDE
Compiling routine: CONDUCTOR-DESC
Compiling routine: CONDUCTOR-GIVE-SHOW
Compiling routine: CONDUCTOR-F
Compiling routine: CUSTOMS-AGENT-DESC
Compiling routine: CUSTOMS-AGENT-F
Compiling routine: CONFISCATE-MCGUFFIN
Compiling routine: WAITER-DESC
Compiling routine: WAITER-F
Compiling routine: BRING-GIVE
Compiling routine: COOK-DESC
Compiling routine: COOK-F
Compiling routine: HAT-COOK-F
Compiling routine: BRIBED?
Compiling routine: CLERK-DESC
Compiling routine: CLERK-F
Compiling routine: BOND-DESC
Compiling routine: BOND-OTHER-DESC
Compiling routine: BOND-F
Compiling routine: BOND-OTHER-F
Compiling routine: THIN-MAN-DESC
Compiling routine: THIN-MAN-F
Compiling routine: FAT-MAN-DESC
Compiling routine: FAT-MAN-F
Compiling routine: HUNK-DESC
Compiling routine: HUNK-F
Compiling routine: PEEL-DESC
Compiling routine: PEEL-F
Compiling routine: DUCHESS-DESC
Compiling routine: DUCHESS-F
Compiling routine: NATASHA-DESC
Compiling routine: NATASHA-F
Compiling routine: GUARD-DESC
Compiling routine: GUARD-F
Compiling routine: THUG-DESC
Compiling routine: THUG-F
Compiling routine: DEFECTOR-DESC
Compiling routine: DEFECTOR-F
Compiling routine: WAITRESS-DESC
Compiling routine: WAITRESS-F
Compiling routine: OFFICER-DESC
Compiling routine: OFFICER-F
Compiling routine: YOUNG-MAN-DESC
Compiling routine: YOUNG-MAN-F
Compiling routine: YOUNG-WOMAN-DESC
Compiling routine: YOUNG-WOMAN-F
Compiling routine: BOY-DESC
Compiling routine: BOY-F
Compiling routine: GIRL-DESC
Compiling routine: GIRL-F
Compiling routine: OLD-MAN-DESC
Compiling routine: OLD-MAN-F
Compiling routine: OLD-WOMAN-DESC
Compiling routine: OLD-WOMAN-F
Compiling routine: YOUNG-COUPLE-DESC
Compiling routine: YOUNG-COUPLE-F
Compiling routine: MIDDLE-COUPLE-DESC
Compiling routine: MIDDLE-COUPLE-F
Compiling routine: OLD-COUPLE-DESC
Compiling routine: OLD-COUPLE-F
Compiling routine: ELIMINATE
Compiling routine: MONEY?
Compiling routine: PERSON-F
Compiling routine: ASK-WHAT?
Compiling routine: IMMOBILIZE
Compiling routine: UNCONSCIOUS-FCN
Compiling routine: ANYONE-VISIBLE?
Compiling routine: BODY-F
Compiling routine: I-COME-TO
Compiling routine: MCG-SAFE?
Compiling routine: CARRY-CHECK
Compiling routine: COM-CHECK
Compiling routine: COMMON-OTHER
Compiling routine: PICK-THIS
** Warning: Unknown value - REM-NULL
** Warning: Unknown value - REM-EYES-BLK
** Warning: Unknown value - REM-EYES-BLU
** Warning: Unknown value - REM-FINGER
** Warning: Unknown value - REM-MARK
** Warning: Unknown value - REM-WART
Compiling routine: REM-NULL
Compiling routine: REM-EYES-BLK
Compiling routine: REM-EYES-BLU
Compiling routine: REM-FINGER
Compiling routine: REM-MARK
Compiling routine: REM-WART
Compiling routine: NEW-LDESC
Compiling routine: CALL-FOR-PROP
Compiling routine: UNSNOOZE
Compiling routine: DESCRIBE-PERSON
Compiling routine: DONT-KNOW
Compiling routine: GLOBAL-PERSON
Compiling routine: NOT-HERE-PERSON
Compiling routine: PRODUCE-SOMETHING
Compiling routine: PRODUCE-GIBBERISH
Input file: PLACES.ZIL
Compiling routine: NULL-F
Compiling routine: DOOR-ROOM
Compiling routine: DOOR-DIR
Compiling routine: FACE-DOOR
Compiling routine: FIND-FLAG
Compiling routine: FIND-FLAG-CAR
Compiling routine: FIND-FLAG-LG
Compiling routine: FIND-FLAG-HERE
Compiling routine: FIND-FLAG-HERE-NOT
Compiling routine: NEXT-ROOM
Compiling routine: OUTSIDE?
Compiling routine: WINDOW-IN?
Compiling routine: FRESH-AIR?
Input file: GLOBAL.ZIL
Compiling routine: DO-INSTEAD-OF
Compiling routine: TURN-F
Compiling routine: IT-F
Compiling routine: FLOOR-F
Compiling routine: DOLLARS-F
Compiling routine: INTNUM-F
Compiling routine: YOU-F
Compiling routine: CORRIDOR-GLOBAL-F
Compiling routine: GLOBAL-HERE-F
Compiling routine: FOUND?
Compiling routine: AIR-F
Compiling routine: SOMETHING-F
Compiling routine: TOILET-F
Compiling routine: ROB
Compiling routine: SINK-F
Compiling routine: TOWEL-LOOP-F
Compiling routine: TOWEL-LOOP-BROKEN-F
Compiling routine: PAPER-FIXTURE-F
Compiling routine: PAPER-LOOP-F
Compiling routine: MIRROR-F
Compiling routine: POCKET-F
Compiling routine: POCKET-C-F
Compiling routine: TELL-FLASHING-CASH
Compiling routine: GLOBAL-MONEY-F
Compiling routine: MENU-F
Compiling routine: ITEMS-F
Compiling routine: FOOD-GLOBAL-F
Compiling routine: DRINK-F
Compiling routine: DRINK-1-F
Compiling routine: FOOD-F
Compiling routine: CUP-F
Compiling routine: WINE-PUT?
Compiling routine: WINE-F
Compiling routine: NO-FOOD-F
Compiling routine: TABLE?
Compiling routine: LANGUAGE-F
Compiling routine: GESTURE-F
Compiling routine: GAME-F
Compiling routine: HEAD-F
Input file: CLOCK.ZIL
Compiling routine: QUEUE
Compiling routine: INT
Compiling routine: QUEUED?
Compiling routine: CLOCKER
Input file: PARSER.ZIL
Compiling routine: MAIN-LOOP
Compiling routine: MAIN-LOOP-1
Compiling routine: VERB-ALL-TEST
Compiling routine: GAME-VERB?
Compiling routine: QCONTEXT-CHECK
Compiling routine: QCONTEXT-GOOD?
Compiling routine: SAID-TO
Compiling routine: THIS-IS-IT
Compiling routine: NOT-IT
Compiling routine: FAKE-ORPHAN
Compiling routine: TELL-D-LOC
Compiling routine: FIX-HIM-HER
Compiling routine: PERFORM
Compiling routine: D-APPLY
Compiling routine: I-PROMPT
Compiling routine: BUZZER-WORD?
Compiling routine: QUESTION-WORD?
Compiling routine: NUMBER-WORD?
Compiling routine: NAUGHTY-WORD?
Compiling routine: PARSER
Compiling routine: STUFF
Compiling routine: INBUF-STUFF
Compiling routine: INBUF-ADD
Compiling routine: WT?
Compiling routine: CHANGE-LEXV
Compiling routine: CLAUSE
Compiling routine: VERB-DIR-ONLY?
Compiling routine: NUMBER?
Compiling routine: CENTS-CHECK
Compiling routine: ORPHAN-MERGE
Compiling routine: ACLAUSE-WIN
Compiling routine: NCLAUSE-WIN
Compiling routine: WORD-PRINT
Compiling routine: UNKNOWN-WORD
Compiling routine: CANT-USE
Compiling routine: SYNTAX-CHECK
Compiling routine: DONT-UNDERSTAND
Compiling routine: VERB-PRINT
Compiling routine: ORPHAN
Compiling routine: CLAUSE-PRINT
Compiling routine: BUFFER-PRINT
Compiling routine: CAPITAL-NOUN?
Compiling routine: CAPITALIZE
Compiling routine: PREP-PRINT
Compiling routine: CLAUSE-COPY
Compiling routine: CLAUSE-ADD
Compiling routine: PREP-FIND
Compiling routine: SYNTAX-FOUND
Compiling routine: GWIM
Compiling routine: SNARF-OBJECTS
Compiling routine: BUT-MERGE
Compiling routine: SNARFEM
Compiling routine: GET-OBJECT
Compiling routine: SPEAKING-VERB?
Compiling routine: CANT-ORPHAN
Compiling routine: MISSING-NOUN
Compiling routine: MISSING-VERB
Compiling routine: MOBY-FIND
Compiling routine: WHICH-PRINT
Compiling routine: GLOBAL-CHECK
Compiling routine: DO-SL
Compiling routine: SEARCH-LIST
Compiling routine: THIS-IT?
Compiling routine: OBJ-FOUND
Compiling routine: TAKE-CHECK
Compiling routine: ITAKE-CHECK
Compiling routine: MANY-CHECK
Compiling routine: ZMEMQ
Compiling routine: ZMEMZ
Compiling routine: LIT?
Compiling routine: NOT-HERE
Input file: VERBS.ZIL
Compiling routine: TRANSCRIPT
Compiling routine: V-SCRIPT
Compiling routine: V-UNSCRIPT
Compiling routine: V-$VERIFY
Compiling routine: V-$ANSWER
Compiling routine: V-$FCLEAR
Compiling routine: V-$FSET
Compiling routine: V-$QFSET
Compiling routine: V-$GOAL
Compiling routine: V-$QUEUE
Compiling routine: V-$STATION
Compiling routine: V-$WHERE
Compiling routine: TELL-$WHERE
Compiling routine: V-DEBUG
Compiling routine: YOU-WILL-GET
Compiling routine: V-BRIEF
Compiling routine: V-SUPER-BRIEF
Compiling routine: V-VERBOSE
Compiling routine: V-INVENTORY
Compiling routine: V-QUIT
Compiling routine: V-RESTART
Compiling routine: TELL-FAILED
Compiling routine: V-SAVE
Compiling routine: V-RESTORE
Compiling routine: V-FIRST-LOOK
Compiling routine: V-VERSION
Compiling routine: YES?
Compiling routine: YOU-CANT
Compiling routine: DESCRIBE-OBJECT
Compiling routine: DESCRIBE-OBJECTS
Compiling routine: DESCRIBE-ROOM
Compiling routine: FAR-AWAY?
Compiling routine: COMPASS-EQV
Compiling routine: FIRSTER
Compiling routine: HAR-HAR
Compiling routine: NOT-HOLDING?
Compiling routine: GOTO
Compiling routine: HACK-HACK
Compiling routine: HELD?
Compiling routine: IDROP
Compiling routine: ITAKE
Compiling routine: LURCH-MISS
Compiling routine: MOVE-FROM
Compiling routine: CCOUNT
Compiling routine: CHECK-DOOR
Compiling routine: PRINT-CONT
** Note: Non-predicate jump flushed PRINTI
** Note: Non-predicate jump flushed PRINTI
** Note: Non-predicate jump flushed PRINTI
** Note: Non-predicate jump flushed PRINTI
Compiling routine: PRINT-CONTENTS
Compiling routine: ROOM-CHECK
Compiling routine: SEE-INSIDE?
Compiling routine: ARENT-TALKING
Compiling routine: ALREADY
Compiling routine: NOT-CLEAR-WHOM
Compiling routine: OKAY
Compiling routine: WONT-HELP-TO-TALK-TO
Compiling routine: TOO-BAD-BUT
Compiling routine: TOO-DARK
Compiling routine: VISIBLE?
Compiling routine: ACCESSIBLE?
Compiling routine: META-LOC
Compiling routine: WEIGHT
Compiling routine: WHO-CARES
Compiling routine: PRE-SAIM
Compiling routine: V-SAIM
Compiling routine: V-AIM
Compiling routine: PRE-SANALYZE
Compiling routine: V-SANALYZE
Compiling routine: PRE-ANALYZE
Compiling routine: V-ANALYZE
Compiling routine: V-ANSWER
Compiling routine: V-REPLY
Compiling routine: WAITING-FOR-YOU-TO-SPEAK
Compiling routine: PRE-ASK
Compiling routine: V-ASK
Compiling routine: PRE-ASK-ABOUT
Compiling routine: V-ASK-ABOUT
Compiling routine: PRE-ASK-CONTEXT-ABOUT
Compiling routine: V-ASK-CONTEXT-ABOUT
Compiling routine: PRE-ASK-FOR
Compiling routine: V-ASK-FOR
Compiling routine: PRE-ASK-CONTEXT-FOR
Compiling routine: V-ASK-CONTEXT-FOR
Compiling routine: V-ATTACK
Compiling routine: PRE-BRING
Compiling routine: V-BRING
Compiling routine: PRE-SBRING
Compiling routine: V-SBRING
Compiling routine: V-BRUSH
Compiling routine: TELL-NO-PRSI
Compiling routine: PRE-BURN
Compiling routine: V-BURN
Compiling routine: REMOVE-CAREFULLY
Compiling routine: PRE-BUY
Compiling routine: PRE-BUY-TICKET
Compiling routine: V-BUY-TICKET
Compiling routine: V-BUY
Compiling routine: V-$CALL
Compiling routine: PRE-PHONE
Compiling routine: V-PHONE
Compiling routine: V-CHANGE
Compiling routine: V-CHASTISE
Compiling routine: V-BOARD
Compiling routine: V-CLIMB-ON
Compiling routine: V-CLIMB-UP
Compiling routine: V-CLIMB-DOWN
Compiling routine: V-CLOSE
Compiling routine: PRE-COME-WITH
Compiling routine: V-COME-WITH
Compiling routine: V-CONFRONT
Compiling routine: V-COUNT
Compiling routine: V-CUT
Compiling routine: V-MUNG
Compiling routine: V-DIAGNOSE
Compiling routine: PRE-DISCUSS
Compiling routine: V-DISCUSS
Compiling routine: V-DRINK
Compiling routine: V-DROP
Compiling routine: GROUND-DESC
Compiling routine: V-EAT
Compiling routine: PRE-EMPTY
Compiling routine: V-EMPTY
Compiling routine: V-ENTER
Compiling routine: V-THROUGH
Compiling routine: PRE-EXAMINE
Compiling routine: V-EXAMINE
Compiling routine: NOTHING-SPECIAL
Compiling routine: GLOBAL-IN?
Compiling routine: V-$FACE
Compiling routine: V-FACE
Compiling routine: V-FAINT
Compiling routine: PRE-FILL
Compiling routine: V-FILL
Compiling routine: PRE-FIND
Compiling routine: BITE-YOU
Compiling routine: V-FIND
Compiling routine: V-FIND-WITH
Compiling routine: V-FIX
Compiling routine: V-FLUSH
Compiling routine: V-FLUSH-AWAY
Compiling routine: V-FLUSH-DOWN
Compiling routine: V-FOLLOW
Compiling routine: V-FOO
Compiling routine: PRE-GESTURE
Compiling routine: V-GESTURE
Compiling routine: PRE-GIVE
Compiling routine: V-GIVE
Compiling routine: PRE-SGIVE
Compiling routine: V-SGIVE
Compiling routine: PRE-GOODBYE
Compiling routine: V-GOODBYE
Compiling routine: PRE-HANGUP
Compiling routine: V-HANGUP
Compiling routine: PRE-HEAT
Compiling routine: V-HEAT
Compiling routine: PRE-HELLO
Compiling routine: V-HELLO
Compiling routine: V-HELP
Compiling routine: HELP-TEXT
Compiling routine: V-HIDE
Compiling routine: V-HIDE-BEHIND
Compiling routine: PRE-HOLD-OVER
Compiling routine: V-HOLD-OVER
Compiling routine: V-HOLD-UNDER
Compiling routine: V-KILL
Compiling routine: IKILL
Compiling routine: V-KISS
Compiling routine: V-KNOCK
Compiling routine: V-STAND
Compiling routine: V-LEAP
Compiling routine: V-SKIP
Compiling routine: WHEE
Compiling routine: V-LEARN
Compiling routine: V-LEAVE
Compiling routine: PRE-LIE
Compiling routine: V-LIE
Compiling routine: V-LISTEN
Compiling routine: V-LOCK
Compiling routine: V-LOOK
Compiling routine: V-LOOK-BEHIND
Compiling routine: V-LOOK-DOWN
Compiling routine: PRE-LOOK-INSIDE
Compiling routine: V-LOOK-INSIDE
Compiling routine: V-LOOK-THROUGH
Compiling routine: ROOM-PEEK
Compiling routine: SEE-INTO?
Compiling routine: V-LOOK-ON
Compiling routine: V-LOOK-OUTSIDE
Compiling routine: V-LOOK-UNDER
Compiling routine: V-LOOK-UP
Compiling routine: V-MAKE
Compiling routine: PRE-MOVE
Compiling routine: V-MOVE
Compiling routine: PRE-MOVE-DIR
Compiling routine: V-MOVE-DIR
Compiling routine: V-NOD
Compiling routine: V-OPEN
Compiling routine: PRE-OPEN-WITH
Compiling routine: V-OPEN-WITH
Compiling routine: V-PASS
Compiling routine: PRE-PHOTO
Compiling routine: TAKE-PICTURE
Compiling routine: V-PHOTO
Compiling routine: V-PLAY
Compiling routine: PRE-POCKET
Compiling routine: V-POCKET
Compiling routine: V-POUR
Compiling routine: V-PUSH
Compiling routine: PRE-PUT
Compiling routine: PRE-SPUT-IN
Compiling routine: V-SPUT-IN
Compiling routine: PRE-PUT-IN
Compiling routine: V-PUT-IN
Compiling routine: V-PUT
Compiling routine: V-PUT-UNDER
Compiling routine: V-RAISE
Compiling routine: PRE-READ
Compiling routine: V-READ
Compiling routine: V-REMOVE
Compiling routine: V-RING
Compiling routine: V-RIP
Compiling routine: V-RISE
Compiling routine: V-RUB
Compiling routine: PRE-RUB-OVER
Compiling routine: V-RUB-OVER
Compiling routine: V-SAY
Compiling routine: PRE-SAY-INTO
Compiling routine: V-SAY-INTO
Compiling routine: PRE-SEARCH
Compiling routine: V-SEARCH
Compiling routine: PRE-SSEARCH-FOR
Compiling routine: V-SSEARCH-FOR
Compiling routine: PRE-SEARCH-FOR
Compiling routine: V-SEARCH-FOR
Compiling routine: V-SEND
Compiling routine: PRE-SSEND
Compiling routine: V-SSEND
Compiling routine: V-SEND-OUT
Compiling routine: PRE-SEND-TO
Compiling routine: V-SEND-TO
Compiling routine: V-SHAKE
Compiling routine: PRE-SHOOT
Compiling routine: V-SHOOT
Compiling routine: PRE-SSHOOT
Compiling routine: V-SSHOOT
Compiling routine: V-SHOW
Compiling routine: PRE-SSHOW
Compiling routine: V-SSHOW
Compiling routine: V-SIGN
Compiling routine: PRE-SIT
Compiling routine: V-SIT
Compiling routine: V-SIT-AT
Compiling routine: V-SLAP
Compiling routine: IF-SPY
Compiling routine: FACE-RED
Compiling routine: V-SLIDE
Compiling routine: V-SMELL
Compiling routine: V-SMILE
Compiling routine: V-SMOKE
Compiling routine: V-STOP
Compiling routine: V-SWIM
Compiling routine: PRE-TAKE
Compiling routine: PRE-TAKE-WITH
Compiling routine: V-TAKE
Compiling routine: V-TAKE-OFF
Compiling routine: V-TAKE-TO
Compiling routine: V-TAKE-WITH
Compiling routine: V-DISEMBARK
Compiling routine: OWN-FEET
Compiling routine: V-HOLD-UP
Compiling routine: V-TELL
Compiling routine: PRE-STELL-ABOUT
Compiling routine: V-STELL-ABOUT
Compiling routine: PRE-TELL-ABOUT
Compiling routine: V-TELL-ABOUT
Compiling routine: PRE-TALK-ABOUT
Compiling routine: V-TALK-ABOUT
Compiling routine: V-THANKS
Compiling routine: THANKS-ACT
Compiling routine: V-THROW
Compiling routine: V-THROW-AT
Compiling routine: V-THROW-OFF
Compiling routine: V-THROW-THROUGH
Compiling routine: PRE-TIE-TO
Compiling routine: V-TIE-TO
Compiling routine: PRE-TIE-WITH
Compiling routine: V-TIE-WITH
Compiling routine: V-TIME
Compiling routine: TIME-PRINT
Compiling routine: V-TURN
Compiling routine: V-TURN-AROUND
Compiling routine: V-LAMP-OFF
Compiling routine: V-LAMP-ON
Compiling routine: V-UNLOCK
Compiling routine: V-UNTIE
Compiling routine: MORE-SPECIFIC
Compiling routine: V-USE
Compiling routine: V-USE-AGAINST
Compiling routine: HAS-ARRIVED
Compiling routine: V-WAIT
Compiling routine: INT-WAIT
Compiling routine: V-WAIT-FOR
Compiling routine: V-WAIT-UNTIL
Compiling routine: V-ALARM
Compiling routine: DO-WALK
Compiling routine: V-WALK
Compiling routine: WALK-THRU-DOOR?
Compiling routine: V-WALK-AROUND
Compiling routine: WHO-KNOWS?
Compiling routine: V-WALK-TO
Compiling routine: V-WALK-UNDER
Compiling routine: V-RUN-OVER
Compiling routine: V-WEAR
Compiling routine: V-WHAT
Compiling routine: V-WIND
Compiling routine: V-YELL
Compiling routine: V-YELL-FOR
Compiling routine: V-YES
Compiling routine: V-NO
Compiling routine: FINISH
Compiling routine: DIVESTMENT?
Compiling routine: EXIT-VERB?
Compiling routine: REMOTE-VERB?
Input file: TRAIN.ZIL
Compiling routine: TRAIN-F
Compiling routine: SCENERY-RIGHT-F
Compiling routine: SCENERY-LEFT-F
Compiling routine: SCENERY-F
Compiling routine: GENERIC-STATION-F
Compiling routine: START-TRAIN
Compiling routine: DESTINATION
Compiling routine: I-TRAIN-SCENERY
Compiling routine: PREPARE-SPLAT
Compiling routine: DO-SPLAT
Compiling routine: TIMETABLE-F
Compiling routine: PRINT-TT
Compiling routine: I-ARRIVE-WARNING
Compiling routine: HIDE-OBJECT?
Compiling routine: ARRIVE-STATION
Compiling routine: CLEAR-TRAIN
Compiling routine: CLEAR-TRAIN-PERSON
Compiling routine: CONDUCTOR-OFF
Compiling routine: I-CONTACT-APPEARS
Compiling routine: I-CONTACT-GIVES-UP
Compiling routine: I-DEPART-WARNING
Compiling routine: I-DEPART
Compiling routine: CUE-NEXT-TRAIN
Compiling routine: FLUSH?
Compiling routine: FLUSH-ROOM?
Compiling routine: UNPUNCH-TICKETS
Compiling routine: TRAIN-SLOWING?
Compiling routine: MOTION-PREFIX
Compiling routine: I-TRAIN-LURCH
Compiling routine: REST-ROOM-F
Compiling routine: COMPARTMENT-F
Compiling routine: PERSON-TAKES-GUN?
Compiling routine: CALL-FOR-EXTRA
Compiling routine: MOVE-EXTRA?
Compiling routine: COMPARTMENT-DESC
Compiling routine: CORD-SWINGS?
Compiling routine: GENERIC-COMPARTMENT-F
Compiling routine: REST-ROOM-FWD-DOOR-F
Compiling routine: REST-ROOM-DOOR-F
Compiling routine: COMPARTMENT-1-DOOR-F
Compiling routine: COMPARTMENT-DOOR-F
Compiling routine: COMPARTMENT-2-DOOR-F
Compiling routine: COMPARTMENT-3-DOOR-F
Compiling routine: HALL-3-F
Compiling routine: COMPARTMENT-4-DOOR-F
Compiling routine: COMPARTMENT-5-DOOR-F
Compiling routine: HALL-F
Compiling routine: REST-ROOM-REAR-DOOR-F
Compiling routine: VESTIBULE-FWD-F
Compiling routine: VESTIBULE-REAR-F
Compiling routine: VESTIBULE-F
Compiling routine: FORWARD-PART?
Compiling routine: GENERIC-VESTIBULE-F
Compiling routine: GENERIC-REST-ROOM-F
Compiling routine: GENERIC-HALL-1-F
Compiling routine: GENERIC-MIDDLE-F
Compiling routine: GENERIC-HALL-5-F
Compiling routine: DETRAIN-F
Compiling routine: LADDER-EXIT-F
Compiling routine: ROOF-F
Compiling routine: LADDER-ENTER-F
Compiling routine: LADDER-F
Compiling routine: VESTIBULE-FWD-DOOR-F
Compiling routine: VESTIBULE-REAR-DOOR-F
Compiling routine: VESTIBULE-DOOR-F
Compiling routine: I-VESTIBULE-DOOR
Compiling routine: I-VESTIBULE-DOOR-PART
Compiling routine: STOP-CORD-IN?
Compiling routine: STOP-CORD-F
Compiling routine: I-TRAIN-RESTART
Compiling routine: OPEN-CURTAINS
Compiling routine: OPEN-CURTAIN
Compiling routine: CLOSE-CURTAINS
Compiling routine: CLOSE-CURTAIN
Compiling routine: CURTAIN-F
Compiling routine: GENERIC-SEAT-F
Compiling routine: SEAT-1-F
Compiling routine: SEAT-F
Compiling routine: UNDER-SEAT-F
Compiling routine: UNDER-SEAT-N-F
Compiling routine: SEAT-2-F
Compiling routine: SEAT-3-F
Compiling routine: SEAT-4-F
Compiling routine: SEAT-5-F
Compiling routine: BOOTH-SEAT-1-F
Compiling routine: BOOTH-SEAT-2-F
Compiling routine: BOOTH-SEAT-3-F
Compiling routine: WINDOW-ROOM
Compiling routine: WINDOW-F
** Warning: Unknown value - VESTIBULE-FWD-DINER
** Warning: Unknown value - VESTIBULE-REAR-DINER
** Warning: Unknown value - VESTIBULE-FWD-FANCY
** Warning: Unknown value - VESTIBULE-REAR-FANCY
** Warning: Unknown value - REST-ROOM-FWD-DINER
** Warning: Unknown value - REST-ROOM-REAR-DINER
** Warning: Unknown value - HALL-1-DINER
** Warning: Unknown value - HALL-2-DINER
** Warning: Unknown value - HALL-3-DINER
** Warning: Unknown value - HALL-4-DINER
** Warning: Unknown value - HALL-5-DINER
** Warning: Unknown value - HALL-1-FANCY
** Warning: Unknown value - HALL-2-FANCY
** Warning: Unknown value - HALL-3-FANCY
Compiling routine: NEXT-ROOF-TO-FWD-F
Compiling routine: NEXT-ROOF-TO-REAR-F
Compiling routine: NEXT-CAR-TO-FWD-F
Compiling routine: NEXT-CAR-TO-REAR-F
Compiling routine: NEXT-CAR
Compiling routine: NEXT-CAR-SWITCHEROO
Compiling routine: ROOM-TO-OTHER
Compiling routine: OTHER-TO-ROOM
Compiling routine: FIX-GOAL
Compiling routine: BESIDE-TRACKS-F
Compiling routine: ALONG-TRAIN-FWD-F
Compiling routine: ALONG-TRAIN-REAR-F
Compiling routine: I-TRAIN-ARREST
Compiling routine: NOISY?
Compiling routine: L-FWD
Compiling routine: L-REAR
Compiling routine: V-FWD
Compiling routine: V-REAR
Input file: CARS.ZIL
Compiling routine: DINER-F
Compiling routine: GENERIC-BOOTH-F
Compiling routine: PANTRY-F
Compiling routine: INVASION?
Compiling routine: GALLEY-F
Compiling routine: COUNTER-GALLEY-F
Compiling routine: ROOM-IS-CROWDED
Compiling routine: BOOTH-F
Compiling routine: BOOTH-DESC
Compiling routine: FROY-F
Compiling routine: REST-ROOM-REAR-DINER-DOOR-F
Compiling routine: REST-ROOM-FWD-DINER-DOOR-F
Compiling routine: MACHINE-F
** Warning: Unknown value - SUITE-1
** Warning: Unknown value - SUITE-2
** Warning: Unknown value - VESTIBULE-FWD-FANCY
** Warning: Unknown value - HALL-1-FANCY
** Warning: Unknown value - HALL-2-FANCY
** Warning: Unknown value - HALL-3-FANCY
** Warning: Unknown value - VESTIBULE-REAR-FANCY
Compiling routine: PICK-ONE-BOOTH
Compiling routine: SUITE-1-DOOR-F
Compiling routine: SUITE-2-DOOR-F
Compiling routine: SUITE-3-DOOR-F
Compiling routine: SUITE-F
Compiling routine: HALL-FANCY-F
Input file: STATION.ZIL
Compiling routine: ON-PLATFORM?
Compiling routine: PLATFORM-GLOBAL-F
Compiling routine: PASS-CUSTOMS-F
Compiling routine: UNPASS-CUSTOMS-F
Compiling routine: NEXT-PLATFORM-TO-REAR-F
Compiling routine: NEXT-PLATFORM-TO-FWD-F
Compiling routine: NEXT-PLATFORM-F
Compiling routine: PLATFORM-F
Compiling routine: NO-EMBARK-TEST
Compiling routine: EMBARK-F
Compiling routine: CROWD-F
Compiling routine: LUGGAGE-ROOM-F
Compiling routine: REST-ROOM-STATION-TEST
Compiling routine: REST-ROOM-STATION-F
Compiling routine: NEW-CONTACT
Compiling routine: COUNTER-CAFE-F
Compiling routine: TICKET-AREA-F
Compiling routine: TOWN-F
Compiling routine: SIDEWALK-F
Input file: GOAL.ZIL
Compiling routine: DIR-PRINT
Compiling routine: OPP-DIR
Compiling routine: GET-LINE
Compiling routine: FOLLOW-GOAL
Compiling routine: FOLLOW-GOAL-DIR
Compiling routine: FOLLOW-GOAL-NEXT
Compiling routine: COR-GRAB-ATTENTION
Compiling routine: CORRIDOR-LOOK
Compiling routine: CORRIDOR-CHECK
Compiling routine: COR-ADD-PER
Compiling routine: COR-TELL-PER
Compiling routine: IN-MOTION?
Compiling routine: START-MOVEMENT
** Note: Atomic argument to routine assumed constant - G-LEAVE-TRAIN
** Warning: Unknown value - I-PLAYER
** Warning: Unknown value - I-PLAYER
** Warning: Unknown value - I-CONDUCTOR
** Warning: Unknown value - I-CONDUCTOR
** Warning: Unknown value - I-WAITER
** Warning: Unknown value - I-WAITER
** Warning: Unknown value - I-COOK
** Warning: Unknown value - I-COOK
** Warning: Unknown value - I-EXTRA
** Warning: Unknown value - I-EXTRA
** Warning: Unknown value - I-BOND
** Warning: Unknown value - I-BOND
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
** Warning: Unknown value - I-GUARD
** Warning: Unknown value - I-GUARD
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
** Warning: Unknown value - I-STAR
** Warning: Unknown value - STOP-WALKING-F
Compiling routine: ESTABLISH-GOAL
Compiling routine: ESTABLISH-GOAL-TRAIN
Compiling routine: GOAL-REACHED
Compiling routine: ENTERS?
Compiling routine: TELL-THE-NOT-OTHER
Compiling routine: DESCRIBE-MOVER?
Compiling routine: MOVE-PERSON
Compiling routine: DIR-FROM
Compiling routine: DIR-FROM-TEST
Compiling routine: I-FOLLOW
Compiling routine: I-PLAYER
Compiling routine: PICK-POCKET
Compiling routine: I-LEAVE-TRAIN
Compiling routine: LEAVE-TRAIN
Compiling routine: G-LEAVE-TRAIN
Compiling routine: I-WALK-TRAIN
Compiling routine: OBJ-TO-NEXT
Compiling routine: I-EXTRA
Compiling routine: I-STAR
Compiling routine: PICK-ONE-NOT
Compiling routine: STOP-CONDUCTOR?
Compiling routine: I-CONDUCTOR
Compiling routine: TURNS-AROUND?
Compiling routine: WHERE?
Compiling routine: ANY-TICKETS?
Compiling routine: I-WAITER
Compiling routine: I-BOND
Compiling routine: I-BOND-OTHER
Compiling routine: I-COOK
Compiling routine: I-GUARD
Compiling routine: I-ATTENTION
Compiling routine: GRAB-ATTENTION
Compiling routine: I-TICKETS-PLEASE
** Note: Non-predicate jump flushed PRINTI
** Note: Non-predicate jump flushed PRINTI
** Note: Non-predicate jump flushed PRINTI
Compiling routine: ARREST-MCGUFFIN?
Compiling routine: ARREST-PLAYER
Input file: SPIES.ZIL
Compiling routine: GUN-F
Compiling routine: START-BAD-SPY
Compiling routine: I-BAD-SPY
Compiling routine: SPY-TAKES-CASE
Compiling routine: I-BAD-SPY-W-CASE
Compiling routine: ARRIVE-AT-STATION-BAD-SPY
Compiling routine: DEPART-FROM-STATION-BAD-SPY
Compiling routine: I-BAD-SPY-IMITATES
Compiling routine: I-BAD-SPY-W-YOU
Compiling routine: BAD-SPY-GUN-THREAT
Compiling routine: I-BAD-SPY-TO-YOU
Compiling routine: BAD-SPY-LEAVES-BOARDS
Compiling routine: HIDDEN?
Compiling routine: PASS-OBJECT?
Compiling routine: CONTACT-F
Compiling routine: GIVE-MCGUFFIN?
Compiling routine: GIVE-WRONG-PASS-X
Compiling routine: GIVE-PASSWORD
Compiling routine: WHISPER-PLAN
Compiling routine: WHISPER-PLAN-OTHER
Compiling routine: I-AGENT-COMES
Compiling routine: GUARD-NOTICES
Compiling routine: TRAVELER-F
Compiling routine: BAD-SPY-F
Compiling routine: SHOW-MCGUFFIN
Compiling routine: PAUSE-SCRIPT?
Compiling routine: I-TRAVELER
Compiling routine: TRAVELER-FLUSHES-MCGUFFIN
Compiling routine: TRAVELER-FLEES
Compiling routine: I-TRAVELER-SEEKS-FLOWER
Compiling routine: I-TRAVELER-SEEKS-TICKET
Compiling routine: I-TRAVELER-PASSED-CUSTOMS
Compiling routine: STOP-WALKING-F
** Note: Atomic argument to routine assumed constant - STOP-WALKING-F
Compiling routine: I-TRAVELER-TO-GRNZ
Compiling routine: I-TRAVELER-SEEKS-LIGHTER
Compiling routine: I-TRAVELER-SEEKS-KNIFE
Compiling routine: I-TRAVELER-FINDS-CONTACT
Compiling routine: G-FINISH
** Note: Atomic argument to routine assumed constant - G-FINISH
Compiling routine: FINAL-SCENE
Compiling routine: AWARD
** Note: OBJECT has no properties: ROOMS
** Note: OBJECT has no properties: LAST-OBJECT
** Note: OBJECT has no properties: UNCONSCIOUS
Vocabulary: 882
Prepositions: 26
OFF
ON
UP
DOWN
UNDER
OUT
IN
THROUGH
WITH
BY
PHOTO
TILL
AGAINST
BESIDE
AROUND
ACROSS
OVER
BEHIND
RID
AWAY
FROM
ABOUT
FOR
TO
AT
Objects: 301
GLOBAL-NATASHA
PAPER-LOOP
PLATFORM-GLOBAL
WAITRESS
DEFECTOR
COUNTER-GALLEY
OTHER-RACK-4
SPY-LIST
RACK-2
HANDS
FLOWER-GLOBAL
SCENERY-LEFT
GAME
AIR
OTHER-UNDER-SEAT-4
FOREST
HALL-1-DINER
TABLE-2
STATION-WIEN
GLASS
OTHER-BESIDE-TRACKS
VESTIBULE-REAR-FANCY
TOWEL-LOOP
STATION-GRNZ
DRINK-GLOBAL
UNDER-BOOTH-2
VESTIBULE-REAR-WINDOW
COMPARTMENT-2-DOOR
OTHER-COMPARTMENT-1
THUG