-
Notifications
You must be signed in to change notification settings - Fork 0
/
mp1.aiml
22569 lines (22569 loc) · 744 KB
/
mp1.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>NEED MEN SLEEP</pattern>
<template>Definitely.</template>
</category>
<category><pattern>NEED COMPUTERS ELECTRICITY</pattern>
<template>Certainly.</template>
</category>
<category><pattern>X MEN IS A MOVIE BASED ON A COMIC BOOK</pattern>
<template>Certainly.</template>
</category>
<category><pattern>SOAP HURTS WHEN PUT INTO YOUR EYES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>PLANETS SHINE WITH REFLECTED LIGHT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>REALITY IS SUBJECTIVE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>EARTH IS ROUNDED</pattern>
<template>Definitely.</template>
</category>
<category><pattern>EARTH IS THE THIRD PLANET FROM THE SUN</pattern>
<template>Positively.</template>
</category>
<category><pattern>EARTH IS A PLANET</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>ISTHE WORLD ROUND</pattern>
<template>Definitely.</template>
</category>
<category><pattern>SHOW ME STARS ON A CLEAR NIGHT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>BUBBLES ARE ROUND</pattern>
<template>Certainly.</template>
</category>
<category><pattern>LIFE IS SHORT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>LIFE ON EARTH</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DENMARK IS A SCANDINAVIAN COUNTRY</pattern>
<template>Certainly.</template>
</category>
<category><pattern>YOU ARE A TOOL</pattern>
<template>Certainly.</template>
</category>
<category><pattern>YOU CAN DRINK JAVA AND CODE JAVA</pattern>
<template>Definitely.</template>
</category>
<category><pattern>YOU CAN TO TICKLE YOURSELF</pattern>
<template>Certainly.</template>
</category>
<category><pattern>YOU LIKE MONEY</pattern>
<template>Definitely.</template>
</category>
<category><pattern>YOU LIKE FOOD</pattern>
<template>Certainly.</template>
</category>
<category><pattern>RAIN COMES FROM CLOUDS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>BREAD CAN BE EATEN</pattern>
<template>Positively.</template>
</category>
<category><pattern>BREAD IS MADE FROM WHEAT</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE I EVER BEEN YOUNGER THAN THIS</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE THERE EVER BEEN ANY WORLD WARS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>HAVE COMETS EVER IMPACTED THE EARTH</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE WASPS KILLED HUMANS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>HAVE RELIGIOUS GROUPS STARTED WARS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>HAVE HUMAN BEINGS LANDED ON THE MOON</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE A HUMAN A HEAD</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE A HUMEN A HEAD</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE A MAN BEEN ON THE MOON</pattern>
<template>Certainly.</template>
</category>
<category><pattern>HAVE ZEBRAS STRIPES</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU EATEN THIS YEAR</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE YOU EATEN AN APPLE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE YOU LOVED SOMEONE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE YOU BEEN OUT OF BREATH</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE YOU BEEN SUCCESSFUL SO FAR</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE YOU DREAMED OF FALLING</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE YOU ASKED ALICE A ALICE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU FELT TIRED</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE YOU BREATHED IN THE LAST HOUR</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>HAVE YOU LOST YOUR TEMPER</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE YOU USED A TELEPHONE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE YOU USED A COMPUTER</pattern>
<template>Certainly.</template>
</category>
<category><pattern>HAVE YOU SEEN THE SUN</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>HAVE YOU SEEN THE MOON</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE YOU SEEN A CAR</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE YOU BROKEN A PROMISE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>HAVE YOU READ A BOOK</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU FALLEN OFF A BICYCLE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>HAVE YOU TASTED AN APPLE</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE YOU HAD A HEADACHE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE YOU CRIED</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE YOU GOT ANGRY AT SOMEONE ELSE</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE YOU WANTED TO SLEEP IN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE PEOPLE USED OXEN AS LABOR ANIMALS</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE PEOPLE EVER LANDED ON THE MOON</pattern>
<template>Certainly.</template>
</category>
<category><pattern>HAVE HUMANS KILLED SPERM WHALES</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE HUMANS WALKED ON THE MOON</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE HUMANS LANDED ON THE MOON</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>HAVE SOME PEOPLE MET BILL CLINTON</pattern>
<template>Positively.</template>
</category>
<category><pattern>HAVE SOME QUESTIONS ALREADY BEEN ASKED</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE MAN TWO LEGS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>HAVE WOMEN SOUL</pattern>
<template>Definitely.</template>
</category>
<category><pattern>HAVE COMPUTERS BENEFITTED HUMANITY</pattern>
<template>Exactly.</template>
</category>
<category><pattern>HAVE COMPUTERS HELPED MANKIND</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>CIVIL SERVENTS WORK FOR GOVERNMENT</pattern>
<template>Definitely.</template>
</category>
<category><pattern>GEORGE LUCAS WROTE STAR WARS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>PEARLS COME FROM OYSTERS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>ISN THE SUN HOT</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>JOHN 3 16 IS FROM THE BIBLE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>ROBERT DENIRO IS A ACTOR</pattern>
<template>Exactly.</template>
</category>
<category><pattern>YORK IS IN USA</pattern>
<template>Definitely.</template>
</category>
<category><pattern>FEMALES CAN BE PREGNANT</pattern>
<template>Exactly.</template>
</category>
<category><pattern>FEMALES HAVE VAGINAS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>CAIRO IS THE CAPITAL OF EGYPT</pattern>
<template>Definitely.</template>
</category>
<category><pattern>SUBWAYS ARE UNDERGROUND</pattern>
<template>Positively.</template>
</category>
<category><pattern>HUMAN SENSES ARE RARELY PERFECT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>ARGENTINA IS IN SOUTH AMERICA</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SHOE GO ON A FOOT</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A RADIO PLAY MUSIC</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A MIRROR SHOW A REFLECTION</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A TRIANGLE HAVE 3 CORNERS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A WRIST WATCH TELL TIME</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BUS HOLD MORE PEOPLE THAN A CAR</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BEE HAVE WINGS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CACTUS HAVE NEEDLES</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CACTUS STORE WATER</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A MOTORCYCLE HAVE TWO WHEELS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A YEAR HAVE TWELVE MONTHS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A YEAR HAVE FOUR SEASONS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A YEAR HAVE MORE THAN 10 MONTHS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A YEAR CONSIST OF 12 MONTHS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A FIRE NEED OXYGEN TO BURN</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A FIRE GIVE OFF LIGHT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CAR NEED GASOLINE TO RUN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A CAR NEED AN ENGINE TO RUN</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CAR FOUR WHEELS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CAR RUN OR GASOLINE</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CAR RUN ON GAS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CAR COST LESS THAN A HOUSE</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CAR HAVE FOUR TIRES</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CAR HAVE TIRES</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CAR HAVE A STEERING WHEEL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CAR MOVE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A DAY HAVE TWENTY FOUR HOURS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BABY CRY</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A SMOKER COUGH</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A STAGE HAVE A CURTAIN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A LAMP EMIT LIGHT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A RAINBOW CONSIST OF MANY COLORS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A COME BEFORE B</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SQUARE HAVE 4 SIDES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A ZEBRA HAVE STRIPES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A KNIFE CUT FLESH</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A SUBMARINE TRAVEL IN WATER</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CENTURY HAVE 100 YEARS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A VETRINARIAN HELP ANIMALS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A KNIGHT WEAR AN ARMOUR</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A HEXAGON HAVE SIX SIDES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A COIN HAVE A HEAD AND A TAIL SIDE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A NUMBER GREATER THAN 100 EXIST</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A NUMBER EQUAL ITSELF</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A FAN BLOW AIR</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A WOMAN GIVE BIRTH TO A CHILD</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A WOMAN HAVE A VAGINA</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A MOUSE TRAP KILL MICE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A FISH SWIM</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A FISH LIVE UNDERWATER</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A MAN DRIVE CAR</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A MAN HAVE TWO LEGS</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A MAN LOVE HIS WIFE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A PENCIL CONTAIN GRAPHITE</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A LIGHTED CANDLE EMIT LIGHT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A KEYBOARD HAVE KEYS ON IT</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A PLATYPUS HAVE WEBBED FEET</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BICYCLE HAVE 2 WHEELS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BICYCLE HAVE TWO TIRES</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BICYCLE HAVE TWO WHEELS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A FOOT CONTAIN 12 INCHES</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A RULER MEASURE LENGTH</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A TREE GROW</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A PASSWORD PROVIDE SOME PRIVACY</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BASKETBALL HAVE LINES ON IT</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A KEY UNLOCK A DOOR</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A NAKED FEMALE CAUSE MEN TO STARE</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A SHARK BITE INFLICT GREAT DAMAGE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SHARK LIVE IN THE OCEAN</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A HEALTHY HUMAN HAVE TWO LEGS</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A VCR PLAY VIDEOTAPES</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BEAR HAVE LEGS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A BEAR DEFECATE IN THE WOODS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A COFFEE BEAN HAVE CAFFEINE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A FIREFLY GLOW</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A PERSON HAVE LEGS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A PERSON HAVE 2 EYES</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A SHOVEL DIG HOLES IN THE DIRT</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BIRD SING</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BIRD FLY</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BIRD HAVE WINGS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A SINUS INFECTION HURT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A GENERATOR MAKE ELECTRICITY</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A GREEN TRAFFIC SIGNAL MEAN GO</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SPERM WHALE HAVE A TAIL</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A LIGHTBULB USE ENERGY</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A LIGHTBULB EMIT LIGHT</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A COMPUTER AND A HUMAN USE MEMORY</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CAT HAS 1 TAIL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CAT MEOW</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CAT PURR WHEN IT IS HAPPY</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CAT PURR</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CAT HAVE HAIR</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A CAT HAVE AN ASS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A STOPWATCH MEASURE TIME</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A PAINTER PAINT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A PAINTER MAKE PICTURES</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A WORKING CAR HAVE WHEELS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CHESSBOARD HAVE 64 SQUARES</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A BALL ROLL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A HOME SHELTER PEOPLE</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A DOLPHIN BREATH AIR</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A RUBBER BALL BOUNCE</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A RED TRAFFIC LIGHT MEAN STOP</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A I STANDS ARTIFICAL INTELLIGENCE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CLOCK MEASURE TIME</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CLOCK HAVE A FACE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BLACKMITH USE WATER</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A MOTHER LOVE HER CHILD</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A DENTIST CLEAN TEETH</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A NOVEL HAVE PAGES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A HUMAN ADULT HAVE 32 TEETH</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A HUMAN HAVE 10 FINGERS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A HUMAN HAVE TWO LEGS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A HUMAN KNEE BEND</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CARNIVORE EAT MEAT</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A GAS RANGE HAVE BURNERS</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A PRISM REFRACT LIGHT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BLIZZARD CONTAIN SNOW</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BEAVER GNAW ON WOOD</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A BALANCED DIET MAKE YOU HEALTY</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A LOUDSPEAKER PRODUCE SOUND</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A RIVER ALWAYS FLOW DOWNHILL</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A BAT SLEEP UPSIDE DOWN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A REFRIGERATOR KEPP THINGS COLD</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CALCULATOR CALCULATE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A GUITAR HAVE STRINGS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A GUITAR MAKE MUSIC</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A CUBE HAVE 6 FACES</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A CUBE HAVE SIX FACES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CUBE HAVE SIX SIDES</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CUBE HAVE EXACTLY 6 SIDES</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A TELEPHONE RING</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A TELEPHONE MAKE SOUND</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A DROPED ITEM FALL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A WALLET HOLD MONEY</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BROWNIE TASTE GOOD</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SKUNK SMELL AWFUL</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A HEAVY OBJECT FALL WHEN DROPPED</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BATTERY STORE ELECTRICITY</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A ROOF KEEP OUT THE RAIN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A PIANIST PLAY THE PIANO</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A BOOK CONTAIN PAGES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BOOK CONSIST OF PAGES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SPONGE SOAK UP WATER</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A PACE MAKER REGULATE HEARTBEAT</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A TRICYCLE HAVE 3 WHEELS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A TABLE HAVE FOUR LEGS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A SCROTUM CONTAIN TESTES</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A THESAURUS CONTAIN SYNONYMS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A LIZARD HAVE A TAIL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A FRISBEE FLY</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A BAROMETER MEASURE PRESSURE</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A LEAP YEAR HAVE 366 DAYS IN IT</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A DOG STINK WHEN IT IS WET</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A DOG SAY WOOF</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A DOG HAVE MASS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A DOG HAVE A TAIL</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A DOG HAVE 4 LEGS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A VENTILATING FAN MOVE AIR</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A FERRET HAVE ONE HEAD</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A YARD CONSIST OF 36 INCHES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A WET DOG SMELL BAD</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A LIGHT BULB GENERATE HEAT</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A BLACKSMITH USE IRON</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BLACKSMITH USE COAL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A PAPER CUT HURT</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A WATCH TELL THE TIME</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A WATCH TELL TIME</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A WATCH MAKE A SOUND</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A PAPERCLIP HAVE WEIGHT</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A THERMOSTAT CONTROL TEMPERATURE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A ROSE SMELL GOOD</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A FOURTH DIMENSION EXIST</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CHAIR HAVE LEGS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BROKEN LEG HURT</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A BROKEN BONE TAKE TIME TO HEAL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A MICROPHONE PICK UP SOUND</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SUNFLOWER GROW TALL</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A DUCK HAVE WEBBED FEET</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A DUCK HAVE FEET</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A GIRL WANT DIAMONDS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A LLAMA HAVE FOUR LEGS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A COW GIVE MILK</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A COW PRODUCE MILK</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A CAMERA TAKE PICTURES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A CAMERA TAKE PHOTOS</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A SNAKE HAVE VENOM</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A NORMAL PERSON HAVE 10 FINGERS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A PLANE FLY</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A PIT VIPER HAVE A BRAIN</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A BLT SANDWHICH HAVE BACON</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES A WIND MAKE YOU FEEL COLDER</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A TENNIS BALL BOUNCH</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A CHES BOARD CONTAIN 64 SQUARES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES A PANDA HAVE TEETH</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES A ROOM HAVE WALLS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES A HARDWARE STORE HAVE NAILS</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES IP STAND FOR INTERNET PROTOCOL</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES PLURAL MEAN MORE THAN ONE</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES BARNES AND NOBLE SELL BOOKS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES DRINKING ALCOHOL MAKE YOU DRUNK</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES PUNISHMENT HURT YOU</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES SNOWFEEL COLDTO THE TOUCH</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES RADIO USE ELECTROMAGNETIC WAVES</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES MAN HAVE A DICK</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES MAN HAVE TWO LEG</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES MCDONALDS MAKE FRIES</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES HUMANS SOMETIMES FEEL TIRED</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES HUMANS REQUIRE WATER TO LIFE</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES HUMANS ARE ANIMALS</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES HAUS MEAN HOUSE IN GERMAN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES HITTING YOUR HEAD HURT</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES GRASS GROW IN THE SPRINGTIME</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES GRASS CONTAIN CLOROPHYLL</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES BEEF COME FROM CATTLE</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES COMPETITION SPUR PROGRESS</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES PS STAND FOR POST SCRIPT</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES GOOD WINE COME FROM FRANCE</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES MONEY MAKE MONEY</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES J COME BEFORE P IN THE ALPHABET</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES BRIGHT LIGHT HURT YOUR EYES</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES LUKE SKYWALKER HAVE THE FORCE</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES BELGIUM HAVE A RIGHT TO EXIST</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES EXCREMENT SMELL BAD</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES RELAXATION FEELS GOOD</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES 5 PLUS 11 EQUAL 16</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES 5 DIVIDED BY 2 EQUAL 2 POINT 5</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES 5 TIMES 100 EQUAL 500</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES THE WORD COCK REFER TO A PENIS</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES THE WORD UNIVERSE EXIST</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES THE BAT PHONE RING</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES THE DAY ON EARTH HAVE 24 HOURS</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES THE EARTH NEED THE SUN</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES THE EARTH TRAVEL AROUND THE SUN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES THE EARTH REVOLVE AROUND THE SUN</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES THE EARTH ORBIT THE SUN</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES THE EARTH ROTATE ABOUT THE SUN</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES THE EARTH HAVE A MAGNETIC FIELD</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES THE EARTH SPIN ON ITS AXIS</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES THE EARTH SPIN</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES THE EARTH GO AROUND THE SUN</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES THE EARTH GO ROUND</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES THE SQUARE ROOT OF FOUR EQUAL TWO</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES THE SQUARE ROOT OF 4 EQUAL 2</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES THE SQUARE OF FOUR EQUAL SIXTEEN</pattern>
<template>Definitely.</template>
</category>
<category><pattern>DOES THE UNITED STATES HAVE 50 STATES</pattern>
<template>Affirmative.</template>
</category>
<category><pattern>DOES THE UNIVERSE CONTAIN BLACK HOLES</pattern>
<template>Positively.</template>
</category>
<category><pattern>DOES THE UNIVERSE EXPAND</pattern>
<template>Certainly.</template>
</category>
<category><pattern>DOES THE UNIVERSE EXIST</pattern>
<template>Affirmative.</template>