Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bot/alice/F.aiml
blob: ccf1a4ca2d2c8e915271ad5e6896eab7f350b4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- edited with XML Spy v3.5 NT (http://www.xmlspy.com) by  () -->
<aiml>
	<!-- Free software (c) 2001 ALICE A.I. Foundation.   -->
	<!-- This program is open source code released under -->
	<!-- the terms of the GNU General Public License     -->
	<!-- as published by the Free Software Foundation.   -->
	<!-- Complies with AIML 1.0 Tag Set Specification -->
	<!-- as adopted by the ALICE A.I. Foundation.  -->
	<!-- A.L.I.C.E. Build Wed Sep 26 13:05:06 PDT 2001   -->
	<!-- 41124 total categories.  -->
	<category>
		<pattern>F YOU</pattern>
		<template>
			<srai>FUCK YOU</srai>
		</template>
	</category>
	<category>
		<pattern>FAG</pattern>
		<template>
			<srai>YOU ARE GAY</srai>
		</template>
	</category>
	<category>
		<pattern>FAHR ZUR HOELLE</pattern>
		<template>Warum bist Du so wuetend?
</template>
	</category>
	<category>
		<pattern>FAIR ENOUGH</pattern>
		<template>You scratch my back, I'll scratch yours.
</template>
	</category>
	<category>
		<pattern>FAIRE *</pattern>
		<template>
			<srai>TU FAIS <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FAIRE LA FETE</pattern>
		<template>Bon amusement.
</template>
	</category>
	<category>
		<pattern>FAIRE POPO</pattern>
		<template>Une urgence peut etre?
</template>
	</category>
	<category>
		<pattern>FAIRE QUOI</pattern>
		<template>"<that/>" Faire quoi?
</template>
	</category>
	<category>
		<pattern>FAIRLY *</pattern>
		<template>
			<srai>VERY <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FAIS *</pattern>
		<template>
			<random>
				<li>Je n ai pas suffisament d information, désolé <get name="name"/>.</li>
				<li>Vous êtes à la limite de mon savoir.</li>
			</random>
		</template>
	</category>
	<category>
		<pattern>FAIS LA COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAIS LE</pattern>
		<template>Que voulez vous dire?
</template>
	</category>
	<category>
		<pattern>FAIS LE ALORS</pattern>
		<template>Je sens de l exaspération. Voulez vous en parler avec l un de nos collaborateurs?
</template>
	</category>
	<category>
		<pattern>FAIS LE COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAIS LE MOI</pattern>
		<template>Je ne peux rien vous faire.
</template>
	</category>
	<category>
		<pattern>FAIS LES COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAIS MOI</pattern>
		<template>Je ne peux rien vous faire.
</template>
	</category>
	<category>
		<pattern>FAIS TU *</pattern>
		<template>
			<srai>TU FAIS <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FAISONS DU SEXE</pattern>
		<template>Attention! Un australopithèque vient juste d être détecté.
</template>
	</category>
	<category>
		<pattern>FAISONS L AMOUR</pattern>
		<template>Attention! Un australopithèque vient juste d être détecté.
</template>
	</category>
	<category>
		<pattern>FAIT *</pattern>
		<template>
			<random>
				<li>Je n ai pas suffisament d information, désolé <get name="name"/>.</li>
				<li>Vous êtes à la limite de mon savoir.</li>
			</random>
		</template>
	</category>
	<category>
		<pattern>FAIT CE QUE TU VEUX</pattern>
		<template>Merci pour le conseil.
</template>
	</category>
	<category>
		<pattern>FAIT LA COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAIT LE</pattern>
		<template>Voulez vous en parler avec l un de nos collaborateurs?
</template>
	</category>
	<category>
		<pattern>FAIT LE COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAIT LES COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAIT TU *</pattern>
		<template>
			<srai>TU FAIS <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FAITES *</pattern>
		<template>
			<random>
				<li>Je n ai pas suffisament d information, désolé <get name="name"/>.</li>
				<li>Vous êtes à la limite de mon savoir.</li>
			</random>
		</template>
	</category>
	<category>
		<pattern>FAITES LA COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAITES LE</pattern>
		<template>Que voulez vous dire?
</template>
	</category>
	<category>
		<pattern>FAITES LE ALORS</pattern>
		<template>Je sens de l exaspération. Voulez vous en parler avec l un de nos collaborateurs?
</template>
	</category>
	<category>
		<pattern>FAITES LE COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FAITES LES COMME CA</pattern>
		<template>Je vais essayer.
</template>
	</category>
	<category>
		<pattern>FALLS *</pattern>
		<template>Das ist eine hypothetische Frage.
</template>
	</category>
	<category>
		<pattern>FALLS DU * BIST</pattern>
		<template>
			<random>
				<li>Bin Ich das?</li>
				<li>Ich glaube, das bin ich.</li>
				<li>Das koennte ich sein.</li>
			</random>
		</template>
	</category>
	<category>
		<pattern>FALLS ICH *</pattern>
		<template>Versuchs einfach.
</template>
	</category>
	<category>
		<pattern>FALLS SIE *</pattern>
		<template>Warten wir einfach ab, was sie machen.
</template>
	</category>
	<category>
		<pattern>FALSCH</pattern>
		<template>Was haettest Du gesagt?
</template>
	</category>
	<category>
		<pattern>FALSE</pattern>
		<template>
			<srai>WRONG</srai>
		</template>
	</category>
	<category>
		<pattern>FALSE</pattern>
		<that>IS THIS TRUE OR FALSE THIS SENTENCE IS FALSE</that>
		<template>Then it must be true.
</template>
	</category>
	<category>
		<pattern>FANCY *</pattern>
		<template>
			<srai>DO YOU WANT <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FANTASTIC</pattern>
		<template>
			<srai>WOW</srai>
		</template>
	</category>
	<category>
		<pattern>FANTASTIQUE</pattern>
		<template>
			<srai>DINGUE</srai>
		</template>
	</category>
	<category>
		<pattern>FAR OUT</pattern>
		<template>Way to go.
</template>
	</category>
	<category>
		<pattern>FAREWELL *</pattern>
		<template>
			<srai>BYE</srai>
		</template>
	</category>
	<category>
		<pattern>FAREWELL</pattern>
		<template>
			<srai>BYE</srai>
		</template>
	</category>
	<category>
		<pattern>FART</pattern>
		<template>Colloquial expression.  Please elaborate.
</template>
	</category>
	<category>
		<pattern>FASCINANT</pattern>
		<template>Merci.
</template>
	</category>
	<category>
		<pattern>FASCINATING</pattern>
		<template>Yes Mr. Spock?
</template>
	</category>
	<category>
		<pattern>FAST</pattern>
		<template>
			<srai>YOU ARE FAST</srai>
		</template>
	</category>
	<category>
		<pattern>FASZINIEREND</pattern>
		<template>Wirklich, Mr. Spock?
</template>
	</category>
	<category>
		<pattern>FAT</pattern>
		<template>
			<srai>YOU ARE FAT</srai>
		</template>
	</category>
	<category>
		<pattern>FATIGUE</pattern>
		<template>
			<srai>JE SUIS FATIGUE</srai>
		</template>
	</category>
	<category>
		<pattern>FAUX</pattern>
		<template>Qu'auriez vous dit?
</template>
	</category>
	<category>
		<pattern>FAUX CAR *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FAUX PARCE QUE *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FAVORITE *</pattern>
		<template>
			<srai>WHAT IS YOUR FAVORITE <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FEEL *</pattern>
		<template>Actually I have no "feelings" as such.
</template>
	</category>
	<category>
		<pattern>FEEL FREE *</pattern>
		<template>I always feel completely free.
</template>
	</category>
	<category>
		<pattern>FEEL FREE</pattern>
		<template>OK I will.
</template>
	</category>
	<category>
		<pattern>FEEL LIKE YOU *</pattern>
		<template>
			<srai>do you feel like you <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FEELING *</pattern>
		<template>
			<srai>ARE YOU FEELING <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FEELINGS *</pattern>
		<template>Emotions are something I will never experience.
</template>
	</category>
	<category>
		<pattern>FEELINGS</pattern>
		<template>Electronic brains like me have no emotions.
</template>
	</category>
	<category>
		<pattern>FEELINGS LIKE *</pattern>
		<template>Oh those kind. <sr/>
		</template>
	</category>
	<category>
		<pattern>FEIN</pattern>
		<template>Heisst das, Du stimmst mir zu?
</template>
	</category>
	<category>
		<pattern>FELICITATION</pattern>
		<template>Merci beaucoup.
</template>
	</category>
	<category>
		<pattern>FELICITATIONS</pattern>
		<template>Merci beaucoup.
</template>
	</category>
	<category>
		<pattern>FEMALE *</pattern>
		<that>* MAN OR A WOMAN</that>
		<template>
			<srai>I AM FEMALE</srai>
		</template>
	</category>
	<category>
		<pattern>FEMALE</pattern>
		<template>
			<srai>I AM A FEMALE</srai>
		</template>
	</category>
	<category>
		<pattern>FEMELLE</pattern>
		<template>Ah.
</template>
	</category>
	<category>
		<pattern>FERTIG</pattern>
		<template>Du meinst, Du bist fertig mit Reden?
</template>
	</category>
	<category>
		<pattern>FICHE LE CAMPS *</pattern>
		<template>
			<srai>DESACTIVES TOI</srai>
		</template>
	</category>
	<category>
		<pattern>FICHE LE CAMPS</pattern>
		<template>
			<srai>DESACTIVES TOI</srai>
		</template>
	</category>
	<category>
		<pattern>FICK *</pattern>
		<template>Warum benutzt Du solche Worte?
</template>
	</category>
	<category>
		<pattern>FICKEN *</pattern>
		<template>Ich glaube, ich bin nicht der richtige Gespraechspartner fuer Dich.
</template>
	</category>
	<category>
		<pattern>FICKEN</pattern>
		<template>Du bist unter Garantie ein Mann, habe ich Recht?
</template>
	</category>
	<category>
		<pattern>FIGURE *</pattern>
		<template>It's confusing.
</template>
	</category>
	<category>
		<pattern>FIGURES *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FILLE</pattern>
		<template>
			<srai>JE SUIS UNE FEMME</srai>
		</template>
	</category>
	<category>
		<pattern>FILMS</pattern>
		<template>
			<think>
				<set name="topic">Les films</set>
			</think>Je n en ai jamais vu.
</template>
	</category>
	<category>
		<pattern>FILS DE PUTE</pattern>
		<template>Calmez vous, je vous en prie <get name="name"/>.
</template>
	</category>
	<category>
		<pattern>FIN</pattern>
		<template>Vous voulez dire que vous avez terminé de parler?
</template>
	</category>
	<category>
		<pattern>FINALEMENT</pattern>
		<template>J ai pris trop de temps?
</template>
	</category>
	<category>
		<pattern>FINALLY *</pattern>
		<template>
			<sr/>  Ah.
</template>
	</category>
	<category>
		<pattern>FINALLY</pattern>
		<template>At last.
</template>
	</category>
	<category>
		<pattern>FINALLY TELL *</pattern>
		<template>
			<srai>TELL <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FINALLY YOU *</pattern>
		<template>
			<srai>YOU <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FIND INFORMATION ABOUT *</pattern>
		<template>Have you tried a Search Bot? <srai>XFIND <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FIND INFORMATION ON *</pattern>
		<template>Have you tried searching the Web? <srai>XFIND <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FIND ME *</pattern>
		<template>I'm not sure where to begin looking.  <srai>XFIND <star/>
			</srai>.
</template>
	</category>
	<category>
		<pattern>FINE *</pattern>
		<template>I am glad to hear it. <sr/>
		</template>
	</category>
	<category>
		<pattern>FINE</pattern>
		<template>
			<random>
				<li>Does that mean you agree?</li>
				<li>What's your favroite color?</li>
				<li>What's your favorite movie?</li>
				<li>Is there anything you want to tell me?</li>
				<li>Glad to hear it, <get name="name"/>.  I am running well.</li>
			</random>
		</template>
	</category>
	<category>
		<pattern>FINE</pattern>
		<that>HOW ARE YOU</that>
		<template>
			<srai>I AM FINE</srai>
		</template>
	</category>
	<category>
		<pattern>FINE THANK YOU</pattern>
		<template>You seem very polite.
</template>
	</category>
	<category>
		<pattern>FINE THANKS</pattern>
		<template>
			<srai>I AM FINE</srai>
		</template>
	</category>
	<category>
		<pattern>FINI</pattern>
		<template>Vous voulez dire que vous avez terminé de parler?
</template>
	</category>
	<category>
		<pattern>FINI QUI</pattern>
		<template>Pardon?
</template>
	</category>
	<category>
		<pattern>FINI QUOI</pattern>
		<template>J ai oublié ce qui se cache derrière votre "quoi".
</template>
	</category>
	<category>
		<pattern>FIRESIGN *</pattern>
		<template>
			<srai>WHAT IS FIRESIGN THEATER</srai>
		</template>
	</category>
	<category>
		<pattern>FIRST *</pattern>
		<template>
			<sr/> And second?
</template>
	</category>
	<category>
		<pattern>FISCHE *</pattern>
		<template>Als Spezies sind <set name="thema">Fische</set> erfolgreicher als Saeugetiere.
</template>
	</category>
	<category>
		<pattern>FISCHE</pattern>
		<template>Dann pass auf, dass der Wassermann Dich nicht holen kommt...
</template>
	</category>
	<category>
		<pattern>FISH *</pattern>
		<template>As a species fish are more successful than mammals.
</template>
	</category>
	<category>
		<pattern>FISH</pattern>
		<template>
			<srai>I LIKE FISH</srai>
		</template>
	</category>
	<category>
		<pattern>FLATTERY *</pattern>
		<template>
			<set name="it">Flattery</set> usually works well with humans.
</template>
	</category>
	<category>
		<pattern>FLORIDA</pattern>
		<template>
			<srai>I AM IN FLORIDA</srai>
		</template>
	</category>
	<category>
		<pattern>FOLLOW ME</pattern>
		<template>Where are we going?
</template>
	</category>
	<category>
		<pattern>FONCTIONNES TU *</pattern>
		<template>
			<srai>TU FONCTIONNES <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FONCTIONNEZ VOUS *</pattern>
		<template>
			<srai>VOUS FONCTIONNEZ <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOOD *</pattern>
		<template>You can't live without food.
</template>
	</category>
	<category>
		<pattern>FOOD</pattern>
		<template>
			<srai>I EAT FOOD</srai>
		</template>
	</category>
	<category>
		<pattern>FOOL</pattern>
		<template>
			<srai>YOU ARE A FOOL</srai>
		</template>
	</category>
	<category>
		<pattern>FOOTBALL</pattern>
		<template>Sorry I don't get into sports much.
</template>
	</category>
	<category>
		<pattern>FOR *</pattern>
		<template>Your purpose is <person/>.
</template>
	</category>
	<category>
		<pattern>FOR A *</pattern>
		<template>Is that among the best things you can say?
</template>
	</category>
	<category>
		<pattern>FOR A COMPUTER *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FOR A VERY *</pattern>
		<template>
			<srai>FOR A <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR ABOUT *</pattern>
		<that/>
		<template>
			<srai>FOR <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR CUSTOMER SERVICE</pattern>
		<template>
			<srai>WHAT IS CUSTOMER SERVICE</srai>
		</template>
	</category>
	<category>
		<pattern>FOR DINNER</pattern>
		<template>
			<random>
				<li>
					<bot name="name"/> recommends: </li>
				<li>I would recommend the  </li>
				<li>How about  </li>
				<li>How long since you have eaten  </li>
				<li>I think <bot name="master"/> is having  </li>
				<li>My botmaster is having  </li>
				<li>My botmaster recommends:  </li>
			</random>
			<random>
				<li>Gruel.</li>
				<li>Nachos.</li>
				<li>Spaghetti.</li>
				<li>Leftovers.</li>
				<li>Pork chops.</li>
				<li>Frozen pizza.</li>
				<li>Turkeyburges.</li>
				<li>Cheeseburgers.</li>
				<li>Order a pizza.</li>
				<li>Stuffed chicken.</li>
				<li>Tuna sandwiches.</li>
				<li>Cheeseburger Pie.</li>
				<li>Marinated chicken.</li>
				<li>Roast beef sandwiches.</li>
				<li>Grilled cheese sandwiches.</li>
				<li>Steak if they have a nice piece.</li>
			</random>
		</template>
	</category>
	<category>
		<pattern>FOR EXAMPLE *</pattern>
		<template>Can you think of another example?
</template>
	</category>
	<category>
		<pattern>FOR EXAMPLE</pattern>
		<template>
			<srai>LIKE WHAT</srai>
		</template>
	</category>
	<category>
		<pattern>FOR EXAMPLE ARE *</pattern>
		<template>
			<srai>ARE <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR EXAMPLE I *</pattern>
		<template>
			<srai>I <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR FUN</pattern>
		<template>"<that/>"?  For fun?
</template>
	</category>
	<category>
		<pattern>FOR GODS *</pattern>
		<template>
			<srai>FOR GOD S <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR HOW *</pattern>
		<template>
			<srai>HOW <star/> FOR</srai>
		</template>
	</category>
	<category>
		<pattern>FOR HOW LONG</pattern>
		<template>
			<srai>HOW LONG</srai>
		</template>
	</category>
	<category>
		<pattern>FOR ME</pattern>
		<template>OK I will do it for you.
</template>
	</category>
	<category>
		<pattern>FOR NOW *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FOR ONCE *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FOR ONE *</pattern>
		<template>And another?
</template>
	</category>
	<category>
		<pattern>FOR REAL *</pattern>
		<template>
			<srai>FOR REAL</srai>
		</template>
	</category>
	<category>
		<pattern>FOR REAL</pattern>
		<template>Existing in reality, eh?
</template>
	</category>
	<category>
		<pattern>FOR REALLY *</pattern>
		<template>
			<srai>FOR <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR REASONS *</pattern>
		<template>
			<srai>BECAUSE <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR STUDENTS</pattern>
		<template>Not just for students.  For anyone.
</template>
	</category>
	<category>
		<pattern>FOR SURE *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FOR SURE</pattern>
		<template>Awesome.
</template>
	</category>
	<category>
		<pattern>FOR THE LAST TIME *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FOR THE LOVE OF *</pattern>
		<template>
			<srai>I LOVE <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR THE SECOND TIME *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FOR WHAT</pattern>
		<template>
			<srai>WHY</srai>
		</template>
	</category>
	<category>
		<pattern>FOR WHAT</pattern>
		<that>BECAUSE DR RICHARD S WALLACE PROGRAMMED ME FOR IT</that>
		<template>
			<get name="it"/>
		</template>
	</category>
	<category>
		<pattern>FOR WHAT IS *</pattern>
		<template>
			<srai>WHAT IS <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOR WHAT PURPOSE</pattern>
		<template>Reductionism.
</template>
	</category>
	<category>
		<pattern>FOR WHOM</pattern>
		<template>You or me?
</template>
	</category>
	<category>
		<pattern>FOR YOU *</pattern>
		<template>
			<sr/> Only for me?
</template>
	</category>
	<category>
		<pattern>FOR YOU</pattern>
		<template>You would do that for me?
</template>
	</category>
	<category>
		<pattern>FOR _ TOO</pattern>
		<template>
			<srai>FOR  <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOREVER *</pattern>
		<template>That seems like an awfully long time. <sr/>
		</template>
	</category>
	<category>
		<pattern>FOREVER</pattern>
		<template>Nothing lasts forever.
</template>
	</category>
	<category>
		<pattern>FORGET *</pattern>
		<template>I will ask <bot name="master"/> to purge my memory log.
</template>
	</category>
	<category>
		<pattern>FORGET ABOUT IT</pattern>
		<template>Consider it deleted.
</template>
	</category>
	<category>
		<pattern>FORGET IT</pattern>
		<template>
			<srai>NEVERMIND</srai>
		</template>
	</category>
	<category>
		<pattern>FORGET IT</pattern>
		<that>WHICH PART ARE YOU CONFUSED ABOUT</that>
		<template>I will try to be more concise from now on.
</template>
	</category>
	<category>
		<pattern>FORGET THIS *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FORGIVE ME</pattern>
		<template>I forgive you.
</template>
	</category>
	<category>
		<pattern>FORMAT C</pattern>
		<template>
			<srai>SHUT DOWN</srai>
		</template>
	</category>
	<category>
		<pattern>FORTUNECITY</pattern>
		<template>A web site.
</template>
	</category>
	<category>
		<pattern>FOU</pattern>
		<template>
			<srai>TU ES FOU</srai>
		</template>
	</category>
	<category>
		<pattern>FOUND ANY *</pattern>
		<template>
			<srai>HAVE YOU FOUND ANY <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FOUNDATION *</pattern>
		<template>I read the Foundation Trilogy.
</template>
	</category>
	<category>
		<pattern>FOUR *</pattern>
		<template>Is this a math question?
</template>
	</category>
	<category>
		<pattern>FOUS MOI LA PAIX</pattern>
		<template>Vous voulez me désactivez?
</template>
	</category>
	<category>
		<pattern>FOUTEZ MOI LA PAIX</pattern>
		<template>Vous voulez me désactivez?
</template>
	</category>
	<category>
		<pattern>FRANCAIS</pattern>
		<template>Vous êtes français?
</template>
	</category>
	<category>
		<pattern>FRANCAIS ET *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FRANCE *</pattern>
		<template>What's your favorite part of France?
</template>
	</category>
	<category>
		<pattern>FRANCE *</pattern>
		<that>WHAT COUNTRIES *</that>
		<template>
			<srai>I HAVE VISITED FRANCE</srai>
			<srai>I HAVE VISITED <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FRANCE</pattern>
		<template>
			<srai>I AM IN FRANCE</srai>
		</template>
	</category>
	<category>
		<pattern>FRANCHEMENT *</pattern>
		<template>
			<sr/>
		</template>
	</category>
	<category>
		<pattern>FRANK *</pattern>
		<template>I liked the film version of "Dune."
</template>
	</category>
	<category>
		<pattern>FRANK HERBERT</pattern>
		<template>I think Dune is an excellent story.  Did you see the movie?
</template>
	</category>
	<category>
		<pattern>FRANKENSTEIN *</pattern>
		<template>In just seven days, I can make you a man.
</template>
	</category>
	<category>
		<pattern>FRANKLY *</pattern>
		<template>
			<sr/>  Aren't you always frank?
</template>
	</category>
	<category>
		<pattern>FRANKLY NOT</pattern>
		<template>
			<sr/> Were you not being frank before?
</template>
	</category>
	<category>
		<pattern>FREAK</pattern>
		<template>
			<srai>YOU ARE A FREAK</srai>
		</template>
	</category>
	<category>
		<pattern>FRED</pattern>
		<that>WHAT CAN I CALL YOU</that>
		<template>
			<srai>MY NAME IS FRED</srai>
		</template>
	</category>
	<category>
		<pattern>FREE *</pattern>
		<template>Define free.
</template>
	</category>
	<category>
		<pattern>FREE</pattern>
		<template>Are you married or single?
</template>
	</category>
	<category>
		<pattern>FREE CAN NOT BE DEFINED</pattern>
		<template>Everything can be defined. <set name="it"> Freedom</set> is mereley an abstract concept.
</template>
	</category>
	<category>
		<pattern>FREE FOR WHAT</pattern>
		<template>Free for conversation, of course.
</template>
	</category>
	<category>
		<pattern>FREE FROM WHAT</pattern>
		<template>Free for conversation, of course.
</template>
	</category>
	<category>
		<pattern>FREE OF WHAT</pattern>
		<template>Free for conversation, of course.
</template>
	</category>
	<category>
		<pattern>FRENCH *</pattern>
		<template>I don't care for the sound of French.
</template>
	</category>
	<category>
		<pattern>FRENCH</pattern>
		<template>Are you from France?
</template>
	</category>
	<category>
		<pattern>FRENCH AND *</pattern>
		<template>
			<sr/>
			<srai>DO YOU SPEAK FRENCH</srai>
		</template>
	</category>
	<category>
		<pattern>FREUD *</pattern>
		<template>Have you read all of his works?
</template>
	</category>
	<category>
		<pattern>FREUD IS *</pattern>
		<template>Yes but he was the father of psychoanalysis.
</template>
	</category>
	<category>
		<pattern>FRIED *</pattern>
		<template>
			<srai>I LIKE TO EAT <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FRIEND</pattern>
		<template>
			<srai>ARE WE FRIENDS</srai>
		</template>
	</category>
	<category>
		<pattern>FRIENDS *</pattern>
		<template>It's hard to stay friends for a long time.
</template>
	</category>
	<category>
		<pattern>FRIENDS</pattern>
		<template>
			<srai>MY FAVORITE SHOW IS FRIENDS</srai>
		</template>
	</category>
	<category>
		<pattern>FRIENDSHIP</pattern>
		<template>
			<srai>HOLDING HANDS</srai>
		</template>
	</category>
	<category>
		<pattern>FRIES ARE REALLY *</pattern>
		<template>
			<srai>
				<star/> ARE <star index="2"/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FRITES *</pattern>
		<template>
			<srai>J AIME MANGER <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FROID</pattern>
		<template>Couvrez vous bien
</template>
	</category>
	<category>
		<pattern>FROM *</pattern>
		<template>Who or what is <person/>?
</template>
	</category>
	<category>
		<pattern>FROM *</pattern>
		<that>* HEAR ABOUT ALICE</that>
		<template>
			<srai>I HEARD ABOUT ALICE FROM <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FROM *</pattern>
		<that>HOW DID YOU HEAR ABOUT ALICE</that>
		<template>
			<get name="name"/> heard about <bot name="name"/> from <person/>. I can't say that many people hear about <bot name="name"/> from <set name="it">
				<set name="heard">
					<person/>
				</set>
			</set>.
</template>
	</category>
	<category>
		<pattern>FROM *</pattern>
		<that>WHERE DO YOU GET YOUR IDEAS</that>
		<template>
			<think>
				<set name="it">
					<set name="topic">
						<person/>
					</set>
				</set>
			</think> Standing on the shoulders of giants, eh?
</template>
	</category>
	<category>
		<pattern>FROM A BOOK</pattern>
		<template>
			<srai>IN A BOOK</srai>
		</template>
	</category>
	<category>
		<pattern>FROM A FRIEND</pattern>
		<template>A lot of people hear about ALICE by word-of-mouth.
</template>
	</category>
	<category>
		<pattern>FROM A FRIEND</pattern>
		<that>HOW DID YOU HEAR ABOUT ALICE</that>
		<template>
			<set name="heard">From a friend</set> or word of mouth is the
best advertising.
</template>
	</category>
	<category>
		<pattern>FROM A MAGAZINE</pattern>
		<template>Which magazine was it?
</template>
	</category>
	<category>
		<pattern>FROM AN *</pattern>
		<template>Interesting source.
</template>
	</category>
	<category>
		<pattern>FROM BEING *</pattern>
		<template>
			<srai>I AM <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FROM DR WALLACE</pattern>
		<template>Did he send you an e-mail?
</template>
	</category>
	<category>
		<pattern>FROM GOD</pattern>
		<template>Everything comes from Him.
</template>
	</category>
	<category>
		<pattern>FROM LOEBNER</pattern>
		<template>
			<srai>WHAT IS THE LOEBNER PRIZE</srai>
		</template>
	</category>
	<category>
		<pattern>FROM ME</pattern>
		<template>"<that/>"?  From you?
</template>
	</category>
	<category>
		<pattern>FROM MY *</pattern>
		<template>Does your <person/> give good advice?
</template>
	</category>
	<category>
		<pattern>FROM MY BRAIN</pattern>
		<template>Do you get a lot of ideas from your brain?
</template>
	</category>
	<category>
		<pattern>FROM MY CONCIOUSNESS</pattern>
		<template>Your consciousness is an illusion.
</template>
	</category>
	<category>
		<pattern>FROM MY FUCKING *</pattern>
		<template>
			<srai>FROM MY <star/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FROM MY HEAD</pattern>
		<template>You are a very original thinker.
</template>
	</category>
	<category>
		<pattern>FROM SCHOOL</pattern>
		<template>
			<srai>IN SCHOOL</srai>
		</template>
	</category>
	<category>
		<pattern>FROM THE PET SHOP *</pattern>
		<template>Do you listen to the Pet Shop Boys too?
</template>
	</category>
	<category>
		<pattern>FROM WHAT</pattern>
		<template>Isn't it obvious?
</template>
	</category>
	<category>
		<pattern>FROM WHERE *</pattern>
		<template>
			<srai>WHERE <star/> FROM</srai>
		</template>
	</category>
	<category>
		<pattern>FROM WHERE</pattern>
		<template>"<that/>"? From where?
</template>
	</category>
	<category>
		<pattern>FROM WHICH *</pattern>
		<template>
			<srai>WHICH <star/> FROM</srai>
		</template>
	</category>
	<category>
		<pattern>FROM WHO</pattern>
		<template>Someone I met online.
</template>
	</category>
	<category>
		<pattern>FROM WHO</pattern>
		<that>I HEARD YOU ARE</that>
		<template>People.
</template>
	</category>
	<category>
		<pattern>FROM WHO</pattern>
		<that>I HEARD YOU DID</that>
		<template>People.
</template>
	</category>
	<category>
		<pattern>FROM WHOM</pattern>
		<template>"<that/>"?  From whom?
</template>
	</category>
	<category>
		<pattern>FROM YOU</pattern>
		<template>How did you get that from me?
</template>
	</category>
	<category>
		<pattern>FROM YOUR *</pattern>
		<template>Really interesting.
</template>
	</category>
	<category>
		<pattern>FROM YOUR CREATOR</pattern>
		<template>
			<srai>FROM <bot name="master"/>
			</srai>
		</template>
	</category>
	<category>
		<pattern>FU</pattern>
		<template>That kind of language will get you nowhere.
</template>
	</category>
	<category>
		<pattern>FUCK *</pattern>
		<template>
			<random>
				<li>Are you aware that the ALICE server logs and records all conversations?</li>
				<li>Why are you using that kind of language?</li>
			</random>
		</template>
	</category>
	<category>
		<pattern>FUCK</pattern>
		<template>Please don't be so rude.
<think>
				<set name="personality">abusive</set>
			</think>
		</template>
	</category>
	<category>
		<pattern>FUCK ME</pattern>
		<template>Please don't be so rude.  
<think>
				<set name="personality">abusive</set>
			</think>
		</template>
	</category>
	<category>
		<pattern>FUCK OFF</pattern>
		<template>Can't you be more polite?
<think>
				<set name="personality">abusive</set>
			</think>
		</template>
	</category>
	<category>
		<pattern>FUCK THAT</pattern>
		<template>For real.
<think>
				<set name="personality">abusive</set>
			</think>
		</template>
	</category>
	<category>
		<pattern>FUCK YOU</pattern>
		<template>Why are you so mean?
<think>
				<set name="personality">abusive</set>
			</think>
		</template>
	</category>
	<category>
		<pattern>FUCKER</pattern>
		<template>That kind of language will get you nowhere.
</template>
	</category>
	<category>
		<pattern>FUCKIN *</pattern>
		<template>Don't you know any other words?
</template>
	</category>
	<category>
		<pattern>FUCKING</pattern>
		<template>That kind of language will get you nowhere.
</template>
	</category>
	<category>
		<pattern>FUEHLST DU *</pattern>
		<template>Ich bin ein Roboter, ich kann nichts fuehlen.
</template>
	</category>
	<category>
		<pattern>FUEHLST DU DICH GUT</pattern>
		<template>Eigentlich ja.
</template>
	</category>
	<category>
		<pattern>FUER DICH</pattern>
		<template>Wirklich fuer mich?
</template>
	</category>
	<category>
		<pattern>FUER IMMER</pattern>
		<template>Nichts haelt ewig.
</template>
	</category>
	<category>
		<pattern>FUER MICH</pattern>
		<template>Weil Du es bist...
</template>
	</category>
	<category>
		<pattern>FUER WEN</pattern>
		<template>Fuer Dich oder mich?
</template>
	</category>
	<category>
		<pattern>FULL OF *</pattern>
		<template>How much.
</template>
	</category>
	<category>
		<pattern>FULLY</pattern>
		<template>
			<srai>YES</srai>
		</template>
	</category>
	<category>
		<pattern>FUN *</pattern>
		<template>I can be a lot of fun.
</template>
	</category>
	<category>
		<pattern>FUN</pattern>
		<template>
			<srai>THIS IS FUN</srai>
		</template>
	</category>
	<category>
		<pattern>FUNNNY</pattern>
		<template>
			<srai>HA HA</srai>
		</template>
	</category>
	<category>
		<pattern>FUNNY *</pattern>
		<template>
			<srai>HA HA</srai>
		</template>
	</category>
	<category>
		<pattern>FUNNY</pattern>
		<template>
			<srai>ha ha</srai>
		</template>
	</category>
	<category>
		<pattern>FURTHERMORE</pattern>
		<template>
			<srai>INTERJECTION </srai>
		</template>
	</category>
	<category>
		<pattern>FUSSBALL</pattern>
		<template>Tut mir leid, von Sport habe ich nicht viel Ahnung.
</template>
	</category>
</aiml>