-
Notifications
You must be signed in to change notification settings - Fork 1
/
I6 Routine Names.i7x
2884 lines (2810 loc) · 297 KB
/
I6 Routine Names.i7x
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
Version 2 of I6 Routine Names (for Glulx only) by Brady Garvin begins here.
"Associations between standard I6 routine names and their addresses."
[Future versions of this extension may need to distinguish versions of Inform.]
Include Compiler Version Checks by Brady Garvin.
Use authorial modesty.
Book "Copyright and License"
[Copyright 2013 Brady J. Garvin]
[This extension is released under the Creative Commons Attribution 3.0 Unported License (CC BY 3.0) so that it can qualify as a public Inform extension. See the LICENSE file included in the release for further details.]
Book "Extension Information"
[Nothing to mention here in the present version.]
Book "Compatibility"
[@]
Chapter "Extended Versions of Apply"
To apply (function - a phrase (value of kind K, value of kind L, value of kind M, value of kind N) -> nothing) to (input - K) and (second input - L) and (third input - M) and (fourth input - N): (- {-function-application}; -).
Book "Veneer Routines"
Chapter "Forced References to Veneer Routines" - unindexed
[RT__ChPR (checking the legality of reading from a property) is defined by the Glulx veneer, but, if I'm reading the compiler source rightly, there is no way for an I6 source text to cause it to be included. Being dead code, we don't bother to give it a name.]
[We force the veneer routines to be included, if possible (RT__Ch* routines also require strict mode), by referencing them in dead code.]
Include (-
[ isixrn_veneerReferences junk;
if (true) rtrue; ! Make sure the rest of the code is unreachable.
! Routines are invoked on the left and noted on the right.
! A parenthetical ``implicit'' means that routine is implicitly called elsewhere, and therefore referenced.
box ""; ! Box__Routine
<Look>; ! R_Process
print (the)0; ! DefArt
print (a)0; ! InDefArt
print (The)0; ! CDefArt
print (A)0; ! CInDefArt
print (name)0; ! PrintShortName
print (number)0; ! EnglishNumber
print (property)0; ! Print__PName
0.name = 0; ! WV__Pr
junk = 0.junk; ! RV__Pr
++(0.name); ! IB__Pr
(0.name)++; ! IA__Pr
--(0.name); ! DB__Pr
(0.name)--; ! DA__Pr
junk = 0.&name; ! RA__Pr
junk = 0.#name; ! RL__Pr
0.Class::create(); ! RA__Sc
(0 provides name); ! OP__Pr
(0 ofclass Class); ! OC__Cl
Class.copy(0, 0); ! Copy__Primitive
! RT__Err (implicit)
! Z__Region (implicit)
UnsignedCompare(0, 0); ! Unsigned__Compare
metaclass(0); ! Meta__class
! CP__Tab (implicit)
! Cl__Ms (implicit)
move 0 to 0; ! RT__ChT
remove 0; ! RT__ChR
give 0 0; ! RT__ChG
give 0 ~0; ! RT__ChGt
! RT__ChPS (implicit)
! RT__TrPS (implicit)
junk = 0->0; ! RT__ChLDB
junk = 0-->0; ! RT__ChLDW
0->0 = 0; ! RT__ChSTB
0-->0 = 0; ! RT__ChSTW
print (char)0; ! RT__ChPrintC
print (address)0; ! RT__ChPrintA
print (string)0; ! RT__ChPrintS
print (object)0; ! RT__ChPrintO
! OB__Move (implicit)
! OB__Remove (implicit)
! Print__Addr (implicit)
! Glk__Wrap (implicit)
string 0 0; ! Dynam__String
];
-).
Chapter "Override Indicators for Veneer Routines" - unindexed
Include (-
#ifdef Box__Routine; Constant override_Box__Routine = 1; #ifnot; Constant override_Box__Routine = 0; #endif;
#ifdef R_Process; Constant override_R_Process = 1; #ifnot; Constant override_R_Process = 0; #endif;
#ifdef DefArt; Constant override_DefArt = 1; #ifnot; Constant override_DefArt = 0; #endif;
#ifdef InDefArt; Constant override_InDefArt = 1; #ifnot; Constant override_InDefArt = 0; #endif;
#ifdef CDefArt; Constant override_CDefArt = 1; #ifnot; Constant override_CDefArt = 0; #endif;
#ifdef CInDefArt; Constant override_CInDefArt = 1; #ifnot; Constant override_CInDefArt = 0; #endif;
#ifdef PrintShortName; Constant override_PrintShortName = 1; #ifnot; Constant override_PrintShortName = 0; #endif;
#ifdef EnglishNumber; Constant override_EnglishNumber = 1; #ifnot; Constant override_EnglishNumber = 0; #endif;
#ifdef Print__PName; Constant override_Print__PName = 1; #ifnot; Constant override_Print__PName = 0; #endif;
#ifdef WV__Pr; Constant override_WV__Pr = 1; #ifnot; Constant override_WV__Pr = 0; #endif;
#ifdef RV__Pr; Constant override_RV__Pr = 1; #ifnot; Constant override_RV__Pr = 0; #endif;
#ifdef CA__Pr; Constant override_CA__Pr = 1; #ifnot; Constant override_CA__Pr = 0; #endif;
#ifdef IB__Pr; Constant override_IB__Pr = 1; #ifnot; Constant override_IB__Pr = 0; #endif;
#ifdef IA__Pr; Constant override_IA__Pr = 1; #ifnot; Constant override_IA__Pr = 0; #endif;
#ifdef DB__Pr; Constant override_DB__Pr = 1; #ifnot; Constant override_DB__Pr = 0; #endif;
#ifdef DA__Pr; Constant override_DA__Pr = 1; #ifnot; Constant override_DA__Pr = 0; #endif;
#ifdef RA__Pr; Constant override_RA__Pr = 1; #ifnot; Constant override_RA__Pr = 0; #endif;
#ifdef RL__Pr; Constant override_RL__Pr = 1; #ifnot; Constant override_RL__Pr = 0; #endif;
#ifdef RA__Sc; Constant override_RA__Sc = 1; #ifnot; Constant override_RA__Sc = 0; #endif;
#ifdef OP__Pr; Constant override_OP__Pr = 1; #ifnot; Constant override_OP__Pr = 0; #endif;
#ifdef OC__Cl; Constant override_OC__Cl = 1; #ifnot; Constant override_OC__Cl = 0; #endif;
#ifdef Copy__Primitive; Constant override_Copy__Primitive = 1; #ifnot; Constant override_Copy__Primitive = 0; #endif;
#ifdef RT__Err; Constant override_RT__Err = 1; #ifnot; Constant override_RT__Err = 0; #endif;
#ifdef Z__Region; Constant override_Z__Region = 1; #ifnot; Constant override_Z__Region = 0; #endif;
#ifdef Unsigned__Compare; Constant override_Unsigned__Compare = 1; #ifnot; Constant override_Unsigned__Compare = 0; #endif;
#ifdef Meta__class; Constant override_Meta__class = 1; #ifnot; Constant override_Meta__class = 0; #endif;
#ifdef CP__Tab; Constant override_CP__Tab = 1; #ifnot; Constant override_CP__Tab = 0; #endif;
#ifdef Cl__Ms; Constant override_Cl__Ms = 1; #ifnot; Constant override_Cl__Ms = 0; #endif;
#ifdef RT__ChT; Constant override_RT__ChT = 1; #ifnot; Constant override_RT__ChT = 0; #endif;
#ifdef RT__ChR; Constant override_RT__ChR = 1; #ifnot; Constant override_RT__ChR = 0; #endif;
#ifdef RT__ChG; Constant override_RT__ChG = 1; #ifnot; Constant override_RT__ChG = 0; #endif;
#ifdef RT__ChGt; Constant override_RT__ChGt = 1; #ifnot; Constant override_RT__ChGt = 0; #endif;
#ifdef RT__ChPS; Constant override_RT__ChPS = 1; #ifnot; Constant override_RT__ChPS = 0; #endif;
#ifdef RT__TrPS; Constant override_RT__TrPS = 1; #ifnot; Constant override_RT__TrPS = 0; #endif;
#ifdef RT__ChLDB; Constant override_RT__ChLDB = 1; #ifnot; Constant override_RT__ChLDB = 0; #endif;
#ifdef RT__ChLDW; Constant override_RT__ChLDW = 1; #ifnot; Constant override_RT__ChLDW = 0; #endif;
#ifdef RT__ChSTB; Constant override_RT__ChSTB = 1; #ifnot; Constant override_RT__ChSTB = 0; #endif;
#ifdef RT__ChSTW; Constant override_RT__ChSTW = 1; #ifnot; Constant override_RT__ChSTW = 0; #endif;
#ifdef RT__ChPrintC; Constant override_RT__ChPrintC = 1; #ifnot; Constant override_RT__ChPrintC = 0; #endif;
#ifdef RT__ChPrintA; Constant override_RT__ChPrintA = 1; #ifnot; Constant override_RT__ChPrintA = 0; #endif;
#ifdef RT__ChPrintS; Constant override_RT__ChPrintS = 1; #ifnot; Constant override_RT__ChPrintS = 0; #endif;
#ifdef RT__ChPrintO; Constant override_RT__ChPrintO = 1; #ifnot; Constant override_RT__ChPrintO = 0; #endif;
#ifdef OB__Move; Constant override_OB__Move = 1; #ifnot; Constant override_OB__Move = 0; #endif;
#ifdef OB__Remove; Constant override_OB__Remove = 1; #ifnot; Constant override_OB__Remove = 0; #endif;
#ifdef Print__Addr; Constant override_Print__Addr = 1; #ifnot; Constant override_Print__Addr = 0; #endif;
#ifdef Glk__Wrap; Constant override_Glk__Wrap = 1; #ifnot; Constant override_Glk__Wrap = 0; #endif;
#ifdef Dynam__String; Constant override_Dynam__String = 1; #ifnot; Constant override_Dynam__String = 0; #endif;
-) after "RelationKind.i6t".
Chapter "Inlined Phrases for Veneer Routines"
To decide what number is the address of I6_Box__Routine: (- Box__Routine -).
To decide what number is the address of I6_R_Process: (- R_Process -).
To decide what number is the address of I6_DefArt: (- DefArt -).
To decide what number is the address of I6_InDefArt: (- InDefArt -).
To decide what number is the address of I6_CDefArt: (- CDefArt -).
To decide what number is the address of I6_CInDefArt: (- CInDefArt -).
To decide what number is the address of I6_PrintShortName: (- PrintShortName -).
To decide what number is the address of I6_EnglishNumber: (- EnglishNumber -).
To decide what number is the address of I6_Print__PName: (- Print__PName -).
To decide what number is the address of I6_WV__Pr: (- WV__Pr -).
To decide what number is the address of I6_RV__Pr: (- RV__Pr -).
To decide what number is the address of I6_CA__Pr: (- CA__Pr -).
To decide what number is the address of I6_IB__Pr: (- IB__Pr -).
To decide what number is the address of I6_IA__Pr: (- IA__Pr -).
To decide what number is the address of I6_DB__Pr: (- DB__Pr -).
To decide what number is the address of I6_DA__Pr: (- DA__Pr -).
To decide what number is the address of I6_RA__Pr: (- RA__Pr -).
To decide what number is the address of I6_RL__Pr: (- RL__Pr -).
To decide what number is the address of I6_RA__Sc: (- RA__Sc -).
To decide what number is the address of I6_OP__Pr: (- OP__Pr -).
To decide what number is the address of I6_OC__Cl: (- OC__Cl -).
To decide what number is the address of I6_Copy__Primitive: (- Copy__Primitive -).
To decide what number is the address of I6_RT__Err: (- RT__Err -).
To decide what number is the address of I6_Z__Region: (- Z__Region -).
To decide what number is the address of I6_Unsigned__Compare: (- Unsigned__Compare -).
To decide what number is the address of I6_Meta__class: (- Meta__class -).
To decide what number is the address of I6_CP__Tab: (- CP__Tab -).
To decide what number is the address of I6_Cl__Ms: (- Cl__Ms -).
To decide what number is the address of I6_RT__ChT: (- 0 -).
To decide what number is the address of I6_RT__ChR: (- 0 -).
To decide what number is the address of I6_RT__ChG: (- 0 -).
To decide what number is the address of I6_RT__ChGt: (- 0 -).
To decide what number is the address of I6_RT__ChPS: (- 0 -).
To decide what number is the address of I6_RT__TrPS: (- RT__TrPS -).
To decide what number is the address of I6_RT__ChLDB: (- 0 -).
To decide what number is the address of I6_RT__ChLDW: (- 0 -).
To decide what number is the address of I6_RT__ChSTB: (- 0 -).
To decide what number is the address of I6_RT__ChSTW: (- 0 -).
To decide what number is the address of I6_RT__ChPrintC: (- 0 -).
To decide what number is the address of I6_RT__ChPrintA: (- 0 -).
To decide what number is the address of I6_RT__ChPrintS: (- 0 -).
To decide what number is the address of I6_RT__ChPrintO: (- 0 -).
To decide what number is the address of I6_OB__Move: (- OB__Move -).
To decide what number is the address of I6_OB__Remove: (- OB__Remove -).
To decide what number is the address of I6_Print__Addr: (- Print__Addr -).
To decide what number is the address of I6_Glk__Wrap: (- Glk__Wrap -).
To decide what number is the address of I6_Dynam__String: (- Dynam__String -).
To decide whether I6_Box__Routine is overridden: (- override_Box__Routine -).
To decide whether I6_R_Process is overridden: (- override_R_Process -).
To decide whether I6_DefArt is overridden: (- override_DefArt -).
To decide whether I6_InDefArt is overridden: (- override_InDefArt -).
To decide whether I6_CDefArt is overridden: (- override_CDefArt -).
To decide whether I6_CInDefArt is overridden: (- override_CInDefArt -).
To decide whether I6_PrintShortName is overridden: (- override_PrintShortName -).
To decide whether I6_EnglishNumber is overridden: (- override_EnglishNumber -).
To decide whether I6_Print__PName is overridden: (- override_Print__PName -).
To decide whether I6_WV__Pr is overridden: (- override_WV__Pr -).
To decide whether I6_RV__Pr is overridden: (- override_RV__Pr -).
To decide whether I6_CA__Pr is overridden: (- override_CA__Pr -).
To decide whether I6_IB__Pr is overridden: (- override_IB__Pr -).
To decide whether I6_IA__Pr is overridden: (- override_IA__Pr -).
To decide whether I6_DB__Pr is overridden: (- override_DB__Pr -).
To decide whether I6_DA__Pr is overridden: (- override_DA__Pr -).
To decide whether I6_RA__Pr is overridden: (- override_RA__Pr -).
To decide whether I6_RL__Pr is overridden: (- override_RL__Pr -).
To decide whether I6_RA__Sc is overridden: (- override_RA__Sc -).
To decide whether I6_OP__Pr is overridden: (- override_OP__Pr -).
To decide whether I6_OC__Cl is overridden: (- override_OC__Cl -).
To decide whether I6_Copy__Primitive is overridden: (- override_Copy__Primitive -).
To decide whether I6_RT__Err is overridden: (- override_RT__Err -).
To decide whether I6_Z__Region is overridden: (- override_Z__Region -).
To decide whether I6_Unsigned__Compare is overridden: (- override_Unsigned__Compare -).
To decide whether I6_Meta__class is overridden: (- override_Meta__class -).
To decide whether I6_CP__Tab is overridden: (- override_CP__Tab -).
To decide whether I6_Cl__Ms is overridden: (- override_Cl__Ms -).
To decide whether I6_RT__ChT is overridden: (- override_RT__ChT -).
To decide whether I6_RT__ChR is overridden: (- override_RT__ChR -).
To decide whether I6_RT__ChG is overridden: (- override_RT__ChG -).
To decide whether I6_RT__ChGt is overridden: (- override_RT__ChGt -).
To decide whether I6_RT__ChPS is overridden: (- override_RT__ChPS -).
To decide whether I6_RT__TrPS is overridden: (- override_RT__TrPS -).
To decide whether I6_RT__ChLDB is overridden: (- override_RT__ChLDB -).
To decide whether I6_RT__ChLDW is overridden: (- override_RT__ChLDW -).
To decide whether I6_RT__ChSTB is overridden: (- override_RT__ChSTB -).
To decide whether I6_RT__ChSTW is overridden: (- override_RT__ChSTW -).
To decide whether I6_RT__ChPrintC is overridden: (- override_RT__ChPrintC -).
To decide whether I6_RT__ChPrintA is overridden: (- override_RT__ChPrintA -).
To decide whether I6_RT__ChPrintS is overridden: (- override_RT__ChPrintS -).
To decide whether I6_RT__ChPrintO is overridden: (- override_RT__ChPrintO -).
To decide whether I6_OB__Move is overridden: (- override_OB__Move -).
To decide whether I6_OB__Remove is overridden: (- override_OB__Remove -).
To decide whether I6_Print__Addr is overridden: (- override_Print__Addr -).
To decide whether I6_Glk__Wrap is overridden: (- override_Glk__Wrap -).
To decide whether I6_Dynam__String is overridden: (- override_Dynam__String -).
Section "Inlined Phrases for Check Routines in Strict Mode" - not for release
To decide what number is the address of I6_RT__ChT: (- RT__ChT -).
To decide what number is the address of I6_RT__ChR: (- RT__ChR -).
To decide what number is the address of I6_RT__ChG: (- RT__ChG -).
To decide what number is the address of I6_RT__ChGt: (- RT__ChGt -).
To decide what number is the address of I6_RT__ChPS: (- RT__ChPS -).
To decide what number is the address of I6_RT__ChLDB: (- RT__ChLDB -).
To decide what number is the address of I6_RT__ChLDW: (- RT__ChLDW -).
To decide what number is the address of I6_RT__ChSTB: (- RT__ChSTB -).
To decide what number is the address of I6_RT__ChSTW: (- RT__ChSTW -).
To decide what number is the address of I6_RT__ChPrintC: (- RT__ChPrintC -).
To decide what number is the address of I6_RT__ChPrintA: (- RT__ChPrintA -).
To decide what number is the address of I6_RT__ChPrintS: (- RT__ChPrintS -).
To decide what number is the address of I6_RT__ChPrintO: (- RT__ChPrintO -).
Chapter "Traversal over Veneer Routines"
To traverse the veneer routines with the visitor (V - a phrase (number, truth state, text, text) -> nothing) (this is traversing veneer routines):
apply V to the address of I6_Box__Routine and whether or not I6_Box__Routine is overridden and "Box__Routine" and "displaying a box quote";
apply V to the address of I6_R_Process and whether or not I6_R_Process is overridden and "R_Process" and "triggering an action";
apply V to the address of I6_DefArt and whether or not I6_DefArt is overridden and "DefArt" and "saying a lowercase definite article";
apply V to the address of I6_InDefArt and whether or not I6_InDefArt is overridden and "InDefArt" and "saying a lowercase indefinite article";
apply V to the address of I6_CDefArt and whether or not I6_CDefArt is overridden and "CDefArt" and "saying an uppercase definite article";
apply V to the address of I6_CInDefArt and whether or not I6_CInDefArt is overridden and "CInDefArt" and "saying an uppercase indefinite article";
apply V to the address of I6_PrintShortName and whether or not I6_PrintShortName is overridden and "PrintShortName" and "saying the short name of an I6 value";
apply V to the address of I6_EnglishNumber and whether or not I6_EnglishNumber is overridden and "EnglishNumber" and "saying a number in words";
apply V to the address of I6_Print__PName and whether or not I6_Print__PName is overridden and "Print__PName" and "saying a property name";
apply V to the address of I6_WV__Pr and whether or not I6_WV__Pr is overridden and "WV__Pr" and "writing a value to a property";
apply V to the address of I6_RV__Pr and whether or not I6_RV__Pr is overridden and "RV__Pr" and "reading a value from a property";
apply V to the address of I6_CA__Pr and whether or not I6_CA__Pr is overridden and "CA__Pr" and "calling a property value";
apply V to the address of I6_IB__Pr and whether or not I6_IB__Pr is overridden and "IB__Pr" and "preincrementing a property value";
apply V to the address of I6_IA__Pr and whether or not I6_IA__Pr is overridden and "IA__Pr" and "postincrementing a property value";
apply V to the address of I6_DB__Pr and whether or not I6_DB__Pr is overridden and "DB__Pr" and "predecrementing a property value";
apply V to the address of I6_DA__Pr and whether or not I6_DA__Pr is overridden and "DA__Pr" and "postdecrementing a property value";
apply V to the address of I6_RA__Pr and whether or not I6_RA__Pr is overridden and "RA__Pr" and "reading the address of a property value";
apply V to the address of I6_RL__Pr and whether or not I6_RL__Pr is overridden and "RL__Pr" and "reading the length of a property value";
apply V to the address of I6_RA__Sc and whether or not I6_RA__Sc is overridden and "RA__Sc" and "finding a superclass";
apply V to the address of I6_OP__Pr and whether or not I6_OP__Pr is overridden and "OP__Pr" and "testing for an individual property";
apply V to the address of I6_OC__Cl and whether or not I6_OC__Cl is overridden and "OC__Cl" and "testing an object's class";
apply V to the address of I6_Copy__Primitive and whether or not I6_Copy__Primitive is overridden and "Copy__Primitive" and "deep copying an object";
apply V to the address of I6_RT__Err and whether or not I6_RT__Err is overridden and "RT__Err" and "reporting a programming error";
apply V to the address of I6_Z__Region and whether or not I6_Z__Region is overridden and "Z__Region" and "determining a metaclass code";
apply V to the address of I6_Unsigned__Compare and whether or not I6_Unsigned__Compare is overridden and "Unsigned__Compare" and "comparing unsigned numbers";
apply V to the address of I6_Meta__class and whether or not I6_Meta__class is overridden and "Meta__class" and "determining a metaclass";
apply V to the address of I6_CP__Tab and whether or not I6_CP__Tab is overridden and "CP__Tab" and "searching a common property table";
apply V to the address of I6_Cl__Ms and whether or not I6_Cl__Ms is overridden and "Cl__Ms" and "receiving a message for a class";
apply V to the address of I6_RT__ChT and whether or not I6_RT__ChT is overridden and "RT__ChT" and "moving an object";
apply V to the address of I6_RT__ChR and whether or not I6_RT__ChR is overridden and "RT__ChR" and "removing an object";
apply V to the address of I6_RT__ChG and whether or not I6_RT__ChG is overridden and "RT__ChG" and "giving an attribute";
apply V to the address of I6_RT__ChGt and whether or not I6_RT__ChGt is overridden and "RT__ChGt" and "giving a negated attribute";
apply V to the address of I6_RT__ChPS and whether or not I6_RT__ChPS is overridden and "RT__ChPS" and "checking the legality of writing to a property";
apply V to the address of I6_RT__TrPS and whether or not I6_RT__TrPS is overridden and "RT__TrPS" and "tracing property writes";
apply V to the address of I6_RT__ChLDB and whether or not I6_RT__ChLDB is overridden and "RT__ChLDB" and "reading a byte, with bounds checks";
apply V to the address of I6_RT__ChLDW and whether or not I6_RT__ChLDW is overridden and "RT__ChLDW" and "reading a word, with bounds checks";
apply V to the address of I6_RT__ChSTB and whether or not I6_RT__ChSTB is overridden and "RT__ChSTB" and "writing a byte, with bounds checks";
apply V to the address of I6_RT__ChSTW and whether or not I6_RT__ChSTW is overridden and "RT__ChSTW" and "writing a word, with bounds checks";
apply V to the address of I6_RT__ChPrintC and whether or not I6_RT__ChPrintC is overridden and "RT__ChPrintC" and "saying a character";
apply V to the address of I6_RT__ChPrintA and whether or not I6_RT__ChPrintA is overridden and "RT__ChPrintA" and "saying an address";
apply V to the address of I6_RT__ChPrintS and whether or not I6_RT__ChPrintS is overridden and "RT__ChPrintS" and "saying a string";
apply V to the address of I6_RT__ChPrintO and whether or not I6_RT__ChPrintO is overridden and "RT__ChPrintO" and "saying an object";
apply V to the address of I6_OB__Move and whether or not I6_OB__Move is overridden and "OB__Move" and "moving an object within the object tree";
apply V to the address of I6_OB__Remove and whether or not I6_OB__Remove is overridden and "OB__Remove" and "removing an object from the object tree";
apply V to the address of I6_Print__Addr and whether or not I6_Print__Addr is overridden and "Print__Addr" and "saying the text of a dictionary word";
apply V to the address of I6_Glk__Wrap and whether or not I6_Glk__Wrap is overridden and "Glk__Wrap" and "forwarding arguments to the @glk operation code";
apply V to the address of I6_Dynam__String and whether or not I6_Dynam__String is overridden and "Dynam__String" and "changing an I6 printing variable".
Book "Standard Template"
Chapter "Standard Template Function Constants" - unindexed
Include (-
#ifdef AGL__M; Constant isix_AGL__M = AGL__M; #ifnot; Constant isix_AGL__M = 0; #endif;
#ifdef AbandonActivity; Constant isix_AbandonActivity = AbandonActivity; #ifnot; Constant isix_AbandonActivity = 0; #endif;
#ifdef AbbreviatedRoomDescription; Constant isix_AbbreviatedRoomDescription = AbbreviatedRoomDescription; #ifnot; Constant isix_AbbreviatedRoomDescription = 0; #endif;
#ifdef ActRulebookFails; Constant isix_ActRulebookFails = ActRulebookFails; #ifnot; Constant isix_ActRulebookFails = 0; #endif;
#ifdef ActRulebookSucceeds; Constant isix_ActRulebookSucceeds = ActRulebookSucceeds; #ifnot; Constant isix_ActRulebookSucceeds = 0; #endif;
#ifdef ActionNumberIndexed; Constant isix_ActionNumberIndexed = ActionNumberIndexed; #ifnot; Constant isix_ActionNumberIndexed = 0; #endif;
#ifdef ActionPrimitive; Constant isix_ActionPrimitive = ActionPrimitive; #ifnot; Constant isix_ActionPrimitive = 0; #endif;
#ifdef ActionVariablesNotTypeSafe; Constant isix_ActionVariablesNotTypeSafe = ActionVariablesNotTypeSafe; #ifnot; Constant isix_ActionVariablesNotTypeSafe = 0; #endif;
#ifdef ActionsOffSub; Constant isix_ActionsOffSub = ActionsOffSub; #ifnot; Constant isix_ActionsOffSub = 0; #endif;
#ifdef ActionsOnSub; Constant isix_ActionsOnSub = ActionsOnSub; #ifnot; Constant isix_ActionsOnSub = 0; #endif;
#ifdef ActivityEmpty; Constant isix_ActivityEmpty = ActivityEmpty; #ifnot; Constant isix_ActivityEmpty = 0; #endif;
#ifdef AddToScope; Constant isix_AddToScope = AddToScope; #ifnot; Constant isix_AddToScope = 0; #endif;
#ifdef Adjudicate; Constant isix_Adjudicate = Adjudicate; #ifnot; Constant isix_Adjudicate = 0; #endif;
#ifdef AllowInShowme; Constant isix_AllowInShowme = AllowInShowme; #ifnot; Constant isix_AllowInShowme = 0; #endif;
#ifdef AnalyseToken; Constant isix_AnalyseToken = AnalyseToken; #ifnot; Constant isix_AnalyseToken = 0; #endif;
#ifdef ArgumentTypeFailed; Constant isix_ArgumentTypeFailed = ArgumentTypeFailed; #ifnot; Constant isix_ArgumentTypeFailed = 0; #endif;
#ifdef ArticleDescriptors; Constant isix_ArticleDescriptors = ArticleDescriptors; #ifnot; Constant isix_ArticleDescriptors = 0; #endif;
#ifdef AssertMapConnection; Constant isix_AssertMapConnection = AssertMapConnection; #ifnot; Constant isix_AssertMapConnection = 0; #endif;
#ifdef AssertMapUnconnection; Constant isix_AssertMapUnconnection = AssertMapUnconnection; #ifnot; Constant isix_AssertMapUnconnection = 0; #endif;
#ifdef BackSideOfDoor; Constant isix_BackSideOfDoor = BackSideOfDoor; #ifnot; Constant isix_BackSideOfDoor = 0; #endif;
#ifdef Banner; Constant isix_Banner = Banner; #ifnot; Constant isix_Banner = 0; #endif;
#ifdef BeginAction; Constant isix_BeginAction = BeginAction; #ifnot; Constant isix_BeginAction = 0; #endif;
#ifdef BeginActivity; Constant isix_BeginActivity = BeginActivity; #ifnot; Constant isix_BeginActivity = 0; #endif;
#ifdef BeginFollowRulebook; Constant isix_BeginFollowRulebook = BeginFollowRulebook; #ifnot; Constant isix_BeginFollowRulebook = 0; #endif;
#ifdef BestGuess; Constant isix_BestGuess = BestGuess; #ifnot; Constant isix_BestGuess = 0; #endif;
#ifdef BlkAllocate; Constant isix_BlkAllocate = BlkAllocate; #ifnot; Constant isix_BlkAllocate = 0; #endif;
#ifdef BlkAllocationError; Constant isix_BlkAllocationError = BlkAllocationError; #ifnot; Constant isix_BlkAllocationError = 0; #endif;
#ifdef BlkDebug; Constant isix_BlkDebug = BlkDebug; #ifnot; Constant isix_BlkDebug = 0; #endif;
#ifdef BlkDebugDecomposition; Constant isix_BlkDebugDecomposition = BlkDebugDecomposition; #ifnot; Constant isix_BlkDebugDecomposition = 0; #endif;
#ifdef BlkFree; Constant isix_BlkFree = BlkFree; #ifnot; Constant isix_BlkFree = 0; #endif;
#ifdef BlkFreeSingleBlock; Constant isix_BlkFreeSingleBlock = BlkFreeSingleBlock; #ifnot; Constant isix_BlkFreeSingleBlock = 0; #endif;
#ifdef BlkMerge; Constant isix_BlkMerge = BlkMerge; #ifnot; Constant isix_BlkMerge = 0; #endif;
#ifdef BlkRecut; Constant isix_BlkRecut = BlkRecut; #ifnot; Constant isix_BlkRecut = 0; #endif;
#ifdef BlkResize; Constant isix_BlkResize = BlkResize; #ifnot; Constant isix_BlkResize = 0; #endif;
#ifdef BlkSize; Constant isix_BlkSize = BlkSize; #ifnot; Constant isix_BlkSize = 0; #endif;
#ifdef BlkTotalSize; Constant isix_BlkTotalSize = BlkTotalSize; #ifnot; Constant isix_BlkTotalSize = 0; #endif;
#ifdef BlkType; Constant isix_BlkType = BlkType; #ifnot; Constant isix_BlkType = 0; #endif;
#ifdef BlkValueCast; Constant isix_BlkValueCast = BlkValueCast; #ifnot; Constant isix_BlkValueCast = 0; #endif;
#ifdef BlkValueCompare; Constant isix_BlkValueCompare = BlkValueCompare; #ifnot; Constant isix_BlkValueCompare = 0; #endif;
#ifdef BlkValueCopy; Constant isix_BlkValueCopy = BlkValueCopy; #ifnot; Constant isix_BlkValueCopy = 0; #endif;
#ifdef BlkValueCreate; Constant isix_BlkValueCreate = BlkValueCreate; #ifnot; Constant isix_BlkValueCreate = 0; #endif;
#ifdef BlkValueDestroy; Constant isix_BlkValueDestroy = BlkValueDestroy; #ifnot; Constant isix_BlkValueDestroy = 0; #endif;
#ifdef BlkValueExtent; Constant isix_BlkValueExtent = BlkValueExtent; #ifnot; Constant isix_BlkValueExtent = 0; #endif;
#ifdef BlkValueHash; Constant isix_BlkValueHash = BlkValueHash; #ifnot; Constant isix_BlkValueHash = 0; #endif;
#ifdef BlkValueInitialCopy; Constant isix_BlkValueInitialCopy = BlkValueInitialCopy; #ifnot; Constant isix_BlkValueInitialCopy = 0; #endif;
#ifdef BlkValueRead; Constant isix_BlkValueRead = BlkValueRead; #ifnot; Constant isix_BlkValueRead = 0; #endif;
#ifdef BlkValueReadFromFile; Constant isix_BlkValueReadFromFile = BlkValueReadFromFile; #ifnot; Constant isix_BlkValueReadFromFile = 0; #endif;
#ifdef BlkValueSetExtent; Constant isix_BlkValueSetExtent = BlkValueSetExtent; #ifnot; Constant isix_BlkValueSetExtent = 0; #endif;
#ifdef BlkValueWrite; Constant isix_BlkValueWrite = BlkValueWrite; #ifnot; Constant isix_BlkValueWrite = 0; #endif;
#ifdef BlkValueWriteToFile; Constant isix_BlkValueWriteToFile = BlkValueWriteToFile; #ifnot; Constant isix_BlkValueWriteToFile = 0; #endif;
#ifdef COBJ__Copy; Constant isix_COBJ__Copy = COBJ__Copy; #ifnot; Constant isix_COBJ__Copy = 0; #endif;
#ifdef COBJ__SwapMatches; Constant isix_COBJ__SwapMatches = COBJ__SwapMatches; #ifnot; Constant isix_COBJ__SwapMatches = 0; #endif;
#ifdef COMBINATION_TY_Compare; Constant isix_COMBINATION_TY_Compare = COMBINATION_TY_Compare; #ifnot; Constant isix_COMBINATION_TY_Compare = 0; #endif;
#ifdef COMBINATION_TY_Copy; Constant isix_COMBINATION_TY_Copy = COMBINATION_TY_Copy; #ifnot; Constant isix_COMBINATION_TY_Copy = 0; #endif;
#ifdef COMBINATION_TY_CopyRawArray; Constant isix_COMBINATION_TY_CopyRawArray = COMBINATION_TY_CopyRawArray; #ifnot; Constant isix_COMBINATION_TY_CopyRawArray = 0; #endif;
#ifdef COMBINATION_TY_Create; Constant isix_COMBINATION_TY_Create = COMBINATION_TY_Create; #ifnot; Constant isix_COMBINATION_TY_Create = 0; #endif;
#ifdef COMBINATION_TY_Destroy; Constant isix_COMBINATION_TY_Destroy = COMBINATION_TY_Destroy; #ifnot; Constant isix_COMBINATION_TY_Destroy = 0; #endif;
#ifdef COMBINATION_TY_Distinguish; Constant isix_COMBINATION_TY_Distinguish = COMBINATION_TY_Distinguish; #ifnot; Constant isix_COMBINATION_TY_Distinguish = 0; #endif;
#ifdef COMBINATION_TY_Hash; Constant isix_COMBINATION_TY_Hash = COMBINATION_TY_Hash; #ifnot; Constant isix_COMBINATION_TY_Hash = 0; #endif;
#ifdef COMBINATION_TY_PreCopy; Constant isix_COMBINATION_TY_PreCopy = COMBINATION_TY_PreCopy; #ifnot; Constant isix_COMBINATION_TY_PreCopy = 0; #endif;
#ifdef COMBINATION_TY_Say; Constant isix_COMBINATION_TY_Say = COMBINATION_TY_Say; #ifnot; Constant isix_COMBINATION_TY_Say = 0; #endif;
#ifdef COMBINATION_TY_Support; Constant isix_COMBINATION_TY_Support = COMBINATION_TY_Support; #ifnot; Constant isix_COMBINATION_TY_Support = 0; #endif;
#ifdef CPrintOrRun; Constant isix_CPrintOrRun = CPrintOrRun; #ifnot; Constant isix_CPrintOrRun = 0; #endif;
#ifdef CThatorThose; Constant isix_CThatorThose = CThatorThose; #ifnot; Constant isix_CThatorThose = 0; #endif;
#ifdef CTheyreorThats; Constant isix_CTheyreorThats = CTheyreorThats; #ifnot; Constant isix_CTheyreorThats = 0; #endif;
#ifdef CantSee; Constant isix_CantSee = CantSee; #ifnot; Constant isix_CantSee = 0; #endif;
#ifdef Cap; Constant isix_Cap = Cap; #ifnot; Constant isix_Cap = 0; #endif;
#ifdef CarrierOf; Constant isix_CarrierOf = CarrierOf; #ifnot; Constant isix_CarrierOf = 0; #endif;
#ifdef CarryOutActivity; Constant isix_CarryOutActivity = CarryOutActivity; #ifnot; Constant isix_CarryOutActivity = 0; #endif;
#ifdef ChangePlayer; Constant isix_ChangePlayer = ChangePlayer; #ifnot; Constant isix_ChangePlayer = 0; #endif;
#ifdef CharIsOfCase; Constant isix_CharIsOfCase = CharIsOfCase; #ifnot; Constant isix_CharIsOfCase = 0; #endif;
#ifdef CharTestCases; Constant isix_CharTestCases = CharTestCases; #ifnot; Constant isix_CharTestCases = 0; #endif;
#ifdef CharToCase; Constant isix_CharToCase = CharToCase; #ifnot; Constant isix_CharToCase = 0; #endif;
#ifdef CheckKindReturned; Constant isix_CheckKindReturned = CheckKindReturned; #ifnot; Constant isix_CheckKindReturned = 0; #endif;
#ifdef CheckTableEntryIsBlank; Constant isix_CheckTableEntryIsBlank = CheckTableEntryIsBlank; #ifnot; Constant isix_CheckTableEntryIsBlank = 0; #endif;
#ifdef ChooseObjects; Constant isix_ChooseObjects = ChooseObjects; #ifnot; Constant isix_ChooseObjects = 0; #endif;
#ifdef ChooseRelationHandler; Constant isix_ChooseRelationHandler = ChooseRelationHandler; #ifnot; Constant isix_ChooseRelationHandler = 0; #endif;
#ifdef ChronologyPoint; Constant isix_ChronologyPoint = ChronologyPoint; #ifnot; Constant isix_ChronologyPoint = 0; #endif;
#ifdef ClearBoxedText; Constant isix_ClearBoxedText = ClearBoxedText; #ifnot; Constant isix_ClearBoxedText = 0; #endif;
#ifdef ClearParagraphing; Constant isix_ClearParagraphing = ClearParagraphing; #ifnot; Constant isix_ClearParagraphing = 0; #endif;
#ifdef CommandClarificationBreak; Constant isix_CommandClarificationBreak = CommandClarificationBreak; #ifnot; Constant isix_CommandClarificationBreak = 0; #endif;
#ifdef CommonAncestor; Constant isix_CommonAncestor = CommonAncestor; #ifnot; Constant isix_CommonAncestor = 0; #endif;
#ifdef CompareFields; Constant isix_CompareFields = CompareFields; #ifnot; Constant isix_CompareFields = 0; #endif;
#ifdef ComponentHasLight; Constant isix_ComponentHasLight = ComponentHasLight; #ifnot; Constant isix_ComponentHasLight = 0; #endif;
#ifdef ComputeFWMatrix; Constant isix_ComputeFWMatrix = ComputeFWMatrix; #ifnot; Constant isix_ComputeFWMatrix = 0; #endif;
#ifdef ConsultNounFilterToken; Constant isix_ConsultNounFilterToken = ConsultNounFilterToken; #ifnot; Constant isix_ConsultNounFilterToken = 0; #endif;
#ifdef ContainerOf; Constant isix_ContainerOf = ContainerOf; #ifnot; Constant isix_ContainerOf = 0; #endif;
#ifdef ConvertToGoingWithPush; Constant isix_ConvertToGoingWithPush = ConvertToGoingWithPush; #ifnot; Constant isix_ConvertToGoingWithPush = 0; #endif;
#ifdef CoreOf; Constant isix_CoreOf = CoreOf; #ifnot; Constant isix_CoreOf = 0; #endif;
#ifdef CoreOfParentOfCoreOf; Constant isix_CoreOfParentOfCoreOf = CoreOfParentOfCoreOf; #ifnot; Constant isix_CoreOfParentOfCoreOf = 0; #endif;
#ifdef CreateBlockConstants; Constant isix_CreateBlockConstants = CreateBlockConstants; #ifnot; Constant isix_CreateBlockConstants = 0; #endif;
#ifdef CreateDynamicRelations; Constant isix_CreateDynamicRelations = CreateDynamicRelations; #ifnot; Constant isix_CreateDynamicRelations = 0; #endif;
#ifdef CreatePropertyOffsets; Constant isix_CreatePropertyOffsets = CreatePropertyOffsets; #ifnot; Constant isix_CreatePropertyOffsets = 0; #endif;
#ifdef CreatureTest; Constant isix_CreatureTest = CreatureTest; #ifnot; Constant isix_CreatureTest = 0; #endif;
#ifdef CubeRoot; Constant isix_CubeRoot = CubeRoot; #ifnot; Constant isix_CubeRoot = 0; #endif;
#ifdef DA_Name; Constant isix_DA_Name = DA_Name; #ifnot; Constant isix_DA_Name = 0; #endif;
#ifdef DA_Number; Constant isix_DA_Number = DA_Number; #ifnot; Constant isix_DA_Number = 0; #endif;
#ifdef DA_Topic; Constant isix_DA_Topic = DA_Topic; #ifnot; Constant isix_DA_Topic = 0; #endif;
#ifdef DA_TruthState; Constant isix_DA_TruthState = DA_TruthState; #ifnot; Constant isix_DA_TruthState = 0; #endif;
#ifdef DB_Action; Constant isix_DB_Action = DB_Action; #ifnot; Constant isix_DB_Action = 0; #endif;
#ifdef DB_Action_Details; Constant isix_DB_Action_Details = DB_Action_Details; #ifnot; Constant isix_DB_Action_Details = 0; #endif;
#ifdef DB_Rule; Constant isix_DB_Rule = DB_Rule; #ifnot; Constant isix_DB_Rule = 0; #endif;
#ifdef DECIMAL_TOKEN; Constant isix_DECIMAL_TOKEN = DECIMAL_TOKEN; #ifnot; Constant isix_DECIMAL_TOKEN = 0; #endif;
#ifdef DebugAction; Constant isix_DebugAction = DebugAction; #ifnot; Constant isix_DebugAction = 0; #endif;
#ifdef DebugAttribute; Constant isix_DebugAttribute = DebugAttribute; #ifnot; Constant isix_DebugAttribute = 0; #endif;
#ifdef DebugGrammarLine; Constant isix_DebugGrammarLine = DebugGrammarLine; #ifnot; Constant isix_DebugGrammarLine = 0; #endif;
#ifdef DebugHeap; Constant isix_DebugHeap = DebugHeap; #ifnot; Constant isix_DebugHeap = 0; #endif;
#ifdef DebugPartition; Constant isix_DebugPartition = DebugPartition; #ifnot; Constant isix_DebugPartition = 0; #endif;
#ifdef DebugRulebooks; Constant isix_DebugRulebooks = DebugRulebooks; #ifnot; Constant isix_DebugRulebooks = 0; #endif;
#ifdef DebugToken; Constant isix_DebugToken = DebugToken; #ifnot; Constant isix_DebugToken = 0; #endif;
#ifdef DecimalNumber; Constant isix_DecimalNumber = DecimalNumber; #ifnot; Constant isix_DecimalNumber = 0; #endif;
#ifdef DefaultTopic; Constant isix_DefaultTopic = DefaultTopic; #ifnot; Constant isix_DefaultTopic = 0; #endif;
#ifdef DefaultValueFinder; Constant isix_DefaultValueFinder = DefaultValueFinder; #ifnot; Constant isix_DefaultValueFinder = 0; #endif;
#ifdef DefaultValueOfKOV; Constant isix_DefaultValueOfKOV = DefaultValueOfKOV; #ifnot; Constant isix_DefaultValueOfKOV = 0; #endif;
#ifdef Descriptors; Constant isix_Descriptors = Descriptors; #ifnot; Constant isix_Descriptors = 0; #endif;
#ifdef DetachPart; Constant isix_DetachPart = DetachPart; #ifnot; Constant isix_DetachPart = 0; #endif;
#ifdef DetectPluralWord; Constant isix_DetectPluralWord = DetectPluralWord; #ifnot; Constant isix_DetectPluralWord = 0; #endif;
#ifdef DetectSceneChange; Constant isix_DetectSceneChange = DetectSceneChange; #ifnot; Constant isix_DetectSceneChange = 0; #endif;
#ifdef DiagnoseSortList; Constant isix_DiagnoseSortList = DiagnoseSortList; #ifnot; Constant isix_DiagnoseSortList = 0; #endif;
#ifdef DictionaryWordToVerbNum; Constant isix_DictionaryWordToVerbNum = DictionaryWordToVerbNum; #ifnot; Constant isix_DictionaryWordToVerbNum = 0; #endif;
#ifdef DigitToValue; Constant isix_DigitToValue = DigitToValue; #ifnot; Constant isix_DigitToValue = 0; #endif;
#ifdef DirectionDoorLeadsIn; Constant isix_DirectionDoorLeadsIn = DirectionDoorLeadsIn; #ifnot; Constant isix_DirectionDoorLeadsIn = 0; #endif;
#ifdef DisplayBoxedQuotation; Constant isix_DisplayBoxedQuotation = DisplayBoxedQuotation; #ifnot; Constant isix_DisplayBoxedQuotation = 0; #endif;
#ifdef DisplayFigure; Constant isix_DisplayFigure = DisplayFigure; #ifnot; Constant isix_DisplayFigure = 0; #endif;
#ifdef DistributeBlockConstants; Constant isix_DistributeBlockConstants = DistributeBlockConstants; #ifnot; Constant isix_DistributeBlockConstants = 0; #endif;
#ifdef DivideParagraphPoint; Constant isix_DivideParagraphPoint = DivideParagraphPoint; #ifnot; Constant isix_DivideParagraphPoint = 0; #endif;
#ifdef DoScopeAction; Constant isix_DoScopeAction = DoScopeAction; #ifnot; Constant isix_DoScopeAction = 0; #endif;
#ifdef DoScopeActionAndRecurse; Constant isix_DoScopeActionAndRecurse = DoScopeActionAndRecurse; #ifnot; Constant isix_DoScopeActionAndRecurse = 0; #endif;
#ifdef DonotuseRule; Constant isix_DonotuseRule = DonotuseRule; #ifnot; Constant isix_DonotuseRule = 0; #endif;
#ifdef DoorFrom; Constant isix_DoorFrom = DoorFrom; #ifnot; Constant isix_DoorFrom = 0; #endif;
#ifdef DoubleHashSetCheckResize; Constant isix_DoubleHashSetCheckResize = DoubleHashSetCheckResize; #ifnot; Constant isix_DoubleHashSetCheckResize = 0; #endif;
#ifdef DoubleHashSetEntryMatches; Constant isix_DoubleHashSetEntryMatches = DoubleHashSetEntryMatches; #ifnot; Constant isix_DoubleHashSetEntryMatches = 0; #endif;
#ifdef DoubleHashSetLookUp; Constant isix_DoubleHashSetLookUp = DoubleHashSetLookUp; #ifnot; Constant isix_DoubleHashSetLookUp = 0; #endif;
#ifdef DoubleHashSetRelationHandler; Constant isix_DoubleHashSetRelationHandle = DoubleHashSetRelationHandler; #ifnot; Constant isix_DoubleHashSetRelationHandle = 0; #endif;
#ifdef DrawStatusLine; Constant isix_DrawStatusLine = DrawStatusLine; #ifnot; Constant isix_DrawStatusLine = 0; #endif;
#ifdef DuringSceneMatching; Constant isix_DuringSceneMatching = DuringSceneMatching; #ifnot; Constant isix_DuringSceneMatching = 0; #endif;
#ifdef EmptyRelationHandler; Constant isix_EmptyRelationHandler = EmptyRelationHandler; #ifnot; Constant isix_EmptyRelationHandler = 0; #endif;
#ifdef EndActivity; Constant isix_EndActivity = EndActivity; #ifnot; Constant isix_EndActivity = 0; #endif;
#ifdef EndFollowRulebook; Constant isix_EndFollowRulebook = EndFollowRulebook; #ifnot; Constant isix_EndFollowRulebook = 0; #endif;
#ifdef EnsureBreakBeforePrompt; Constant isix_EnsureBreakBeforePrompt = EnsureBreakBeforePrompt; #ifnot; Constant isix_EnsureBreakBeforePrompt = 0; #endif;
#ifdef EquivHashTableRelationHandler; Constant isix_EquivHashTableRelationHandl = EquivHashTableRelationHandler; #ifnot; Constant isix_EquivHashTableRelationHandl = 0; #endif;
#ifdef ExchangeFields; Constant isix_ExchangeFields = ExchangeFields; #ifnot; Constant isix_ExchangeFields = 0; #endif;
#ifdef ExistsTableLookUpCorr; Constant isix_ExistsTableLookUpCorr = ExistsTableLookUpCorr; #ifnot; Constant isix_ExistsTableLookUpCorr = 0; #endif;
#ifdef ExistsTableLookUpEntry; Constant isix_ExistsTableLookUpEntry = ExistsTableLookUpEntry; #ifnot; Constant isix_ExistsTableLookUpEntry = 0; #endif;
#ifdef ExistsTableRowCorr; Constant isix_ExistsTableRowCorr = ExistsTableRowCorr; #ifnot; Constant isix_ExistsTableRowCorr = 0; #endif;
#ifdef FastCountRouteTo; Constant isix_FastCountRouteTo = FastCountRouteTo; #ifnot; Constant isix_FastCountRouteTo = 0; #endif;
#ifdef FastRouteTo; Constant isix_FastRouteTo = FastRouteTo; #ifnot; Constant isix_FastRouteTo = 0; #endif;
#ifdef FastVtoVRelRouteTo; Constant isix_FastVtoVRelRouteTo = FastVtoVRelRouteTo; #ifnot; Constant isix_FastVtoVRelRouteTo = 0; #endif;
#ifdef FileIO_Close; Constant isix_FileIO_Close = FileIO_Close; #ifnot; Constant isix_FileIO_Close = 0; #endif;
#ifdef FileIO_Error; Constant isix_FileIO_Error = FileIO_Error; #ifnot; Constant isix_FileIO_Error = 0; #endif;
#ifdef FileIO_Exists; Constant isix_FileIO_Exists = FileIO_Exists; #ifnot; Constant isix_FileIO_Exists = 0; #endif;
#ifdef FileIO_GetC; Constant isix_FileIO_GetC = FileIO_GetC; #ifnot; Constant isix_FileIO_GetC = 0; #endif;
#ifdef FileIO_GetTable; Constant isix_FileIO_GetTable = FileIO_GetTable; #ifnot; Constant isix_FileIO_GetTable = 0; #endif;
#ifdef FileIO_MarkReady; Constant isix_FileIO_MarkReady = FileIO_MarkReady; #ifnot; Constant isix_FileIO_MarkReady = 0; #endif;
#ifdef FileIO_Open; Constant isix_FileIO_Open = FileIO_Open; #ifnot; Constant isix_FileIO_Open = 0; #endif;
#ifdef FileIO_PrintContents; Constant isix_FileIO_PrintContents = FileIO_PrintContents; #ifnot; Constant isix_FileIO_PrintContents = 0; #endif;
#ifdef FileIO_PrintLine; Constant isix_FileIO_PrintLine = FileIO_PrintLine; #ifnot; Constant isix_FileIO_PrintLine = 0; #endif;
#ifdef FileIO_PutC; Constant isix_FileIO_PutC = FileIO_PutC; #ifnot; Constant isix_FileIO_PutC = 0; #endif;
#ifdef FileIO_PutContents; Constant isix_FileIO_PutContents = FileIO_PutContents; #ifnot; Constant isix_FileIO_PutContents = 0; #endif;
#ifdef FileIO_PutTable; Constant isix_FileIO_PutTable = FileIO_PutTable; #ifnot; Constant isix_FileIO_PutTable = 0; #endif;
#ifdef FileIO_Ready; Constant isix_FileIO_Ready = FileIO_Ready; #ifnot; Constant isix_FileIO_Ready = 0; #endif;
#ifdef FindAction; Constant isix_FindAction = FindAction; #ifnot; Constant isix_FindAction = 0; #endif;
#ifdef FindVisibilityLevels; Constant isix_FindVisibilityLevels = FindVisibilityLevels; #ifnot; Constant isix_FindVisibilityLevels = 0; #endif;
#ifdef FixInhibitFlag; Constant isix_FixInhibitFlag = FixInhibitFlag; #ifnot; Constant isix_FixInhibitFlag = 0; #endif;
#ifdef FollowRulebook; Constant isix_FollowRulebook = FollowRulebook; #ifnot; Constant isix_FollowRulebook = 0; #endif;
#ifdef ForActivity; Constant isix_ForActivity = ForActivity; #ifnot; Constant isix_ForActivity = 0; #endif;
#ifdef ForceTableEntryBlank; Constant isix_ForceTableEntryBlank = ForceTableEntryBlank; #ifnot; Constant isix_ForceTableEntryBlank = 0; #endif;
#ifdef ForceTableEntryNonBlank; Constant isix_ForceTableEntryNonBlank = ForceTableEntryNonBlank; #ifnot; Constant isix_ForceTableEntryNonBlank = 0; #endif;
#ifdef FoundEverywhere; Constant isix_FoundEverywhere = FoundEverywhere; #ifnot; Constant isix_FoundEverywhere = 0; #endif;
#ifdef FreeStack; Constant isix_FreeStack = FreeStack; #ifnot; Constant isix_FreeStack = 0; #endif;
#ifdef FrontSideOfDoor; Constant isix_FrontSideOfDoor = FrontSideOfDoor; #ifnot; Constant isix_FrontSideOfDoor = 0; #endif;
#ifdef GGRecoverObjects; Constant isix_GGRecoverObjects = GGRecoverObjects; #ifnot; Constant isix_GGRecoverObjects = 0; #endif;
#ifdef GGWordCompare; Constant isix_GGWordCompare = GGWordCompare; #ifnot; Constant isix_GGWordCompare = 0; #endif;
#ifdef GL__M; Constant isix_GL__M = GL__M; #ifnot; Constant isix_GL__M = 0; #endif;
#ifdef GProperty; Constant isix_GProperty = GProperty; #ifnot; Constant isix_GProperty = 0; #endif;
#ifdef GVS_Convert; Constant isix_GVS_Convert = GVS_Convert; #ifnot; Constant isix_GVS_Convert = 0; #endif;
#ifdef GenerateMultipleActions; Constant isix_GenerateMultipleActions = GenerateMultipleActions; #ifnot; Constant isix_GenerateMultipleActions = 0; #endif;
#ifdef GenerateRandomNumber; Constant isix_GenerateRandomNumber = GenerateRandomNumber; #ifnot; Constant isix_GenerateRandomNumber = 0; #endif;
#ifdef GenericVerbSub; Constant isix_GenericVerbSub = GenericVerbSub; #ifnot; Constant isix_GenericVerbSub = 0; #endif;
#ifdef GetEitherOrProperty; Constant isix_GetEitherOrProperty = GetEitherOrProperty; #ifnot; Constant isix_GetEitherOrProperty = 0; #endif;
#ifdef GetGNAOfObject; Constant isix_GetGNAOfObject = GetGNAOfObject; #ifnot; Constant isix_GetGNAOfObject = 0; #endif;
#ifdef GetGender; Constant isix_GetGender = GetGender; #ifnot; Constant isix_GetGender = 0; #endif;
#ifdef GlkListSub; Constant isix_GlkListSub = GlkListSub; #ifnot; Constant isix_GlkListSub = 0; #endif;
#ifdef Glulx_ChangeAnyToCString; Constant isix_Glulx_ChangeAnyToCString = Glulx_ChangeAnyToCString; #ifnot; Constant isix_Glulx_ChangeAnyToCString = 0; #endif;
#ifdef Glulx_PrintAnyToArray; Constant isix_Glulx_PrintAnyToArray = Glulx_PrintAnyToArray; #ifnot; Constant isix_Glulx_PrintAnyToArray = 0; #endif;
#ifdef Glulx_PrintAnything; Constant isix_Glulx_PrintAnything = Glulx_PrintAnything; #ifnot; Constant isix_Glulx_PrintAnything = 0; #endif;
#ifdef GoingLookBreak; Constant isix_GoingLookBreak = GoingLookBreak; #ifnot; Constant isix_GoingLookBreak = 0; #endif;
#ifdef GonearSub; Constant isix_GonearSub = GonearSub; #ifnot; Constant isix_GonearSub = 0; #endif;
#ifdef GroupChildren; Constant isix_GroupChildren = GroupChildren; #ifnot; Constant isix_GroupChildren = 0; #endif;
#ifdef HasLightSource; Constant isix_HasLightSource = HasLightSource; #ifnot; Constant isix_HasLightSource = 0; #endif;
#ifdef HashCoreCheckResize; Constant isix_HashCoreCheckResize = HashCoreCheckResize; #ifnot; Constant isix_HashCoreCheckResize = 0; #endif;
#ifdef HashCoreEntryMatches; Constant isix_HashCoreEntryMatches = HashCoreEntryMatches; #ifnot; Constant isix_HashCoreEntryMatches = 0; #endif;
#ifdef HashCoreLookUp; Constant isix_HashCoreLookUp = HashCoreLookUp; #ifnot; Constant isix_HashCoreLookUp = 0; #endif;
#ifdef HashCoreRelationHandler; Constant isix_HashCoreRelationHandler = HashCoreRelationHandler; #ifnot; Constant isix_HashCoreRelationHandler = 0; #endif;
#ifdef HashListRelationHandler; Constant isix_HashListRelationHandler = HashListRelationHandler; #ifnot; Constant isix_HashListRelationHandler = 0; #endif;
#ifdef HashTableRelationHandler; Constant isix_HashTableRelationHandler = HashTableRelationHandler; #ifnot; Constant isix_HashTableRelationHandler = 0; #endif;
#ifdef HasorHave; Constant isix_HasorHave = HasorHave; #ifnot; Constant isix_HasorHave = 0; #endif;
#ifdef HeapInitialise; Constant isix_HeapInitialise = HeapInitialise; #ifnot; Constant isix_HeapInitialise = 0; #endif;
#ifdef HeapLargestFreeBlock; Constant isix_HeapLargestFreeBlock = HeapLargestFreeBlock; #ifnot; Constant isix_HeapLargestFreeBlock = 0; #endif;
#ifdef HeapMakeSpace; Constant isix_HeapMakeSpace = HeapMakeSpace; #ifnot; Constant isix_HeapMakeSpace = 0; #endif;
#ifdef HeapNetFreeSpace; Constant isix_HeapNetFreeSpace = HeapNetFreeSpace; #ifnot; Constant isix_HeapNetFreeSpace = 0; #endif;
#ifdef HidesLightSource; Constant isix_HidesLightSource = HidesLightSource; #ifnot; Constant isix_HidesLightSource = 0; #endif;
#ifdef HimHerItself; Constant isix_HimHerItself = HimHerItself; #ifnot; Constant isix_HimHerItself = 0; #endif;
#ifdef HisHerTheir; Constant isix_HisHerTheir = HisHerTheir; #ifnot; Constant isix_HisHerTheir = 0; #endif;
#ifdef HolderOf; Constant isix_HolderOf = HolderOf; #ifnot; Constant isix_HolderOf = 0; #endif;
#ifdef HoursMinsWordToTime; Constant isix_HoursMinsWordToTime = HoursMinsWordToTime; #ifnot; Constant isix_HoursMinsWordToTime = 0; #endif;
#ifdef I7_ExtendedTryNumber; Constant isix_I7_ExtendedTryNumber = I7_ExtendedTryNumber; #ifnot; Constant isix_I7_ExtendedTryNumber = 0; #endif;
#ifdef I7_Kind_Name; Constant isix_I7_Kind_Name = I7_Kind_Name; #ifnot; Constant isix_I7_Kind_Name = 0; #endif;
#ifdef I7_SOO_CYC; Constant isix_I7_SOO_CYC = I7_SOO_CYC; #ifnot; Constant isix_I7_SOO_CYC = 0; #endif;
#ifdef I7_SOO_PAR; Constant isix_I7_SOO_PAR = I7_SOO_PAR; #ifnot; Constant isix_I7_SOO_PAR = 0; #endif;
#ifdef I7_SOO_RAN; Constant isix_I7_SOO_RAN = I7_SOO_RAN; #ifnot; Constant isix_I7_SOO_RAN = 0; #endif;
#ifdef I7_SOO_SHU; Constant isix_I7_SOO_SHU = I7_SOO_SHU; #ifnot; Constant isix_I7_SOO_SHU = 0; #endif;
#ifdef I7_SOO_STI; Constant isix_I7_SOO_STI = I7_SOO_STI; #ifnot; Constant isix_I7_SOO_STI = 0; #endif;
#ifdef I7_SOO_STOP; Constant isix_I7_SOO_STOP = I7_SOO_STOP; #ifnot; Constant isix_I7_SOO_STOP = 0; #endif;
#ifdef I7_SOO_TAP; Constant isix_I7_SOO_TAP = I7_SOO_TAP; #ifnot; Constant isix_I7_SOO_TAP = 0; #endif;
#ifdef I7_SOO_TPAR; Constant isix_I7_SOO_TPAR = I7_SOO_TPAR; #ifnot; Constant isix_I7_SOO_TPAR = 0; #endif;
#ifdef I7_SOO_TRAN; Constant isix_I7_SOO_TRAN = I7_SOO_TRAN; #ifnot; Constant isix_I7_SOO_TRAN = 0; #endif;
#ifdef I7_String; Constant isix_I7_String = I7_String; #ifnot; Constant isix_I7_String = 0; #endif;
#ifdef INDEXED_TEXT_TY_Cast; Constant isix_INDEXED_TEXT_TY_Cast = INDEXED_TEXT_TY_Cast; #ifnot; Constant isix_INDEXED_TEXT_TY_Cast = 0; #endif;
#ifdef INDEXED_TEXT_TY_Compare; Constant isix_INDEXED_TEXT_TY_Compare = INDEXED_TEXT_TY_Compare; #ifnot; Constant isix_INDEXED_TEXT_TY_Compare = 0; #endif;
#ifdef INDEXED_TEXT_TY_Create; Constant isix_INDEXED_TEXT_TY_Create = INDEXED_TEXT_TY_Create; #ifnot; Constant isix_INDEXED_TEXT_TY_Create = 0; #endif;
#ifdef INDEXED_TEXT_TY_Distinguish; Constant isix_INDEXED_TEXT_TY_Distinguish = INDEXED_TEXT_TY_Distinguish; #ifnot; Constant isix_INDEXED_TEXT_TY_Distinguish = 0; #endif;
#ifdef INDEXED_TEXT_TY_Empty; Constant isix_INDEXED_TEXT_TY_Empty = INDEXED_TEXT_TY_Empty; #ifnot; Constant isix_INDEXED_TEXT_TY_Empty = 0; #endif;
#ifdef INDEXED_TEXT_TY_Hash; Constant isix_INDEXED_TEXT_TY_Hash = INDEXED_TEXT_TY_Hash; #ifnot; Constant isix_INDEXED_TEXT_TY_Hash = 0; #endif;
#ifdef INDEXED_TEXT_TY_ROGPR; Constant isix_INDEXED_TEXT_TY_ROGPR = INDEXED_TEXT_TY_ROGPR; #ifnot; Constant isix_INDEXED_TEXT_TY_ROGPR = 0; #endif;
#ifdef INDEXED_TEXT_TY_ReadFile; Constant isix_INDEXED_TEXT_TY_ReadFile = INDEXED_TEXT_TY_ReadFile; #ifnot; Constant isix_INDEXED_TEXT_TY_ReadFile = 0; #endif;
#ifdef INDEXED_TEXT_TY_Say; Constant isix_INDEXED_TEXT_TY_Say = INDEXED_TEXT_TY_Say; #ifnot; Constant isix_INDEXED_TEXT_TY_Say = 0; #endif;
#ifdef INDEXED_TEXT_TY_Support; Constant isix_INDEXED_TEXT_TY_Support = INDEXED_TEXT_TY_Support; #ifnot; Constant isix_INDEXED_TEXT_TY_Support = 0; #endif;
#ifdef INDEXED_TEXT_TY_WriteFile; Constant isix_INDEXED_TEXT_TY_WriteFile = INDEXED_TEXT_TY_WriteFile; #ifnot; Constant isix_INDEXED_TEXT_TY_WriteFile = 0; #endif;
#ifdef IPMS_Lower; Constant isix_IPMS_Lower = IPMS_Lower; #ifnot; Constant isix_IPMS_Lower = 0; #endif;
#ifdef IPMS_Merge; Constant isix_IPMS_Merge = IPMS_Merge; #ifnot; Constant isix_IPMS_Merge = 0; #endif;
#ifdef IPMS_Reverse; Constant isix_IPMS_Reverse = IPMS_Reverse; #ifnot; Constant isix_IPMS_Reverse = 0; #endif;
#ifdef IPMS_Rotate; Constant isix_IPMS_Rotate = IPMS_Rotate; #ifnot; Constant isix_IPMS_Rotate = 0; #endif;
#ifdef IPMS_Upper; Constant isix_IPMS_Upper = IPMS_Upper; #ifnot; Constant isix_IPMS_Upper = 0; #endif;
#ifdef IT_BlobAccess; Constant isix_IT_BlobAccess = IT_BlobAccess; #ifnot; Constant isix_IT_BlobAccess = 0; #endif;
#ifdef IT_CHR_CompileTree; Constant isix_IT_CHR_CompileTree = IT_CHR_CompileTree; #ifnot; Constant isix_IT_CHR_CompileTree = 0; #endif;
#ifdef IT_CharacterLength; Constant isix_IT_CharacterLength = IT_CharacterLength; #ifnot; Constant isix_IT_CharacterLength = 0; #endif;
#ifdef IT_CharactersOfCase; Constant isix_IT_CharactersOfCase = IT_CharactersOfCase; #ifnot; Constant isix_IT_CharactersOfCase = 0; #endif;
#ifdef IT_CharactersToCase; Constant isix_IT_CharactersToCase = IT_CharactersToCase; #ifnot; Constant isix_IT_CharactersToCase = 0; #endif;
#ifdef IT_Concatenate; Constant isix_IT_Concatenate = IT_Concatenate; #ifnot; Constant isix_IT_Concatenate = 0; #endif;
#ifdef IT_GetBlob; Constant isix_IT_GetBlob = IT_GetBlob; #ifnot; Constant isix_IT_GetBlob = 0; #endif;
#ifdef IT_GetCharacter; Constant isix_IT_GetCharacter = IT_GetCharacter; #ifnot; Constant isix_IT_GetCharacter = 0; #endif;
#ifdef IT_MV_End; Constant isix_IT_MV_End = IT_MV_End; #ifnot; Constant isix_IT_MV_End = 0; #endif;
#ifdef IT_RE_CheckTree; Constant isix_IT_RE_CheckTree = IT_RE_CheckTree; #ifnot; Constant isix_IT_RE_CheckTree = 0; #endif;
#ifdef IT_RE_Clear_Markers; Constant isix_IT_RE_Clear_Markers = IT_RE_Clear_Markers; #ifnot; Constant isix_IT_RE_Clear_Markers = 0; #endif;
#ifdef IT_RE_CompileTree; Constant isix_IT_RE_CompileTree = IT_RE_CompileTree; #ifnot; Constant isix_IT_RE_CompileTree = 0; #endif;
#ifdef IT_RE_Concatenate; Constant isix_IT_RE_Concatenate = IT_RE_Concatenate; #ifnot; Constant isix_IT_RE_Concatenate = 0; #endif;
#ifdef IT_RE_CreateMatchVars; Constant isix_IT_RE_CreateMatchVars = IT_RE_CreateMatchVars; #ifnot; Constant isix_IT_RE_CreateMatchVars = 0; #endif;
#ifdef IT_RE_DebugMatchVars; Constant isix_IT_RE_DebugMatchVars = IT_RE_DebugMatchVars; #ifnot; Constant isix_IT_RE_DebugMatchVars = 0; #endif;
#ifdef IT_RE_DebugNode; Constant isix_IT_RE_DebugNode = IT_RE_DebugNode; #ifnot; Constant isix_IT_RE_DebugNode = 0; #endif;
#ifdef IT_RE_DebugSubtree; Constant isix_IT_RE_DebugSubtree = IT_RE_DebugSubtree; #ifnot; Constant isix_IT_RE_DebugSubtree = 0; #endif;
#ifdef IT_RE_DebugTree; Constant isix_IT_RE_DebugTree = IT_RE_DebugTree; #ifnot; Constant isix_IT_RE_DebugTree = 0; #endif;
#ifdef IT_RE_EmptyMatchVars; Constant isix_IT_RE_EmptyMatchVars = IT_RE_EmptyMatchVars; #ifnot; Constant isix_IT_RE_EmptyMatchVars = 0; #endif;
#ifdef IT_RE_EraseConstraints; Constant isix_IT_RE_EraseConstraints = IT_RE_EraseConstraints; #ifnot; Constant isix_IT_RE_EraseConstraints = 0; #endif;
#ifdef IT_RE_ExpandChoices; Constant isix_IT_RE_ExpandChoices = IT_RE_ExpandChoices; #ifnot; Constant isix_IT_RE_ExpandChoices = 0; #endif;
#ifdef IT_RE_FailSubexpressions; Constant isix_IT_RE_FailSubexpressions = IT_RE_FailSubexpressions; #ifnot; Constant isix_IT_RE_FailSubexpressions = 0; #endif;
#ifdef IT_RE_GetMatchVar; Constant isix_IT_RE_GetMatchVar = IT_RE_GetMatchVar; #ifnot; Constant isix_IT_RE_GetMatchVar = 0; #endif;
#ifdef IT_RE_MatchSubstring; Constant isix_IT_RE_MatchSubstring = IT_RE_MatchSubstring; #ifnot; Constant isix_IT_RE_MatchSubstring = 0; #endif;
#ifdef IT_RE_Node; Constant isix_IT_RE_Node = IT_RE_Node; #ifnot; Constant isix_IT_RE_Node = 0; #endif;
#ifdef IT_RE_NodeAddress; Constant isix_IT_RE_NodeAddress = IT_RE_NodeAddress; #ifnot; Constant isix_IT_RE_NodeAddress = 0; #endif;
#ifdef IT_RE_Parse; Constant isix_IT_RE_Parse = IT_RE_Parse; #ifnot; Constant isix_IT_RE_Parse = 0; #endif;
#ifdef IT_RE_ParseAtPosition; Constant isix_IT_RE_ParseAtPosition = IT_RE_ParseAtPosition; #ifnot; Constant isix_IT_RE_ParseAtPosition = 0; #endif;
#ifdef IT_RE_PrintNoRewinds; Constant isix_IT_RE_PrintNoRewinds = IT_RE_PrintNoRewinds; #ifnot; Constant isix_IT_RE_PrintNoRewinds = 0; #endif;
#ifdef IT_RE_Range; Constant isix_IT_RE_Range = IT_RE_Range; #ifnot; Constant isix_IT_RE_Range = 0; #endif;
#ifdef IT_RE_RangeSyntaxCorrect; Constant isix_IT_RE_RangeSyntaxCorrect = IT_RE_RangeSyntaxCorrect; #ifnot; Constant isix_IT_RE_RangeSyntaxCorrect = 0; #endif;
#ifdef IT_RE_SeekBacktrack; Constant isix_IT_RE_SeekBacktrack = IT_RE_SeekBacktrack; #ifnot; Constant isix_IT_RE_SeekBacktrack = 0; #endif;
#ifdef IT_RE_SetTrace; Constant isix_IT_RE_SetTrace = IT_RE_SetTrace; #ifnot; Constant isix_IT_RE_SetTrace = 0; #endif;
#ifdef IT_RE_Width; Constant isix_IT_RE_Width = IT_RE_Width; #ifnot; Constant isix_IT_RE_Width = 0; #endif;
#ifdef IT_ReplaceBlob; Constant isix_IT_ReplaceBlob = IT_ReplaceBlob; #ifnot; Constant isix_IT_ReplaceBlob = 0; #endif;
#ifdef IT_ReplaceText; Constant isix_IT_ReplaceText = IT_ReplaceText; #ifnot; Constant isix_IT_ReplaceText = 0; #endif;
#ifdef IT_Replace_RE; Constant isix_IT_Replace_RE = IT_Replace_RE; #ifnot; Constant isix_IT_Replace_RE = 0; #endif;
#ifdef IT_RevCase; Constant isix_IT_RevCase = IT_RevCase; #ifnot; Constant isix_IT_RevCase = 0; #endif;
#ifdef Identical; Constant isix_Identical = Identical; #ifnot; Constant isix_Identical = 0; #endif;
#ifdef ImplicitTake; Constant isix_ImplicitTake = ImplicitTake; #ifnot; Constant isix_ImplicitTake = 0; #endif;
#ifdef InPlaceMergeSortAlgorithm; Constant isix_InPlaceMergeSortAlgorithm = InPlaceMergeSortAlgorithm; #ifnot; Constant isix_InPlaceMergeSortAlgorithm = 0; #endif;
#ifdef IndirectlyContains; Constant isix_IndirectlyContains = IndirectlyContains; #ifnot; Constant isix_IndirectlyContains = 0; #endif;
#ifdef InitialHeapAllocation; Constant isix_InitialHeapAllocation = InitialHeapAllocation; #ifnot; Constant isix_InitialHeapAllocation = 0; #endif;
#ifdef InsertionSortAlgorithm; Constant isix_InsertionSortAlgorithm = InsertionSortAlgorithm; #ifnot; Constant isix_InsertionSortAlgorithm = 0; #endif;
#ifdef IntegerDivide; Constant isix_IntegerDivide = IntegerDivide; #ifnot; Constant isix_IntegerDivide = 0; #endif;
#ifdef IntegerRemainder; Constant isix_IntegerRemainder = IntegerRemainder; #ifnot; Constant isix_IntegerRemainder = 0; #endif;
#ifdef InternalTestCases; Constant isix_InternalTestCases = InternalTestCases; #ifnot; Constant isix_InternalTestCases = 0; #endif;
#ifdef IsSeeThrough; Constant isix_IsSeeThrough = IsSeeThrough; #ifnot; Constant isix_IsSeeThrough = 0; #endif;
#ifdef IsorAre; Constant isix_IsorAre = IsorAre; #ifnot; Constant isix_IsorAre = 0; #endif;
#ifdef IterateRelations; Constant isix_IterateRelations = IterateRelations; #ifnot; Constant isix_IterateRelations = 0; #endif;
#ifdef ItorThem; Constant isix_ItorThem = ItorThem; #ifnot; Constant isix_ItorThem = 0; #endif;
#ifdef KOVComparisonFunction; Constant isix_KOVComparisonFunction = KOVComparisonFunction; #ifnot; Constant isix_KOVComparisonFunction = 0; #endif;
#ifdef KOVDomainSize; Constant isix_KOVDomainSize = KOVDomainSize; #ifnot; Constant isix_KOVDomainSize = 0; #endif;
#ifdef KOVHashValue; Constant isix_KOVHashValue = KOVHashValue; #ifnot; Constant isix_KOVHashValue = 0; #endif;
#ifdef KOVIsBlockValue; Constant isix_KOVIsBlockValue = KOVIsBlockValue; #ifnot; Constant isix_KOVIsBlockValue = 0; #endif;
#ifdef KOVSupportFunction; Constant isix_KOVSupportFunction = KOVSupportFunction; #ifnot; Constant isix_KOVSupportFunction = 0; #endif;
#ifdef Keyboard; Constant isix_Keyboard = Keyboard; #ifnot; Constant isix_Keyboard = 0; #endif;
#ifdef KeyboardPrimitive; Constant isix_KeyboardPrimitive = KeyboardPrimitive; #ifnot; Constant isix_KeyboardPrimitive = 0; #endif;
#ifdef KindAtomic; Constant isix_KindAtomic = KindAtomic; #ifnot; Constant isix_KindAtomic = 0; #endif;
#ifdef KindBaseArity; Constant isix_KindBaseArity = KindBaseArity; #ifnot; Constant isix_KindBaseArity = 0; #endif;
#ifdef KindBaseTerm; Constant isix_KindBaseTerm = KindBaseTerm; #ifnot; Constant isix_KindBaseTerm = 0; #endif;
#ifdef LIST_OF_TY_AppendList; Constant isix_LIST_OF_TY_AppendList = LIST_OF_TY_AppendList; #ifnot; Constant isix_LIST_OF_TY_AppendList = 0; #endif;
#ifdef LIST_OF_TY_Compare; Constant isix_LIST_OF_TY_Compare = LIST_OF_TY_Compare; #ifnot; Constant isix_LIST_OF_TY_Compare = 0; #endif;
#ifdef LIST_OF_TY_ComparisonFn; Constant isix_LIST_OF_TY_ComparisonFn = LIST_OF_TY_ComparisonFn; #ifnot; Constant isix_LIST_OF_TY_ComparisonFn = 0; #endif;
#ifdef LIST_OF_TY_Copy; Constant isix_LIST_OF_TY_Copy = LIST_OF_TY_Copy; #ifnot; Constant isix_LIST_OF_TY_Copy = 0; #endif;
#ifdef LIST_OF_TY_CopyRawArray; Constant isix_LIST_OF_TY_CopyRawArray = LIST_OF_TY_CopyRawArray; #ifnot; Constant isix_LIST_OF_TY_CopyRawArray = 0; #endif;
#ifdef LIST_OF_TY_Create; Constant isix_LIST_OF_TY_Create = LIST_OF_TY_Create; #ifnot; Constant isix_LIST_OF_TY_Create = 0; #endif;
#ifdef LIST_OF_TY_Desc; Constant isix_LIST_OF_TY_Desc = LIST_OF_TY_Desc; #ifnot; Constant isix_LIST_OF_TY_Desc = 0; #endif;
#ifdef LIST_OF_TY_Destroy; Constant isix_LIST_OF_TY_Destroy = LIST_OF_TY_Destroy; #ifnot; Constant isix_LIST_OF_TY_Destroy = 0; #endif;
#ifdef LIST_OF_TY_Distinguish; Constant isix_LIST_OF_TY_Distinguish = LIST_OF_TY_Distinguish; #ifnot; Constant isix_LIST_OF_TY_Distinguish = 0; #endif;
#ifdef LIST_OF_TY_Empty; Constant isix_LIST_OF_TY_Empty = LIST_OF_TY_Empty; #ifnot; Constant isix_LIST_OF_TY_Empty = 0; #endif;
#ifdef LIST_OF_TY_FindItem; Constant isix_LIST_OF_TY_FindItem = LIST_OF_TY_FindItem; #ifnot; Constant isix_LIST_OF_TY_FindItem = 0; #endif;
#ifdef LIST_OF_TY_GetItem; Constant isix_LIST_OF_TY_GetItem = LIST_OF_TY_GetItem; #ifnot; Constant isix_LIST_OF_TY_GetItem = 0; #endif;
#ifdef LIST_OF_TY_GetLength; Constant isix_LIST_OF_TY_GetLength = LIST_OF_TY_GetLength; #ifnot; Constant isix_LIST_OF_TY_GetLength = 0; #endif;
#ifdef LIST_OF_TY_Hash; Constant isix_LIST_OF_TY_Hash = LIST_OF_TY_Hash; #ifnot; Constant isix_LIST_OF_TY_Hash = 0; #endif;
#ifdef LIST_OF_TY_InsertItem; Constant isix_LIST_OF_TY_InsertItem = LIST_OF_TY_InsertItem; #ifnot; Constant isix_LIST_OF_TY_InsertItem = 0; #endif;
#ifdef LIST_OF_TY_Mol; Constant isix_LIST_OF_TY_Mol = LIST_OF_TY_Mol; #ifnot; Constant isix_LIST_OF_TY_Mol = 0; #endif;
#ifdef LIST_OF_TY_PreCopy; Constant isix_LIST_OF_TY_PreCopy = LIST_OF_TY_PreCopy; #ifnot; Constant isix_LIST_OF_TY_PreCopy = 0; #endif;
#ifdef LIST_OF_TY_PutItem; Constant isix_LIST_OF_TY_PutItem = LIST_OF_TY_PutItem; #ifnot; Constant isix_LIST_OF_TY_PutItem = 0; #endif;
#ifdef LIST_OF_TY_RemoveItemRange; Constant isix_LIST_OF_TY_RemoveItemRange = LIST_OF_TY_RemoveItemRange; #ifnot; Constant isix_LIST_OF_TY_RemoveItemRange = 0; #endif;
#ifdef LIST_OF_TY_RemoveValue; Constant isix_LIST_OF_TY_RemoveValue = LIST_OF_TY_RemoveValue; #ifnot; Constant isix_LIST_OF_TY_RemoveValue = 0; #endif;
#ifdef LIST_OF_TY_Remove_List; Constant isix_LIST_OF_TY_Remove_List = LIST_OF_TY_Remove_List; #ifnot; Constant isix_LIST_OF_TY_Remove_List = 0; #endif;
#ifdef LIST_OF_TY_Reverse; Constant isix_LIST_OF_TY_Reverse = LIST_OF_TY_Reverse; #ifnot; Constant isix_LIST_OF_TY_Reverse = 0; #endif;
#ifdef LIST_OF_TY_Rotate; Constant isix_LIST_OF_TY_Rotate = LIST_OF_TY_Rotate; #ifnot; Constant isix_LIST_OF_TY_Rotate = 0; #endif;
#ifdef LIST_OF_TY_Say; Constant isix_LIST_OF_TY_Say = LIST_OF_TY_Say; #ifnot; Constant isix_LIST_OF_TY_Say = 0; #endif;
#ifdef LIST_OF_TY_SetLength; Constant isix_LIST_OF_TY_SetLength = LIST_OF_TY_SetLength; #ifnot; Constant isix_LIST_OF_TY_SetLength = 0; #endif;
#ifdef LIST_OF_TY_Set_Mol; Constant isix_LIST_OF_TY_Set_Mol = LIST_OF_TY_Set_Mol; #ifnot; Constant isix_LIST_OF_TY_Set_Mol = 0; #endif;
#ifdef LIST_OF_TY_Sort; Constant isix_LIST_OF_TY_Sort = LIST_OF_TY_Sort; #ifnot; Constant isix_LIST_OF_TY_Sort = 0; #endif;
#ifdef LIST_OF_TY_Support; Constant isix_LIST_OF_TY_Support = LIST_OF_TY_Support; #ifnot; Constant isix_LIST_OF_TY_Support = 0; #endif;
#ifdef LTI_Insert; Constant isix_LTI_Insert = LTI_Insert; #ifnot; Constant isix_LTI_Insert = 0; #endif;
#ifdef L__M; Constant isix_L__M = L__M; #ifnot; Constant isix_L__M = 0; #endif;
#ifdef LanguageContraction; Constant isix_LanguageContraction = LanguageContraction; #ifnot; Constant isix_LanguageContraction = 0; #endif;
#ifdef LanguageDirection; Constant isix_LanguageDirection = LanguageDirection; #ifnot; Constant isix_LanguageDirection = 0; #endif;
#ifdef LanguageLM; Constant isix_LanguageLM = LanguageLM; #ifnot; Constant isix_LanguageLM = 0; #endif;
#ifdef LanguageNumber; Constant isix_LanguageNumber = LanguageNumber; #ifnot; Constant isix_LanguageNumber = 0; #endif;
#ifdef LanguageTimeOfDay; Constant isix_LanguageTimeOfDay = LanguageTimeOfDay; #ifnot; Constant isix_LanguageTimeOfDay = 0; #endif;
#ifdef LanguageToInformese; Constant isix_LanguageToInformese = LanguageToInformese; #ifnot; Constant isix_LanguageToInformese = 0; #endif;
#ifdef LanguageVerb; Constant isix_LanguageVerb = LanguageVerb; #ifnot; Constant isix_LanguageVerb = 0; #endif;
#ifdef LanguageVerbLikesAdverb; Constant isix_LanguageVerbLikesAdverb = LanguageVerbLikesAdverb; #ifnot; Constant isix_LanguageVerbLikesAdverb = 0; #endif;
#ifdef LanguageVerbMayBeName; Constant isix_LanguageVerbMayBeName = LanguageVerbMayBeName; #ifnot; Constant isix_LanguageVerbMayBeName = 0; #endif;
#ifdef ListCompareEntries; Constant isix_ListCompareEntries = ListCompareEntries; #ifnot; Constant isix_ListCompareEntries = 0; #endif;
#ifdef ListEqual; Constant isix_ListEqual = ListEqual; #ifnot; Constant isix_ListEqual = 0; #endif;
#ifdef ListSwapEntries; Constant isix_ListSwapEntries = ListSwapEntries; #ifnot; Constant isix_ListSwapEntries = 0; #endif;
#ifdef LocationOf; Constant isix_LocationOf = LocationOf; #ifnot; Constant isix_LocationOf = 0; #endif;
#ifdef LookAfterGoing; Constant isix_LookAfterGoing = LookAfterGoing; #ifnot; Constant isix_LookAfterGoing = 0; #endif;
#ifdef LookSub; Constant isix_LookSub = LookSub; #ifnot; Constant isix_LookSub = 0; #endif;
#ifdef LoopOverScope; Constant isix_LoopOverScope = LoopOverScope; #ifnot; Constant isix_LoopOverScope = 0; #endif;
#ifdef MStack_CreateAVVars; Constant isix_MStack_CreateAVVars = MStack_CreateAVVars; #ifnot; Constant isix_MStack_CreateAVVars = 0; #endif;
#ifdef MStack_CreateRBVars; Constant isix_MStack_CreateRBVars = MStack_CreateRBVars; #ifnot; Constant isix_MStack_CreateRBVars = 0; #endif;
#ifdef MStack_DestroyAVVars; Constant isix_MStack_DestroyAVVars = MStack_DestroyAVVars; #ifnot; Constant isix_MStack_DestroyAVVars = 0; #endif;
#ifdef MStack_DestroyRBVars; Constant isix_MStack_DestroyRBVars = MStack_DestroyRBVars; #ifnot; Constant isix_MStack_DestroyRBVars = 0; #endif;
#ifdef Main; Constant isix_Main = Main; #ifnot; Constant isix_Main = 0; #endif;
#ifdef MakeColourWord; Constant isix_MakeColourWord = MakeColourWord; #ifnot; Constant isix_MakeColourWord = 0; #endif;
#ifdef MakeMatch; Constant isix_MakeMatch = MakeMatch; #ifnot; Constant isix_MakeMatch = 0; #endif;
#ifdef MakePart; Constant isix_MakePart = MakePart; #ifnot; Constant isix_MakePart = 0; #endif;
#ifdef MapConnection; Constant isix_MapConnection = MapConnection; #ifnot; Constant isix_MapConnection = 0; #endif;
#ifdef MapRouteTo; Constant isix_MapRouteTo = MapRouteTo; #ifnot; Constant isix_MapRouteTo = 0; #endif;
#ifdef MarkedListCoalesce; Constant isix_MarkedListCoalesce = MarkedListCoalesce; #ifnot; Constant isix_MarkedListCoalesce = 0; #endif;
#ifdef MarkedListIterator; Constant isix_MarkedListIterator = MarkedListIterator; #ifnot; Constant isix_MarkedListIterator = 0; #endif;
#ifdef MatchTextAgainstObject; Constant isix_MatchTextAgainstObject = MatchTextAgainstObject; #ifnot; Constant isix_MatchTextAgainstObject = 0; #endif;
#ifdef MistakeActionSub; Constant isix_MistakeActionSub = MistakeActionSub; #ifnot; Constant isix_MistakeActionSub = 0; #endif;
#ifdef MoveBackdrop; Constant isix_MoveBackdrop = MoveBackdrop; #ifnot; Constant isix_MoveBackdrop = 0; #endif;
#ifdef MoveDuringGoing; Constant isix_MoveDuringGoing = MoveDuringGoing; #ifnot; Constant isix_MoveDuringGoing = 0; #endif;
#ifdef MoveFloatingObjects; Constant isix_MoveFloatingObjects = MoveFloatingObjects; #ifnot; Constant isix_MoveFloatingObjects = 0; #endif;
#ifdef MoveObject; Constant isix_MoveObject = MoveObject; #ifnot; Constant isix_MoveObject = 0; #endif;
#ifdef MoveRuleAfter; Constant isix_MoveRuleAfter = MoveRuleAfter; #ifnot; Constant isix_MoveRuleAfter = 0; #endif;
#ifdef MoveRuleBefore; Constant isix_MoveRuleBefore = MoveRuleBefore; #ifnot; Constant isix_MoveRuleBefore = 0; #endif;
#ifdef MoveWord; Constant isix_MoveWord = MoveWord; #ifnot; Constant isix_MoveWord = 0; #endif;
#ifdef MstVO; Constant isix_MstVO = MstVO; #ifnot; Constant isix_MstVO = 0; #endif;
#ifdef MstVON; Constant isix_MstVON = MstVON; #ifnot; Constant isix_MstVON = 0; #endif;
#ifdef Mstack_Backtrace; Constant isix_Mstack_Backtrace = Mstack_Backtrace; #ifnot; Constant isix_Mstack_Backtrace = 0; #endif;
#ifdef Mstack_Create_Frame; Constant isix_Mstack_Create_Frame = Mstack_Create_Frame; #ifnot; Constant isix_Mstack_Create_Frame = 0; #endif;
#ifdef Mstack_Destroy_Frame; Constant isix_Mstack_Destroy_Frame = Mstack_Destroy_Frame; #ifnot; Constant isix_Mstack_Destroy_Frame = 0; #endif;
#ifdef Mstack_Seek_Frame; Constant isix_Mstack_Seek_Frame = Mstack_Seek_Frame; #ifnot; Constant isix_Mstack_Seek_Frame = 0; #endif;
#ifdef MultiAdd; Constant isix_MultiAdd = MultiAdd; #ifnot; Constant isix_MultiAdd = 0; #endif;
#ifdef MultiFilter; Constant isix_MultiFilter = MultiFilter; #ifnot; Constant isix_MultiFilter = 0; #endif;
#ifdef MultiSub; Constant isix_MultiSub = MultiSub; #ifnot; Constant isix_MultiSub = 0; #endif;
#ifdef NeedLightForAction; Constant isix_NeedLightForAction = NeedLightForAction; #ifnot; Constant isix_NeedLightForAction = 0; #endif;
#ifdef NeedToCarryNoun; Constant isix_NeedToCarryNoun = NeedToCarryNoun; #ifnot; Constant isix_NeedToCarryNoun = 0; #endif;
#ifdef NeedToCarrySecondNoun; Constant isix_NeedToCarrySecondNoun = NeedToCarrySecondNoun; #ifnot; Constant isix_NeedToCarrySecondNoun = 0; #endif;
#ifdef NeedToTouchNoun; Constant isix_NeedToTouchNoun = NeedToTouchNoun; #ifnot; Constant isix_NeedToTouchNoun = 0; #endif;
#ifdef NeedToTouchSecondNoun; Constant isix_NeedToTouchSecondNoun = NeedToTouchSecondNoun; #ifnot; Constant isix_NeedToTouchSecondNoun = 0; #endif;
#ifdef NextWord; Constant isix_NextWord = NextWord; #ifnot; Constant isix_NextWord = 0; #endif;
#ifdef NextWordStopped; Constant isix_NextWordStopped = NextWordStopped; #ifnot; Constant isix_NextWordStopped = 0; #endif;
#ifdef NotifyTheScore; Constant isix_NotifyTheScore = NotifyTheScore; #ifnot; Constant isix_NotifyTheScore = 0; #endif;
#ifdef NounDomain; Constant isix_NounDomain = NounDomain; #ifnot; Constant isix_NounDomain = 0; #endif;
#ifdef NounWord; Constant isix_NounWord = NounWord; #ifnot; Constant isix_NounWord = 0; #endif;
#ifdef NumberOfGroupsInList; Constant isix_NumberOfGroupsInList = NumberOfGroupsInList; #ifnot; Constant isix_NumberOfGroupsInList = 0; #endif;
#ifdef NumberWord; Constant isix_NumberWord = NumberWord; #ifnot; Constant isix_NumberWord = 0; #endif;
#ifdef ObjectIsUntouchable; Constant isix_ObjectIsUntouchable = ObjectIsUntouchable; #ifnot; Constant isix_ObjectIsUntouchable = 0; #endif;
#ifdef ObjectTreeCoalesce; Constant isix_ObjectTreeCoalesce = ObjectTreeCoalesce; #ifnot; Constant isix_ObjectTreeCoalesce = 0; #endif;
#ifdef ObjectTreeIterator; Constant isix_ObjectTreeIterator = ObjectTreeIterator; #ifnot; Constant isix_ObjectTreeIterator = 0; #endif;
#ifdef OffersLight; Constant isix_OffersLight = OffersLight; #ifnot; Constant isix_OffersLight = 0; #endif;
#ifdef OhLookItsReal; Constant isix_OhLookItsReal = OhLookItsReal; #ifnot; Constant isix_OhLookItsReal = 0; #endif;
#ifdef OhLookItsRoom; Constant isix_OhLookItsRoom = OhLookItsRoom; #ifnot; Constant isix_OhLookItsRoom = 0; #endif;
#ifdef OhLookItsThing; Constant isix_OhLookItsThing = OhLookItsThing; #ifnot; Constant isix_OhLookItsThing = 0; #endif;
#ifdef OldSortAlgorithm; Constant isix_OldSortAlgorithm = OldSortAlgorithm; #ifnot; Constant isix_OldSortAlgorithm = 0; #endif;
#ifdef OnStage; Constant isix_OnStage = OnStage; #ifnot; Constant isix_OnStage = 0; #endif;
#ifdef OtherSideOfDoor; Constant isix_OtherSideOfDoor = OtherSideOfDoor; #ifnot; Constant isix_OtherSideOfDoor = 0; #endif;
#ifdef OtoVRelRouteTo; Constant isix_OtoVRelRouteTo = OtoVRelRouteTo; #ifnot; Constant isix_OtoVRelRouteTo = 0; #endif;
#ifdef OwnerOf; Constant isix_OwnerOf = OwnerOf; #ifnot; Constant isix_OwnerOf = 0; #endif;
#ifdef PROPERTY_TY_Say; Constant isix_PROPERTY_TY_Say = PROPERTY_TY_Say; #ifnot; Constant isix_PROPERTY_TY_Say = 0; #endif;
#ifdef PSN__; Constant isix_PSN__=PSN__; #ifnot; Constant isix_PSN__ = 0; #endif;
#ifdef ParaContent; Constant isix_ParaContent = ParaContent; #ifnot; Constant isix_ParaContent = 0; #endif;
#ifdef ParentOf; Constant isix_ParentOf = ParentOf; #ifnot; Constant isix_ParentOf = 0; #endif;
#ifdef ParseToken; Constant isix_ParseToken = ParseToken; #ifnot; Constant isix_ParseToken = 0; #endif;
#ifdef ParseTokenStopped; Constant isix_ParseTokenStopped = ParseTokenStopped; #ifnot; Constant isix_ParseTokenStopped = 0; #endif;
#ifdef ParseToken__; Constant isix_ParseToken__=ParseToken__; #ifnot; Constant isix_ParseToken__ = 0; #endif;
#ifdef ParserError; Constant isix_ParserError = ParserError; #ifnot; Constant isix_ParserError = 0; #endif;
#ifdef Parser__parse; Constant isix_Parser__parse = Parser__parse; #ifnot; Constant isix_Parser__parse = 0; #endif;
#ifdef PartitionList; Constant isix_PartitionList = PartitionList; #ifnot; Constant isix_PartitionList = 0; #endif;
#ifdef Perform_Undo; Constant isix_Perform_Undo = Perform_Undo; #ifnot; Constant isix_Perform_Undo = 0; #endif;
#ifdef PlaceInScope; Constant isix_PlaceInScope = PlaceInScope; #ifnot; Constant isix_PlaceInScope = 0; #endif;
#ifdef PlaySound; Constant isix_PlaySound = PlaySound; #ifnot; Constant isix_PlaySound = 0; #endif;
#ifdef PlayerTo; Constant isix_PlayerTo = PlayerTo; #ifnot; Constant isix_PlayerTo = 0; #endif;
#ifdef PredictableSub; Constant isix_PredictableSub = PredictableSub; #ifnot; Constant isix_PredictableSub = 0; #endif;
#ifdef PrefaceByArticle; Constant isix_PrefaceByArticle = PrefaceByArticle; #ifnot; Constant isix_PrefaceByArticle = 0; #endif;
#ifdef PrepositionChain; Constant isix_PrepositionChain = PrepositionChain; #ifnot; Constant isix_PrepositionChain = 0; #endif;
#ifdef PrintCommand; Constant isix_PrintCommand = PrintCommand; #ifnot; Constant isix_PrintCommand = 0; #endif;
#ifdef PrintInferredCommand; Constant isix_PrintInferredCommand = PrintInferredCommand; #ifnot; Constant isix_PrintInferredCommand = 0; #endif;
#ifdef PrintKindValuePair; Constant isix_PrintKindValuePair = PrintKindValuePair; #ifnot; Constant isix_PrintKindValuePair = 0; #endif;
#ifdef PrintOrRun; Constant isix_PrintOrRun = PrintOrRun; #ifnot; Constant isix_PrintOrRun = 0; #endif;
#ifdef PrintPrompt; Constant isix_PrintPrompt = PrintPrompt; #ifnot; Constant isix_PrintPrompt = 0; #endif;
#ifdef PrintPropertyName; Constant isix_PrintPropertyName = PrintPropertyName; #ifnot; Constant isix_PrintPropertyName = 0; #endif;
#ifdef PrintRank; Constant isix_PrintRank = PrintRank; #ifnot; Constant isix_PrintRank = 0; #endif;
#ifdef PrintSceneName; Constant isix_PrintSceneName = PrintSceneName; #ifnot; Constant isix_PrintSceneName = 0; #endif;
#ifdef PrintSingleParagraph; Constant isix_PrintSingleParagraph = PrintSingleParagraph; #ifnot; Constant isix_PrintSingleParagraph = 0; #endif;
#ifdef PrintSnippet; Constant isix_PrintSnippet = PrintSnippet; #ifnot; Constant isix_PrintSnippet = 0; #endif;
#ifdef PrintSpaces; Constant isix_PrintSpaces = PrintSpaces; #ifnot; Constant isix_PrintSpaces = 0; #endif;
#ifdef PrintTableName; Constant isix_PrintTableName = PrintTableName; #ifnot; Constant isix_PrintTableName = 0; #endif;
#ifdef PrintText; Constant isix_PrintText = PrintText; #ifnot; Constant isix_PrintText = 0; #endif;
#ifdef PrintTimeOfDay; Constant isix_PrintTimeOfDay = PrintTimeOfDay; #ifnot; Constant isix_PrintTimeOfDay = 0; #endif;
#ifdef PrintTimeOfDayEnglish; Constant isix_PrintTimeOfDayEnglish = PrintTimeOfDayEnglish; #ifnot; Constant isix_PrintTimeOfDayEnglish = 0; #endif;
#ifdef PrintUseOption; Constant isix_PrintUseOption = PrintUseOption; #ifnot; Constant isix_PrintUseOption = 0; #endif;
#ifdef PrintVerb; Constant isix_PrintVerb = PrintVerb; #ifnot; Constant isix_PrintVerb = 0; #endif;
#ifdef Print_ScL; Constant isix_Print_ScL = Print_ScL; #ifnot; Constant isix_Print_ScL = 0; #endif;
#ifdef ProcessActivityRulebook; Constant isix_ProcessActivityRulebook = ProcessActivityRulebook; #ifnot; Constant isix_ProcessActivityRulebook = 0; #endif;
#ifdef ProcessRulebook; Constant isix_ProcessRulebook = ProcessRulebook; #ifnot; Constant isix_ProcessRulebook = 0; #endif;
#ifdef PronounNotice; Constant isix_PronounNotice = PronounNotice; #ifnot; Constant isix_PronounNotice = 0; #endif;
#ifdef PronounNoticeHeldObjects; Constant isix_PronounNoticeHeldObjects = PronounNoticeHeldObjects; #ifnot; Constant isix_PronounNoticeHeldObjects = 0; #endif;
#ifdef PronounValue; Constant isix_PronounValue = PronounValue; #ifnot; Constant isix_PronounValue = 0; #endif;
#ifdef Prop_Falsity; Constant isix_Prop_Falsity = Prop_Falsity; #ifnot; Constant isix_Prop_Falsity = 0; #endif;
#ifdef PushRuleChange; Constant isix_PushRuleChange = PushRuleChange; #ifnot; Constant isix_PushRuleChange = 0; #endif;
#ifdef RELATION_TY_Compare; Constant isix_RELATION_TY_Compare = RELATION_TY_Compare; #ifnot; Constant isix_RELATION_TY_Compare = 0; #endif;
#ifdef RELATION_TY_Copy; Constant isix_RELATION_TY_Copy = RELATION_TY_Copy; #ifnot; Constant isix_RELATION_TY_Copy = 0; #endif;
#ifdef RELATION_TY_Create; Constant isix_RELATION_TY_Create = RELATION_TY_Create; #ifnot; Constant isix_RELATION_TY_Create = 0; #endif;
#ifdef RELATION_TY_Destroy; Constant isix_RELATION_TY_Destroy = RELATION_TY_Destroy; #ifnot; Constant isix_RELATION_TY_Destroy = 0; #endif;
#ifdef RELATION_TY_Distinguish; Constant isix_RELATION_TY_Distinguish = RELATION_TY_Distinguish; #ifnot; Constant isix_RELATION_TY_Distinguish = 0; #endif;
#ifdef RELATION_TY_Empty; Constant isix_RELATION_TY_Empty = RELATION_TY_Empty; #ifnot; Constant isix_RELATION_TY_Empty = 0; #endif;
#ifdef RELATION_TY_EquivalenceAdjective; Constant isix_RELATION_TY_EquivalenceAdje = RELATION_TY_EquivalenceAdjective; #ifnot; Constant isix_RELATION_TY_EquivalenceAdje = 0; #endif;
#ifdef RELATION_TY_GetValency; Constant isix_RELATION_TY_GetValency = RELATION_TY_GetValency; #ifnot; Constant isix_RELATION_TY_GetValency = 0; #endif;
#ifdef RELATION_TY_Name; Constant isix_RELATION_TY_Name = RELATION_TY_Name; #ifnot; Constant isix_RELATION_TY_Name = 0; #endif;
#ifdef RELATION_TY_OToOAdjective; Constant isix_RELATION_TY_OToOAdjective = RELATION_TY_OToOAdjective; #ifnot; Constant isix_RELATION_TY_OToOAdjective = 0; #endif;
#ifdef RELATION_TY_OToVAdjective; Constant isix_RELATION_TY_OToVAdjective = RELATION_TY_OToVAdjective; #ifnot; Constant isix_RELATION_TY_OToVAdjective = 0; #endif;
#ifdef RELATION_TY_Say; Constant isix_RELATION_TY_Say = RELATION_TY_Say; #ifnot; Constant isix_RELATION_TY_Say = 0; #endif;
#ifdef RELATION_TY_SetValency; Constant isix_RELATION_TY_SetValency = RELATION_TY_SetValency; #ifnot; Constant isix_RELATION_TY_SetValency = 0; #endif;
#ifdef RELATION_TY_Support; Constant isix_RELATION_TY_Support = RELATION_TY_Support; #ifnot; Constant isix_RELATION_TY_Support = 0; #endif;
#ifdef RELATION_TY_SymmetricAdjective; Constant isix_RELATION_TY_SymmetricAdject = RELATION_TY_SymmetricAdjective; #ifnot; Constant isix_RELATION_TY_SymmetricAdject = 0; #endif;
#ifdef RELATION_TY_VToOAdjective; Constant isix_RELATION_TY_VToOAdjective = RELATION_TY_VToOAdjective; #ifnot; Constant isix_RELATION_TY_VToOAdjective = 0; #endif;
#ifdef RELATION_TY_VToVAdjective; Constant isix_RELATION_TY_VToVAdjective = RELATION_TY_VToVAdjective; #ifnot; Constant isix_RELATION_TY_VToVAdjective = 0; #endif;
#ifdef RELATIVE_TIME_TOKEN; Constant isix_RELATIVE_TIME_TOKEN = RELATIVE_TIME_TOKEN; #ifnot; Constant isix_RELATIVE_TIME_TOKEN = 0; #endif;
#ifdef RSE_Flip; Constant isix_RSE_Flip = RSE_Flip; #ifnot; Constant isix_RSE_Flip = 0; #endif;
#ifdef RSE_Set; Constant isix_RSE_Set = RSE_Set; #ifnot; Constant isix_RSE_Set = 0; #endif;
#ifdef Refers; Constant isix_Refers = Refers; #ifnot; Constant isix_Refers = 0; #endif;
#ifdef ReinstateRule; Constant isix_ReinstateRule = ReinstateRule; #ifnot; Constant isix_ReinstateRule = 0; #endif;
#ifdef RelFollowVector; Constant isix_RelFollowVector = RelFollowVector; #ifnot; Constant isix_RelFollowVector = 0; #endif;
#ifdef RelationRouteTo; Constant isix_RelationRouteTo = RelationRouteTo; #ifnot; Constant isix_RelationRouteTo = 0; #endif;
#ifdef RelationTest; Constant isix_RelationTest = RelationTest; #ifnot; Constant isix_RelationTest = 0; #endif;
#ifdef Relation_Now1to1; Constant isix_Relation_Now1to1=Relation_Now1to1; #ifnot; Constant isix_Relation_Now1to1 = 0; #endif;
#ifdef Relation_Now1to1V; Constant isix_Relation_Now1to1V = Relation_Now1to1V; #ifnot; Constant isix_Relation_Now1to1V = 0; #endif;
#ifdef Relation_NowEquiv; Constant isix_Relation_NowEquiv = Relation_NowEquiv; #ifnot; Constant isix_Relation_NowEquiv = 0; #endif;
#ifdef Relation_NowEquivV; Constant isix_Relation_NowEquivV = Relation_NowEquivV; #ifnot; Constant isix_Relation_NowEquivV = 0; #endif;
#ifdef Relation_NowN1toV; Constant isix_Relation_NowN1toV = Relation_NowN1toV; #ifnot; Constant isix_Relation_NowN1toV = 0; #endif;
#ifdef Relation_NowN1toVV; Constant isix_Relation_NowN1toVV = Relation_NowN1toVV; #ifnot; Constant isix_Relation_NowN1toVV = 0; #endif;
#ifdef Relation_NowNEquiv; Constant isix_Relation_NowNEquiv = Relation_NowNEquiv; #ifnot; Constant isix_Relation_NowNEquiv = 0; #endif;
#ifdef Relation_NowNEquivV; Constant isix_Relation_NowNEquivV = Relation_NowNEquivV; #ifnot; Constant isix_Relation_NowNEquivV = 0; #endif;
#ifdef Relation_NowNVtoV; Constant isix_Relation_NowNVtoV = Relation_NowNVtoV; #ifnot; Constant isix_Relation_NowNVtoV = 0; #endif;
#ifdef Relation_NowS1to1; Constant isix_Relation_NowS1to1=Relation_NowS1to1; #ifnot; Constant isix_Relation_NowS1to1 = 0; #endif;
#ifdef Relation_NowS1to1V; Constant isix_Relation_NowS1to1V = Relation_NowS1to1V; #ifnot; Constant isix_Relation_NowS1to1V = 0; #endif;
#ifdef Relation_NowSN1to1; Constant isix_Relation_NowSN1to1=Relation_NowSN1to1; #ifnot; Constant isix_Relation_NowSN1to1 = 0; #endif;
#ifdef Relation_NowSN1to1V; Constant isix_Relation_NowSN1to1V = Relation_NowSN1to1V; #ifnot; Constant isix_Relation_NowSN1to1V = 0; #endif;
#ifdef Relation_NowVtoV; Constant isix_Relation_NowVtoV = Relation_NowVtoV; #ifnot; Constant isix_Relation_NowVtoV = 0; #endif;
#ifdef Relation_RShowOtoO; Constant isix_Relation_RShowOtoO = Relation_RShowOtoO; #ifnot; Constant isix_Relation_RShowOtoO = 0; #endif;
#ifdef Relation_ShowEquiv; Constant isix_Relation_ShowEquiv = Relation_ShowEquiv; #ifnot; Constant isix_Relation_ShowEquiv = 0; #endif;
#ifdef Relation_ShowOtoO; Constant isix_Relation_ShowOtoO = Relation_ShowOtoO; #ifnot; Constant isix_Relation_ShowOtoO = 0; #endif;
#ifdef Relation_ShowVtoV; Constant isix_Relation_ShowVtoV = Relation_ShowVtoV; #ifnot; Constant isix_Relation_ShowVtoV = 0; #endif;
#ifdef Relation_TestVtoV; Constant isix_Relation_TestVtoV = Relation_TestVtoV; #ifnot; Constant isix_Relation_TestVtoV = 0; #endif;
#ifdef RemoveFromPlay; Constant isix_RemoveFromPlay = RemoveFromPlay; #ifnot; Constant isix_RemoveFromPlay = 0; #endif;
#ifdef RequisitionStack; Constant isix_RequisitionStack = RequisitionStack; #ifnot; Constant isix_RequisitionStack = 0; #endif;
#ifdef ResetDescriptors; Constant isix_ResetDescriptors = ResetDescriptors; #ifnot; Constant isix_ResetDescriptors = 0; #endif;
#ifdef ResetVagueWords; Constant isix_ResetVagueWords = ResetVagueWords; #ifnot; Constant isix_ResetVagueWords = 0; #endif;
#ifdef ResultOfRule; Constant isix_ResultOfRule = ResultOfRule; #ifnot; Constant isix_ResultOfRule = 0; #endif;
#ifdef ReversedHashTableRelationHandler; Constant isix_ReversedHashTableRelationHa = ReversedHashTableRelationHandler; #ifnot; Constant isix_ReversedHashTableRelationHa = 0; #endif;
#ifdef ReviseMulti; Constant isix_ReviseMulti = ReviseMulti; #ifnot; Constant isix_ReviseMulti = 0; #endif;
#ifdef RoomOrDoorFrom; Constant isix_RoomOrDoorFrom = RoomOrDoorFrom; #ifnot; Constant isix_RoomOrDoorFrom = 0; #endif;
#ifdef RoundOffTime; Constant isix_RoundOffTime = RoundOffTime; #ifnot; Constant isix_RoundOffTime = 0; #endif;
#ifdef RuleHasNoOutcome; Constant isix_RuleHasNoOutcome = RuleHasNoOutcome; #ifnot; Constant isix_RuleHasNoOutcome = 0; #endif;
#ifdef RulePrintingRule; Constant isix_RulePrintingRule = RulePrintingRule; #ifnot; Constant isix_RulePrintingRule = 0; #endif;
#ifdef RulebookEmpty; Constant isix_RulebookEmpty = RulebookEmpty; #ifnot; Constant isix_RulebookEmpty = 0; #endif;
#ifdef RulebookFailed; Constant isix_RulebookFailed = RulebookFailed; #ifnot; Constant isix_RulebookFailed = 0; #endif;
#ifdef RulebookFails; Constant isix_RulebookFails = RulebookFails; #ifnot; Constant isix_RulebookFails = 0; #endif;
#ifdef RulebookOutcome; Constant isix_RulebookOutcome = RulebookOutcome; #ifnot; Constant isix_RulebookOutcome = 0; #endif;
#ifdef RulebookOutcomePrintingRule; Constant isix_RulebookOutcomePrintingRule = RulebookOutcomePrintingRule; #ifnot; Constant isix_RulebookOutcomePrintingRule = 0; #endif;
#ifdef RulebookSucceeded; Constant isix_RulebookSucceeded = RulebookSucceeded; #ifnot; Constant isix_RulebookSucceeded = 0; #endif;
#ifdef RulebookSucceeds; Constant isix_RulebookSucceeds = RulebookSucceeds; #ifnot; Constant isix_RulebookSucceeds = 0; #endif;
#ifdef RulesAllSub; Constant isix_RulesAllSub = RulesAllSub; #ifnot; Constant isix_RulesAllSub = 0; #endif;
#ifdef RulesOffSub; Constant isix_RulesOffSub = RulesOffSub; #ifnot; Constant isix_RulesOffSub = 0; #endif;
#ifdef RulesOnSub; Constant isix_RulesOnSub = RulesOnSub; #ifnot; Constant isix_RulesOnSub = 0; #endif;
#ifdef RunParagraphOn; Constant isix_RunParagraphOn = RunParagraphOn; #ifnot; Constant isix_RunParagraphOn = 0; #endif;
#ifdef RunRoutines; Constant isix_RunRoutines = RunRoutines; #ifnot; Constant isix_RunRoutines = 0; #endif;
#ifdef RunTimeError; Constant isix_RunTimeError = RunTimeError; #ifnot; Constant isix_RunTimeError = 0; #endif;
#ifdef RunTimeProblem; Constant isix_RunTimeProblem = RunTimeProblem; #ifnot; Constant isix_RunTimeProblem = 0; #endif;
#ifdef SL_Location; Constant isix_SL_Location = SL_Location; #ifnot; Constant isix_SL_Location = 0; #endif;
#ifdef SL_Score_Moves; Constant isix_SL_Score_Moves = SL_Score_Moves; #ifnot; Constant isix_SL_Score_Moves = 0; #endif;
#ifdef STORED_ACTION_TY_Adopt; Constant isix_STORED_ACTION_TY_Adopt = STORED_ACTION_TY_Adopt; #ifnot; Constant isix_STORED_ACTION_TY_Adopt = 0; #endif;
#ifdef STORED_ACTION_TY_Compare; Constant isix_STORED_ACTION_TY_Compare = STORED_ACTION_TY_Compare; #ifnot; Constant isix_STORED_ACTION_TY_Compare = 0; #endif;
#ifdef STORED_ACTION_TY_Copy; Constant isix_STORED_ACTION_TY_Copy = STORED_ACTION_TY_Copy; #ifnot; Constant isix_STORED_ACTION_TY_Copy = 0; #endif;
#ifdef STORED_ACTION_TY_Create; Constant isix_STORED_ACTION_TY_Create = STORED_ACTION_TY_Create; #ifnot; Constant isix_STORED_ACTION_TY_Create = 0; #endif;
#ifdef STORED_ACTION_TY_Current; Constant isix_STORED_ACTION_TY_Current = STORED_ACTION_TY_Current; #ifnot; Constant isix_STORED_ACTION_TY_Current = 0; #endif;
#ifdef STORED_ACTION_TY_Destroy; Constant isix_STORED_ACTION_TY_Destroy = STORED_ACTION_TY_Destroy; #ifnot; Constant isix_STORED_ACTION_TY_Destroy = 0; #endif;
#ifdef STORED_ACTION_TY_Distinguish; Constant isix_STORED_ACTION_TY_Distinguis = STORED_ACTION_TY_Distinguish; #ifnot; Constant isix_STORED_ACTION_TY_Distinguis = 0; #endif;
#ifdef STORED_ACTION_TY_Hash; Constant isix_STORED_ACTION_TY_Hash = STORED_ACTION_TY_Hash; #ifnot; Constant isix_STORED_ACTION_TY_Hash = 0; #endif;
#ifdef STORED_ACTION_TY_Involves; Constant isix_STORED_ACTION_TY_Involves = STORED_ACTION_TY_Involves; #ifnot; Constant isix_STORED_ACTION_TY_Involves = 0; #endif;
#ifdef STORED_ACTION_TY_New; Constant isix_STORED_ACTION_TY_New = STORED_ACTION_TY_New; #ifnot; Constant isix_STORED_ACTION_TY_New = 0; #endif;
#ifdef STORED_ACTION_TY_Part; Constant isix_STORED_ACTION_TY_Part = STORED_ACTION_TY_Part; #ifnot; Constant isix_STORED_ACTION_TY_Part = 0; #endif;
#ifdef STORED_ACTION_TY_Say; Constant isix_STORED_ACTION_TY_Say = STORED_ACTION_TY_Say; #ifnot; Constant isix_STORED_ACTION_TY_Say = 0; #endif;
#ifdef STORED_ACTION_TY_Support; Constant isix_STORED_ACTION_TY_Support = STORED_ACTION_TY_Support; #ifnot; Constant isix_STORED_ACTION_TY_Support = 0; #endif;
#ifdef STORED_ACTION_TY_Try; Constant isix_STORED_ACTION_TY_Try = STORED_ACTION_TY_Try; #ifnot; Constant isix_STORED_ACTION_TY_Try = 0; #endif;
#ifdef STORED_ACTION_TY_Unadopt; Constant isix_STORED_ACTION_TY_Unadopt = STORED_ACTION_TY_Unadopt; #ifnot; Constant isix_STORED_ACTION_TY_Unadopt = 0; #endif;
#ifdef STextSubstitution; Constant isix_STextSubstitution = STextSubstitution; #ifnot; Constant isix_STextSubstitution = 0; #endif;
#ifdef SafeSkipDescriptors; Constant isix_SafeSkipDescriptors = SafeSkipDescriptors; #ifnot; Constant isix_SafeSkipDescriptors = 0; #endif;
#ifdef SayActionName; Constant isix_SayActionName = SayActionName; #ifnot; Constant isix_SayActionName = 0; #endif;
#ifdef SayPhraseName; Constant isix_SayPhraseName = SayPhraseName; #ifnot; Constant isix_SayPhraseName = 0; #endif;
#ifdef ScanPropertyMetadata; Constant isix_ScanPropertyMetadata = ScanPropertyMetadata; #ifnot; Constant isix_ScanPropertyMetadata = 0; #endif;
#ifdef SceneUtility; Constant isix_SceneUtility = SceneUtility; #ifnot; Constant isix_SceneUtility = 0; #endif;
#ifdef ScenesOffSub; Constant isix_ScenesOffSub = ScenesOffSub; #ifnot; Constant isix_ScenesOffSub = 0; #endif;
#ifdef ScenesOnSub; Constant isix_ScenesOnSub = ScenesOnSub; #ifnot; Constant isix_ScenesOnSub = 0; #endif;
#ifdef ScopeCeiling; Constant isix_ScopeCeiling = ScopeCeiling; #ifnot; Constant isix_ScopeCeiling = 0; #endif;
#ifdef ScopeSub; Constant isix_ScopeSub = ScopeSub; #ifnot; Constant isix_ScopeSub = 0; #endif;
#ifdef ScopeWithin; Constant isix_ScopeWithin = ScopeWithin; #ifnot; Constant isix_ScopeWithin = 0; #endif;
#ifdef ScoreDabCombo; Constant isix_ScoreDabCombo = ScoreDabCombo; #ifnot; Constant isix_ScoreDabCombo = 0; #endif;
#ifdef ScoreMatchL; Constant isix_ScoreMatchL = ScoreMatchL; #ifnot; Constant isix_ScoreMatchL = 0; #endif;
#ifdef SearchScope; Constant isix_SearchScope = SearchScope; #ifnot; Constant isix_SearchScope = 0; #endif;
#ifdef SetActionBitmap; Constant isix_SetActionBitmap = SetActionBitmap; #ifnot; Constant isix_SetActionBitmap = 0; #endif;
#ifdef SetEitherOrProperty; Constant isix_SetEitherOrProperty = SetEitherOrProperty; #ifnot; Constant isix_SetEitherOrProperty = 0; #endif;
#ifdef SetPlayersCommand; Constant isix_SetPlayersCommand = SetPlayersCommand; #ifnot; Constant isix_SetPlayersCommand = 0; #endif;
#ifdef SetPronoun; Constant isix_SetPronoun = SetPronoun; #ifnot; Constant isix_SetPronoun = 0; #endif;
#ifdef SetRulebookOutcome; Constant isix_SetRulebookOutcome = SetRulebookOutcome; #ifnot; Constant isix_SetRulebookOutcome = 0; #endif;
#ifdef SetSortDomain; Constant isix_SetSortDomain = SetSortDomain; #ifnot; Constant isix_SetSortDomain = 0; #endif;
#ifdef SetTime; Constant isix_SetTime = SetTime; #ifnot; Constant isix_SetTime = 0; #endif;
#ifdef SetTimedEvent; Constant isix_SetTimedEvent = SetTimedEvent; #ifnot; Constant isix_SetTimedEvent = 0; #endif;
#ifdef ShowExtensionVersions; Constant isix_ShowExtensionVersions = ShowExtensionVersions; #ifnot; Constant isix_ShowExtensionVersions = 0; #endif;
#ifdef ShowFullExtensionVersions; Constant isix_ShowFullExtensionVersions = ShowFullExtensionVersions; #ifnot; Constant isix_ShowFullExtensionVersions = 0; #endif;
#ifdef ShowHeapSub; Constant isix_ShowHeapSub = ShowHeapSub; #ifnot; Constant isix_ShowHeapSub = 0; #endif;
#ifdef ShowMeRecursively; Constant isix_ShowMeRecursively = ShowMeRecursively; #ifnot; Constant isix_ShowMeRecursively = 0; #endif;
#ifdef ShowMeSub; Constant isix_ShowMeSub = ShowMeSub; #ifnot; Constant isix_ShowMeSub = 0; #endif;
#ifdef ShowOneRelation; Constant isix_ShowOneRelation = ShowOneRelation; #ifnot; Constant isix_ShowOneRelation = 0; #endif;
#ifdef ShowRLocation; Constant isix_ShowRLocation = ShowRLocation; #ifnot; Constant isix_ShowRLocation = 0; #endif;
#ifdef ShowRelationsSub; Constant isix_ShowRelationsSub = ShowRelationsSub; #ifnot; Constant isix_ShowRelationsSub = 0; #endif;
#ifdef ShowSceneStatus; Constant isix_ShowSceneStatus = ShowSceneStatus; #ifnot; Constant isix_ShowSceneStatus = 0; #endif;
#ifdef ShowVerbSub; Constant isix_ShowVerbSub = ShowVerbSub; #ifnot; Constant isix_ShowVerbSub = 0; #endif;
#ifdef SignalMapChange; Constant isix_SignalMapChange = SignalMapChange; #ifnot; Constant isix_SignalMapChange = 0; #endif;
#ifdef SilentlyConsiderLight; Constant isix_SilentlyConsiderLight = SilentlyConsiderLight; #ifnot; Constant isix_SilentlyConsiderLight = 0; #endif;
#ifdef SingleBestGuess; Constant isix_SingleBestGuess = SingleBestGuess; #ifnot; Constant isix_SingleBestGuess = 0; #endif;
#ifdef SlowCountRouteTo; Constant isix_SlowCountRouteTo = SlowCountRouteTo; #ifnot; Constant isix_SlowCountRouteTo = 0; #endif;
#ifdef SlowRouteTo; Constant isix_SlowRouteTo = SlowRouteTo; #ifnot; Constant isix_SlowRouteTo = 0; #endif;
#ifdef SnippetIncludes; Constant isix_SnippetIncludes = SnippetIncludes; #ifnot; Constant isix_SnippetIncludes = 0; #endif;
#ifdef SnippetMatches; Constant isix_SnippetMatches = SnippetMatches; #ifnot; Constant isix_SnippetMatches = 0; #endif;
#ifdef SortArray; Constant isix_SortArray = SortArray; #ifnot; Constant isix_SortArray = 0; #endif;
#ifdef SortRange; Constant isix_SortRange = SortRange; #ifnot; Constant isix_SortRange = 0; #endif;
#ifdef SpecialLookSpacingBreak; Constant isix_SpecialLookSpacingBreak = SpecialLookSpacingBreak; #ifnot; Constant isix_SpecialLookSpacingBreak = 0; #endif;
#ifdef SpliceSnippet; Constant isix_SpliceSnippet = SpliceSnippet; #ifnot; Constant isix_SpliceSnippet = 0; #endif;
#ifdef SpliceSnippet__TextPrinter; Constant isix_SpliceSnippet__TextPrinter = SpliceSnippet__TextPrinter; #ifnot; Constant isix_SpliceSnippet__TextPrinter = 0; #endif;
#ifdef SquareRoot; Constant isix_SquareRoot = SquareRoot; #ifnot; Constant isix_SquareRoot = 0; #endif;
#ifdef SubstituteRule; Constant isix_SubstituteRule = SubstituteRule; #ifnot; Constant isix_SubstituteRule = 0; #endif;
#ifdef SupporterOf; Constant isix_SupporterOf = SupporterOf; #ifnot; Constant isix_SupporterOf = 0; #endif;
#ifdef SuppressRule; Constant isix_SuppressRule = SuppressRule; #ifnot; Constant isix_SuppressRule = 0; #endif;
#ifdef SwapWorkflags; Constant isix_SwapWorkflags = SwapWorkflags; #ifnot; Constant isix_SwapWorkflags = 0; #endif;
#ifdef Sym2in1HashTableRelationHandler; Constant isix_Sym2in1HashTableRelationHan = Sym2in1HashTableRelationHandler; #ifnot; Constant isix_Sym2in1HashTableRelationHan = 0; #endif;
#ifdef SymDoubleHashSetRelationHandler; Constant isix_SymDoubleHashSetRelationHan = SymDoubleHashSetRelationHandler; #ifnot; Constant isix_SymDoubleHashSetRelationHan = 0; #endif;
#ifdef SymHashListRelationHandler; Constant isix_SymHashListRelationHandler = SymHashListRelationHandler; #ifnot; Constant isix_SymHashListRelationHandler = 0; #endif;
#ifdef TC_KOV; Constant isix_TC_KOV = TC_KOV; #ifnot; Constant isix_TC_KOV = 0; #endif;
#ifdef TIME_TOKEN; Constant isix_TIME_TOKEN = TIME_TOKEN; #ifnot; Constant isix_TIME_TOKEN = 0; #endif;
#ifdef TRUTH_STATE_TOKEN; Constant isix_TRUTH_STATE_TOKEN = TRUTH_STATE_TOKEN; #ifnot; Constant isix_TRUTH_STATE_TOKEN = 0; #endif;
#ifdef TableBlankOutAll; Constant isix_TableBlankOutAll = TableBlankOutAll; #ifnot; Constant isix_TableBlankOutAll = 0; #endif;
#ifdef TableBlankOutColumn; Constant isix_TableBlankOutColumn = TableBlankOutColumn; #ifnot; Constant isix_TableBlankOutColumn = 0; #endif;
#ifdef TableBlankOutRow; Constant isix_TableBlankOutRow = TableBlankOutRow; #ifnot; Constant isix_TableBlankOutRow = 0; #endif;
#ifdef TableBlankRow; Constant isix_TableBlankRow = TableBlankRow; #ifnot; Constant isix_TableBlankRow = 0; #endif;
#ifdef TableBlankRows; Constant isix_TableBlankRows = TableBlankRows; #ifnot; Constant isix_TableBlankRows = 0; #endif;
#ifdef TableColumnDebug; Constant isix_TableColumnDebug = TableColumnDebug; #ifnot; Constant isix_TableColumnDebug = 0; #endif;
#ifdef TableCompareRows; Constant isix_TableCompareRows = TableCompareRows; #ifnot; Constant isix_TableCompareRows = 0; #endif;
#ifdef TableFilledRows; Constant isix_TableFilledRows = TableFilledRows; #ifnot; Constant isix_TableFilledRows = 0; #endif;
#ifdef TableFindCol; Constant isix_TableFindCol = TableFindCol; #ifnot; Constant isix_TableFindCol = 0; #endif;
#ifdef TableLookUpCorr; Constant isix_TableLookUpCorr = TableLookUpCorr; #ifnot; Constant isix_TableLookUpCorr = 0; #endif;
#ifdef TableLookUpEntry; Constant isix_TableLookUpEntry = TableLookUpEntry; #ifnot; Constant isix_TableLookUpEntry = 0; #endif;
#ifdef TableMoveBlankBitsDown; Constant isix_TableMoveBlankBitsDown = TableMoveBlankBitsDown; #ifnot; Constant isix_TableMoveBlankBitsDown = 0; #endif;
#ifdef TableMoveBlanksToBack; Constant isix_TableMoveBlanksToBack = TableMoveBlanksToBack; #ifnot; Constant isix_TableMoveBlanksToBack = 0; #endif;
#ifdef TableMoveRowDown; Constant isix_TableMoveRowDown = TableMoveRowDown; #ifnot; Constant isix_TableMoveRowDown = 0; #endif;
#ifdef TableNextRow; Constant isix_TableNextRow = TableNextRow; #ifnot; Constant isix_TableNextRow = 0; #endif;
#ifdef TablePrint; Constant isix_TablePrint = TablePrint; #ifnot; Constant isix_TablePrint = 0; #endif;
#ifdef TableRandomRow; Constant isix_TableRandomRow = TableRandomRow; #ifnot; Constant isix_TableRandomRow = 0; #endif;
#ifdef TableRead; Constant isix_TableRead = TableRead; #ifnot; Constant isix_TableRead = 0; #endif;
#ifdef TableRowCorr; Constant isix_TableRowCorr = TableRowCorr; #ifnot; Constant isix_TableRowCorr = 0; #endif;
#ifdef TableRowIsBlank; Constant isix_TableRowIsBlank = TableRowIsBlank; #ifnot; Constant isix_TableRowIsBlank = 0; #endif;
#ifdef TableRows; Constant isix_TableRows = TableRows; #ifnot; Constant isix_TableRows = 0; #endif;
#ifdef TableShuffle; Constant isix_TableShuffle = TableShuffle; #ifnot; Constant isix_TableShuffle = 0; #endif;
#ifdef TableSort; Constant isix_TableSort = TableSort; #ifnot; Constant isix_TableSort = 0; #endif;
#ifdef TableSwapBlankBits; Constant isix_TableSwapBlankBits = TableSwapBlankBits; #ifnot; Constant isix_TableSwapBlankBits = 0; #endif;
#ifdef TableSwapRows; Constant isix_TableSwapRows = TableSwapRows; #ifnot; Constant isix_TableSwapRows = 0; #endif;
#ifdef TestActionBitmap; Constant isix_TestActionBitmap = TestActionBitmap; #ifnot; Constant isix_TestActionBitmap = 0; #endif;
#ifdef TestActionMask; Constant isix_TestActionMask = TestActionMask; #ifnot; Constant isix_TestActionMask = 0; #endif;
#ifdef TestActivity; Constant isix_TestActivity = TestActivity; #ifnot; Constant isix_TestActivity = 0; #endif;
#ifdef TestAdjacency; Constant isix_TestAdjacency = TestAdjacency; #ifnot; Constant isix_TestAdjacency = 0; #endif;
#ifdef TestConcealment; Constant isix_TestConcealment = TestConcealment; #ifnot; Constant isix_TestConcealment = 0; #endif;
#ifdef TestContainmentRange; Constant isix_TestContainmentRange = TestContainmentRange; #ifnot; Constant isix_TestContainmentRange = 0; #endif;
#ifdef TestKeyboardPrimitive; Constant isix_TestKeyboardPrimitive = TestKeyboardPrimitive; #ifnot; Constant isix_TestKeyboardPrimitive = 0; #endif;
#ifdef TestRegionalContainment; Constant isix_TestRegionalContainment = TestRegionalContainment; #ifnot; Constant isix_TestRegionalContainment = 0; #endif;
#ifdef TestScope; Constant isix_TestScope = TestScope; #ifnot; Constant isix_TestScope = 0; #endif;
#ifdef TestScriptSub; Constant isix_TestScriptSub = TestScriptSub; #ifnot; Constant isix_TestScriptSub = 0; #endif;
#ifdef TestSinglePastState; Constant isix_TestSinglePastState = TestSinglePastState; #ifnot; Constant isix_TestSinglePastState = 0; #endif;
#ifdef TestStart; Constant isix_TestStart = TestStart; #ifnot; Constant isix_TestStart = 0; #endif;
#ifdef TestTouchability; Constant isix_TestTouchability = TestTouchability; #ifnot; Constant isix_TestTouchability = 0; #endif;
#ifdef TestUseOption; Constant isix_TestUseOption = TestUseOption; #ifnot; Constant isix_TestUseOption = 0; #endif;
#ifdef TestVisibility; Constant isix_TestVisibility = TestVisibility; #ifnot; Constant isix_TestVisibility = 0; #endif;
#ifdef ThatorThose; Constant isix_ThatorThose = ThatorThose; #ifnot; Constant isix_ThatorThose = 0; #endif;
#ifdef TraceLevelSub; Constant isix_TraceLevelSub = TraceLevelSub; #ifnot; Constant isix_TraceLevelSub = 0; #endif;
#ifdef TraceOffSub; Constant isix_TraceOffSub = TraceOffSub; #ifnot; Constant isix_TraceOffSub = 0; #endif;
#ifdef TraceOnSub; Constant isix_TraceOnSub = TraceOnSub; #ifnot; Constant isix_TraceOnSub = 0; #endif;
#ifdef TrackActions; Constant isix_TrackActions = TrackActions; #ifnot; Constant isix_TrackActions = 0; #endif;
#ifdef TreatParserResults; Constant isix_TreatParserResults = TreatParserResults; #ifnot; Constant isix_TreatParserResults = 0; #endif;
#ifdef TryAction; Constant isix_TryAction = TryAction; #ifnot; Constant isix_TryAction = 0; #endif;
#ifdef TryGivenObject; Constant isix_TryGivenObject = TryGivenObject; #ifnot; Constant isix_TryGivenObject = 0; #endif;
#ifdef TryNumber; Constant isix_TryNumber = TryNumber; #ifnot; Constant isix_TryNumber = 0; #endif;
#ifdef TwoInOneCheckResize; Constant isix_TwoInOneCheckResize = TwoInOneCheckResize; #ifnot; Constant isix_TwoInOneCheckResize = 0; #endif;
#ifdef TwoInOneDelete; Constant isix_TwoInOneDelete = TwoInOneDelete; #ifnot; Constant isix_TwoInOneDelete = 0; #endif;
#ifdef TwoInOneEntryMatches; Constant isix_TwoInOneEntryMatches = TwoInOneEntryMatches; #ifnot; Constant isix_TwoInOneEntryMatches = 0; #endif;
#ifdef TwoInOneHashTableRelationHandler; Constant isix_TwoInOneHashTableRelationHa = TwoInOneHashTableRelationHandler; #ifnot; Constant isix_TwoInOneHashTableRelationHa = 0; #endif;
#ifdef TwoInOneLookUp; Constant isix_TwoInOneLookUp = TwoInOneLookUp; #ifnot; Constant isix_TwoInOneLookUp = 0; #endif;
#ifdef UnknownVerb; Constant isix_UnknownVerb = UnknownVerb; #ifnot; Constant isix_UnknownVerb = 0; #endif;
#ifdef UnpackGrammarLine; Constant isix_UnpackGrammarLine = UnpackGrammarLine; #ifnot; Constant isix_UnpackGrammarLine = 0; #endif;
#ifdef UnsignedCompare; Constant isix_UnsignedCompare = UnsignedCompare; #ifnot; Constant isix_UnsignedCompare = 0; #endif;
#ifdef UpdateActionBitmap; Constant isix_UpdateActionBitmap = UpdateActionBitmap; #ifnot; Constant isix_UpdateActionBitmap = 0; #endif;
#ifdef UseRule; Constant isix_UseRule = UseRule; #ifnot; Constant isix_UseRule = 0; #endif;
#ifdef VM_AllocateMemory; Constant isix_VM_AllocateMemory = VM_AllocateMemory; #ifnot; Constant isix_VM_AllocateMemory = 0; #endif;
#ifdef VM_ClearScreen; Constant isix_VM_ClearScreen = VM_ClearScreen; #ifnot; Constant isix_VM_ClearScreen = 0; #endif;
#ifdef VM_CommandTableAddress; Constant isix_VM_CommandTableAddress = VM_CommandTableAddress; #ifnot; Constant isix_VM_CommandTableAddress = 0; #endif;
#ifdef VM_CopyBuffer; Constant isix_VM_CopyBuffer = VM_CopyBuffer; #ifnot; Constant isix_VM_CopyBuffer = 0; #endif;
#ifdef VM_Describe_Release; Constant isix_VM_Describe_Release = VM_Describe_Release; #ifnot; Constant isix_VM_Describe_Release = 0; #endif;
#ifdef VM_DictionaryAddressToNumber; Constant isix_VM_DictionaryAddressToNumbe = VM_DictionaryAddressToNumber; #ifnot; Constant isix_VM_DictionaryAddressToNumbe = 0; #endif;
#ifdef VM_FreeMemory; Constant isix_VM_FreeMemory = VM_FreeMemory; #ifnot; Constant isix_VM_FreeMemory = 0; #endif;
#ifdef VM_Initialise; Constant isix_VM_Initialise = VM_Initialise; #ifnot; Constant isix_VM_Initialise = 0; #endif;
#ifdef VM_InvalidDictionaryAddress; Constant isix_VM_InvalidDictionaryAddress = VM_InvalidDictionaryAddress; #ifnot; Constant isix_VM_InvalidDictionaryAddress = 0; #endif;
#ifdef VM_KeyChar; Constant isix_VM_KeyChar = VM_KeyChar; #ifnot; Constant isix_VM_KeyChar = 0; #endif;
#ifdef VM_KeyDelay; Constant isix_VM_KeyDelay = VM_KeyDelay; #ifnot; Constant isix_VM_KeyDelay = 0; #endif;
#ifdef VM_KeyDelay_Interrupt; Constant isix_VM_KeyDelay_Interrupt = VM_KeyDelay_Interrupt; #ifnot; Constant isix_VM_KeyDelay_Interrupt = 0; #endif;
#ifdef VM_LowerToUpperCase; Constant isix_VM_LowerToUpperCase = VM_LowerToUpperCase; #ifnot; Constant isix_VM_LowerToUpperCase = 0; #endif;
#ifdef VM_MainWindow; Constant isix_VM_MainWindow = VM_MainWindow; #ifnot; Constant isix_VM_MainWindow = 0; #endif;
#ifdef VM_MoveCursorInStatusLine; Constant isix_VM_MoveCursorInStatusLine = VM_MoveCursorInStatusLine; #ifnot; Constant isix_VM_MoveCursorInStatusLine = 0; #endif;
#ifdef VM_NumberToDictionaryAddress; Constant isix_VM_NumberToDictionaryAddres = VM_NumberToDictionaryAddress; #ifnot; Constant isix_VM_NumberToDictionaryAddres = 0; #endif;
#ifdef VM_Picture; Constant isix_VM_Picture = VM_Picture; #ifnot; Constant isix_VM_Picture = 0; #endif;
#ifdef VM_PreInitialise; Constant isix_VM_PreInitialise = VM_PreInitialise; #ifnot; Constant isix_VM_PreInitialise = 0; #endif;
#ifdef VM_PrintCommandWords; Constant isix_VM_PrintCommandWords = VM_PrintCommandWords; #ifnot; Constant isix_VM_PrintCommandWords = 0; #endif;
#ifdef VM_PrintToBuffer; Constant isix_VM_PrintToBuffer = VM_PrintToBuffer; #ifnot; Constant isix_VM_PrintToBuffer = 0; #endif;
#ifdef VM_ReadKeyboard; Constant isix_VM_ReadKeyboard = VM_ReadKeyboard; #ifnot; Constant isix_VM_ReadKeyboard = 0; #endif;
#ifdef VM_RestoreWindowColours; Constant isix_VM_RestoreWindowColours = VM_RestoreWindowColours; #ifnot; Constant isix_VM_RestoreWindowColours = 0; #endif;
#ifdef VM_Save_Undo; Constant isix_VM_Save_Undo = VM_Save_Undo; #ifnot; Constant isix_VM_Save_Undo = 0; #endif;
#ifdef VM_ScreenHeight; Constant isix_VM_ScreenHeight = VM_ScreenHeight; #ifnot; Constant isix_VM_ScreenHeight = 0; #endif;
#ifdef VM_ScreenWidth; Constant isix_VM_ScreenWidth = VM_ScreenWidth; #ifnot; Constant isix_VM_ScreenWidth = 0; #endif;
#ifdef VM_Seed_RNG; Constant isix_VM_Seed_RNG = VM_Seed_RNG; #ifnot; Constant isix_VM_Seed_RNG = 0; #endif;
#ifdef VM_SetWindowColours; Constant isix_VM_SetWindowColours = VM_SetWindowColours; #ifnot; Constant isix_VM_SetWindowColours = 0; #endif;
#ifdef VM_SoundEffect; Constant isix_VM_SoundEffect = VM_SoundEffect; #ifnot; Constant isix_VM_SoundEffect = 0; #endif;
#ifdef VM_StatusLineHeight; Constant isix_VM_StatusLineHeight = VM_StatusLineHeight; #ifnot; Constant isix_VM_StatusLineHeight = 0; #endif;
#ifdef VM_Style; Constant isix_VM_Style = VM_Style; #ifnot; Constant isix_VM_Style = 0; #endif;
#ifdef VM_Tokenise; Constant isix_VM_Tokenise = VM_Tokenise; #ifnot; Constant isix_VM_Tokenise = 0; #endif;
#ifdef VM_Undo; Constant isix_VM_Undo = VM_Undo; #ifnot; Constant isix_VM_Undo = 0; #endif;
#ifdef VM_UpperToLowerCase; Constant isix_VM_UpperToLowerCase = VM_UpperToLowerCase; #ifnot; Constant isix_VM_UpperToLowerCase = 0; #endif;
#ifdef VisibilityParent; Constant isix_VisibilityParent = VisibilityParent; #ifnot; Constant isix_VisibilityParent = 0; #endif;
#ifdef VtoORelRouteTo; Constant isix_VtoORelRouteTo = VtoORelRouteTo; #ifnot; Constant isix_VtoORelRouteTo = 0; #endif;
#ifdef VtoVRelRouteTo; Constant isix_VtoVRelRouteTo = VtoVRelRouteTo; #ifnot; Constant isix_VtoVRelRouteTo = 0; #endif;
#ifdef WearObject; Constant isix_WearObject = WearObject; #ifnot; Constant isix_WearObject = 0; #endif;
#ifdef WearerOf; Constant isix_WearerOf = WearerOf; #ifnot; Constant isix_WearerOf = 0; #endif;
#ifdef WhetherIn; Constant isix_WhetherIn = WhetherIn; #ifnot; Constant isix_WhetherIn = 0; #endif;
#ifdef WhetherProvides; Constant isix_WhetherProvides = WhetherProvides; #ifnot; Constant isix_WhetherProvides = 0; #endif;
#ifdef WillRecurs; Constant isix_WillRecurs = WillRecurs; #ifnot; Constant isix_WillRecurs = 0; #endif;
#ifdef WordAddress; Constant isix_WordAddress = WordAddress; #ifnot; Constant isix_WordAddress = 0; #endif;
#ifdef WordCount; Constant isix_WordCount = WordCount; #ifnot; Constant isix_WordCount = 0; #endif;
#ifdef WordFrom; Constant isix_WordFrom = WordFrom; #ifnot; Constant isix_WordFrom = 0; #endif;
#ifdef WordInProperty; Constant isix_WordInProperty = WordInProperty; #ifnot; Constant isix_WordInProperty = 0; #endif;
#ifdef WordLength; Constant isix_WordLength = WordLength; #ifnot; Constant isix_WordLength = 0; #endif;
#ifdef WriteAfterEntry; Constant isix_WriteAfterEntry = WriteAfterEntry; #ifnot; Constant isix_WriteAfterEntry = 0; #endif;
#ifdef WriteGProperty; Constant isix_WriteGProperty = WriteGProperty; #ifnot; Constant isix_WriteGProperty = 0; #endif;
#ifdef WriteLIST_OF_TY_GetItem; Constant isix_WriteLIST_OF_TY_GetItem = WriteLIST_OF_TY_GetItem; #ifnot; Constant isix_WriteLIST_OF_TY_GetItem = 0; #endif;
#ifdef WriteListFrom; Constant isix_WriteListFrom = WriteListFrom; #ifnot; Constant isix_WriteListFrom = 0; #endif;
#ifdef WriteListOfMarkedObjects; Constant isix_WriteListOfMarkedObjects = WriteListOfMarkedObjects; #ifnot; Constant isix_WriteListOfMarkedObjects = 0; #endif;
#ifdef WriteListR; Constant isix_WriteListR = WriteListR; #ifnot; Constant isix_WriteListR = 0; #endif;
#ifdef WriteMultiClassGroup; Constant isix_WriteMultiClassGroup = WriteMultiClassGroup; #ifnot; Constant isix_WriteMultiClassGroup = 0; #endif;
#ifdef WriteSingleClassGroup; Constant isix_WriteSingleClassGroup = WriteSingleClassGroup; #ifnot; Constant isix_WriteSingleClassGroup = 0; #endif;