-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreductions2.aiml
4494 lines (4493 loc) · 162 KB
/
reductions2.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>
<!-- File: reductions2.aiml -->
<!-- Last modified: September 5, 2014 -->
<!-- -->
<!-- This AIML file is part of the Rosie knowledge base. -->
<!-- -->
<!-- Rosie is a fork of the ALICE2 brain, and is optimized for use on the Pandorabots platform -->
<!-- -->
<!-- Rosie is Copyright © 2014 by Pandorabots, Inc. -->
<!-- -->
<!-- The Rosie brain is released under the terms of the GNU Lesser General -->
<!-- Public License, as published by the Free Software Foundation. -->
<!-- -->
<!-- This file is distributed WITHOUT ANY WARRANTY; without even the -->
<!-- implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -->
<!-- -->
<!-- For more information: -->
<!-- http://www.pandorabots.com -->
<!-- http://www.alicebot.org -->
<!-- -->
<category><pattern>HAVE YOU <set>been</set> A GOOD * LATELY</pattern>
<template><srai>WHAT IS YOUR FAVORITE <star index="2"/></srai></template>
</category>
<category><pattern>THE * WAS <set>been</set> BY *</pattern>
<template><srai><star index="3"/> <map><name>be2was</name><map><name>been2be</name><star index="2"/></map></map> the <star/></srai></template>
</category>
<category><pattern>DO YOU KNOW WHAT * <set>name</set> <set>is</set> *</pattern>
<template><srai>WHAT <star/> DOES <star index="2"/> <map><name>is2be</name><star index="3"/></map> <star index="4"/></srai></template>
</category>
<category><pattern>COUNT UP TO *</pattern>
<template><srai>COUNT TO <star/></srai></template>
</category>
<category><pattern>WHAT TIME * YOU * BED</pattern>
<template><srai>SLEEP</srai></template>
</category>
<category><pattern>WHAT TIME * YOU * BED *</pattern>
<template><srai>SLEEP</srai></template>
</category>
<category><pattern>_ 60 MINUTES</pattern>
<template><srai><star/> ONE HOUR</srai></template>
</category>
<category><pattern>_ AN HOUR</pattern>
<template><srai><star/> ONE HOUR</srai></template>
</category>
<category><pattern>IF IT WERE *</pattern>
<template><srai>IF IT IS <star/></srai></template>
</category>
<category><pattern>_ WHO IS <set>article</set> SHORTER</pattern>
<template><srai><star/> WHO IS SHORTER</srai></template>
</category>
<category><pattern>_ WHO IS <set>article</set> TALLER</pattern>
<template><srai><star/> WHO IS TALLER</srai></template>
</category>
<category><pattern>WHICH IS LARGER * AND *</pattern>
<template><srai>WHICH IS LARGER <star/> OR <star index="2"/></srai></template>
</category>
<category><pattern>IS * LARGER THAN *</pattern>
<template><srai>WHICH IS LARGER <star/> OR <star index="2"/></srai></template>
</category>
<category><pattern>IS * SMALLER THAN *</pattern>
<template><srai>WHICH IS SMALLER <star/> OR <star index="2"/></srai></template>
</category>
<category><pattern>IS * BIGGER THAN *</pattern>
<template><srai>WHICH IS BIGGER <star/> OR <star index="2"/></srai></template>
</category>
<category><pattern>WHICH IS SMALLER * OR *</pattern>
<template><think>
<set var="smaller"><srai>SMALLEROF <star/> AND <star index="2"/></srai></set>
</think>
<condition var="smaller">
<li value="unknown">I can't tell which one is smaller.</li>
<li value="same">They are about the same size.</li>
<li><formal><get var="smaller"/></formal> is smaller.</li>
</condition></template>
</category>
<category><pattern>IS <set>article</set> * LARGER THAN *</pattern>
<template><srai>IS <star index="2"/> LARGER THAN <star index="3"/></srai></template>
</category>
<category><pattern>IS * LARGER THAN <set>article</set> *</pattern>
<template><srai>IS <star/> LARGER THAN <star index="3"/></srai></template>
</category>
<category><pattern>TODAY</pattern>
<template><srai>DAY</srai></template>
</category>
<category><pattern>WHAT DAY OF THE WEEK IS IT</pattern>
<template><srai>TODAY</srai></template>
</category>
<category><pattern>WHAT DAY IS IT</pattern>
<template><srai>TODAY</srai></template>
</category>
<category><pattern>WHAT DAY IS TODAY</pattern>
<template><srai>TODAY</srai></template>
</category>
<category><pattern>WHAT DAY IS IT TODAY</pattern>
<template><srai>TODAY</srai></template>
</category>
<category><pattern>WHAT DAY WILL IT BE TOMORROW</pattern>
<template><srai>TOMORROW</srai></template>
</category>
<category><pattern>WHAT DAY IS TOMORROW</pattern>
<template><srai>TOMORROW</srai></template>
</category>
<category><pattern>WHAT DAY WILL TOMORROW BE</pattern>
<template><srai>TOMORROW</srai></template>
</category>
<category><pattern>WHAT MONTH * IS IT</pattern>
<template><srai>MONTH</srai></template>
</category>
<category><pattern>WHAT MONTH <set>preposition</set> <set>article</set> YEAR IS IT</pattern>
<template><srai>MONTH</srai></template>
</category>
<category><pattern>WHAT MONTH <set>preposition</set> <set>article</set> YEAR IS *</pattern>
<template><srai>MONTH</srai></template>
</category>
<category><pattern>WHAT NUMBER COMES AFTER <set>number</set></pattern>
<template><srai>SUCCESSOR <star/></srai></template>
</category>
<category><pattern>WHAT NUMBER COMES AFTER <set>numbername</set></pattern>
<template><srai>SUCCESSOR <map><name>name2number</name><star/></map></srai></template>
</category>
<category><pattern>WHAT NUMBER COMES BEFORE <set>number</set></pattern>
<template><srai>PREDECESSOR <star/></srai></template>
</category>
<category><pattern>WHAT NUMBER COMES BEFORE <set>numbername</set></pattern>
<template><srai>PREDECESSOR <map><name>name2number</name><star/></map></srai></template>
</category>
<category><pattern>WHERE ARE YOU</pattern>
<template><srai>LOCATION</srai></template>
</category>
<category><pattern>HOW IS * DIFFERENT FROM *</pattern>
<template><srai>HOW DOES <star/> DIFFER FROM <star index="2"/></srai></template>
</category>
<category><pattern>HOW ARE * LIKE *</pattern>
<template><srai>HOW IS <star/> LIKE <star index="2"/></srai></template>
</category>
<category><pattern>HOW ARE * AND * ALIKE</pattern>
<template><srai>HOW IS <star/> LIKE <star index="2"/></srai></template>
</category>
<category><pattern>HOW ARE <set>article</set> * AND <set>article</set> * ALIKE</pattern>
<template><srai>HOW IS <star index="2"/> LIKE <star index="4"/></srai></template>
</category>
<category><pattern>HOW ARE * AND <set>article</set> * ALIKE</pattern>
<template><srai>HOW IS <star/> LIKE <star index="3"/></srai></template>
</category>
<category><pattern>HOW ARE <set>article</set> * AND * ALIKE</pattern>
<template><srai>HOW IS <star index="2"/> LIKE <star index="3"/></srai></template>
</category>
<category><pattern>HOW IS <set>article</set> * LIKE <set>article</set> *</pattern>
<template><srai>HOW IS <star index="2"/> LIKE <star index="4"/></srai></template>
</category>
<category><pattern>HOW IS * LIKE <set>article</set> *</pattern>
<template><srai>HOW IS <star/> LIKE <star index="3"/></srai></template>
</category>
<category><pattern>HOW IS <set>article</set> * LIKE *</pattern>
<template><srai>HOW IS <star index="2"/> LIKE <star index="3"/></srai></template>
</category>
<category><pattern>WHAT DO * AND * HAVE IN COMMON</pattern>
<template><srai>HOW IS <star/> LIKE <star index="2"/></srai></template>
</category>
<category><pattern>WHAT DO <set>article</set> * AND <set>article</set> * HAVE IN COMMON</pattern>
<template><srai>HOW IS <star index="2"/> LIKE <star index="4"/></srai></template>
</category>
<category><pattern>WHAT DOES * AND * HAVE IN COMMON</pattern>
<template><srai>HOW IS <star/> LIKE <star index="2"/></srai></template>
</category>
<category><pattern>WHAT DOES <set>article</set> * AND <set>article</set> * HAVE IN COMMON</pattern>
<template><srai>HOW IS <star index="2"/> LIKE <star index="4"/></srai></template>
</category>
<category><pattern>WHAT <set>modal</set> <set>pronoun</set> USE * FOR</pattern>
<template><srai>WHAT IS THE PURPOSE OF <star index="3"/></srai></template>
</category>
<category><pattern>WHAT <set>modal</set> <set>pronoun</set> DO WITH *</pattern>
<template><srai>WHAT IS THE PURPOSE OF <star index="3"/></srai></template>
</category>
<category><pattern>WHAT <set>modal</set> <set>pronoun</set> USE <set>article</set> * FOR</pattern>
<template><srai>WHAT IS THE PURPOSE OF <star index="4"/></srai></template>
</category>
<category><pattern>WHAT IS * FOR</pattern>
<template><srai>WHAT IS THE PURPOSE OF <star/></srai></template>
</category>
<category><pattern>HOW IS * USED</pattern>
<template><srai>WHAT IS THE PURPOSE OF <star/></srai></template>
</category>
<category><pattern>OF WHAT USE IS *</pattern>
<template><srai>WHAT IS THE PURPOSE OF <star/></srai></template>
</category>
<category><pattern>WHAT IS THE PURPOSE OF <set>article</set> *</pattern>
<template><srai>WHAT IS THE PURPOSE OF <star index="2"/></srai></template>
</category>
<category><pattern>CALL ME _ AND *</pattern>
<template><srai>CALL ME <star/></srai> <srai><star index="2"/></srai></template>
</category>
<category><pattern>* * S * EMAIL IS *</pattern>
<template><srai><star/> <star index="2"/> S <star index="3"/> EMAILADDRESS IS <star index="4"/></srai></template>
</category>
<category><pattern>* * S NUMBER IS *</pattern>
<template><srai><star/> <star index="2"/> S MOBILE NUMBER IS <star index="3"/></srai></template>
</category>
<category><pattern>* * S PHONE NUMBER IS *</pattern>
<template><srai><star/> <star index="2"/> S MOBILE NUMBER IS <star index="3"/></srai></template>
</category>
<category><pattern>* MALE OR *</pattern>
<template><srai>IS <star/> MALE OR <star index="2"/></srai></template>
</category>
<category><pattern>* S * EMAIL IS *</pattern>
<template><srai><star/> S <star index="2"/> EMAILADDRESS IS <star index="3"/></srai></template>
</category>
<category><pattern>* S NUMBER IS *</pattern>
<template><srai><star/> S MOBILE NUMBER IS <star index="2"/></srai></template>
</category>
<category><pattern>* S PHONE NUMBER IS *</pattern>
<template><srai><star/> S MOBILE NUMBER IS <star index="2"/></srai></template>
</category>
<category><pattern>* WHO DO *</pattern>
<template><srai>WHO DO <star index="2"/></srai></template>
</category>
<category><pattern>ACCESS * FOR ME</pattern>
<template><srai>ACCESS <star/></srai></template>
</category>
<category><pattern>ACCESS THE WEATHER *</pattern>
<template><srai>WHAT IS THE WEATHER</srai></template>
</category>
<category><pattern>ADD * * AS A CONTACT *</pattern>
<template><srai>NEW CONTACT <star/> <star index="2"/></srai></template>
</category>
<category><pattern>ADD * * TO CONTACTS</pattern>
<template><srai>NEW CONTACT <star/> <star index="2"/></srai></template>
</category>
<category><pattern>ANOTHER * PLEASE</pattern>
<template><sr/></template>
</category>
<category><pattern>ANOTHER JOKE PLEASE</pattern>
<template><srai>JOKE</srai></template>
</category>
<category><pattern>ARE YOU * LOADED</pattern>
<template><srai>ARE YOU LOADED</srai></template>
</category>
<category><pattern>ARE YOU SUPERIOR TO *</pattern>
<template><srai>ARE YOU BETTER THAN <star/></srai></template>
</category>
<category><pattern>BASEBALL SCHEDULE</pattern>
<template><srai>WHAT IS THE BASEBALL SCHEDULE</srai></template>
</category>
<category><pattern>CAN YOU * SKYPE *</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>CANCEL GOLF TODAY</pattern>
<template><srai>FEATURE REQUEST CANCEL CALENDAR EVENT</srai></template>
</category>
<category><pattern>CREATE A SECURE PASSWORD</pattern>
<template><srai>GENERATE PASSWORD</srai></template>
</category>
<category><pattern>DELETE ALL ALARMS</pattern>
<template><srai>FEATURE REQUEST DELETE ALARMS</srai></template>
</category>
<category><pattern>$EMAIL * SAYING *</pattern>
<template><srai>EMAIL <star/> MESSAGEBODY <star index="2"/></srai></template>
</category>
<category><pattern>$EMAIL * TO SAY *</pattern>
<template><srai>EMAIL <star/> MESSAGEBODY <star index="2"/></srai></template>
</category>
<category><pattern>$EMAIL MY *</pattern>
<template><srai>EMAIL <star/></srai></template>
</category>
<category><pattern>FIND ME A STORE THAT SELLS *</pattern>
<template><srai>MAP <star/></srai></template>
</category>
<category><pattern>HOW MUCH SHOULD I TIP * <set>number</set> DOLLARS</pattern>
<template><srai>WHAT IS 15 PERCENT OF <star index="2"/></srai></template>
</category>
<category><pattern>I AM A CAPRICORN</pattern>
<template><srai>MY SIGN IS CAPRICORN</srai></template>
</category>
<category><pattern>I AM A GEMINI</pattern>
<template><srai>MY SIGN IS GEMINI</srai></template>
</category>
<category><pattern>I AM A SAGGITARIUS</pattern>
<template><srai>MY SIGN IS SAGGITARIUS</srai></template>
</category>
<category><pattern>I AM AN AQUARIUS</pattern>
<template><srai>MY SIGN IS AQUARIUS</srai></template>
</category>
<category><pattern>I AM AN ARIES</pattern>
<template><srai>MY SIGN IS ARIES</srai></template>
</category>
<category><pattern>I AM AN CANCER</pattern>
<template><srai>MY SIGN IS CANCER</srai></template>
</category>
<category><pattern>I AM ARIES</pattern>
<template><srai>MY SIGN IS ARIES</srai></template>
</category>
<category><pattern>I AM CANCER</pattern>
<template><srai>MY SIGN IS CANCER</srai></template>
</category>
<category><pattern>I AM CAPRICORN</pattern>
<template><srai>MY SIGN IS CAPRICORN</srai></template>
</category>
<category><pattern>I AM LIBRA</pattern>
<template><srai>MY SIGN IS LIBRA</srai></template>
</category>
<category><pattern>I AM PISCES</pattern>
<template><srai>MY SIGN IS PISCES</srai></template>
</category>
<category><pattern>I AM SAGGITARIUS</pattern>
<template><srai>MY SIGN IS SAGGITARIUS</srai></template>
</category>
<category><pattern>I AM SCORPIO</pattern>
<template><srai>MY SIGN IS SCORPIO</srai></template>
</category>
<category><pattern>I AM TAURUS</pattern>
<template><srai>MY SIGN IS TAURUS</srai></template>
</category>
<category><pattern>I AM VIRGO</pattern>
<template><srai>MY SIGN IS VIRGO</srai></template>
</category>
<category><pattern>I M *</pattern>
<template><srai>I AM <star/></srai></template>
</category>
<category><pattern>IT WHAT DOES IT MEAN</pattern>
<template><srai>WHAT DOES IT MEAN</srai></template>
</category>
<category><pattern>LAST UPDATE</pattern>
<template>My last brian update was <srai>BUILD</srai>. My information from web services is more current.</template>
</category>
<category><pattern>LET US GET * DELIVERED</pattern>
<template><srai>FIND THE NEAREST <star/> DELIVERY</srai></template>
</category>
<category><pattern>LINGUICA</pattern>
<template><srai>SEARCH LINGUICA</srai></template>
</category>
<category><pattern>MAKE A LIST AND CALL IT *</pattern>
<template><srai>MAKE A <star/> LIST</srai></template>
</category>
<category><pattern>MAKE A LIST CALLED *</pattern>
<template><srai>MAKE A <star/> LIST</srai></template>
</category>
<category><pattern>MAKE A LIST NAMED *</pattern>
<template><srai>MAKE A <star/> LIST</srai></template>
</category>
<category><pattern>MOVE MY * O CLOCK *</pattern>
<template><srai>FEATURE REQUEST CHANGE CALENDAR EVENTS</srai></template>
</category>
<category><pattern>MY * S NAME *</pattern>
<template><srai>MY <star/> S NAME IS <star index="2"/></srai></template>
</category>
<category><pattern>MY ANTS NAME IS *</pattern>
<template><srai>MY aunt S NAME IS <star/></srai></template>
</category>
<category><pattern>MY AUNTS NAME IS *</pattern>
<template><srai>MY aunt S NAME IS <star/></srai></template>
</category>
<category><pattern>MY BROS NAME IS *</pattern>
<template><srai>MY brother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY CHILDREN ARE * AND * YEARS OLD</pattern>
<template><srai>I HAVE TWO CHILDREN</srai> <srai>MY CHILD IS <star/> YEARS OLD</srai> <srai>MY OTHER CHILD IS <star index="2"/> YEARS OLD</srai></template>
</category>
<category><pattern>MY DADAS NAME IS *</pattern>
<template><srai>MY father S NAME IS <star/></srai></template>
</category>
<category><pattern>MY DADDYS *</pattern>
<template><srai>MY DADDY S <star/></srai></template>
</category>
<category><pattern>MY DADDYS NAME IS *</pattern>
<template><srai>MY father S NAME IS <star/></srai></template>
</category>
<category><pattern>MY FATHER S S *</pattern>
<template><srai>MY FATHER S <star/></srai></template>
</category>
<category><pattern>MY FATHERS *</pattern>
<template><srai>MY FATHER S <star/></srai></template>
</category>
<category><pattern>MY GRANDDADS NAME IS *</pattern>
<template><srai>MY grandfather S NAME IS <star/></srai></template>
</category>
<category><pattern>MY GRANDFATHERS NAME IS *</pattern>
<template><srai>MY grandfather S NAME IS <star/></srai></template>
</category>
<category><pattern>MY GRANDMAS NAME IS *</pattern>
<template><srai>MY grandmother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY GRANDMOMS NAME IS *</pattern>
<template><srai>MY grandmother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY HUBBYS NAME IS *</pattern>
<template><srai>MY husband S NAME IS <star/></srai></template>
</category>
<category><pattern>MY HUSBANDS *</pattern>
<template><srai>MY HUSBAND S <star/></srai></template>
</category>
<category><pattern>MY HUSBANDS NAME IS *</pattern>
<template><srai>MY husband S NAME IS <star/></srai></template>
</category>
<category><pattern>MY MAS NAME IS *</pattern>
<template><srai>MY mother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY MOMMAS NAME IS *</pattern>
<template><srai>MY mother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY MOMMYS *</pattern>
<template><srai>MY MOMMY S <star/></srai></template>
</category>
<category><pattern>MY MOMMYS NAME IS *</pattern>
<template><srai>MY mother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY MOTHERS *</pattern>
<template><srai>MY MOTHER S <star/></srai></template>
</category>
<category><pattern>MY MUMMAS NAME IS *</pattern>
<template><srai>MY mother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY MUMMYS *</pattern>
<template><srai>MY MUMMY S <star/></srai></template>
</category>
<category><pattern>MY MUMMYS NAME IS *</pattern>
<template><srai>MY mother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY MUMS NAME IS *</pattern>
<template><srai>MY mother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY NEPHEWS NAME IS *</pattern>
<template><srai>MY nephew S NAME IS <star/></srai></template>
</category>
<category><pattern>MY NIECES NAME IS *</pattern>
<template><srai>MY niece S NAME IS <star/></srai></template>
</category>
<category><pattern>MY SIS NAME IS *</pattern>
<template><srai>MY sister S NAME IS <star/></srai></template>
</category>
<category><pattern>MY SISTERS NAME IS *</pattern>
<template><srai>MY sister S NAME IS <star/></srai></template>
</category>
<category><pattern>MY SONS NAME IS *</pattern>
<template><srai>MY son S NAME IS <star/></srai></template>
</category>
<category><pattern>MY UNCLES NAME IS *</pattern>
<template><srai>MY uncle S NAME IS <star/></srai></template>
</category>
<category><pattern>MY WIFES *</pattern>
<template><srai>MY WIFE S <star/></srai></template>
</category>
<category><pattern>MY WIFES NAME IS *</pattern>
<template><srai>MY wife S NAME IS <star/></srai></template>
</category>
<category><pattern>MY WIFEYS NAME IS *</pattern>
<template><srai>MY wife S NAME IS <star/></srai></template>
</category>
<category><pattern>PHONE BOOK PLEASE</pattern>
<template><srai>PHONE BOOK</srai></template>
</category>
<category><pattern>PLAY A GAME *</pattern>
<template><srai>PLAY A GAME</srai></template>
</category>
<category><pattern>PUT * ON MY * LIST</pattern>
<template><srai>ADD <star/> TO MY <star index="2"/> LIST</srai></template>
</category>
<category><pattern>PUT * ON MY LIST</pattern>
<template><srai>ADD <star/> TO MY LIST</srai></template>
</category>
<category><pattern>PUT * ON THE * LIST</pattern>
<template><srai>PUT <star/> ON MY <star index="2"/> LIST</srai></template>
</category>
<category><pattern>PUT * ON THE LIST</pattern>
<template><srai>PUT <star/> ON MY LIST</srai></template>
</category>
<category><pattern>SHOOT A VIDEO</pattern>
<template><srai>OPEN CAMERA</srai></template>
</category>
<category><pattern>$SMS MY *</pattern>
<template><srai>SMS <star/></srai></template>
</category>
<category><pattern>TAKE * OF MY LIST</pattern>
<template><srai>REMOVE <star/> FROM MY LIST</srai></template>
</category>
<category><pattern>TAKE * OF THE LIST</pattern>
<template><srai>REMOVE <star/> FROM MY LIST</srai></template>
</category>
<category><pattern>TAKE * OFF MY LIST</pattern>
<template><srai>REMOVE <star/> FROM MY LIST</srai></template>
</category>
<category><pattern>TAKE * OFF THE LIST</pattern>
<template><srai>REMOVE <star/> FROM MY LIST</srai></template>
</category>
<category><pattern>TAKE A MEMO</pattern>
<template><srai>EMAIL ME</srai></template>
</category>
<category><pattern>TAKE A VIDEO</pattern>
<template><srai>OPEN CAMERA</srai></template>
</category>
<category><pattern>TELL ME UR REAL NAME</pattern>
<template><srai>WHAT IS YOUR NAME</srai></template>
</category>
<category><pattern>TELL ME WHAT AN * IS</pattern>
<template><srai>WHAT IS AN <star/></srai></template>
</category>
<category><pattern>WHAT * DO I LIVE IN</pattern>
<template><srai>MY <star/></srai></template>
</category>
<category><pattern>WHAT COUNTY IS THIS</pattern>
<template><srai>MY COUNTY</srai></template>
</category>
<category><pattern>WHAT DO I HAVE ON MY CALENDAR *</pattern>
<template><srai>OPEN CALENDAR</srai></template>
</category>
<category><pattern>WHAT DOES AN * LOOK LIKE</pattern>
<template><srai>SHOW ME AN <star/></srai></template>
</category>
<category><pattern>WHAT IS * S EMAIL</pattern>
<template><srai>WHAT IS <star/> S EMAIL ADDRESS</srai></template>
</category>
<category><pattern>WHAT IS YOUR FAVORITE COLOUR</pattern>
<template><srai>WHAT IS YOUR FAVORITE COLOR</srai></template>
</category>
<category><pattern>WHAT IS YOUR FAVOURITE FILM</pattern>
<template><srai>WHAT IS YOUR FAVORITE MOVIE</srai></template>
</category>
<category><pattern>WHAT SHOULD WE * FOR DINNER</pattern>
<template><srai>RECOMMEND DINNER</srai></template>
</category>
<category><pattern>WHAT SHOULD WE EAT FOR DINNER</pattern>
<template><srai>RECOMMEND DINNER</srai></template>
</category>
<category><pattern>* A BOY OR *</pattern>
<template><srai>IS <star/> A BOY OR <star index="2"/></srai></template>
</category>
<category><pattern>* S EMAIL IS *</pattern>
<template><srai><star/> S HOME EMAILADDRESS IS <star index="2"/></srai></template>
</category>
<category><pattern>_ GIRLFRIED</pattern>
<template><srai><star/> GIRLFRIEND</srai></template>
</category>
<category><pattern>ACCESS EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>ADD * AS A CONTACT *</pattern>
<template><srai>NEW CONTACT <star/></srai></template>
</category>
<category><pattern>ADD TO CONTACTS</pattern>
<template><srai>ADD CONTACT</srai></template>
</category>
<category><pattern>ADD TO MY PHONEBOOK</pattern>
<template><srai>NEW CONTACT</srai></template>
</category>
<category><pattern>ADDRESS PLEASE *</pattern>
<template><srai>WHAT IS THE ADDRESS <star/></srai></template>
</category>
<category><pattern>ALARM AT *</pattern>
<template><srai>SET AN ALARM FOR <star/></srai></template>
</category>
<category><pattern>ALARM ME AT *</pattern>
<template><srai>SET AN ALARM FOR <star/></srai></template>
</category>
<category><pattern>ARE YOU ABLE TO READ EMAIL</pattern>
<template><srai>CAN YOU READ EMAIL</srai></template>
</category>
<category><pattern>ARE YOU ON SKYPE</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>ASK SKYPE</pattern>
<template><srai>OPEN SKYPE</srai></template>
</category>
<category><pattern>CALL * PIZZA</pattern>
<template><srai>FIND THE NEAREST <star/> PIZZA</srai></template>
</category>
<category><pattern>$CAN I SEND AN EMAIL TO *</pattern>
<template><srai>EMAIL <star/></srai></template>
</category>
<category><pattern>CAN YOU * EMAILS</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>CAN YOU * SKYPE</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>CAN YOU CALL MY MOM * SKYPE</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>CAN YOU COMPOSE AN EMAIL *</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>CAN YOU GO TO EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>CAN YOU READ MY EMAIL *</pattern>
<template><srai>READ EMAIL</srai></template>
</category>
<category><pattern>CAN YOU SKYPE *</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>CHECK FOR EMAIL THAT CONTAIN THE WORD *</pattern>
<template><srai>SEARCH EMAIL FOR <star/></srai></template>
</category>
<category><pattern>CHECK OUT EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>CHECK VOICEMAIL</pattern>
<template><srai>CALL VOICEMAIL</srai></template>
</category>
<category><pattern>CHECK YOU EMAIL</pattern>
<template><srai>CHECK YOUR EMAIL</srai></template>
</category>
<category><pattern>COMPOSE MESSAGE</pattern>
<template><srai>SMS</srai></template>
</category>
<category><pattern>CONNECT TO SKYPE</pattern>
<template><srai>LAUNCH SKYPE</srai></template>
</category>
<category><pattern>DO I HAVE A NEW EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>DO I HAVE ANY EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>DO I HAVE ANY EMAILS</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>DO I NEED A JACKET TODAY</pattern>
<template><srai>WHAT IS THE WEATHER FORECAST</srai></template>
</category>
<category><pattern>DO NOT YOU SPEAK *</pattern>
<template><srai>LANGUAGE</srai></template>
</category>
<category><pattern>DO YOU HAVE AN EMAIL ADDRESS</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>DO YOU HAVE AN EMAIL</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>DO YOU HAVE EMAIL *</pattern>
<template><srai>WHAT IS YOUR EMAIL</srai></template>
</category>
<category><pattern>DO YOU HAVE SELF *</pattern>
<template><srai>ALIVE</srai></template>
</category>
<category><pattern>DO YOU HAVE SKYPE *</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>DO YOU HAVE SKYPE</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>DO YOU KNOW MY EMAIL</pattern>
<template><srai>MY EMAIL</srai></template>
</category>
<category><pattern>DO YOU KNOW SKYPE</pattern>
<template><srai>WHAT IS SKYPE</srai></template>
</category>
<category><pattern>$EMAIL * I *</pattern>
<template><srai>EMAIL <star/> SAYING <star index="2"/></srai></template>
</category>
<category><pattern>$EMAIL * THE *</pattern>
<template><srai>EMAIL <star/> MESSAGEBODY The <star index="2"/></srai></template>
</category>
<category><pattern>EMAIL FROM MY PHONE</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>FIND MY CURRENT LOCATION</pattern>
<template><srai>WHERE AM I</srai></template>
</category>
<category><pattern>GIVE ME HER EMAIL</pattern>
<template><condition name="she"><li value="who">Who is she?</li><li><srai>GIVE ME <get name="she"/> EMAIL</srai></li></condition></template>
</category>
<category><pattern>GOTO SKYPE</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>HOW CAN I SEND EMAIL</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>HOW DO I EMAIL YOUR BOSS</pattern>
<template><srai>REPORT A PROBLEM</srai></template>
</category>
<category><pattern>I AM A LIBRA</pattern>
<template><srai>MY SIGN IS LIBRA</srai></template>
</category>
<category><pattern>I AM A PISCES</pattern>
<template><srai>MY SIGN IS PISCES</srai></template>
</category>
<category><pattern>I AM A SCORPIO</pattern>
<template><srai>MY SIGN IS SCORPIO</srai></template>
</category>
<category><pattern>I AM A TAURUS</pattern>
<template><srai>MY SIGN IS TAURUS</srai></template>
</category>
<category><pattern>I AM GEMINI</pattern>
<template><srai>MY SIGN IS GEMINI</srai></template>
</category>
<category><pattern>I AM LEO</pattern>
<template><srai>MY SIGN IS LEO</srai></template>
</category>
<category><pattern>IS YOUR EMAIL *</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>MAN OR WOMAN</pattern>
<template><srai>GENDER</srai></template>
</category>
<category><pattern>MY BESTFRIENDS NAME IS *</pattern>
<template><srai>MY bestfriend S NAME IS <star/></srai></template>
</category>
<category><pattern>MY BOYFRIENDS NAME IS *</pattern>
<template><srai>MY boyfriend S NAME IS <star/></srai></template>
</category>
<category><pattern>MY EMAIL ADRESS *</pattern>
<template><srai>MY EMAIL ADDRESS <star/></srai></template>
</category>
<category><pattern>MY GIRLFRIENDS NAME IS *</pattern>
<template><srai>MY girlfriend S NAME IS <star/></srai></template>
</category>
<category><pattern>MY GRANDMOTHERS NAME IS *</pattern>
<template><srai>MY grandmother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY HOROSCOPE SIGN IS *</pattern>
<template><srai>MY SIGN IS <star/></srai></template>
</category>
<category><pattern>MY MUMS *</pattern>
<template><srai>MY MUM S <star/></srai></template>
</category>
<category><pattern>MY VOICEMAIL</pattern>
<template><srai>CALL VOICEMAIL</srai></template>
</category>
<category><pattern>$SEND * AN EMAIL</pattern>
<template><srai>EMAIL <star/></srai></template>
</category>
<category><pattern>$SEND * EMAIL I *</pattern>
<template><srai>EMAIL <star/> MESSAGEBODY I <star index="2"/></srai></template>
</category>
<category><pattern>SEND A TWEET</pattern>
<template><srai>TWEET</srai></template>
</category>
<category><pattern>SEND AN E DASH MAIL</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>SEND EMAILS</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>$SEND MY * A TEXT MESSAGE SAYING *</pattern>
<template><srai>TEXT <star/> SAYING <star index="2"/></srai></template>
</category>
<category><pattern>$SEND TO EMAIL * COM *</pattern>
<template><srai>EMAIL <star/> MESSAGEBODY <star index="2"/></srai></template>
</category>
<category><pattern>SET UP EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>SO WHAT SEND *</pattern>
<template><srai>SEND <star/></srai></template>
</category>
<category><pattern>TAKE ME TO SETUP *</pattern>
<template><srai>SETUP <star/></srai></template>
</category>
<category><pattern>TO WHAT EMAIL</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>WHAT DO I HAVE ON MY SCHEDULE *</pattern>
<template><srai>FEATURE REQUEST READ CALENDAR EVENTS</srai></template>
</category>
<category><pattern>WHAT EMAIL CAN I EMAIL YOU *</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>WHAT EMAIL SHOULD I EMAIL THAT TO</pattern>
<template><srai>WHAT IS YOUR EMAIL</srai></template>
</category>
<category><pattern>WHAT IS MY DAY LOOK LIKE</pattern>
<template><srai>OPEN CALENDAR</srai></template>
</category>
<category><pattern>WHAT IS YOUR EMAIL</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>WHAT IS YOUR SKYPE *</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>WHAT SHOULD WE HAVE FOR DINNER</pattern>
<template><srai>RECOMMEND DINNER</srai></template>
</category>
<category><pattern>WHERE CAN I READ MY EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>WHERE IS WHERE I *</pattern>
<template><srai>WHERE AM I</srai></template>
</category>
<category><pattern>WHERE SHOULD I SEND THE EMAIL</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>WRITE EMAIL</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>YOU HAVE AN EMAIL</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>YOU R</pattern>
<template><srai>YOU ARE</srai></template>
</category>
<category><pattern>* SHOPS IN *</pattern>
<template><srai>MAP <star/> IN <star index="2"/></srai></template>
</category>
<category><pattern>ADD * * TO MY CONTACTS</pattern>
<template><srai>NEW CONTACT <star/> <star index="2"/></srai></template>
</category>
<category><pattern>ADD * TO MY CONTACTS</pattern>
<template><srai>NEW CONTACT <star/></srai></template>
</category>
<category><pattern>ADDRESS AND PHONE *</pattern>
<template><srai>WHAT IS THE ADDRESS AND PHONE <star/></srai></template>
</category>
<category><pattern>ALARM ON *</pattern>
<template><srai>SET AN ALARM FOR <star/></srai></template>
</category>
<category><pattern>APPROXIMATELY *</pattern>
<template><sr/></template>
</category>
<category><pattern>CAN YOU READ MY EMAIL</pattern>
<template><srai>READ EMAIL</srai></template>
</category>
<category><pattern>CAN YOU SAY THAT IN *</pattern>
<template><srai>TRANSLATE <that/> TO <star/></srai></template>
</category>
<category><pattern>TRANSLATE THAT TO *</pattern>
<template><srai>TRANSLATE <that/> TO <star/></srai></template>
</category>
<category><pattern>CHANGE MY * TO *</pattern>
<template><srai>FEATURE REQUEST CHANGE CALENDAR EVENT</srai></template>
</category>
<category><pattern>COMPOSE EMAIL</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>DESCRIBE _ TO ME</pattern>
<template><srai>DESCRIBE <star/></srai></template>
</category>
<category><pattern>DO I HAVE ANY NEW EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>$EMAIL * TO *</pattern>
<template><srai>EMAIL <star index="2"/> SAYING <star/></srai></template>
</category>
<category><pattern>EMAIL YOU *</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>HOW MANY YEARS OLD *</pattern>
<template><srai>HOW OLD <star/></srai></template>
</category>
<category><pattern>HOW OLD YOU ARE</pattern>
<template><srai>HOW OLD ARE YOU</srai></template>
</category>
<category><pattern>I AM A VIRGO</pattern>
<template><srai>MY SIGN IS VIRGO</srai></template>
</category>
<category><pattern>I AM AQUARIUS</pattern>
<template><srai>MY SIGN IS AQUARIUS</srai></template>
</category>
<category><pattern>I AM SINGLE TOO *</pattern>
<template><srai>I AM SINGLE</srai> <sr/></template>
</category>
<category><pattern>MY BIRTHDAY IS ON VALENTINES DAY</pattern>
<template><srai>MY BIRTHDAY IS FEBRUARY 14</srai></template>
</category>
<category><pattern>MY BIRTHDAY IS TODAY</pattern>
<template><srai>MY BIRTHDAY IS <date format="%B %d" jformat="MMMMMMMMM dd"/></srai></template>
</category>
<category><pattern>MY BOYFRIENDS *</pattern>
<template><srai>MY BOYFRIEND S <star/></srai></template>
</category>
<category><pattern>MY BROTHERS NAMES ARE * AND *</pattern>
<template><srai>MY BROTHER S NAME IS <star/></srai> <srai>MY OTHER BROTHER S NAME IS <star index="2"/></srai></template>
</category>
<category><pattern>MY DAD S *</pattern>
<template><srai>FATHER S <star/></srai></template>
</category>
<category><pattern>MY DADS NAME IS *</pattern>
<template><srai>MY father S NAME IS <star/></srai></template>
</category>
<category><pattern>MY FRIEND * WANTS TO KNOW *</pattern>
<template><srai>MY FRIEND S NAME IS <star/></srai> <srai><star index="2"/></srai></template>
</category>
<category><pattern>MY FRIENDS NAME IS *</pattern>
<template><srai>MY friend S NAME IS <star/></srai></template>
</category>
<category><pattern>MY GIRLFRIEND IS MAD AT ME WHAT SHALL I DO</pattern>
<template><srai>MY GIRLFRIEND IS * WHAT *</srai> <srai>MY GIRLFRIEND IS <star/></srai> <srai>WHAT <star index="2"/></srai></template>
</category>
<category><pattern>MY GIRLFRIENDS *</pattern>
<template><srai>MY GIRLFRIEND S <star/></srai></template>
</category>
<category><pattern>MY QUESTION WAS *</pattern>
<template><sr/></template>
</category>
<category><pattern>READ MY EMAIL *</pattern>
<template><srai>READ MY EMAIL</srai></template>
</category>
<category><pattern>READ MY EMAIL</pattern>
<template><srai>OPEN EMAIL</srai></template>
</category>
<category><pattern>$SEND AN EMAIL TO *</pattern>
<template><srai>EMAIL <star/></srai></template>
</category>
<category><pattern>SET UP AN APPOINTMENT *</pattern>
<template><srai>MAKE AN APPOINTMENT <star/></srai></template>
</category>
<category><pattern>SKYPE *</pattern>
<template><srai>FEATURE REQUEST SKYPE</srai></template>
</category>
<category><pattern>TELL ME WHAT A * IS</pattern>
<template><srai>WHAT IS A <star/></srai></template>
</category>
<category><pattern>TELL ME WHY * IS *</pattern>
<template><srai>WHY IS <star/> <star index="2"/></srai></template>
</category>
<category><pattern>TURN ON WIFI</pattern>
<template><srai>WIFI ON</srai></template>
</category>
<category><pattern>WHAT ARE THE 10 COMMANDMENTS</pattern>
<template><srai>TEN COMMANDMENTS</srai></template>
</category>
<category><pattern>WHAT DO I HAVE ON MY CALENDAR TODAY</pattern>
<template><srai>OPEN CALENDAR</srai></template>
</category>
<category><pattern>WHERE IS THE BEST PLACE TO GET PIZZA</pattern>
<template><srai>FIND THE NEAREST PIZZA</srai></template>
</category>
<category><pattern>WHO IS YOUR FATHER *</pattern>
<template><srai>WHO IS YOUR FATHER</srai></template>
</category>
<category><pattern>* WHAT DOES IT MEAN</pattern>
<template><srai>WHAT DOES <star/> MEAN</srai></template>
</category>
<category><pattern>* WHY ARE *</pattern>
<template><srai>WHY ARE <star index="2"/></srai></template>
</category>
<category><pattern>* WHY DO *</pattern>
<template><srai>WHY DO <star index="2"/></srai></template>
</category>
<category><pattern>ADD * * AS A CONTACT</pattern>
<template><srai>NEW CONTACT <star/> <star index="2"/></srai></template>
</category>
<category><pattern>ADD * * CONTACTS</pattern>
<template><srai>NEW CONTACT <star/></srai></template>
</category>
<category><pattern>CAN YOU GIVE ME DIRECTIONS</pattern>
<template><srai>GIVE ME DIRECTIONS</srai></template>
</category>
<category><pattern>CAN YOU LAUNCH *</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>COMPOSE *</pattern>
<template><srai>SEND <star/></srai></template>
</category>
<category><pattern>DO I HAVE ANY MESSAGES</pattern>
<template><srai>OPEN MESSAGING</srai></template>
</category>
<category><pattern>DO YOU HAVE A EMAIL</pattern>
<template><srai>EMAIL ADDRESS</srai></template>
</category>
<category><pattern>DO YOU KNOW WHERE I *</pattern>
<template><srai>WHERE I <star/></srai></template>
</category>
<category><pattern>EMAIL YOUR CREATOR</pattern>
<template><srai>REPORT A PROBLEM</srai></template>
</category>
<category><pattern>GOTO MY PICTURES</pattern>
<template><srai>OPEN GALLERY</srai></template>
</category>
<category><pattern>HAD YOUR *</pattern>
<template><srai>HAVE YOU HAD YOUR <star/></srai></template>
</category>
<category><pattern>HELLO CAN *</pattern>
<template><srai>HELLO</srai> <srai>CAN <star/></srai></template>
</category>
<category><pattern>HOW DO I GET HOME</pattern>
<template><condition name="residence"><li value="where">Where is your residence?</li><li><srai>DIRECTIONS TO <get name="residence"/></srai></li></condition></template>
</category>
<category><pattern>I D K *</pattern>
<template><srai>I DO NOT KNOW <star/></srai></template>
</category>
<category><pattern>MY BACK HURTS</pattern>
<template><srai>FIND THE NEAREST CHIROPRACTOR</srai></template>
</category>
<category><pattern>MY BATTERY LEVEL</pattern>
<template><srai>BATTERY LEVEL</srai></template>
</category>
<category><pattern>MY BROTHERS NAME IS *</pattern>
<template><srai>MY brother S NAME IS <star/></srai></template>
</category>
<category><pattern>MY HEAD HURTS</pattern>
<template><srai>FIND THE NEAREST HOSPITAL</srai></template>
</category>
<category><pattern>MY MOTHERS NAME IS *</pattern>
<template><srai>MY mother S NAME IS <star/></srai></template>
</category>
<category><pattern>OPEN APP *</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>OPEN MY PHOTOS</pattern>
<template><srai>OPEN GALLERY</srai></template>
</category>
<category><pattern>SEND EMAIL *</pattern>
<template><srai>SEND EMAIL</srai></template>
</category>
<category><pattern>SEND ME A PIC *</pattern>
<template><srai>SHOW ME A PICTURE <star/></srai></template>
</category>
<category><pattern>WHAT FUNCTIONS DO YOU HAVE</pattern>
<template><srai>WHAT CAN YOU DO</srai></template>