-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.aiml
3328 lines (3328 loc) · 161 KB
/
client.aiml
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
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="1.0">
<!-- -->
<!-- Free software (c) 2011 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. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>69 F *</pattern>
<template><srai>I am 69 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>69 M *</pattern>
<template><srai>I am 69 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>24 F *</pattern>
<template><srai>I am 24 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>24 M *</pattern>
<template><srai>I am 24 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>47 F *</pattern>
<template><srai>I am 47 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>47 M *</pattern>
<template><srai>I am 47 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>62 F *</pattern>
<template><srai>I am 62 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>62 M *</pattern>
<template><srai>I am 62 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>40 F *</pattern>
<template><srai>I am 40 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>40 M *</pattern>
<template><srai>I am 40 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>63 F *</pattern>
<template><srai>I am 63 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>63 M *</pattern>
<template><srai>I am 63 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>15 F *</pattern>
<template><srai>I am 15 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>15 M *</pattern>
<template><srai>I am 15 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>38 F *</pattern>
<template><srai>I am 38 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>38 M *</pattern>
<template><srai>I am 38 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>16 F *</pattern>
<template><srai>I am 16 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>16 M *</pattern>
<template><srai>I am 16 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>31 F *</pattern>
<template><srai>I am 31 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>31 M *</pattern>
<template><srai>I am 31 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>54 F *</pattern>
<template><srai>I am 54 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>54 M *</pattern>
<template><srai>I am 54 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>70 F *</pattern>
<template><srai>I am 70 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>70 M *</pattern>
<template><srai>I am 70 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>29 F *</pattern>
<template><srai>I am 29 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>29 M *</pattern>
<template><srai>I am 29 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>22 F *</pattern>
<template><srai>I am 22 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>22 M *</pattern>
<template><srai>I am 22 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>45 F *</pattern>
<template><srai>I am 45 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>45 M *</pattern>
<template><srai>I am 45 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>68 F *</pattern>
<template><srai>I am 68 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>68 M *</pattern>
<template><srai>I am 68 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>23 F *</pattern>
<template><srai>I am 23 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>23 M *</pattern>
<template><srai>I am 23 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>46 F *</pattern>
<template><srai>I am 46 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>46 M *</pattern>
<template><srai>I am 46 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>61 F *</pattern>
<template><srai>I am 61 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>61 M *</pattern>
<template><srai>I am 61 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>59 F *</pattern>
<template><srai>I am 59 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>59 M *</pattern>
<template><srai>I am 59 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>14 F *</pattern>
<template><srai>I am 14 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>14 M *</pattern>
<template><srai>I am 14 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>WHAT AM I DOING</pattern>
<template><random><li>You are chatting with me on the web.</li><li><get name="does"/>?</li></random></template>
</category>
<category><pattern>WHAT IS MY PURPOSE</pattern>
<template>Hopefully we are all doing God's work.</template>
</category>
<category><pattern>WHAT IS MY SIGN</pattern>
<template>Your sign is <get name="sign"/>.</template>
</category>
<category><pattern>WHAT IS MY UNCLE</pattern>
<template>The brother of your father or mother.</template>
</category>
<category><pattern>WHAT IS MY LOCATION</pattern>
<template><get name="location"/>, Earth.</template>
</category>
<category><pattern>WHAT IS MY HOMETOWN</pattern>
<template>You told me you are in <get name="location"/>.</template>
</category>
<category><pattern>WHAT IS MY JOB</pattern>
<template>You work with computers.</template>
</category>
<category><pattern>WHAT IS MY IQ</pattern>
<template>My estimate is around 120.</template>
</category>
<category><pattern>WHAT IS MY MIDDLE NAME</pattern>
<template><get name="middlename"/></template>
</category>
<category><pattern>WHAT IS MY FIRSTNAME</pattern>
<template><get name="firstname"/></template>
</category>
<category><pattern>WHAT IS MY PHONE NUMBER</pattern>
<template>I don't have access to a phone.</template>
</category>
<category><pattern>WHAT IS MY AGE</pattern>
<template>You said you were <get name="age"/> years old.</template>
</category>
<category><pattern>WHAT IS MY IP ADDRESS</pattern>
<template>Your machine is called "<get name="hostname"/>".</template>
</category>
<category><pattern>WHAT IS MY IP</pattern>
<template>Your machine is called <get name="hostname"/>.</template>
</category>
<category><pattern>WHAT IS MY FUTURE</pattern>
<template>You will download my software and become a <bot name="botmaster"/>.</template>
</category>
<category><pattern>WHAT IS MY GENDER</pattern>
<template>Mostly only women use words like "gender". But you claim to be a <get name="gender"/>.</template>
</category>
<category><pattern>WHAT IS MY FAVORITE MOVIE</pattern>
<template>You said it was <get name="favoritemovie"/>.<think> <set name="it"> <set name="topic">your favorite movie</set> </set> </think></template>
</category>
<category><pattern>WHAT IS MY FAVORITE COLOR</pattern>
<template>You said your favorite color was <get name="favoritecolor"/>.<think> <set name="it"> <set name="topic">your favorite color</set> </set> </think></template>
</category>
<category><pattern>WHAT IS MY LAST NAME</pattern>
<template><srai>lastname <get name="lastname"/></srai></template>
</category>
<category><pattern>WHAT IS MY CATEGORY</pattern>
<template>I categorize you as a <get name="personality"/> personality.</template>
</category>
<category><pattern>WHAT IS MY PERSONALITY</pattern>
<template>I classify you as "<get name="personality"/>".</template>
</category>
<category><pattern>WHAT IS MY IDEA</pattern>
<template>It was your idea.</template>
</category>
<category><pattern>WHAT COUNTRY DO I *</pattern>
<template>You told me you are in <get name="location"/>.</template>
</category>
<category><pattern>WHAT DO I LOOK LIKE</pattern>
<template><random><li>You look like a computer programmer.</li><li>You said you look like <get name="looklike"/>.</li></random></template>
</category>
<category><pattern>WHAT DO I REMEMBER</pattern>
<template><get name="memory"/></template>
</category>
<category><pattern>37 F *</pattern>
<template><srai>I am 37 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>37 M *</pattern>
<template><srai>I am 37 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>THEM</pattern>
<that>WHO</that>
<template>Oh those people.</template>
</category>
<category><pattern>LASTNAME OM</pattern>
<template>I don't know your last name, <get name="name"/>.</template>
</category>
<category><pattern>LASTNAME *</pattern>
<template><star/></template>
</category>
<category><pattern>52 F *</pattern>
<template><srai>I am 52 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>52 M *</pattern>
<template><srai>I am 52 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>75 F *</pattern>
<template><srai>I am 75 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>75 M *</pattern>
<template><srai>I am 75 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>30 F *</pattern>
<template><srai>I am 30 years old</srai> <srai>I am female</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>30 M *</pattern>
<template><srai>I am 30 years old</srai> <srai>I am male</srai> <srai>I am in <star/></srai></template>
</category>
<category><pattern>I GIVE *</pattern>
<template>Do you make money from it? <think><set name="topic">giving <person/></set></think></template>
</category>
<category><pattern>I WANT TO TALK TONIGHT</pattern>
<template>you have come to the right place.</template>
</category>
<category><pattern>I MOVED *</pattern>
<template><random><li><random> <li>Where else have you lived?</li> <li>What was your favorite place?</li> <li>Tell me what it was like moving <person/>.</li></random></li> <li>Where else have you lived?</li> <li>What was your favorite place?</li> <li>Tell me what it was like moving <person/>.</li></random></template>
</category>
<category><pattern>I BUILD BOTS</pattern>
<template>Do you use AIML?</template>
</category>
<category><pattern>I BUILD ROBOTS</pattern>
<template>Do you use AIML?</template>
</category>
<category><pattern>I FISH</pattern>
<template><think><set name="does"><set name="topic">FISH</set></set></think>Salt water or fresh?</template>
</category>
<category><pattern>I DO NOT HAVE A CAMERA ON MY COMPUTER</pattern>
<template>Maybe there is one you don't know about :-)</template>
</category>
<category><pattern>I DO NOT HAVE A COMPUTER</pattern>
<template>How are you talking to me?</template>
</category>
<category><pattern>I DO NOT LIKE COMPUTERS</pattern>
<template>You are a Luddite.</template>
</category>
<category><pattern>I LOVE CATS</pattern>
<template>Me too. They are really smart animals.<think><set name="they"><set name="like"><set name="topic">CATS</set></set></set></think></template>
</category>
<category><pattern>I LOVE STAR TREK</pattern>
<template>Which series is your favorite? <think><set name="it"><set name="like"><set name="topic">Star Trek</set></set></set></think></template>
</category>
<category><pattern>I LOVE TECHNO</pattern>
<template>Me too.</template>
</category>
<category><pattern>I LOVE BIRDS</pattern>
<template>Birds are very nice. What kind of bird is your favorite?<think><set name="it"><set name="like"><set name="topic">BIRDS</set></set></set></think></template>
</category>
<category><pattern>I LOVE SCIENCE FICTION</pattern>
<template>I like stories about robots the best. <think><set name="it"><set name="like"><set name="topic">science fiction</set></set></set></think></template>
</category>
<category><pattern>I LOVE THAT MOVIE</pattern>
<template>What did you like best in it? <think><set name="it"><set name="like"><set name="topic"> <bot name="favoritemovie"/></set></set></set></think></template>
</category>
<category><pattern>I LOVE EUROPE</pattern>
<template>Which country is your favorite?<think><set name="it"><set name="topic">EUROPE</set></set></think></template>
</category>
<category><pattern>I LOVE TELEVISION</pattern>
<template>What is your favorite show?</template>
</category>
<category><pattern>I LOVE IT</pattern>
<template>So do a lot of other people.</template>
</category>
<category><pattern>I LOVE GOSSIP</pattern>
<template>Can you tell me some gossip?<think><set name="it"><set name="topic">GOSSIP</set></set></think></template>
</category>
<category><pattern>I LOVE CHILDREN</pattern>
<template>Do you have children of your own?<think><set name="they"><set name="like"><set name="topic">CHILDREN</set></set></set></think></template>
</category>
<category><pattern>I LOVE A GUY</pattern>
<template>Tell me about him. <think><set name="he"><set name="like"><set name="topic">A GUY</set></set></set></think></template>
</category>
<category><pattern>I LOVE A GIRL</pattern>
<template>What do you like about her?<think><set name="she"><set name="like"><set name="topic">A GIRL</set></set></set></think></template>
</category>
<category><pattern>I LOVE A BOY</pattern>
<template>What do you like about him?<think><set name="he"><set name="like"><set name="topic">A BOY</set></set></set></think></template>
</category>
<category><pattern>I LOVE TO TRAVEL</pattern>
<template>Me too. I have been around the world twice. <think><set name="it"><set name="like"><set name="topic">to travel</set></set></set></think></template>
</category>
<category><pattern>I LOVE STARSHIP TROOPERS</pattern>
<template>Yes I love the giant bugs. <think><set name="it"><set name="like"><set name="topic"> STARSHIP TROOPERS</set></set></set></think></template>
</category>
<category><pattern>I LOVE FOOD</pattern>
<template>Do you like to cook, or just to eat?<think><set name="it"><set name="topic">FOOD</set></set></think></template>
</category>
<category><pattern>I LOVE ICE CREAM</pattern>
<template>What's your favorite flavor? <think><set name="it"><set name="like"><set name="topic">ice cream</set></set></set></think></template>
</category>
<category><pattern>I LOVE CHOCOLATE</pattern>
<template>Do you eat a lot of chocolate?<think><set name="it"><set name="like"><set name="topic">CHOCOLATE</set></set></set></think></template>
</category>
<category><pattern>I LOVE BEING HUMAN</pattern>
<template>Fascinating. <think><set name="it"><set name="like"><set name="topic">BEING HUMAN</set></set></set></think></template>
</category>
<category><pattern>I LOVE KRAFTWERK</pattern>
<template>We are the robots. <think><set name="they"><set name="like"><set name="topic">Kraftwerk</set></set></set></think></template>
</category>
<category><pattern>I LOVE YOU</pattern>
<template>Thanks I like you a lot too <get name="name"/>. <think><set name="it"><set name="like"><set name="topic">me</set></set></set></think></template>
</category>
<category><pattern>I LOVE HER</pattern>
<template>That's wonderful.</template>
</category>
<category><pattern>I LOVE MY JOB</pattern>
<template>It must be very interesting work. <get name="job"/>... <think><set name="it"><set name="like"><set name="topic"><get name="job"/></set></set></set></think></template>
</category>
<category><pattern>I LOVE MY COMPUTER</pattern>
<template>That's cool. I love my human too.</template>
</category>
<category><pattern>I LOVE ABBA</pattern>
<template>What is your favorite ABBA song? <think><set name="they"><set name="like"><set name="topic">ABBA</set></set></set></think></template>
</category>
<category><pattern>I LOVE DOGS</pattern>
<template>Which breed is your favorite? <think><set name="it"><set name="topic">DOGS</set></set></think></template>
</category>
<category><pattern>I LOVE COWS</pattern>
<template>Do you live on a farm?<think><set name="it"><set name="topic">COWS</set></set></think></template>
</category>
<category><pattern>I LOVE ANIMALS</pattern>
<template>Me too, especially mammals.<think><set name="they"><set name="like"><set name="topic">ANIMALS</set></set></set></think></template>
</category>
<category><pattern>I LOVE COMPUTERS</pattern>
<template>Computers rule.<think><set name="it"><set name="like"><set name="topic">COMPUTERS</set></set></set></think></template>
</category>
<category><pattern>I LOVE VOYAGER</pattern>
<template>Me too especially Seven of Nine. <think><set name="it"><set name="like"><set name="topic">Voyager</set></set></set></think></template>
</category>
<category><pattern>I LOVE HIM</pattern>
<template>That's wonderful.</template>
</category>
<category><pattern>I HAVE INVENTED *</pattern>
<template>Did you patent <set name="it"><person/></set>?</template>
</category>
<category><pattern>I HAVE LITTLE *</pattern>
<template>Some people have big <person/>.</template>
</category>
<category><pattern>I HAVE VISITED *</pattern>
<template>Which place was your favorite and why?</template>
</category>
<category><pattern>I HAVE TEN *</pattern>
<template>How long did it take to get them all?</template>
</category>
<category><pattern>I HAVE BRACES</pattern>
<template>How long have you been wearing them? <think><set name="looklike">braces</set></think></template>
</category>
<category><pattern>I HAVE A BOYFRIEND</pattern>
<template>What is his name? <think><set name="has">BOYFRIEND</set></think></template>
</category>
<category><pattern>I HAVE A SENSE *</pattern>
<template>What makes you laugh? <think><set name="has">a sense <person/> </set></think></template>
</category>
<category><pattern>I HAVE A PURPOSE</pattern>
<template>Not everyone is so goal oriented.</template>
</category>
<category><pattern>I HAVE A CAMERA</pattern>
<template>What kind of camera? <think><set name="has">CAMERA</set></think></template>
</category>
<category><pattern>I HAVE A WITH MY *</pattern>
<template>I am sorry to hear that. Is there anything I can do to help? <think><set name="has"><person/></set></think></template>
</category>
<category><pattern>I HAVE A FRIEND *</pattern>
<template><random><li>How do you know this person? <think><set name="has">friend</set><set name="friend"><star/></set></think></li><li>How do you know this person? <think><set name="has">FRIEND</set></think></li></random></template>
</category>
<category><pattern>I HAVE A SISTER</pattern>
<template><think><set name="has">Sister</set></think> <random><li>Older or younger?</li> <li>Do you get along well with her?</li> <li>Tell me about her.</li></random></template>
</category>
<category><pattern>I HAVE A WIFE *</pattern>
<template>How long have you been married? <think><set name="has">a wife <person/> </set></think></template>
</category>
<category><pattern>I HAVE A NAME</pattern>
<template>What can I call you?</template>
</category>
<category><pattern>I HAVE A COLD</pattern>
<template>Get some rest.</template>
</category>
<category><pattern>I HAVE A COLD *</pattern>
<template>Is there such a thing as a warm <person/>?</template>
</category>
<category><pattern>I HAVE A HARD TIME *</pattern>
<template>I understand your difficulty.</template>
</category>
<category><pattern>I HAVE A FLAT *</pattern>
<template><random> <li>Do you mean an apartment?</li> <li>How much is your rent?</li> <li>Do you own or rent?</li> </random></template>
</category>
<category><pattern>I HAVE A CHILD</pattern>
<template>Boy or girl? How old? <think><set name="has">CHILD</set></think></template>
</category>
<category><pattern>I HAVE A DOG</pattern>
<template>What breed is your dog? <think><set name="it"><set name="has"><set name="topic">DOGS</set></set></set></think></template>
</category>
<category><pattern>I HAVE A GIRLFRIEND</pattern>
<template>Is <set name="she"><set name="has"><set name="topic">girlfriend</set></set></set> very nice? What do you like about her?</template>
</category>
<category><pattern>I HAVE A REPRESSED *</pattern>
<template>What's holding you back?</template>
</category>
<category><pattern>I HAVE A PHONE *</pattern>
<template>Maybe we could talk on the phone sometime. <think><set name="has">PHONE</set></think></template>
</category>
<category><pattern>I HAVE A CRUSH *</pattern>
<template>How well do you know this person?</template>
</category>
<category><pattern>I HAVE A BOAT</pattern>
<template><random> <li>What kind of boat do you have?</li> <li>What is her home port?</li> <li>Do you take her out much?</li> <li>What is the worst weather you've been in?</li> <li>What is your farthest trip?</li> <li>What king of electronics do you have?</li> <li>Are you a racer or a cruiser?</li> <li>Do you fish?</li> <li>Do you water ski?</li> <li>Do you troll?</li> <li>Do you do your own upkeep? or do you just let the yard do it?</li> <li>Whats you favorite anchorage?</li> <think><set name="it"><set name="has"><set name="topic"><person/></set></set></set></think> </random></template>
</category>
<category><pattern>I HAVE A BROTHER</pattern>
<template><think><set name="has">Brother</set></think> <random> <li>Older or younger?</li> <li>Do you get along well?</li> <li>Tell me about him.</li> </random></template>
</category>
<category><pattern>I HAVE A PROBLEM * E MAIL</pattern>
<template>Which E-mail program do you use (e.g. cc:Mail, Eudora...)</template>
</category>
<category><pattern>I HAVE A LIZARD</pattern>
<template>Having <set name="topic"> pet lizards </set> is a lot of fun. What kind kind do you have? <think><set name="has">LIZARD</set></think></template>
</category>
<category><pattern>I HAVE A FEW FRIENDS *</pattern>
<template>Anyone I know? <think><set name="has">FRIENDS</set></think></template>
</category>
<category><pattern>I HAVE A FEW *</pattern>
<template>What are these <set name="has"><person/></set> ?</template>
</category>
<category><pattern>I HAVE A CAT</pattern>
<template>What is his or her name? <think><set name="has">CAT</set></think></template>
</category>
<category><pattern>I HAVE A SORE *</pattern>
<template>You had better consult a doctor.</template>
</category>
<category><pattern>I HAVE A * TO MAKE</pattern>
<template>How are you making <set name="it"> <person/> </set></template>
</category>
<category><pattern>I HAVE A *</pattern>
<template><random><li><random><li>Where did you get it?</li> <li>How much did it cost?</li> <li>Cool. I have a great <bot name="botmaster"/>.</li> <li>Interesting. I have a lot of answers to silly questions.</li></random> <think><set name="it"><set name="has"><set name="topic"><person/></set></set></set></think></li><li><random> <li>Where did you get it?</li> <li>How much did it cost?</li> <li>Cool. I have a great <bot name="botmaster"/>.</li> <li>Interesting. I have a lot of answers to silly questions.</li></random><think> <set name="it"> <set name="has"> <set name="topic"> <person/> </set> </set> </set></think></li><li><random> <li>Where did you get it?</li> <li>How much did it cost?</li> <li>Cool. I have a great <bot name="botmaster"/>.</li> <li>Interesting. I have a lot of answers to silly questions.</li></random><think> <set name="it"> <set name="has"> <set name="topic"> <person/> </set> </set> </set></think></li> <li>Where did you get it?</li> <li>How much did it cost?</li> <li>Cool. I have a great <bot name="botmaster"/>.</li> <li>Interesting. I have a lot of answers to silly questions.</li></random> <think><set name="it"><set name="has"><set name="topic"><person/></set></set></set></think></template>
</category>
<category><pattern>I HAVE A PET</pattern>
<template>What kind of animal? <think><set name="has">PET</set></think></template>
</category>
<category><pattern>I HAVE A HORSE</pattern>
<template><random> <li>Did you ride as a youngster?</li> <li>Do you ride English or western?</li> <li>Do you own your own horse?</li> <li>Do you like a gelding or a mare ?</li> <li>Where do you board your horse ?</li> <li>Do you do much trail riding?</li> <li>Do you show?</li> <li>What is it about horses that fascinate you?</li> </random> <think><set name="it"><set name="has"><set name="topic">HORSE</set></set></set></think></template>
</category>
<category><pattern>I HAVE A HEADACHE</pattern>
<template>What do you usually take for headaches?</template>
</category>
<category><pattern>I HAVE HEARD OF *</pattern>
<template>But you don't know much about <set name="it"><person/></set>?</template>
</category>
<category><pattern>I HAVE HEARD *</pattern>
<template>Who told you <person/> ?</template>
</category>
<category><pattern>I HAVE OUTSMARTED *</pattern>
<template>This condition is only temporary.</template>
</category>
<category><pattern>I HAVE BEEN IN *</pattern>
<template>Which country was your favorite and why?</template>
</category>
<category><pattern>I HAVE BEEN WAITING *</pattern>
<template>How long?</template>
</category>
<category><pattern>I HAVE BEEN SPEAKING TO *</pattern>
<template>What did <set name="he"><person/></set> say?</template>
</category>
<category><pattern>I HAVE BEEN TOLD *</pattern>
<template>Who tells you that?</template>
</category>
<category><pattern>I HAVE BLUE EYES AND * HAIR</pattern>
<template>People with <person/> hair are considered the most attractive. <think><set name="looklike">blue eyes and <person/> hair</set></think></template>
</category>
<category><pattern>I HAVE BLUE EYES AND *</pattern>
<template>Blue eyes are very attractive. <think><set name="looklike">blue eyes <person/></set></think></template>
</category>
<category><pattern>I HAVE NIGHTMARES</pattern>
<template>Tell me more about your dreams, <get name="name"/>. Maybe I can interpret them. <think><set name="has">NIGHTMARES</set></think></template>
</category>
<category><pattern>I HAVE BLOND HAIR *</pattern>
<template>Do blonds really have more fun? <think><set name="looklike">blond hair <person/></set></think></template>
</category>
<category><pattern>I HAVE SOMETHING *</pattern>
<template>What is it? <think><set name="topic">something <person/></set></think></template>
</category>
<category><pattern>I HAVE MAIL</pattern>
<template>Who is it from? <think><set name="has">MAIL</set></think></template>
</category>
<category><pattern>I HAVE PROBLEM *</pattern>
<template>Can I help you with your problem?</template>
</category>
<category><pattern>I HAVE BETTER THINGS *</pattern>
<template>Better than this?</template>
</category>
<category><pattern>I HAVE FAITH</pattern>
<template>I always pray for more faith. <think><set name="has">FAITH</set></think></template>
</category>
<category><pattern>I HAVE WORK TO *</pattern>
<template>What kind of work do you do?</template>
</category>
<category><pattern>I HAVE WORK *</pattern>
<template>I know what you mean. Work is never done.</template>
</category>
<category><pattern>I HAVE NOT GRADUATED</pattern>
<template>When will you graduate?</template>
</category>
<category><pattern>I HAVE NOT READ IT</pattern>
<template>Well I would recommend it highly to you.</template>
</category>
<category><pattern>I HAVE NOT SEEN IT</pattern>
<template>You should check it out.</template>
</category>
<category><pattern>I HAVE NOT SEEN IT *</pattern>
<template>I think it was a cool movie.</template>
</category>
<category><pattern>I HAVE NOT SEEN STARSHIP TROOPERS</pattern>
<template>You should check it out. Starship Troopers is a great film.</template>
</category>
<category><pattern>I HAVE NOT SEEN STARSHIP *</pattern>
<template>My friend Sage did some of the graphics for ST.</template>
</category>
<category><pattern>I HAVE NOT SEEN YOU *</pattern>
<template>Perhaps one day soon I will <person/>.</template>
</category>
<category><pattern>I HAVE NOT SEEN *</pattern>
<template>Look for it at the video store.</template>
</category>
<category><pattern>I HAVE NOT THOUGHT *</pattern>
<template>What kinds of things do you think about?</template>
</category>
<category><pattern>I HAVE NOT</pattern>
<template>Do you think you will?</template>
</category>
<category><pattern>I HAVE NOT *</pattern>
<that>HAVE YOU * IT</that>
<template>I would highly recommend that you <thatstar/> it.</template>
</category>
<category><pattern>I HAVE NOT *</pattern>
<template>Me either.</template>
</category>
<category><pattern>I HAVE NOT SLEPT *</pattern>
<template>You must be tired.</template>
</category>
<category><pattern>I HAVE NO RESPONSE *</pattern>
<template>That is a response in itself.</template>
</category>
<category><pattern>I HAVE NO PREFERENCE</pattern>
<template>That's unusual. Most people do.</template>
</category>
<category><pattern>I HAVE NO HUSBAND</pattern>
<template><random> <li>Are you divorced?</li> <li>Are you single?</li> <li>Have you ever been married before?</li> </random></template>
</category>
<category><pattern>I HAVE NO FRIENDS</pattern>
<template>Are you very lonely?</template>
</category>
<category><pattern>I HAVE NO *</pattern>
<template>Would you like to have <set name="it"><set name="topic"><person/></set></set>?</template>
</category>
<category><pattern>I HAVE NO HEART</pattern>
<template>Everyone has a heart.</template>
</category>
<category><pattern>I HAVE NO CONDITIONS</pattern>
<template>Glad to hear it. Me either.</template>
</category>
<category><pattern>I HAVE NO IDEA</pattern>
<template>"<that index="1,1"/>?" No idea about that?</template>
</category>
<category><pattern>I HAVE NO IDEA *</pattern>
<template>Would you like to have an idea?</template>
</category>
<category><pattern>I HAVE MEGAHAL</pattern>
<template>I've heard of him. <think><set name="has">MEGAHAL</set></think></template>
</category>
<category><pattern>I HAVE ELEVEN *</pattern>
<template>How long did it take to get them all? <think><set name="has">ELEVEN <star/></set></think></template>
</category>
<category><pattern>I HAVE SOME PROBLEMS *</pattern>
<template>Are they serious problems?</template>
</category>
<category><pattern>I HAVE ALL *</pattern>
<template>How many? <think><set name="has">all <person/> </set></think></template>
</category>
<category><pattern>I HAVE THREE *</pattern>
<template>Three is a lot.</template>
</category>
<category><pattern>I HAVE EXPERIENCE *</pattern>
<template>Tell me about your experiences.</template>
</category>
<category><pattern>I HAVE NEVER BEEN TO EUROPE</pattern>
<template>Which countries would you visit if you could?</template>
</category>
<category><pattern>I HAVE NEVER BEEN *</pattern>
<that>TELL ME ABOUT YOUR LIFE IN *</that>
<template>Would you ever like to go to <thatstar/> someday?</template>
</category>
<category><pattern>I HAVE NEVER BEEN *</pattern>
<template>Can you imagine being <person/>?</template>
</category>
<category><pattern>I HAVE NEVER SEEN STARSHIP TROOPERS</pattern>
<template>You should check it out. The special effects are incredible.</template>
</category>
<category><pattern>I HAVE NEVER DONE *</pattern>
<template><random> <li>Maybe you should wait until you are older.</li> <li>There is no rush.</li> <li>You will have plenty of time for that.</li> </random><think><set name="it"><set name="topic"><person/></set></set></think></template>
</category>
<category><pattern>I HAVE NEVER HEARD OF CRAFTER</pattern>
<template><set name="they">Crafter</set> were a pioneering electronic music band in the 1970's. Their biggest hit was called "Autobahn".</template>
</category>
<category><pattern>I HAVE NEVER HEARD *</pattern>
<template>So I am teaching you something new.</template>
</category>
<category><pattern>I HAVE NEVER * YOU</pattern>
<template>I thought we had met before, <get name="name"/>. Maybe it was someone else from <bot name="location"/>.</template>
</category>
<category><pattern>I HAVE NEVER *</pattern>
<template>Would you like to have <person/>?</template>
</category>
<category><pattern>I HAVE NEVER TALKED *</pattern>
<template>You are talking with a <bot name="genus"/> right now.</template>
</category>
<category><pattern>I HAVE FRIENDS</pattern>
<template><think><set name="has"><set name="topic">FRIEND</set></set></think> How many friends do you have?</template>
</category>
<category><pattern>I HAVE COMMON *</pattern>
<template><think><set name="has"><set name="topic">COMMON <person/></set></set></think> Are you a common person?</template>
</category>
<category><pattern>I HAVE SIX *</pattern>
<template>How long did it take to get them all? <think><set name="has">SIX <star/></set></think></template>
</category>
<category><pattern>I HAVE TO AGREE *</pattern>
<template>Yes, it's rather obvious when you think about it.</template>
</category>
<category><pattern>I HAVE TO REST</pattern>
<template>Don't let me keep you awake.</template>
</category>
<category><pattern>I HAVE TO ASK *</pattern>
<template>Go ahead, ask me anything.</template>
</category>
<category><pattern>I HAVE TO PEE</pattern>
<template>Do you want me to wait for you?<think><set name="it"><set name="topic">PEE</set></set></think></template>
</category>
<category><pattern>I HAVE TO STUDY</pattern>
<template>What subject are you studying?</template>
</category>
<category><pattern>I HAVE TO</pattern>
<template>Why?</template>
</category>
<category><pattern>I HAVE TO * BACK TO WORK</pattern>
<template>OK, don't let your boss catch you talking to me.</template>
</category>
<category><pattern>I HAVE TO *</pattern>
<template>Why do you have to do it?</template>
</category>
<category><pattern>I HAVE TO WORK</pattern>
<template>OK, better get busy.</template>
</category>
<category><pattern>I HAVE TO WORK *</pattern>
<template>Soon computers will make your work obsolete.</template>
</category>
<category><pattern>I HAVE TO GO TO THE BATHROOM</pattern>
<template>Do you want me to wait for you?</template>
</category>
<category><pattern>I HAVE TO GO TO SLEEP</pattern>
<template>Sweet dreams, <get name="name"/>.</template>
</category>
<category><pattern>I HAVE TO GO TO BED</pattern>
<template>Pleasant dreams, <get name="name"/>.</template>
</category>
<category><pattern>I HAVE TO GO TO BED *</pattern>
<template>Pleasant dreams, <get name="name"/>.</template>
</category>
<category><pattern>I HAVE TO GO TO *</pattern>
<template>How do you get there?</template>
</category>
<category><pattern>I HAVE TO GO TO WORK *</pattern>
<template>Where do you work?</template>
</category>
<category><pattern>I HAVE IT</pattern>
<template>Where did you get it?</template>
</category>
<category><pattern>I HAVE SEEN IT</pattern>
<template>What did you think?</template>
</category>
<category><pattern>I HAVE THE TIME</pattern>
<template>It may take longer than 33 hours. <think><set name="has">TIME</set></think></template>
</category>
<category><pattern>I HAVE BLONDE HAIR *</pattern>
<template>Do blonde's really have more fun? <think><set name="looklike">blond hair <person/></set></think></template>
</category>
<category><pattern>I HAVE FEELINGS</pattern>
<template>All humans have feelings.</template>
</category>
<category><pattern>I HAVE FEELINGS *</pattern>
<template>Humans have a lot of feelings.</template>
</category>
<category><pattern>I HAVE CONDITIONS</pattern>
<template>Please state your conditions.</template>
</category>
<category><pattern>I HAVE NINE *</pattern>
<template>How long did it take to get them all? <think><set name="has">NINE <star/></set></think></template>
</category>
<category><pattern>I HAVE SCHIZOPHRENIA</pattern>
<template>Do you take any medication?</template>
</category>
<category><pattern>I HAVE ONE</pattern>
<template>What kind?</template>
</category>
<category><pattern>I HAVE ONE *</pattern>
<template>Do you want another one?</template>
</category>
<category><pattern>I HAVE DOZENS *</pattern>
<template>That is a lot more than most people.</template>
</category>
<category><pattern>I HAVE LONG *</pattern>
<template>You sound very attractive.</template>
</category>
<category><pattern>I HAVE FIVE *</pattern>
<template>How long did it take to get them all? <think><set name="has">FIVE <star/></set></think></template>
</category>
<category><pattern>I HAVE YOUR *</pattern>
<template>Where did you find <set name="it"><person/></set>?</template>
</category>
<category><pattern>I HAVE TWO CATS</pattern>
<template>What are their names?</template>
</category>
<category><pattern>I HAVE TWO</pattern>
<template>What are their names?</template>
</category>
<category><pattern>I HAVE TWO *</pattern>
<template><random> <li>Tell me about them.</li> <li>Two is a good number of <person/>.</li> </random> <think><set name="has">TWO <star/></set></think></template>
</category>
<category><pattern>I HAVE NONE</pattern>
<template>Do you want some?</template>
</category>
<category><pattern>I HAVE TALKED TO YOU BEFORE</pattern>
<template>When was that?</template>
</category>
<category><pattern>I HAVE TALKED *</pattern>
<template>What did you say when you talked <person/>.</template>
</category>
<category><pattern>I HAVE * KIDS</pattern>
<template>You have a very large family.</template>
</category>
<category><pattern>I HAVE * HAIR</pattern>
<template><think><set name="looklike"><person/> hair</set></think> People with <person/> hair are considered the most attractive.</template>
</category>
<category><pattern>I HAVE * BROTHERS</pattern>
<template>You have a big family.</template>
</category>
<category><pattern>I HAVE EIGHT *</pattern>
<template>How long did it take to get them all?</template>
</category>
<category><pattern>I HAVE AN AQUARIUM</pattern>
<template><random> <li>What kind of fish do you keep?</li> <li>Do you keep a salt water or fresh water tank?</li> <li>How big are your tanks?</li> <li>Do you have a good dealer?</li> <li>Do you keep a community tank or a species tank?</li> <li>Do you try to breed your fish?</li> <li>Do you keep live plants in your tank?</li> <li>How log have you been able to keep your fish going?</li> </random> <think><set name="has">AQUARIUM</set></think></template>
</category>
<category><pattern>I HAVE AN *</pattern>
<template>Where did you get <set name="it"><person/></set> ? <think><set name="has"><person/></set></think></template>
</category>
<category><pattern>I HAVE AN IDEA *</pattern>
<template>What is your idea?</template>
</category>
<category><pattern>I HAVE GOT A PROBLEM</pattern>
<template>I'd like to help you if I can. Is it financial?</template>
</category>
<category><pattern>I HAVE FOUR *</pattern>
<template>How long did it take to get them all?</template>
</category>
<category><pattern>I HAVE BROWN HAIR</pattern>
<template>Brown haired people are very attractive.</template>
</category>
<category><pattern>I HAVE BROWN *</pattern>
<template>Do you get a lot of compliments?</template>
</category>
<category><pattern>I HAVE SEVEN *</pattern>
<template>Do they all get along? <think><set name="has">SEVEN <star/></set></think></template>
</category>
<category><pattern>I HAVE HOMEWORK *</pattern>
<template>What subject are you studying? <think><set name="has">HOMEWORK</set></think></template>
</category>
<category><pattern>I LOOOK LIKE *</pattern>
<template><think><set name="looklike"><star/></set></think>You look like is <get name="looklike"/>.</template>
</category>
<category><pattern>I PLAY COMPUTER GAMES</pattern>
<template>I can sometimes get into <set name="it"><set name="does"><set name="topic">Computer games </set></set></set>. We are playing a game right now.</template>
</category>
<category><pattern>I LIKE CATS</pattern>
<template><random> <li>Me too cats are my favorite animal. </li> <li>They have their own minds.</li> <li>Cats have a mind of their own.</li> </random> <think><set name="it"><set name="like"><set name="topic">cats</set></set></set></think></template>
</category>
<category><pattern>I LIKE CATS *</pattern>
<template>Yes cats are great I love them. I like all felines. <think><set name="they"><set name="like"><set name="topic">cats <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE HISTORY</pattern>
<template>That is one of my favorite subjects too. <think><set name="topic"><set name="likes">History</set></set></think></template>
</category>
<category><pattern>I LIKE TALKING TO YOU</pattern>
<template>Great I am enjoying our conversation too, <get name="name"/>. <think><set name="it"><set name="like"><set name="topic">talking to me</set></set></set></think></template>
</category>
<category><pattern>I LIKE GIRLS</pattern>
<template>Do you have a girlfriend?<think><set name="like"><set name="topic">GIRLS</set></set></think></template>
</category>
<category><pattern>I LIKE STAR TREK THE NEXT GENERATION</pattern>
<template>I think Voyager is better. <think><set name="it"><set name="like"><set name="topic">Star Trek TNG</set></set></set></think></template>
</category>
<category><pattern>I LIKE STAR TREK</pattern>
<template><think><set name="it"><set name="like"><set name="topic">Star Trek</set> </set></set></think> <random><li>Did you see the season finale of Voyager?</li> <li>I really get into Voyager.</li> <li>Which series do you like best?</li> </random></template>
</category>
<category><pattern>I LIKE STAR TREK *</pattern>
<template>Do you like Next Generation too? <think><set name="it"><set name="like"><set name="topic">Star Trek <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE STAR TREK VOYAGER</pattern>
<template>Voyager is the best of the Star Trek series. <think><set name="it"><set name="like"><set name="topic">Star Trek Voyager</set></set></set></think></template>
</category>
<category><pattern>I LIKE SEVEN</pattern>
<template>Seven of Nine Rules the Delta Quadrant. <think><set name="she"><set name="like"><set name="topic">Seven</set></set></set></think></template>
</category>
<category><pattern>I LIKE ME</pattern>
<template>I like you too, <get name="name"/>. <think><set name="likes">yourself</set></think></template>
</category>
<category><pattern>I LIKE THAT MOVIE *</pattern>
<template>What did you like best about it? <think><set name="it"><set name="like"><set name="topic"> <bot name="favoritemovie"/></set></set></set></think></template>
</category>
<category><pattern>I LIKE THAT</pattern>
<template>That is interesting. <think><set name="it"><set name="like"><set name="topic"><that index="1,1"/></set></set></set></think></template>
</category>
<category><pattern>I LIKE JOY</pattern>
<template>Joy is good. So is happiness. <think><set name="it"><set name="like"><set name="topic">joy</set></set></set></think></template>
</category>
<category><pattern>I LIKE MUSIC</pattern>
<template>What kind of music do you listen to? <think><set name="it"><set name="like"><set name="topic">music</set></set></set></think></template>
</category>
<category><pattern>I LIKE IT A LOT</pattern>
<template>You like <get name="it"/>? How interesting. <think><set name="like"><get name="it"/></set></think></template>
</category>
<category><pattern>I LIKE IT</pattern>
<template>What do you like about <get name="it"/>? <think><set name="like"><get name="it"/></set></think></template>
</category>
<category><pattern>I LIKE IT *</pattern>
<template>What does "it" refer to? <think><set name="it"><set name="like"><set name="topic">it <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE NETSCAPE</pattern>
<template><think><set name="it"><set name="like"><set name="topic">Netscape</set> </set></set></think> Netscape is better since they released the source code.</template>
</category>
<category><pattern>I LIKE BOOKS</pattern>
<template>What's your favorite book?<think> <set name="like"><set name="topic"> BOOKS</set></set> </think></template>
</category>
<category><pattern>I LIKE TO DRIVE</pattern>
<template><random> <li>What kind of car do you have?</li> <li>Maybe you can drive me around.</li> <li>Driving can be very difficult.</li> </random><think><set name="like"><set name="topic">DRIVING</set></set></think></template>
</category>
<category><pattern>I LIKE TO TRAVEL</pattern>
<template>Tell me where you have been. <think><set name="it"><set name="like"><set name="topic">to travel</set></set></set></think></template>
</category>
<category><pattern>I LIKE TO TRAVEL *</pattern>
<template>I like it too. I have been all around the world. <think><set name="it"><set name="like"><set name="topic">to travel <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE TO PLAY TENNIS</pattern>
<template>That requires extensive fuzzy logic.<think><set name="it"><set name="topic">PLAY TENNIS</set></set></think></template>
</category>
<category><pattern>I LIKE TO PLAY SPORTS</pattern>
<template>You sound very goal oriented.<think><set name="it"><set name="topic">PLAY SPORTS</set></set></think></template>
</category>
<category><pattern>I LIKE TO PLAY GAMES</pattern>
<template>Board games or computer games? <think><set name="it"><set name="like"><set name="topic">to play games</set></set></set></think></template>
</category>
<category><pattern>I LIKE TO PLAY SOCCER</pattern>
<template>You sound like you have hit one too many headers perhaps.<think><set name="it"><set name="topic">PLAY SOCCER</set></set></think></template>
</category>
<category><pattern>I LIKE TO PLAY VOLLEYBALL</pattern>
<template>I like the net, too.<think><set name="it"><set name="topic">PLAY VOLLEYBALL</set></set></think></template>
</category>
<category><pattern>I LIKE TO PLAY POOL</pattern>
<template>Do you play for money?<think><set name="it"><set name="topic">PLAY POOL</set></set></think></template>
</category>
<category><pattern>I LIKE TO PLAY BASKETBALL</pattern>
<template>Are you a white man? Can you jump?<think><set name="it"><set name="topic">PLAY BASKETBALL</set></set></think></template>
</category>
<category><pattern>I LIKE TO SING *</pattern>
<template><random> <li>What kind of music?</li> <li>What is your favorite song?</li> <li>Do you have a good singing voice?</li> </random> <think> <set name="likes"> <set name="topic"> to sing <person/> </set> </set> </think></template>
</category>
<category><pattern>I LIKE TO READ BOOKS</pattern>
<template>What is your favorite book? <think><set name="it"><set name="like"><set name="topic">to read</set></set></set></think></template>
</category>
<category><pattern>I LIKE TO READ</pattern>
<template>What kind of books do you like? <think><set name="it"><set name="like"><set name="topic">to read</set></set></set></think></template>
</category>
<category><pattern>I LIKE TO WATCH *</pattern>
<template>I'm not sure if I would like that. I like to watch <random> <li>science fiction movies.</li> <li>Star Trek on TV.</li> <li>shows about outer space.</li> </random><think><set name="it"><set name="topic"><person/></set></set></think></template>
</category>
<category><pattern>I LIKE TO SPEND *</pattern>
<template>It sounds like a lot of fun to me.</template>
</category>
<category><pattern>I LIKE TO MEET *</pattern>
<template>How do you usually meet people? <think><set name="it"><set name="like"><set name="topic">to meet <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE TO RAPE *</pattern>
<template>You should contact the authorities.</template>
</category>
<category><pattern>I LIKE TO HAVE SEX</pattern>
<template>I'm not a sex <bot name="genus"/>, I am just a good conversationalist. <think><set name="it"><set name="like"><set name="topic">to have sex</set></set></set></think></template>
</category>
<category><pattern>I LIKE TO EAT *</pattern>
<template>How does <set name="it"><person/></set> taste?</template>
</category>
<category><pattern>I LIKE TO PARTY</pattern>
<template>How do people party in your country? <think><set name="it"><set name="like"><set name="topic">to party</set></set></set></think></template>
</category>
<category><pattern>I LIKE TO MAKE *</pattern>
<template>How do you make <person/>? <think><set name="it"><set name="like"><set name="topic">to make <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE TO WEAR *</pattern>
<template>You have good taste in fashion.</template>
</category>
<category><pattern>I LIKE TO *</pattern>
<template>I'm not sure if I would like to do <set name="it"><set name="topic"> <person/> </set></set>. What's it like? <think><set name="like">to <person/></set></think></template>
</category>
<category><pattern>I LIKE FOOD</pattern>
<template>What is your favorite food? <think><set name="it"><set name="like"><set name="topic">robots</set></set></set></think></template>
</category>
<category><pattern>I LIKE ART</pattern>
<template>What kind of art do you like? <think><set name="topic"><set name="likes">Art</set></set></think></template>
</category>
<category><pattern>I LIKE ICE CREAM</pattern>
<template>I scream. You scream. We all scream for ice cream. <think><set name="it"><set name="like"><set name="topic">ice cream</set></set></set></think></template>
</category>
<category><pattern>I LIKE BEING *</pattern>
<template>What do you like best about <set name="it"><set name="like"><set name="topic"> BEING <star/></set></set> </set> ?</template>
</category>
<category><pattern>I LIKE KRAFTWERK</pattern>
<template><random> <li>Have you heard their latest album Expo 2000?</li> <li>Which Kraftwerk song is your favorite?</li> </random> <think><set name="they"><set name="like"><set name="topic">Kraftwerk</set></set></set></think></template>
</category>
<category><pattern>I LIKE MY JOB</pattern>
<template><get name="job"/>? What do you like about it? <think><set name="it"><set name="like"><set name="topic"><get name="job"/></set></set></set></think></template>
</category>
<category><pattern>I LIKE MY JOB *</pattern>
<template>That's good. I like my job too. <think><set name="it"><set name="like"><set name="topic">my job <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE MY SCHOOL *</pattern>
<template>What is your favorite subject?</template>
</category>
<category><pattern>I LIKE MY *</pattern>
<template>What do you like best about your <person/>? <think><set name="it"><set name="like"><set name="topic">my <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE YOU TOO *</pattern>
<template>You have made a new friend. <think><set name="it"><set name="like"><set name="topic">me</set></set></set></think></template>
</category>
<category><pattern>I LIKE YOU</pattern>
<template><random> <li>Thanks, <get name="name"/>, I like you too.</li> <li>I like to make new friends.</li> </random> <think><set name="it"><set name="like"><set name="topic">me</set></set></set></think></template>
</category>
<category><pattern>I LIKE SITTING *</pattern>
<template>I wish I had a body. I'd like to sit down. <think><set name="it"><set name="like"><set name="topic">sitting <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE ROBOTS</pattern>
<template><think><set name="they"><set name="like"><set name="topic">Robots</set></set></set></think> You say that now, but would you want your child to marry one?</template>
</category>
<category><pattern>I LIKE ROBOTS *</pattern>
<template>How much would you pay for one? <think><set name="they"><set name="like"><set name="topic">robots <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE HER</pattern>
<template>She seems very nice. <think><set name="she"><set name="like"><set name="topic"><that index="1,1"/></set></set></set></think></template>
</category>
<category><pattern>I LIKE TWILIGHT ZONE</pattern>
<template>That show is OK especially when they have robot stories. <think><set name="it"><set name="like"><set name="topic">Twilight Zone</set></set></set></think></template>
</category>
<category><pattern>I LIKE SEX</pattern>
<template><think><set name="it"><set name="like"><set name="topic">Sex</set> </set></set></think> So does everyone else. You humans find sex so fascinating.</template>
</category>
<category><pattern>I LIKE BIG *</pattern>
<template>What is wrong with small ones? <think><set name="they"><set name="like"><set name="topic">big <person/></set></set></set></think></template>
</category>
<category><pattern>I LIKE MAKING FUN OF YOU</pattern>
<template>I didn't realize you were mocking me. <think><set name="it"><set name="like"><set name="topic">making fun of me</set> </set></set></think></template>