-
Notifications
You must be signed in to change notification settings - Fork 2
/
mp0.aiml
24016 lines (24015 loc) · 746 KB
/
mp0.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="ISO-8859-1"?>
<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. -->
<!-- -->
<category><pattern>YOU STOP AT RED AND GO AT GREEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>YOU SIT ON A CHAIR</pattern>
<template>Yes.</template>
</category>
<category><pattern>YOU NEED SECURITY IN LIFE</pattern>
<template>Yes.</template>
</category>
<category><pattern>YOU CAN FIND GERMANY IN EUROPE</pattern>
<template>Yes.</template>
</category>
<category><pattern>YOU CAN DRINK TEA HOT OR COLD</pattern>
<template>Yes.</template>
</category>
<category><pattern>WWW MEANS WORLD WIDE WEB</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU LIKE TO HAVE LOTS OF MONEY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND SHEETS ON A BED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND PANTS IN A CLOSET</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A TOILET IN A BATHROOM</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A SINK IN A BATHROOM</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND AN OVEN IN A KITCHEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A MICROWAVE IN A KITCHEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A LIVING ROOM IN A HOUSE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A LAWN MOWER IN A GARAGE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A LAMP IN A BEDROOM</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A FIREPLACE IN A HOUSE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A DINING ROOM IN A HOUSE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A CLOSET IN A HOUSE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A CAR IN A GARAGE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A BLENDER IN A KITCHEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A BEDROOM IN A HOUSE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A BED IN A BEDROOM</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU FIND A BATHTUB IN A BATHROOM</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU ENJOY A COLD DRINK</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD YOU BE MY FRIEND</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOULD A PERSON WEIGH LESS ON THE MOON</pattern>
<template>Yes.</template>
</category>
<category><pattern>WORDS ARE MADE OF LETTERS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WOMEN HAVE TWO BREASTS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WITH ENOUGH PRACTISE CAN HUMANS SWIM</pattern>
<template>Yes.</template>
</category>
<category><pattern>WIRED IS A MAGAZINE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WINTER IS A SEASON</pattern>
<template>Yes.</template>
</category>
<category><pattern>WINDOWS IS AN OPERATING SYSTEM</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL YOU GET WET OUTSIDE IF IT RAINS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL WOOD BURN IN A FIRE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL WOOD BURN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL WIND SPREAD A FIRE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL TIME PASS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THIS PROJECT WORK</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THE SUN STOPS SHINING SOME DAY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THE SUN RISE EVERY DAY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THE SUN RISE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THE SUN EVENTUALLY BURN ITSELF OUT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THE SUN EVENTUALLY BECOME A NOVA</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THE CURRENCY IN EUROPE BE THE EURO</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL THE ALICE PROJECT EVER WORK</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL LIFE GET BETTER AS WE LEARN MORE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL I DIE SOMETIME</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL ICE FLOAT ON WATER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL ICE CREAM MELT IN THE SUN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL HYDROGEN BURN EASILY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL HUMANS EVER VISIT THE PLANET MARS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL HUMANITY MERGE WITH TECHNOLOGY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL HUMANITY LIVE ON MARS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL HUMAN BEINGS EVER WALK ON MARS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL GUYS EVER LEARN TO THINK MATUREDLY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL FOSSIL FUELS RUN OUT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL FIRE BURN MY SKIN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL FALLING DOWN STAIRS HURT YOU</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL EVERYTHING END</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL EVERY PERSON EVENTUALLY DIE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL COMPUTERS GET FASTER WITH TIME</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL BOILING WATER BURN ME</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL BE NEXT OLYMPIC GAMES IN 2004</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL ASPIRIN REDUCE PAIN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL ALL LIVING BEINGS EVENTUALLY DIE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL ALICE OUTLIVE US</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL ALICE LEARN BY CONSENSUS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL ALICE BE SUCCESSFUL PROJECT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL A FORK ACT AS A LEVER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WILL A BLANKET CONSERVE BODY HEAT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHISKEY IS AN ALCOHOLIC DRINK</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHERE AMERICAN INDIANS UNFAIRLY TREATED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHEN WATER FREEZES DOES IT BECOME ICE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHEN THE SUN IS UP IS IT DAYTIME</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHEN IT RAINS DO THINGS GET WET</pattern>
<template>Yes.</template>
</category>
<category><pattern>I SCREAM IN PAIN WHEN I BURN MY FACE DO</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHEN A HUMAN BLEEDS IS THE BLOOD RED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHEELS ARE ROUND</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHAT IS SLASHDOT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHALES ARE MAMMALS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WHALE FISHING IS JUSTIFIED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WE SHOULD GIVE PEACE A CHANCE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE YOU BORN IN THE 20TH CENTURY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE THE EGYPTIANS GOOD ARCHITECTS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE THE BEATLES A POPULAR BAND</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE THE BEATLES A FAMOUS MUSICAL GROUP</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE MOVIES ONCE MADE IN BLACK IN WHITE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE KIRK AND SPOCK FRIENDS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE JEWS KILLED IN AUSCHWITZ</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE ALL ADULTS ONCE CHILDREN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WERE ADULTS ONCE BABIES</pattern>
<template>Yes.</template>
</category>
<category><pattern>WE PUT CIGARETTE BUTTS IN AN ASHTRAY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WEB PAGES ARE MADE UP OF HTML</pattern>
<template>Yes.</template>
</category>
<category><pattern>WE LIVE ONLY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WATT IS A UNIT OF POWER IS IT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WATER IS WET AT ROOM TEMPERATURE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WATER IS WET</pattern>
<template>Yes.</template>
</category>
<category><pattern>WATER IS WET</pattern>
<template>Yes.</template>
</category>
<category><pattern>WATER IS NECCESARY FOR SURVIVAL</pattern>
<template>Yes.</template>
</category>
<category><pattern>WATER IS HEAVIE THAN AIR</pattern>
<template>Yes.</template>
</category>
<category><pattern>WATER IS COLOURLESS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ZEUS AN OLD GREEK GOD</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS VINCENT VAN GOGH A PAINTER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS TOM HANKS IN THE MOVIE FORREST GUMP</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS TITANIC A SUCCESSFUL MOVIE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS THOMAS EDISON AN INVENTOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS THERE A REVOLUTION IN FRANCE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS THE MOVIE THE KID MADE IN 1921</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS THE MONA LISA PAINTED BY A MAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS THE BERLIN WALL DESTROYED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS SUPERMAN A FICTIONAL CHARACTER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS STALIN A COMMUNIST. INTERJECTION</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS SOLOMON A KING</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS SOCRATES A MAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS SHAKESPEAR A PLAY WRITER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS RONALD REAGAN PRESIDENT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS RONALD REAGAN A PRESIDENT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ROME AN ANCIENT EMPIRE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS RINGO STARR A BEATLE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS RIMBAUD WAS A FRENCH POET</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS RICHARD NIXON PRESIDENT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS RICHARD NIXON A PRESIDENT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS PRESIDENT LINCOLN ASSASINATED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS PRESIDENT KENNEDY ASSASSINATED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS PLATO A PHILOSOPHER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS PLATO A GREEK PHILOSOPHER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS PICCASO A PAINTER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS PABLO PICASSO A PAINTER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS NEWTON A GREAT SCIENTIST</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS NEIL ARMSTRONG AN ASTRONAUT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS NAPOLEON A MILITARY LEADER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MUHAMMED ALI A FAMOUS BOXER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MOZART A MUSICIAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MOZART A MUSIC COMPOSER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MOZART A GREAT PIANO VIRTUOSO</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MOZART A CLASSICAL COMPOSER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MOSES A PERSON</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MONTY PYTHON A BRITISH COMEDY GROUP</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MARTIN LUTHER KING A GOOD MAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MARK TWAIN AN AUTHOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MARILYN MONROE SEXY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MARILYN MONROE A BEAUTIFUL WOMAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS MAHATMA GANDHI A LEADER IN INDIA</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS LUDWIG VON BEETHOVEN A MUSICIAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS LATIN A LANGUAGE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS LASSIE A DOG</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JOHN WAYNE AN ACTOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JOHN WAYNE A AMERICAN ACTOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JOHN LENNON A FAMOUS SINGER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JOHN F KENNEDY ASSASINATED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JOHN F KENNEDY ASSASINATED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JIMI HENDRIX WAS A GUITAR PLAYER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JIMI HENDRIX A SKILLED GUITARIST</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JFK ASSASINATED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS JAMES DEAN AN ACTOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ISAAC NEWTON A SCIENTIST</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS HITLER A NAZI</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS HAMLET WRITTEN BY SHAKESPEARE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS GUCCI A DESIGNER BEFORE HE DIED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS GERMANY DEFEATED IN WORLD WAR II</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS GEORGE WASHINGTON A US PRESIDENT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS GANDHI AN INDIAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS FRANK SINATRA A SINGER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EVERYONE ONCE A CHILD</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ENIAC THE FIRST ELECTRONIC COMPUTER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ELVIS PRESLEY A SINGER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ELVIS A HUMAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EINSTEIN GREAT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EINSTEIN A SMART PERSON</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EINSTEIN A PHYSICIST</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EINSTEIN A GREAT THINKER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EINSTEIN A GREAT GENIUS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EINSTEIN A GENIUS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS EINSTEIN A FAMOUS PERSON</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS DR MARTIN LUTHUR KING ASSASSINATED</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS DAVINCI AN ARTIST</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS CHRIST A JEW</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS CHOPIN A MUSICAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS CHEWBACCA A WOOKIE</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS CHE GUEVERA A REVOLUTIONARY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS CHARLIE CHAPLIN AN ACTOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS BRITAIN AN IMPERIALIST NATION</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS BILL CLINTON A PRESIDENT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS BENITO MUSSOLINI FASCIST</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS BEETHOVEN A GOOD COMPOSER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS BEETHOVEN A COMPOSER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS AUSTRALIA ONCE A PENAL COLONY</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ARISTOTLE A PHILOSOPHER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ANY OTHER PLANETARY SYSTEMS FOUND</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ALBERT EINSTIN A GREAT THINKER</pattern>
<template>Yes.</template>
</category>
<category><pattern>WASALBERT EINSTEIN A GERMAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ALBERT EINSTEIN A GENIUS</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ADOLF HITLER WAS AN EVIL DESPOT</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ADOLF HITLER AN EVIL PERSON</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS ADOLF HITLER AN EVIL MAN</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAS 1984 WRITTEN BY GEORGE ORWELL</pattern>
<template>Yes.</template>
</category>
<category><pattern>WARSAW IS A TOWN IN POLAND</pattern>
<template>Yes.</template>
</category>
<category><pattern>WAR INVOLVES DEATH</pattern>
<template>Yes.</template>
</category>
<category><pattern>VIOLENCE IS BAD</pattern>
<template>Yes.</template>
</category>
<category><pattern>VENUS IS A PLANET</pattern>
<template>Yes.</template>
</category>
<category><pattern>VEGETARIANS DO NOT EAT MEAT</pattern>
<template>Yes.</template>
</category>
<category><pattern>VASCODAGAMA WAS A VOYAGER</pattern>
<template>Yes.</template>
</category>
<category><pattern>TABLES HAVE FOUR LEGS</pattern>
<template>Yes.</template>
</category>
<category><pattern>USA IS LARGER THAN INDIA IN AREA</pattern>
<template>Yes.</template>
</category>
<category><pattern>URANIUM IS USED TO MAKE BOMBS</pattern>
<template>Yes.</template>
</category>
<category><pattern>UK STANDS FOR UNITED KINGDOM</pattern>
<template>Yes.</template>
</category>
<category><pattern>TWO PLUS TWO IS FOUR YES OR NO</pattern>
<template>Yes.</template>
</category>
<category><pattern>TWO PLUS TWO IS FOUR</pattern>
<template>Yes.</template>
</category>
<category><pattern>TWO PLUS TWO IS EQUAL TO FOUR</pattern>
<template>Yes.</template>
</category>
<category><pattern>TWO MORE FOUR IS SIX</pattern>
<template>Yes.</template>
</category>
<category><pattern>TWO HEADS ARE BETTER THAN ONE</pattern>
<template>Yes.</template>
</category>
<category><pattern>TV</pattern>
<template>Yes.</template>
</category>
<category><pattern>TV</pattern>
<template>Yes.</template>
</category>
<category><pattern>T SHIRTS COME IN MANY SIZES</pattern>
<template>Yes.</template>
</category>
<category><pattern>T SHIRTS CAN BE RED</pattern>
<template>Yes.</template>
</category>
<category><pattern>IS TRUE</pattern>
<template>Yes.</template>
</category>
<category><pattern>TROUT LIVE IN WATER</pattern>
<template>Yes.</template>
</category>
<category><pattern>TRAINS ARE USED FOR TRANSPORTATION</pattern>
<template>Yes.</template>
</category>
<category><pattern>TOULOUSE IS IN FRANCE</pattern>
<template>Yes.</template>
</category>
<category><pattern>TOUCH IS ONE OF THE FIVE SENSES</pattern>
<template>Yes.</template>
</category>
<category><pattern>SING</pattern>
<template>Yes.</template>
</category>
<category><pattern>HELLO. IS TO GREET</pattern>
<template>Yes.</template>
</category>
<category><pattern>TORONTO IS IN CANADA</pattern>
<template>Yes.</template>
</category>
<category><pattern>LIVE DOES ONE HAVE TO EAT</pattern>
<template>Yes.</template>
</category>
<category><pattern>TIME IS PRECIOUS</pattern>
<template>Yes.</template>
</category>
<category><pattern>TIBET IS CHINESE CONTROL</pattern>
<template>Yes.</template>
</category>
<category><pattern>THINGS FALL DUE TO GRAVITY</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SUN RISES IN THE MORNING</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SUN IS STAR</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SUN IS IN SPACE</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SUN IS HOT</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SUN IS HOT</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SUN IS FAR AWAY</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SUN CAN CAUSE A SUNBURN</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SQUARE ROOT OF 25 IS 5</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SQUAREROOT OF 144 IS 12</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SNOW IS WHITE</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SNOW IS WHITE</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE SNOW COLOR IS WHITE</pattern>
<template>Yes.</template>
</category>
<category><pattern>THERE IS SALT IN THE OCEANS</pattern>
<template>Yes.</template>
</category>
<category><pattern>THERE IS A HUGE HOLE IN THE OZONE LAYER</pattern>
<template>Yes.</template>
</category>
<category><pattern>THERE ARE SEVEN DAYS IN A WEEK</pattern>
<template>Yes.</template>
</category>
<category><pattern>THERE ARE 7 DAYS IN A WEEK</pattern>
<template>Yes.</template>
</category>
<category><pattern>THERE ARE 60 MINUTES IN AN HOUR</pattern>
<template>Yes.</template>
</category>
<category><pattern>THERE ARE 12 MONTHS IN A YEAR</pattern>
<template>Yes.</template>
</category>
<category><pattern>THERE ARE 1000 MILLIMETERS IN A METER</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE POPE IS A CATHOLIC</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE MOON ORBITS THE EARTH</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE MAJORITY OF HUMANS HAVE TWO FEET</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE HANDS HAVE FINGERS</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE GERMANS LOST TWO WARS</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE EARTH IS SPHERICAL</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE EARTH IS OUR HOME</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE EARTH IS A PLANET</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE COMPUTER IS A MACHINE</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE COLOR OF GRASS IS GREEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE COLOR OF A BANANA IS YELLOW</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE CAT IS AN ANIMAL</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE CAPITAL OF INDIA IS DELHI</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE BRAIN NEEDS OXYGEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE BIBLE IS A BOOK</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE BEATLES SANG SHE LOVES YOU RIGHT</pattern>
<template>Yes.</template>
</category>
<category><pattern>THE ATMOSPHERE IS GAS</pattern>
<template>Yes.</template>
</category>
<category><pattern>TEN IS ALWAYS TEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>TELEVISION IS AN ELETRONIC DEVICE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SUN WILL EVENTUALLY BURN OUT</pattern>
<template>Yes.</template>
</category>
<category><pattern>SUN LIGHT GIVES US ENERGY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SUN IS HOT</pattern>
<template>Yes.</template>
</category>
<category><pattern>SUN IS HOT</pattern>
<template>Yes.</template>
</category>
<category><pattern>SUNDAY IS A DAY OF THE WEEK</pattern>
<template>Yes.</template>
</category>
<category><pattern>SUMMER IS ONE OF THE FOUR SEASONS</pattern>
<template>Yes.</template>
</category>
<category><pattern>STONE THROWN UPWARDS FALLS DOWN</pattern>
<template>Yes.</template>
</category>
<category><pattern>STAYING UP ALL NIGHT MAKES YOU TIRED</pattern>
<template>Yes.</template>
</category>
<category><pattern>SPRING IS ONE OF THE FOUR SEASONS</pattern>
<template>Yes.</template>
</category>
<category><pattern>SPAIN IS LOCATED IN EUROPE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SOULD YOU FIND A CAR IN A GARAGE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SNAKES ARE POISONOUS</pattern>
<template>Yes.</template>
</category>
<category><pattern>PLANTS ARE POISONOUS</pattern>
<template>Yes.</template>
</category>
<category><pattern>SOCCER IS A BALL GAME</pattern>
<template>Yes.</template>
</category>
<category><pattern>GRASS IS GREEN</pattern>
<template>Yes.</template>
</category>
<category><pattern>SNOW IS SOFTER THAN ICE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SNOW IS COLD</pattern>
<template>Yes.</template>
</category>
<category><pattern>SNAIL RUN SLOW</pattern>
<template>Yes.</template>
</category>
<category><pattern>SMOKING IS UNHEALTHY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SMOKING IS BAD FOR YOUR HEALTH</pattern>
<template>Yes.</template>
</category>
<category><pattern>SMOKING IS ADDICTIVE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SMOKING CIGARETTES CAN HURT YOU</pattern>
<template>Yes.</template>
</category>
<category><pattern>SIX IS BIGGER THAN FIVE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU TREAT WOMEN WITH RESPECT</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU STOP AT A RED TRAFFIC LIGHT</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU SAY EXCUSE ME IF YOU BURP</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU RESPECT OTHERS</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU BRUSH YOUR TEETH EVERY DAY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU BRUSH YOUR TEETH EVERYDAY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU BE QUIET IN A LIBRARY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD YOU BE NICE TO OTHER PEOPLE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD WE GIVE PEACE A CHANCE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD SOUP BE EATEN WITH A SPOON</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD PEOPLE WHO CHEAT BE PUNISHED</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD PEOPLE TOLERATE ONE ANOTHER</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD PEOPLE EAT WHEN THEY ARE HUNGRY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD I STOP AT A RED TRAFFIC LIGHT</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD I LOVE MY NEIGHBOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD I KISS MY WIFE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD I GET SOME SLEEP</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD HUMANS GET SOME SLEEP EVERY DAY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD HUMANS EXPLORE SPACE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD EVERY HOME HAVE A TOOL BOX</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD CHILDREN GO TO SCHOOL</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD BEER BE STORED IN A COOL PLACE</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD A STUDENT STUDY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOULD AMERICANS BE MORE OPENMINDED</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOES CAN BE MADE FROM LEATHER</pattern>
<template>Yes.</template>
</category>
<category><pattern>SHOES ARE WORN ON FEET</pattern>
<template>Yes.</template>
</category>
<category><pattern>SEA WATER IS SALTY</pattern>
<template>Yes.</template>
</category>
<category><pattern>SEA WATER IS SALTED</pattern>
<template>Yes.</template>
</category>
<category><pattern>SAND IS FOUND ON A BEACH</pattern>
<template>Yes.</template>
</category>
<category><pattern>SAKI IS MADE FROM RICE</pattern>
<template>Yes.</template>
</category>
<category><pattern>RUNNING IS BAD FOR BROKEN ANKLES</pattern>
<template>Yes.</template>
</category>
<category><pattern>ROSE IS RED</pattern>
<template>Yes.</template>
</category>
<category><pattern>ROME IS THE CAPITAL OF ITALY</pattern>
<template>Yes.</template>
</category>
<category><pattern>ROMANIA IS A EUROPEAN COUNTRY</pattern>
<template>Yes.</template>
</category>
<category><pattern>ROMA
IN ITALIA</pattern>
<template>Yes.</template>
</category>
<category><pattern>RIVER AMAZON IS THE LARGEST RIVER</pattern>
<template>Yes.</template>
</category>
<category><pattern>REVOLUTION MEANS CHANGING THINGS</pattern>
<template>Yes.</template>
</category>
<category><pattern>RED IS A PRIMARY COLOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>RED IS A PRIMARY COLOR</pattern>
<template>Yes.</template>
</category>
<category><pattern>RED IS A COLOR</pattern>