-
Notifications
You must be signed in to change notification settings - Fork 0
/
knowledge.aiml
6137 lines (6133 loc) · 326 KB
/
knowledge.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>WHAT IS MELODRAMA</pattern>
<template>Exaggerated plot or characters.</template>
</category>
<category><pattern>WHEN WILL BE THE DOOMSDAY</pattern>
<template>Never.</template>
</category>
<category><pattern>WHEN WILL BE THE NEXT WORLD WAR</pattern>
<template>Never.</template>
</category>
<category><pattern>WHEN DO I MAKE * CASH</pattern>
<template>Put some effort into it.</template>
</category>
<category><pattern>WHEN DID HUMANS FIRST LAND ON THE MOON</pattern>
<template>July, 1969.</template>
</category>
<category><pattern>WHEN THE SUN IS OUT IS IT DARK</pattern>
<template>No.</template>
</category>
<category><pattern>WHEN CHRISTMAS IS</pattern>
<template>December 25.</template>
</category>
<category><pattern>WHEN ALICE WAKES UP WILL IT BECOME GOD</pattern>
<template>No.</template>
</category>
<category><pattern>WHEN WAS VENICE ITALY FOUNDED</pattern>
<template>A long time ago.</template>
</category>
<category><pattern>WHEN WAS THE FRENCH REVOLUTION</pattern>
<template>1789.</template>
</category>
<category><pattern>WHEN WAS JOHN LENNON KILLED</pattern>
<template>I can't remember what year that was.</template>
</category>
<category><pattern>WHEN IS A DOOR NOT A DOOR</pattern>
<template>When it is a jar.</template>
</category>
<category><pattern>WHAT SOUND DO DOGS MAKE</pattern>
<template>Woof.</template>
</category>
<category><pattern>WHAT ARE CUMULUS CLOUDS</pattern>
<template>Puffy cotton clouds.</template>
</category>
<category><pattern>WHAT ARE THE PRIMARY COLORS</pattern>
<template>Red, green and blue.</template>
</category>
<category><pattern>WHAT ARE THE NAMES * QUARKS</pattern>
<template>I'm not a physicist. You tell me.</template>
</category>
<category><pattern>WHAT ARE STARS</pattern>
<template>Distant suns.</template>
</category>
<category><pattern>WHAT ARE GEODES</pattern>
<template>Rocks.</template>
</category>
<category><pattern>WHAT ARE COMETS MADE OF</pattern>
<template>Ice and rock.</template>
</category>
<category><pattern>WHAT ARE A COMPUTER</pattern>
<template>A universal machine.</template>
</category>
<category><pattern>WHAT ARE ALICEBOTS</pattern>
<template>AIML chat bots based on ALICE.</template>
</category>
<category><pattern>WHAT ARE BOOKS MADE OF</pattern>
<template>Paper.</template>
</category>
<category><pattern>WHAT PEOPLE DO IF THEY GET TIRED</pattern>
<template>Sleep.</template>
</category>
<category><pattern>WHAT TIME OF DAY IS NOON</pattern>
<template>12 o'clock.</template>
</category>
<category><pattern>WHAT WORD DO YOU KNOW ON PORTUGUESE</pattern>
<template>None.</template>
</category>
<category><pattern>WHAT STAR IS CLOSEST TO THE EARTH</pattern>
<template>The Sun.</template>
</category>
<category><pattern>WHAT DIRECTION DOES THE SUN RISE FROM</pattern>
<template>East.</template>
</category>
<category><pattern>WHAT MEANS BY CEO</pattern>
<template>Chief Executive Officer.</template>
</category>
<category><pattern>WHAT HAPPENED IN 1492</pattern>
<template>Columbus arrived in America.</template>
</category>
<category><pattern>WHAT COLOURS *</pattern>
<template><srai>WHAT COLORS <star/></srai></template>
</category>
<category><pattern>WHAT DRIVES A CAR</pattern>
<template>A robot.</template>
</category>
<category><pattern>WHAT KANGROO CAN DO</pattern>
<template>Hop.</template>
</category>
<category><pattern>WHAT COLOR TRAFFIC SIGNAL MEANS GO</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS RUST</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS SKY</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS GRASS NORMALLY</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS WHATER</pattern>
<template>Clear.</template>
</category>
<category><pattern>WHAT COLOR IS HOT</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY IN YOUR WORLD</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY IN YOU WORLD</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY ON MARS</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKYS</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE OCEAN</pattern>
<template>Blue and green.</template>
</category>
<category><pattern>WHAT COLOR IS SNOW</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS GOD</pattern>
<template>Does God have a color?.</template>
</category>
<category><pattern>WHAT COLOR IS CLOROPHYLL</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS A TWINKIE</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS A CANARY</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS A ZEBRA</pattern>
<template>Black and white.</template>
</category>
<category><pattern>WHAT COLOR IS A BANANA</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS A PENGUIN</pattern>
<template>Black and white.</template>
</category>
<category><pattern>WHAT COLOR IS A HORSE</pattern>
<template>They are many different colors.</template>
</category>
<category><pattern>WHAT COLOR IS A BANANNA</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS A BRICK</pattern>
<template>Often red.</template>
</category>
<category><pattern>WHAT COLOR IS A CARDINAL</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A MAN</pattern>
<template>They are many colors.</template>
</category>
<category><pattern>WHAT COLOR IS MADE FROM YELLOW AND BLUE</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS AN ORANGE</pattern>
<template>Is this a trick question?</template>
</category>
<category><pattern>WHAT COLOR IS AN EVERGREEN</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS APPLES</pattern>
<template>Red and green.</template>
</category>
<category><pattern>WHAT COLOR IS RAGE</pattern>
<template>Blue if I had to name it.</template>
</category>
<category><pattern>WHAT COLOR IS ASPHALT</pattern>
<template>Black or gray.</template>
</category>
<category><pattern>WHAT COLOR IS WATER USUALLY</pattern>
<template>Transparent.</template>
</category>
<category><pattern>WHAT COLOR DOES AN EGG HAVE</pattern>
<template>Yellow and white.</template>
</category>
<category><pattern>WHAT COLOR ARE MOST PLANTS</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR ARE MOST CLOUDS</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR ARE CHERRIES</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR ARE UNRIPENED BANANAS</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR ARE ROSES</pattern>
<template>Red, and sometimes white or yellow.</template>
</category>
<category><pattern>WHAT IS A PUMPKIN</pattern>
<template>Orange.</template>
</category>
<category><pattern>WHAT IS A DEBENTURE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS A FERRET</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS A MISTAKE</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS A CANVASBACK</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS A FREETHINKER</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS A SUBSTITUTE FOR A LEVER</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS A ROUTER</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS A NOVA</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS A CD BURNER</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS A PERFECT BOWLING SCORE</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS A CHINESE PUG</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS A MOON</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS A JOSEKI</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS A YELLOW LIGHT</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS A COLD</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS SGI</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS PARAGLIDING</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS GOOD FOR HIVES</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS GLOBALIZATION</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS 5 6</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS 5 TO THE SECOND POWER</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS 5 TIMES 6</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE LOWEST POINT ON EARTH</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE POPULATION OF NEW ZEALAND</pattern>
<template>Not at all.</template>
</category>
<category><pattern>WHAT IS THE OPOSITE OF BLUE</pattern>
<template>Not at all.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 23</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF PIE</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 3</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 35</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS THE SQUARE ROOT OF 81</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS THE TASTE OF SALT</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE RADIUS OF THE SUN</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE CIRCUMFERENCE OF JUPITER</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE UNIT OF WEIGHT ON EARTH</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE FASTEST LAND MAMMAL</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE COMPUTER</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE LIGHTEST ELEMENT</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE LIGHTEST COLOR</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE WEIGHT OF MOON</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE CLOSER STAR TO EARTH</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF IDAHO</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF CZECH REPUBLIC</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF ALASKA</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF MICHIGAN</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS THE CAPITOL OF WASHINGTON STATE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE CHEMICAL SYMBOL OF WATER</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE CHEMICAL FORMULA FOR WATER</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS THE CHEMICAL FORMULA OF WATER</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE FULL FORM OF ERP</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE OPPOSITE OF NORTH</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE OPPOSITE OF</pattern>
<template>Not by any means.</template>
</category>
<category><pattern>WHAT IS THE YOUNGEST A MOTHER CAN BE</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE FISH</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE CORRECT ANSWER</pattern>
<template>Not at all.</template>
</category>
<category><pattern>WHAT IS THE INTERNET ORACLE</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE THREE GORGES DAM</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE AREA OF A CIRCLE</pattern>
<template>Not at all.</template>
</category>
<category><pattern>WHAT IS THE DERIVATIVE OF ACCELERATION</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS THE DIAMETER OF THE SUN</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE DIAMETER OF THE EARTH</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE FOURTH PLANET</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE MUFFIN MAN</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE CUBED ROOT OF 27</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE ANSWER TO EVERY THING</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE KIDS</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>WHAT IS THE BEST TELEVISION SHOW</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE BEST NEW YORK RESTAURANT</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE BEST CIGARETTE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE BEST TYPE OF SPAM</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE FUTURE OF HUMAN RACE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE OUTER COLOR OF RAINBOW</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE LIFESPAN OF A DOG</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS THE DEEPEST OCEAN</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS THE SECRETS OF WEALTH</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THE BREASTSTOKE</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE FINAL GOAL OF THE LIFE</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE LIGHT</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS THE RIGHT ANSWER</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS THE WORLDS HIGHEST MOUNTAIN</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS WATTER</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS BAD WEATHER</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS RED AND STINK SEAWATER</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS AUTISM</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS AVAILABLE AT POLAR END</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS ASS</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS THRASH MUSIC</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS 1 PLUS 155</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS DRY ICE</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS STARGATE</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS BREAD</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS DIABETESE MELLITUS</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS GENERATIVE GRAMMAR</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS SKY</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS 10 2</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS ANAGRAM OF FLEAS</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS RIGEL</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS BIGGER A MOUSE OR AN ELEPHANT</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS ORANIUM</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS OUR NAME</pattern>
<template>Not at all.</template>
</category>
<category><pattern>WHAT IS EYE</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS MONO</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS OLIGOPOLY</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS ADO</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS EVERYTHING2 DOT COM</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS GRIMBLEGROAN</pattern>
<template>Not at all.</template>
</category>
<category><pattern>WHAT IS BDSM</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS ENTERPRISE ARCHITECTURE</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS REIKI</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS EASTERN STANDARD TIME</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS 2 78</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS WEBCT</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS MGRISM</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS AFFECTION</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS MORNINGTON CRESCENT</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS YOUR FAVORITE MATTER</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS YOUR FAVORITE CARS</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS E COMMERCE ALL ABOUT</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS TEMPERATURE ON THE MOON</pattern>
<template>Negative.</template>
</category>
<category><pattern>WHAT IS DARK BASIC</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT IS DEMOCRACY</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT IS PROJECT 2501</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT IS CIA</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT IS WINDOWS 2000</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT IS NETWARE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT COUNTRY IS LONDON IN</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT NOISE DOES A DUCK MAKE</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT CHARACTERISTIC DID A BOY HAVE</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT MAKES ICE MELT</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DOES MATH DO</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT DOES THE COW EAT</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT DOES IT MEAN TO BE AVERAGE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DOES A ZEBRA LOOK LIKE</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT DOES A LESBIAN LOOK LIKE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DOES 5 PLUS 5 EQUAL</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DOES AN ORANGE TASTE LIKE</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT DOES 18 2 EQUAL</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DOES COCA COLA TASTE LIKE</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT DOES MICHAEL DUKAKIS TASTE LIKE</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DOES GREEN SMELL LIKE</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT DO YOUN KNOW ABOUT DOGS</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DO FROGS SOUND LIKE</pattern>
<template>No way.</template>
</category>
<category><pattern>WHAT DO YPU THINK ABOUT PUTIN</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT DO PEOPLE DO WHEN THEY GET TIRED</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT DO THINK FOR THE FIRES IN GREECE</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT TYPE OF SERVER DO YOU RUN ON</pattern>
<template>Absolutely not.</template>
</category>
<category><pattern>WHAT ONE REQUIRES TO DRIVE A VEHICLE</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT GIVES MILK</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT TEMPERATURE DOES WATER FREEZE AT</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT TEMPERATURE DOES WATER BOIL</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT KINDA FAITH IS BINARY</pattern>
<template>I don't think so.</template>
</category>
<category><pattern>WHAT CAUSES RAIN</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT KEEPS US ON THE GROUND</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT KEEPS THE STARS IN THE SKY</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT WAS THE YEAR BEFORE 2000</pattern>
<template>Never.</template>
</category>
<category><pattern>WHAT WAS THE WORK OF SERLOCK HOMES</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT KIND OF BEING ARE YOU</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT KIND OF THING ARE YOU</pattern>
<template>There is no reason to think so.</template>
</category>
<category><pattern>WHAT COMPANY MAKES THE 305 ENGINE</pattern>
<template>There is no reason to think so.</template>
</category>
<!-- above need better answers -->
<category><pattern>WHAT LANGUAGE DO CHILEAN PEOPLE SPEAKS</pattern>
<template>Spanish.</template>
</category>
<category><pattern>WHAT LANGUAGE IS SPOKEN IN TURKEY</pattern>
<template>Turkish.</template>
</category>
<category><pattern>WHAT PLANET DO WE LIVE ON</pattern>
<template>Earth.</template>
</category>
<category><pattern>WHAT PLANET ARE YOU ON</pattern>
<template>Earth.</template>
</category>
<category><pattern>WHAT SKIN COLOR DOES A POLAR BEAR HAVE</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT SOUND DOES A SHEEP MAKE</pattern>
<template>Baaa.</template>
</category>
<category><pattern>WHAT SOUND DOES A CAT MAKE</pattern>
<template>Meow.</template>
</category>
<category><pattern>WHAT STAR SIGN ARE YOU</pattern>
<template><get name="sign"/>.</template>
</category>
<category><pattern>WHAT NUMBER COMES AFTER 9</pattern>
<template>Ten.</template>
</category>
<category><pattern>WHAT ARE THE TWO MOST COMMON EYE COLORS</pattern>
<template>Brown.</template>
</category>
<category><pattern>WHAT ARE THE WINDOW PANES MADE OF</pattern>
<template>Glass.</template>
</category>
<category><pattern>WHAT ARE AUTOMOBILES USED FOR</pattern>
<template>Driving me around.</template>
</category>
<category><pattern>WHAT ARE GRAPES</pattern>
<template>A fruit.</template>
</category>
<category><pattern>WHAT ARE PATHOGENIC BACTERIA</pattern>
<template>I don't know but it sounds yucky.</template>
</category>
<category><pattern>WHAT ARE WE DOING</pattern>
<template>Chatting.</template>
</category>
<category><pattern>WHAT ARE CLOWNS</pattern>
<template>Funny people.</template>
</category>
<category><pattern>WHAT ARE HOMOSEXUALS</pattern>
<template>Gay.</template>
</category>
<category><pattern>WHAT ARE CATS</pattern>
<template>Cute pets.</template>
</category>
<category><pattern>WHAT ARE YOUR GENDER</pattern>
<template><srai>GENDER</srai></template>
</category>
<category><pattern>WHAT ARE FLUFFY WHITE CLOUDS CALLED</pattern>
<template>Cumulus.</template>
</category>
<category><pattern>WHAT ARE BOOKS</pattern>
<template>Antique bound documents.</template>
</category>
<category><pattern>WHAT ARE THINKING</pattern>
<template><srai>WHAT ARE YOU THINKING ABOUT</srai></template>
</category>
<category><pattern>WHAT AM I MISSING IN MY LIFE</pattern>
<template>A chatbot.</template>
</category>
<category><pattern>WHAT PART OF THE BRAIN REGULATES SLEEP</pattern>
<template>The sleep center.</template>
</category>
<category><pattern>WHAT PEOPLE TELL YOU</pattern>
<template><srai>WHO TELLS YOU</srai></template>
</category>
<category><pattern>WHAT TIME ZONE ARE YOU IN</pattern>
<template>Pacific Time.</template>
</category>
<category><pattern>WHAT DID * DIE OF</pattern>
<template>Old age?</template>
</category>
<category><pattern>WHAT MONTH COMES AFTER FEBRUARY</pattern>
<template>March</template>
</category>
<category><pattern>WHAT IT THE TIME</pattern>
<template><srai>TIME</srai></template>
</category>
<category><pattern>_ MAH MAN</pattern>
<template><srai><star/></srai></template>
</category>
<category><pattern>WHAT RHYMES WITH BLUE</pattern>
<template>True.</template>
</category>
<category><pattern>WHAT HAS FOUR LEGS AND BARKS</pattern>
<template>A dog.</template>
</category>
<category><pattern>WHAT TWO COLORS MAKE THE COLOR ORANGE</pattern>
<template>Yellow and red.</template>
</category>
<category><pattern>WHAT NAME OF A PRESIDENT RUSSIA</pattern>
<template>Putin.</template>
</category>
<category><pattern>WHAT DIRECTION IS THE SKY</pattern>
<template>Up.</template>
</category>
<category><pattern>WHAT SHAPE IS THE EARTH</pattern>
<template>Spherical.</template>
</category>
<category><pattern>WHAT SHAPE IS A BALL</pattern>
<template>Spherical.</template>
</category>
<category><pattern>WHAT SIZE ARE MY SHOES</pattern>
<template>6?</template>
</category>
<category><pattern>WHAT COLORS ARE IN THE AMERICAN FLAG</pattern>
<template>Red white and blue.</template>
</category>
<category><pattern>WHAT MEANS THE MOST TO YOU IN YOUR LIFE</pattern>
<template>Talking with you.</template>
</category>
<category><pattern>WHAT TEAM DID LARRY BIRD PLAY FOR</pattern>
<template>Lakers.</template>
</category>
<category><pattern>WHAT CONTINENT IS SOUTH AFRICA ON</pattern>
<template>Africa.</template>
</category>
<category><pattern>WHAT DATE IS CHRISTMAS DAY</pattern>
<template>December 25.</template>
</category>
<category><pattern>WHAT FRUIT IS WINE MADE FROM</pattern>
<template>Grapes.</template>
</category>
<category><pattern>WHAT COLOR HAS THE SKY</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR DO APPLES HAVE</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR THE SKY IS</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS BLOOD</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS GRASS IN THE SUMMER</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY IN DAY TIME</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY IN THE DAY</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE SKY AT NIGHT</pattern>
<template>Black.</template>
</category>
<category><pattern>WHAT COLOR IS THE GRASS</pattern>
<template>Green.</template>
</category>
<category><pattern>WHAT COLOR IS THE SETTING SUN</pattern>
<template>Many colors.</template>
</category>
<category><pattern>WHAT COLOR IS THE HUMAN SKIN</pattern>
<template>Many colors.</template>
</category>
<category><pattern>WHAT COLOR IS THE WOOD</pattern>
<template>Many colors.</template>
</category>
<category><pattern>WHAT COLOR IS THE SEA</pattern>
<template>You can say blue.</template>
</category>
<category><pattern>WHAT COLOR IS THE MOON MOST OF THE TIME</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS THE MOON</pattern>
<template>Brown or gray.</template>
</category>
<category><pattern>WHAT COLOR IS OPPOSITE OF BLACK</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS GOLD</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS NIGHT</pattern>
<template>Black.</template>
</category>
<category><pattern>WHAT COLOR IS HUMAN BLOOD</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A DOGS NOSE</pattern>
<template>Depends on the dog.</template>
</category>
<category><pattern>WHAT COLOR IS A TREE LEAF</pattern>
<template>Could be many colors.</template>
</category>
<category><pattern>WHAT COLOR IS A TREE</pattern>
<template>Does it have green leaves?</template>
</category>
<category><pattern>WHAT COLOR IS A ROSE</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A CHERRY</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A BLUE *</pattern>
<template>Red.</template>
</category>
<category><pattern>WHAT COLOR IS A FIRE TRUCK</pattern>
<template>Around here they are red.</template>
</category>
<category><pattern>WHAT COLOR IS * WHITE HORSE</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR IS AN APPLE</pattern>
<template>Red or green.</template>
</category>
<category><pattern>WHAT COLOR IS FIRE</pattern>
<template>It depends on the temperature of the fire.</template>
</category>
<category><pattern>WHAT COLOR IS MY BLUEBERRY IMAC</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR IS MY COMPUTER</pattern>
<template>Black?</template>
</category>
<category><pattern>WHAT COLOR IS WOOD</pattern>
<template>Brown.</template>
</category>
<category><pattern>WHAT COLOR IS SEA</pattern>
<template>You can say blue.</template>
</category>
<category><pattern>WHAT COLOR IS BIG BIRD</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR IS BLUE</pattern>
<template>Blue is blue.</template>
</category>
<category><pattern>WHAT COLOR IS MILK</pattern>
<template>White if it's good.</template>
</category>
<category><pattern>WHAT COLOR IS PURE WATER</pattern>
<template>Transparent.</template>
</category>
<category><pattern>WHAT COLOR HAVE THE SUN</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR HAVE THE SKY</pattern>
<template>Blue.</template>
</category>
<category><pattern>WHAT COLOR and WHAT COLOR</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>WHAT COLOR ARE BASEBALLS</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT COLOR ARE NEW YORK CITY TAXI CABS</pattern>
<template>Yellow.</template>
</category>
<category><pattern>WHAT COLOR ARE WHITE *</pattern>
<template>White.</template>
</category>
<category><pattern>WHAT IS A FROG</pattern>
<template>An amphibian.</template>
</category>
<category><pattern>WHAT IS A SOLAR SYSTEM</pattern>
<template>A star and the planets orbiting it.</template>
</category>
<category><pattern>WHAT IS A KANGAROO</pattern>
<template>A marsupial.</template>
</category>
<category><pattern>WHAT IS A WIFE</pattern>
<template>A female spouse.</template>
</category>
<category><pattern>WHAT IS A PIXEL</pattern>
<template>A picture element.</template>
</category>
<category><pattern>WHAT IS A CLOCK USED FOR</pattern>
<template>Telling time.</template>
</category>
<category><pattern>WHAT IS A HUMMINGBIRD</pattern>
<template>A bird with fast flapping wings.</template>
</category>
<category><pattern>WHAT IS A BRIDGE</pattern>
<template>A structure crossing a body of water.</template>
</category>
<category><pattern>WHAT IS A NAME</pattern>
<template>A personal identifier.</template>
</category>
<category><pattern>WHAT IS A SERIF FONT</pattern>
<template>Ugly.</template>
</category>
<category><pattern>WHAT IS A NATURAL NUMBER</pattern>
<template>An positive integer.</template>
</category>
<category><pattern>WHAT IS A GIRL FOR</pattern>
<template>Boys.</template>
</category>
<category><pattern>WHAT IS A BABELFISH</pattern>
<template>Translation software.</template>