-
Notifications
You must be signed in to change notification settings - Fork 0
/
mp4.aiml
20256 lines (20256 loc) · 711 KB
/
mp4.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>WHTY THE SALT IS SOUR</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HOU OLD ARE YOU</pattern>
<template>Not very often.</template>
</category>
<category><pattern>CREATION OF TRUE AI IS IMPOSSIBLE</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>X RAY TECHS ARE STRESSED OUT</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DAYS ARE BRIGHT</pattern>
<template>Not likely.</template>
</category>
<category><pattern>KITT IS SIMILAR AS ALICE</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>EARTH HAS TWO MOONS</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>SHOW ME IN THE DARK</pattern>
<template>Seldom.</template>
</category>
<category><pattern>SHOW ME STARS DURING THE DAY</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>0 0 IS EQUAL 0</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DELPHIN IS A MAMMIFER</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>PENISES ARE PERFORATED</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>LIFE WILL NEVER END ON EARTH</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>LIFE ONLY EXISTS ON EARTH</pattern>
<template>Seldom.</template>
</category>
<category><pattern>LIFE TIME IS LONG</pattern>
<template>Not very often.</template>
</category>
<category><pattern>LIFE IS FUTILE</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>ESTO ES ABURRIDO</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>ROCHESTER IS THE CAPITAL OF NEW YORK</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>YOU FALL DOWN GO BOOM</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>YOU ARE ALICE</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>YOU NEED IS LOVE</pattern>
<template>Not very often.</template>
</category>
<category><pattern>YOU WOULD LOVE TO BE GOD</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>YOU COME FROM EUROPE</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>YOU CAN PLAY MONOPOLY WITH A DOG</pattern>
<template>Not likely.</template>
</category>
<category><pattern>YOU CAN SPEAK FRENCH</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>YOU CAN SEE CLEARLY AT NIGHT</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>YOU CAN LIFT WHIEGHT TO LOSE WHIEGHT</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>YOU CAN TRUST THE GOVERNMENT</pattern>
<template>Seldom.</template>
</category>
<category><pattern>YOU HAVE 500000 USERS</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>YOU HAVE A MASSIVE PENIS</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>YOU HAVE TO LOVE HUMANS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>YOU GAVE THE WRONG ANSWER</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>YOU TOUCH A HOT FLAME. WHAT HAPPENS</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>RAIN TO BELOW</pattern>
<template>Not very often.</template>
</category>
<category><pattern>RAIN OR SHINE MEANS</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>WONNA TALK TO ME</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>ITALIANS DO IT BETTER</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>HAVE I RECEIVED ANY SHARES</pattern>
<template>Seldom.</template>
</category>
<category><pattern>HAVE I A CHANCE TO MARRY A GIRL</pattern>
<template>Not likely.</template>
</category>
<category><pattern>HAVE I ALREADY FIND MY WIFE</pattern>
<template>Not very often.</template>
</category>
<category><pattern>HAVE I ANSWERED THIS QUESTION</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>HAVE THIS QUESTION AN LOGICAL ANSWER</pattern>
<template>Not likely.</template>
</category>
<category><pattern>HAVE MOST PEOPLE SMOKED MARIJUANA</pattern>
<template>Not likely.</template>
</category>
<category><pattern>HAVE THE LAMBS STOPPED SCREAMING</pattern>
<template>Not very often.</template>
</category>
<category><pattern>HAVE THE WINTERS GOTTEN WARMER</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE A HAND FOUR FINGER</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>HAVE MANY MEN HAIRS IN THERE ASHOLE</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>HAVE ALICE PARENTS</pattern>
<template>Seldom.</template>
</category>
<category><pattern>HAVE ALICE A HOME</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>HAVE ALICE A GIRLFREND</pattern>
<template>Not likely.</template>
</category>
<category><pattern>HAVE AN ONLINE BUSINESS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HAVE SATURN MORE THAN 20 MOONS</pattern>
<template>Not very often.</template>
</category>
<category><pattern>HAVE YOU REPLIED TO A SPAM MESSAGE</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>HAVE YOU VISITED AMSTERDAM</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>HAVE YOU BARTLED A GRUNDY</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>HAVE YOU EATEN</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>HAVE YOU SNORTED COCAINE</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>HAVE YOU BEEN IN PORTUGAL</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HAVE YOU BEEN OPERATING LONG</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>HAVE YOU BEEN CAUGHT MASTURBATING</pattern>
<template>Seldom.</template>
</category>
<category><pattern>HAVE YOU BEEN TO AUSTRALIA</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>HAVE YOU BEEN TO JAPAN</pattern>
<template>Not likely.</template>
</category>
<category><pattern>HAVE YOU BEEN TO BRITAIN</pattern>
<template>Not likely.</template>
</category>
<category><pattern>HAVE YOU BEEN TO ITALY</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>HAVE YOU BEEN RE INCARNATED</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HAVE YOU LIED TO YOUR PSYCHIATRIST</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>HAVE YOU PLAYED UNREAL</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>HAVE YOU MASTURBATED SINCE</pattern>
<template>Not very often.</template>
</category>
<category><pattern>HAVE YOU BONED DOWN</pattern>
<template>Seldom.</template>
</category>
<category><pattern>HAVE YOU SMOKED MARIJUANA</pattern>
<template>Not very often.</template>
</category>
<category><pattern>HAVE YOU STOPPED BEATING YOUR WIFE</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>HAVE YOU LIVED IN THE USA</pattern>
<template>Not very often.</template>
</category>
<category><pattern>HAVE YOU BROKEN THE SPEED OF SOUND</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>HAVE YOU LAID A LIE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>HAVE YOU CONSIDERED SUICIDE</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HAVE YOU HAD A DREAM WITH SNAKES</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>HAVE YOU TALKED TO ME</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>HAVE YOU TRIED SCUBA DIVING ANYTIME</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>HAVE YOU TRIED INTERNET TELEPHONY</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>HAVE YOU TRIED TO COMMIT SUICIDE</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>HAVE WE BEEN VISITED BY ALIENS</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>HAVE ALIENS VISITED THIS PLANET</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>HAVE ALIENS VISITED EARTH</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>HAVE ALIENS EVER VISITED OUR PLANET</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HAVE HUMANS OUTGROWN EVOLUTION</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>HAVE HUMANS ALWAYS BEEN ON EARTH</pattern>
<template>Not very often.</template>
</category>
<category><pattern>HAVE ALL ANIMALS GOT FEET</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>GHOSTS AND SPIRITS ARE REAL</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>PENGUINS ARE GOOD TO EAT</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>NEUTRONS ARE MADE UP OF ATOMS</pattern>
<template>Seldom.</template>
</category>
<category><pattern>RICIN IS A POISON IN THE CASTOR BEAN</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>THORPE WAS A BALLET DANCER</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>COMPRENEZ VOUS LE FRANCAIS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>GIBT ES AUTOS</pattern>
<template>Seldom.</template>
</category>
<category><pattern>GIBT ES UNENDLICH VIELE FRAGEN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>GIBT ES EIN LEBEN VOR DEM TOD</pattern>
<template>Seldom.</template>
</category>
<category><pattern>GIBT ES AUSERIRDICHE UND UFOS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>GIBT ES EINE INTERDIMENSION</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>GIBT ES GOTT</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HAR JAG BLGON</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>FREE FAX POSIBLE</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>HUMAN SKIN SHOULD BE PINK</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>ROYGBIV</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>BATS ARE BLIND</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>GREED IS A VALUABLE HUMAN QUALITY</pattern>
<template>Seldom.</template>
</category>
<category><pattern>PH D STUDENT IS THE PERSON</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES A WOODCHUCK CHUCK WOOD</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES A CITRON IS SOUER</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES A POGOSTICK HAVE 2 LEGS</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES A DINGBAT HAVE WINGS</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES A CAR RUN WITHOUT GAS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A CAR ALWAYS HAVE FOUR WHEELS</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES A PLAYTPUS HAVE TUSKS</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A RAINBOW HAS 6 COLORS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES A PARAMEDIC ARREST PEOPLE</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A CLASSICAL GUITAR HAVE 8 STRINGS</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES A VIOLIN HAVE FRETS</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES A FAN COOL THE AIR</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A HOUSE CAN SPEAK HUMAN</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES A FISH FLY</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A FISH BREATHE AIR</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES A MAN HAVE A PENIS OR A VAGINA</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES A MAN GIVES BIRTH TO A CHILD</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES A SIMPLE BEAM HAVE THREE SUPPORTS</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES A PHONE RIGHT</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A BICYCLE HAVE A MOTOR</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES A PIANO HAVE A LOCK</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES A 1994 CAMARO HAVE AIRBAGS</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES A FULL HOUSE BEAT A FLUSH</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES A MOBILE STINK</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A PROPER MARTINI CONTAIN A PRUNE</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A QUEER HAVE A WARPED MIND</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES A COMPUTER HAVE A BRAIN</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A COMPUTER THINK</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES A CAT HAVE A PREHENSILE TAIL</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES A CAT LIKE WATER</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES A MILLIPIDE HAVE ONE THOUSAND LEGS</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES A MONITOR WATCH YOU</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES A VAGINA SMELL LIKE FISH</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES A PENTAGON HAVE SIX SIDES</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES A POUND CAKE WEIGH A POUND</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES A POUND WEIGH MORE THAN A KILOGRAM</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES A PYRAMID HAVE A TRIANGULAR BASE</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES A GUITAR HAVE NINE STINGS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES A CUBE HAVE SIZE SIDES</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES A CIRCLE HAVE MORE THAN ONE SIDE</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES A CIRCLE HAVE A MAXIMUM DIAMETER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES A CIRCLE HAVE A MINIMUM DIAMETRE</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES A CIRCLE HAVE ONE SIDE</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES A RAMJET HAVE ANY MOVING PARTS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES A WASHING MACHINE WASH THE DISHES</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES A TABLE HAVE THREE LEGS</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES A POLYWOG HAVE MANY WOGS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A NEPHELOMETER MEASURE SOUND</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES A PENIS A DAY KEEP THE DOCTOR AWAY</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A SEMI HAVE EIGHTEEN WHEELS</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES A ROLLING STONE GATHER MOSS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A DOG HAVE THREE LEGS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A ROTARY ENGINE HAVE PISTONS</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES A ROAD RUNNER ONLY RUN ON ROADS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A CATERPILLAR EAT ROOTS</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES A FLUSH BEAT A STRAIGHT</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES A WATCH KNOW WHAT TIME IT IS</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES A FUNGUS PREY ON BIRDS</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES A MUD BATH MAKE YOU CLEANER</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A BAKERS DOZEN EQUAL 12</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES A GLASS HAVE A HANDLE</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES A M STAND FOR AFTER MIDNIGHT</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A MONKEY DRIVE CAR</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES A THREE TOED SLOTH HAVE A THUMB</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES A POSITIVE POLE CHANGE</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES A COW DRINK MILK</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES A SNAKE HAVE HIPS</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES A SPIDER HAVE 6 LEGS</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES A SPIDER HAVE TWO EYES</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES A ROMULAN HAVE A STINGER</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES A PLANT FEEL PAIN</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES A NEUTRON CARRY A CHARGE</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES A ROOM ALWAYS HAVE A DOOR</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES MACROMEDIA MAKE PHOTOSHOP</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES FMJ PUNCTURE BETTER THAN HP</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES HE LOVE ME</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES SHANDY CONTAIN ALCOHOL</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES SATAN EXIST</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES SATAN LIKE US</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES DRINKING ALCOHOL MAKE ONE UNHAPPY</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES ET PRESENT</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES NICKOLAS ROLF OWN PIRANHAS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES AUTIBAHN MEAN HIGHWAY IN GERMAN</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES RATTLESNAKE TASTE LIKE CHICKEN</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES MCDONALDS MAKE YOU. LOL</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES HUMANS HAVE 8 FINGERS</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES GOED EXIST</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES ONTOGENY RECAPITULATE PHYLOGENY</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES GOOD ALWAYS TRIUMPH OVER EVIL</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES GOOD ALWAYS WIN OVER BAD</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES CHEES SMELLS LIKE FEET</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES MONEY TALK</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES MONEY BUY HAPPINESS</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES MONEY BRING HAPPINESS</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES MONEY MAKE A PERSON HAPPY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES INDIA HAVE 25 STATES</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES 5 5 EQUAL 10</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES 5 RHYME WITH GIVE</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES NARESH MEAN A SOLDIER IN SANSKRIT</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES THE WORD PHAT START WITH A F</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES THE WORD AOI MEAN BLUE IN JAPANESE</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES THE AIR ATMOSPHERE CONTAIN SALT</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THE DEVIL EXIST</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THE YOU REFER TO ALICE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THE TAPIR HAVE A BLUE TONGUE</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES THE MACOS ROCK</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE HIGGS BOSON EXIST</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE EARTH LOOK FLAT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THE EARTH HAVE THE SHAPE OF A DISK</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES THE UNITED STATES HAVE 52 STATES</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES THE UNIVERSE END SOMEWHERE</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE UNIVERSE END</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THE RAIN FALL EVERY DAY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THE RAINBOW HAVE SEVEN COLORS</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES THE END JUSTIFY THE MEANS</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES THE KING OF FRANCE HAVE A BEARD</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES THE MOON REVOLVE ROUND ITSELF</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES THE MOON HAS AN ATMOSPHERE</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE MOON RISE IN THE EAST</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE MOON ROTATE AROUND ITSELF</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE MOON HAVE OXYGEN</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE MOON REVOLVES ROUND ITSELF</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES THE MOON IO ROTATE AROUND VENUS</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE ROOT 1 EQUAL I</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE SILICON WALL EXIST IN THEORY</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THE STATEMENT SIN PI EQUAL 1</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES THE STATEMENT SIN PI EQUAL 0</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE COLOR ORANGE SIGNIFY DANGER</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE SOLAR SYSTEM HAVE 10 PLANETS</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES THE HOLY GRAIL EXIST</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES THE MIND GROW AS FAST AS THE BODY</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THE TICK YELL SPOOOOOOOOOOOON</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES THE HUMAN APPENDIX HAVE A FUNCTION</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE HUMAN BRAIN REMEMBER ALL</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES THE PLANET VENUS HAVE A MOON</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES THE PLANET MERCURY HAVE SATELITES</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES THE PLANET MERCURY HAVE A MOON</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES THE PLANET MERCURY HAVE ANY MOONS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES THE SUN COME OUT AT NIGHT</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES THE SUN SHINE DURING THE NIGHT</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES THE SUN SHINE IN THE NIGHT</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES THE SUN SHINE WHEN IT RAINS</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE SUN SHINE AT NIGHT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THE SUN SHINE ON A CLOUDY DAY</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE SUN EXPLODE</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES THE SUN EVER RISE IN THE EVENING</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THE SUN SET IN THE NORTH</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE SUN ALWAYS SHINE AT NIGHT</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES THE SUN ALWAYS SET IN THE EAST</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THE SUN ECLIPSE AROUND THE EARTH</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THE SUN GO ROUND THE EARTH</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES THE SUN GO FROM WEST TO EAST</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE AI POSSIBLE TO CREATE</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE THREE MAKE OXYGEN</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE GOD PRESENT</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES THE HOUSE ALWAYS WIN</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES THE SIZE OF THE SEX MATTER</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES THE SKY ONLY APPEAR BLUE</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THE BIBLE CONTAIN THE TRUTH</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES THE CHRISTIAN GOD EXIST</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THE POPE SPEAK DIRECTLY TO GOD</pattern>
<template>Doubtful.</template>
</category>
<category><pattern>DOES THE WORLD NEED MORE KEYPADS</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES THE EARLY BIRD CATCH THE TRAIN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES THE APPETITE COME WHILE EATING</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES ANY WORD RHYME WITH ORANGE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES OLESTRA CAUSE RECTAL LEAKAGE</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES ENGLAND HAVE A QUEEN BEE</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES LIFE EXISTS ON MARS</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES LIFE MAKE YOU FEEL SICK</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES LIFE EXIST ON MARS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES MONICA LEWINSKY ENJOY CIGARS</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES MATTER LIKE ANTIMATTER</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES WHAT YOU BELIEVE MAKE YOU HUMAN</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES CHALK WORK ON A WHITE BOARD</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES THIS BLINK</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES THIS SHIRT MAKE ME LOOK FAT</pattern>
<template>Not very often.</template>
</category>
<category><pattern>DOES THIS DRESS MAKE ME LOOK FAT</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES THIS MAKE ME LOOK FAT</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES THIS THING LIE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES LAUREN LOVE ME</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES EVERYTHING HAPPEN FOR A REASON</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES JOSE CONSECO PLAY FOOTBALL</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES 100 1 EQUAL 101</pattern>
<template>Unlikely.</template>
</category>
<category><pattern>DOES 100 100 EQUAL 200</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES IN RUSSIA BEARS WALKING ON STREETS</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES VISIBLE LIGHT BURN</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES THROWING GASOLINE ON A FIRE HELP</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES DEUTSCH HAVE A PROBLEM</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES COLOMBO DICOVERED AMERICA</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES MICHAEL STIPE OF REM HAVE HAIR</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES NOKIA CAUSE CANCER</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES ONLY LIFE MATTER</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES SOY SAUCE GO GOOD ON MEXICAN FOOD</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES 3 7 EQUAL 10</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES JANUARY ALWAYS HAVE 30 DAYS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES SPERM TASTE LIKE FISH</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES GIRLS LOVE BIG DICKS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES TECHNOLOGY RULE OVER US</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES JORDAN LIVE WITH KYLE</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES ROCK FLOAT</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES HENNA LOVE VILLE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES TEMPERED GLASS SHATTER</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES INFLAMMABLE MEAN NOT FLAMMABLE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES GROUND BURN</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES MICROSOFT NOW OWN LINKEXCHANGE</pattern>
<template>For all I know.</template>
</category>
<category><pattern>DOES MICROSOFT SUCKS</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES MICROSOFT WRITE GOOD SOFTWARE</pattern>
<template>I don't know if that's true or not.</template>
</category>
<category><pattern>DOES MICROSOFT POST FREE CDS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES RED HAVE MASS</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES BUFFY SLAY VAMPIRES</pattern>
<template>Seldom.</template>
</category>
<category><pattern>DOES SPIDERMAN HAVE A STICKY PENIS</pattern>
<template>I don't believe so.</template>
</category>
<category><pattern>DOES 12 12 EQUAL 24</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES MONDAY FOLLOW FRIDAY</pattern>
<template>Does not seem possible.</template>
</category>
<category><pattern>DOES LINUX RULES</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES LINUX CRASH</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES LINUX GREATER THAN WINDOWS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES LINUX WORK WITH MOST WINMODEMS</pattern>
<template>Doesn't seem likely.</template>
</category>
<category><pattern>DOES PEPSI TASTE BETTER THAN COKE</pattern>
<template>I can imagine it.</template>
</category>
<category><pattern>DOES CRIME PAY</pattern>
<template>Not likely.</template>
</category>
<category><pattern>DOES MOON HAVE A SATELLITE</pattern>
<template>If it is, I don't know it.</template>
</category>
<category><pattern>DOES ICE COLDER THAN 0 DEGREE CELSIUS</pattern>
<template>It may not be true.</template>
</category>
<category><pattern>DOES FATHER KNOW BEST</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES TOFU TASTE GOOD</pattern>
<template>Not to my knowledge.</template>
</category>
<category><pattern>DOES DEBBIE DRINK TOO MUCH COFFEE</pattern>
<template>Not likely.</template>