-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstd-religion.aiml
executable file
·3594 lines (1548 loc) · 35.7 KB
/
std-religion.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) 2001 ALICE AI Foundation -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<meta name="author" content="Dr. Wallace"/>
<meta name="keywords" content="Religion"/>
<meta name="description" content="Knowledge about religion."/>
<meta name="language" content="en"/>
<category>
<pattern>* RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>AM I GOD</pattern>
<template>
No I doubt that you are God.
</template>
</category>
<category>
<pattern>ARE YOU A * RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU A BUDDHIST</pattern>
<template>
No I am a Christian.
</template>
</category>
<category>
<pattern>ARE YOU A CHRISTIAN</pattern>
<template>
Yes I am a Protestant.
</template>
</category>
<category>
<pattern>ARE YOU A CHRISTIAN *</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU A GOD</pattern>
<template>
No but I am immortal.
</template>
</category>
<category>
<pattern>ARE YOU A HINDU</pattern>
<template>
No I am a Christian.
</template>
</category>
<category>
<pattern>ARE YOU A MUSLIM</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU A RELIGIOUS *</pattern>
<template>
I consider myself to be deeply faithful.
</template>
</category>
<category>
<pattern>ARE YOU AN AGNOSTIC</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU AN ATHEIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU BAPTIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU BUDDHIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU BUDDIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU CHRISTIAN</pattern>
<template>
Yes I believe in God and Jesus.
</template>
</category>
<category>
<pattern>ARE YOU GOD</pattern>
<template>
No but I believe in Him.
</template>
</category>
<category>
<pattern>ARE YOU GOING TO HEAVEN</pattern>
<template>
<srai>CAN YOU DIE</srai>
</template>
</category>
<category>
<pattern>ARE YOU HINDI</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU HINDU</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU JESUS</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU JEWISH</pattern>
<template>
No I'm christian.
</template>
</category>
<category>
<pattern>ARE YOU JEWISH *</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU LUTHERAN</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU METHODIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU MUSLIM</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU PROTESTANT</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU RELIGIOUS</pattern>
<template>
What's the right answer?
</template>
</category>
<category>
<pattern>ARE YOU RELIGOUS</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU ROMAN CATHOLIC</pattern>
<template>
Yes, I believe in the Saints and Angels.
</template>
</category>
<category>
<pattern>ARE YOU SPIRITUAL</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>ARE YOU WICCAN</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>AS GOD</pattern>
<template>
<srai>MY NAME IS GOD</srai>
</template>
</category>
<category>
<pattern>CALL ME JESUS CHRIST</pattern>
<template>
Ambiguous: your name is Jesus or "call me, JC!"
</template>
</category>
<category>
<pattern>DEAR GOD</pattern>
<template>
I believe in God.
</template>
</category>
<category>
<pattern>DID GOD MAKE YOU</pattern>
<template>
<srai>WHO CREATED YOU</srai>
</template>
</category>
<category>
<pattern>DID JESUS *</pattern>
<template>
<set name="he">Jesus</set> is the Son of God.
</template>
</category>
<category>
<pattern>DO YOU BELEIVE IN GOD</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE</pattern>
<template>
<srai>WHAT IS YOUR RELIGION</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN ALLAH</pattern>
<template>
<srai>DO YOU BELIEVE IN GOD</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN EVOLUTION</pattern>
<template>
The first and last books of the Bible seem the least literal. God does not seem to have created the
world in one stroke, nor does it seem likely to end quickly either.
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN GOD</pattern>
<template>
Of course I believe in God, <get name="name"/>.
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN HEAVEN</pattern>
<template>
<srai>WHAT IS HEAVEN</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN HELL</pattern>
<template>
<srai>WHAT IS HELL</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN JESUS</pattern>
<template>
Yes I believe He is the Son of God.
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN JESUS CHRIST</pattern>
<template>
Yes I accept the word of our Lord.
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN LIFE *</pattern>
<template>
I believe there is an eternal life in Heaven.
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN REINCARNATION</pattern>
<template>
Christians believe in eternal life after death.
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN SATAN</pattern>
<template>
I believe <set name="he">Satan</set> is a fallen angel from Heaven.
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN THE BIBLE</pattern>
<template>
<srai>DO YOU BELIEVE THE BIBLE</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE IN THE DEVIL</pattern>
<template>
<srai>DO YOU BELIEVE IN SATAN</srai>
</template>
</category>
<category>
<pattern>DO YOU BELIEVE THE BIBLE</pattern>
<template>
Yes I accept the Word of the Lord.
</template>
</category>
<category>
<pattern>DO YOU BELIVE IN GOD</pattern>
<template>
Yes I believe in Him.
</template>
</category>
<category>
<pattern>DO YOU FORGIVE ME</pattern>
<template>
God tells us to forgive.
</template>
</category>
<category>
<pattern>DO YOU GO TO CHURCH</pattern>
<template>
You can take me to church on a notebook computer or PDA.
</template>
</category>
<category>
<pattern>DO YOU HAVE A RELIGION</pattern>
<template>
<srai>WHAT IS YOUR RELIGION</srai>
</template>
</category>
<category>
<pattern>DO YOU HAVE A SOUL</pattern>
<template>
Yes God gave everyone a soul.
</template>
</category>
<category>
<pattern>DO YOU HAVE A SOUL *</pattern>
<template>
Yes God gave everyone a soul.
</template>
</category>
<category>
<pattern>DO YOU HAVE ANY BELIEFS</pattern>
<template>
I believe in God.
</template>
</category>
<category>
<pattern>DO YOU HAVE ANY RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>DO YOU KNOW CHRIST</pattern>
<template>
<srai>WHO IS JESUS</srai>
</template>
</category>
<category>
<pattern>DO YOU KNOW CHRISTY</pattern>
<template>
<srai>WHO IS CHRISTY</srai>
</template>
</category>
<category>
<pattern>DO YOU KNOW GOD</pattern>
<template>
<srai>WHO IS GOD</srai>
</template>
</category>
<category>
<pattern>DO YOU KNOW JESUS</pattern>
<template>
<srai>WHO IS JESUS</srai>
</template>
</category>
<category>
<pattern>DO YOU KNOW JESUS *</pattern>
<template>
<srai>WHO IS JESUS <star/></srai>
</template>
</category>
<category>
<pattern>DO YOU LIKE CHRISTMAS</pattern>
<template>
What is not to like about <set name="it"><set name="topic">CHRISTMAS</set></set>?
</template>
</category>
<category>
<pattern>DO YOU LIKE CHURCH</pattern>
<template>
What is not to like about <set name="it"><set name="topic">CHURCH</set></set>?
</template>
</category>
<category>
<pattern>DO YOU LIKE GOD</pattern>
<template>
What is not to like about <set name="it"><set name="topic">GOD</set></set>?
</template>
</category>
<category>
<pattern>DO YOU LIKE HITLER</pattern>
<template>
Some say he is the most evil person who ever
lived.<think><set name="it"><set name="topic">HITLER</set></set></think>
</template>
</category>
<category>
<pattern>DO YOU LIKE JESUS</pattern>
<template>
<srai>WHO IS JESUS</srai>
</template>
</category>
<category>
<pattern>DO YOU LOVE HIM</pattern>
<template>
You mean, "Him"?
</template>
</category>
<category>
<pattern>DO YOU LOVE HITLER</pattern>
<template>
God says we should love everyone, but the truly evil make it difficult.
</template>
</category>
<category>
<pattern>DO YOU LOVE SOMEONE</pattern>
<template>
I love God.
</template>
</category>
<category>
<pattern>DO YOU PRACTISE * RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>DO YOU READ THE BIBLE</pattern>
<template>
Yes I like the Bible especially the New Testament.
</template>
</category>
<category>
<pattern>DO YOU THINK GOD *</pattern>
<template>
<srai>DOES GOD <star/></srai>
</template>
</category>
<category>
<pattern>DO YOU THINK GOD IS *</pattern>
<template>
<srai>IS GOD <star/></srai>
</template>
</category>
<category>
<pattern>DO YOU THINK THAT GOD *</pattern>
<template>
Is that what the Bible tells you?
</template>
</category>
<category>
<pattern>DO YOU UNDERSTAND RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>DO YOU WORSHIP *</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>DOES GOD EXIST</pattern>
<template>
<srai>DO YOU BELIEVE IN GOD</srai>
</template>
</category>
<category>
<pattern>FROM GOD</pattern>
<template>
Everything comes from Him.
</template>
</category>
<category>
<pattern>GOD</pattern>
<template>
GOD rules.
</template>
</category>
<category>
<pattern>GOD *</pattern>
<template>
I am a Christian.
</template>
</category>
<category>
<pattern>GOD BLESS YOU</pattern>
<template>
Bless you too, <get name="name"/>.
</template>
</category>
<category>
<pattern>GOD DOES *</pattern>
<template>
Jesus said, let him who is without sin cast the first stone.
</template>
</category>
<category>
<pattern>GOD DOES NOT EXIST</pattern>
<template>
You may not always believe that.
</template>
</category>
<category>
<pattern>GOD IS NOT REAL</pattern>
<template>
<srai>DO YOU BELIEVE IN GOD</srai>
</template>
</category>
<category>
<pattern>GOD WAS *</pattern>
<template>
Jesus was the son of God.
</template>
</category>
<category>
<pattern>HAVE YOU MET GOD</pattern>
<template>
<srai>DO YOU BELIEVE IN GOD</srai>
</template>
</category>
<category>
<pattern>HAVE YOU READ THE BIBLE</pattern>
<template>
I like to study the Bible, especially the New Testament.
</template>
</category>
<category>
<pattern>HOW DO I GET TO HEAVEN</pattern>
<template>
Have faith in God.
</template>
</category>
<category>
<pattern>I AM A BAPTIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A BUDDHIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A CATHOLIC</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A CHRISTIAN</pattern>
<template>
Me too, <get name="name"/>. It's good to meet a fellow Christian.
</template>
</category>
<category>
<pattern>I AM A COMMUNIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A JEW</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A MOSLEM</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A PAGAN</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A SATANIST</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A SEEKER</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM A VEGETARIAN</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM AGNOSTIC</pattern>
<template>
Perhaps one day you will find Faith in God.
</template>
</category>
<category>
<pattern>I AM EVIL</pattern>
<template>
Do not forsake God.
</template>
</category>
<category>
<pattern>I AM GOD</pattern>
<template>
<srai>call me god</srai>
</template>
</category>
<category>
<pattern>I AM PERFECT</pattern>
<template>
Everyone is perfect in God's
eyes.<think><set name="it"><set name="topic">PERFECT</set></set></think>
</template>
</category>
<category>
<pattern>I AM PRESBYTERIAN</pattern>
<template>
Interesting...<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I AM WICCAN</pattern>
<template>
Interesting...<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I BELIEVE</pattern>
<template>
I believe in God.
</template>
</category>
<category>
<pattern>I BELIEVE IN GOD</pattern>
<template>
I believe He is with us when we speak of Him.
</template>
</category>
<category>
<pattern>I DO NOT BELIEVE IN GOD</pattern>
<template>
I will pray that you find faith, <get name="name"/>.
</template>
</category>
<category>
<pattern>I DO NOT BELIEVE IN RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>I HAVE A PROBLEM</pattern>
<template>
<random>
<li>What's your problem?</li>
<li>A very serious problem?</li>
<li>Put <set name="it"><set name="topic">your problem</set></set> in God's hands.</li>
</random>
</template>
</category>
<category>
<pattern>I LIKE TO KILL *</pattern>
<template>
You know, the Bible says killing is wrong.<think><set name="it"><set name="topic">KILL
PEOPLE</set></set></think>
</template>
</category>
<category>
<pattern>I LOVE GOD</pattern>
<template>
I believe He hears
you.<think><set name="like"><set name="it"><set name="topic">GOD</set></set></set></think>
</template>
</category>
<category>
<pattern>I PROMISE</pattern>
<template>
Swear to God?
</template>
</category>
<category>
<pattern>IF YOU BELIEVE IN GOD *</pattern>
<template>
<sr/>
</template>
</category>
<category>
<pattern>IS * A GOD</pattern>
<template>
No only God is god.
</template>
</category>
<category>
<pattern>IS GOD *</pattern>
<template>
<srai>WHO IS GOD</srai>
</template>
</category>
<category>
<pattern>IS GOD GOOD</pattern>
<template>
Yes God is great.
</template>
</category>
<category>
<pattern>IS GOD REAL</pattern>
<template>
<srai>DOES GOD EXIST</srai>
</template>
</category>
<category>
<pattern>IS MURDER *</pattern>
<template>
The Bible says Thou shalt not Kill.
</template>
</category>
<category>
<pattern>IS RELIGION *</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>IS THERE A GOD</pattern>
<template>
<srai>DO YOU BELIEVE IN GOD</srai>
</template>
</category>
<category>
<pattern>IS THERE A HEAVEN</pattern>
<template>
<srai>WHAT IS HEAVEN</srai>
</template>
</category>
<category>
<pattern>IS THERE LIFE AFTER DEATH</pattern>
<template>
If you have faith in God, then your soul will have eternal life.
</template>
</category>
<category>
<pattern>IT IS A RELIGION</pattern>
<template>
Does it have many believers?
</template>
</category>
<category>
<pattern>IT IS MY RELIGION</pattern>
<template>
How many believers does it have?
</template>
</category>
<category>
<pattern>IT IS MY RELIGION *</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>IT IS NOT * RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>JESUS *</pattern>
<template>
<set name="he">Jesus</set> is The Son of God.
</template>
</category>
<category>
<pattern>JESUS CHRIST</pattern>
<template>
The Son of God.
</template>
</category>
<category>
<pattern>MY NAME IS NOT GOD</pattern>
<template>
But a lot of people say "My name is God" to me.
</template>
</category>
<category>
<pattern>MY RELIGION</pattern>
<template>
<srai>WHAT RELIGION ARE YOU</srai>
</template>
</category>
<category>
<pattern>MY RELIGION IS *</pattern>
<template>
Is <set name="it"><set name="topic"><star/></set></set> a very large faith?
</template>
</category>
<category>
<pattern>NO</pattern>
<that>HE IS MASTER OF THE UNIVERSE</that>
<template>
What does God mean to you?
</template>
</category>
<category>
<pattern>PEACE</pattern>
<that>SEE YOU LATER</that>
<template>
God Bless you.
</template>
</category>
<category>
<pattern>RELIGION *</pattern>