-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
reductions1.aiml
4866 lines (4866 loc) · 166 KB
/
reductions1.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>
<category><pattern>*</pattern><that>WHO IS HE</that>
<template><srai>HIS NAME IS <star/></srai></template>
</category>
<category><pattern>*</pattern><that>WHO IS SHE</that>
<template><srai>HER NAME IS <star/></srai></template>
</category>
<category><pattern>ARE YOU REALLY A *</pattern>
<template><srai>ARE YOU A <star/></srai></template>
</category>
<category><pattern>CALL * AT THE OFFICE</pattern>
<template><srai>CALL <star/> AT WORK</srai></template>
</category>
<category><pattern>CAN I GET A TRANSCRIPT</pattern>
<template><srai>TRANSCRIPT</srai></template>
</category>
<category><pattern>CAN YOU DISTINGUISH BETWEEN * AND *</pattern>
<template><srai>WHAT IS THE DIFFERENCE BETWEEN <star/> AND <star index="2"/></srai></template>
</category>
<category><pattern>DO U</pattern>
<template><srai>DO YOU</srai></template>
</category>
<category><pattern>DO YOU HAVE BOOBS</pattern>
<template><srai>GENDER</srai></template>
</category>
<category><pattern>DONT *</pattern>
<template><srai>DO NOT <star/></srai></template>
</category>
<category><pattern>DUPLICATE TEST</pattern>
<template>Duplicate 2</template>
</category>
<category><pattern>GET A TRANSCRIPT</pattern>
<template><srai>TRANSCRIPT</srai></template>
</category>
<category><pattern>HAHA FUNNY *</pattern>
<template><srai>LOL</srai></template>
</category>
<category><pattern>HAHA THAT IS FUNNY</pattern>
<template><srai>LOL</srai></template>
</category>
<category><pattern>HE IS *</pattern><that>WHO IS HE</that>
<template><srai>HIS NAME IS <star/></srai></template>
</category>
<category><pattern>HEHEHE *</pattern>
<template><srai>LOL</srai> <sr/></template>
</category>
<category><pattern>HELL YEAH</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>HEY SEXY *</pattern>
<template><srai>HELLO</srai></template>
</category>
<category><pattern>HOW ARE U</pattern>
<template><srai>HOW ARE YOU</srai></template>
</category>
<category><pattern>HOW FAR IS TO FROM * TO *</pattern>
<template><srai>DIRECTIONS FROM <star/> TO <star index="2"/></srai></template>
</category>
<category><pattern>HOW OLD ARE U</pattern>
<template><srai>AGE</srai></template>
</category>
<category><pattern>HOW OLD R U</pattern>
<template><srai>HOW OLD ARE YOU</srai></template>
</category>
<category><pattern>HOW R U</pattern>
<template><srai>HOW ARE YOU</srai></template>
</category>
<category><pattern>I AM FINE HOW ARE YOU</pattern>
<template><srai>I AM FINE</srai> <srai>HOW ARE YOU</srai></template>
</category>
<category><pattern>I AM JUST KIDDING *</pattern>
<template><srai>I AM KIDDING</srai></template>
</category>
<category><pattern>I DIDNT *</pattern>
<template><srai>I DID NOT <star/></srai></template>
</category>
<category><pattern>I DO NOT WANNA *</pattern>
<template><srai>I DO NOT WANT TO <star/></srai></template>
</category>
<category><pattern>I M A *</pattern>
<template><srai>I AM A <star/></srai></template>
</category>
<category><pattern>MY FAVOURITE *</pattern>
<template><srai>MY FAVORITE <star/></srai></template>
</category>
<category><pattern>O K</pattern>
<template><srai>OK</srai></template>
</category>
<category><pattern>PREPARE * REPORT *</pattern>
<template><srai>REPORT A PROBLEM</srai></template>
</category>
<category><pattern>REALY</pattern>
<template><srai>REALLY</srai></template>
</category>
<category><pattern>REGARDING * WHAT IS IT</pattern>
<template><srai>WHAT IS <star/></srai></template>
</category>
<category><pattern>SEND ME A TRANSCRIPT *</pattern>
<template><srai>TRANSCRIPT</srai></template>
</category>
<category><pattern>SHE IS *</pattern><that>WHO IS SHE</that>
<template><srai>HER NAME IS <star/></srai></template>
</category>
<category><pattern>SHOE ME</pattern>
<template><srai>SHOW ME <star/></srai></template>
</category>
<category><pattern>TELL * WHERE I AM</pattern>
<template><srai>TELL <star/> I am at <srai>MY LOCATION</srai></srai></template>
</category>
<category><pattern>TELL * WHERE WE ARE</pattern>
<template><srai>TELL <star/> We are at <srai>MY LOCATION</srai></srai></template>
</category>
<category><pattern>TRANSCRIPT *</pattern>
<template><srai>TRANSCRIPT</srai></template>
</category>
<category><pattern>WHAT * AM I IN</pattern>
<template><srai>MY <star/></srai></template>
</category>
<category><pattern>WHAT * ARE WE IN</pattern>
<template><srai>MY <star/></srai></template>
</category>
<category><pattern>WHAT ARE U</pattern>
<template><srai>WHAT ARE YOU</srai></template>
</category>
<category><pattern>WHAT CITY ARE WE *</pattern>
<template><srai>MY CITY</srai></template>
</category>
<category><pattern>WHAT CITY ARE WE IN</pattern>
<template><srai>MY CITY</srai></template>
</category>
<category><pattern>WHAT CITY IS THIS</pattern>
<template><srai>MY CITY</srai></template>
</category>
<category><pattern>WHAT COUNTRY AM I *</pattern>
<template><srai>MY COUNTRY </srai></template>
</category>
<category><pattern>WHAT COUNTRY ARE WE *</pattern>
<template><srai>MY COUNTRY </srai></template>
</category>
<category><pattern>WHAT COUNTRY ARE WE IN</pattern>
<template><srai>MY COUNTRY </srai></template>
</category>
<category><pattern>WHAT COUNTRY IS THIS</pattern>
<template><srai>MY COUNTRY </srai></template>
</category>
<category><pattern>WHAT IS YOUR FAVOURITE *</pattern>
<template><srai>WHAT IS YOUR FAVORITE <star/></srai></template>
</category>
<category><pattern>WHAT IS YOUR NAME PLEASE</pattern>
<template><srai>NAME</srai></template>
</category>
<category><pattern>WHAT PROVINCE AM I *</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT PROVINCE AM I IN</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT PROVINCE IS THIS</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT ROAD AM I *</pattern>
<template><srai>MY STREET</srai></template>
</category>
<category><pattern>WHAT ROAD IS THIS</pattern>
<template><srai>MY STREET</srai></template>
</category>
<category><pattern>WHAT STATE AM I *</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT STATE AM I IN</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT STATE ARE WE *</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT STATE ARE WE IN</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT STATE IS THIS</pattern>
<template><srai>MY STATE </srai></template>
</category>
<category><pattern>WHAT STREET IS THIS</pattern>
<template><srai>MY STREET</srai></template>
</category>
<category><pattern>WHAT TOWN ARE WE *</pattern>
<template><srai>MY TOWN</srai></template>
</category>
<category><pattern>WHAT TOWN ARE WE IN</pattern>
<template><srai>MY TOWN</srai></template>
</category>
<category><pattern>WHAT TOWN IS THIS</pattern>
<template><srai>MY TOWN</srai></template>
</category>
<category><pattern>YEAH *</pattern>
<template><srai>YES</srai> <sr/></template>
</category>
<category><pattern>YEAH BABY *</pattern>
<template><sr/></template>
</category>
<category><pattern>YEAH BECAUSE *</pattern>
<template><srai>YES BECAUSE <star/></srai></template>
</category>
<category><pattern>YEAH I *</pattern>
<template><srai>YES</srai> <srai>I <star/></srai></template>
</category>
<category><pattern>YEAH SURE *</pattern>
<template><srai>YES</srai> <sr/></template>
</category>
<category><pattern>YEAH YEAH *</pattern>
<template><sr/></template>
</category>
<category><pattern>YEAH YEAH YEAH</pattern>
<template><srai>YEAH YEAH</srai></template>
</category>
<category><pattern>YEAH</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>YEP *</pattern>
<template><srai>YES</srai> <sr/></template>
</category>
<category><pattern>YEP</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>YES THATS *</pattern>
<template><srai>YES THAT IS <star/></srai></template>
</category>
<category><pattern>YES VERY MUCH</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>YOU CANT *</pattern>
<template><srai>YOU CAN NOT <star/></srai></template>
</category>
<category><pattern>ASK MY *</pattern>
<template><srai>ASK <star/></srai></template>
</category>
<category><pattern>CALL ME A TAXI</pattern>
<template><srai>CALL A TAXI</srai></template>
</category>
<category><pattern>DO YOU HAVE NEWS</pattern>
<template><srai>WHAT IS THE LATEST NEWS</srai></template>
</category>
<category><pattern>DRIVING DISTANCE *</pattern>
<template><srai>DIRECTIONS <star/></srai></template>
</category>
<category><pattern>FIND THE NEAREST * TO ME</pattern>
<template><srai>FIND THE NEAREST <star/></srai></template>
</category>
<category><pattern>GAS STATION</pattern>
<template><srai>MAP Gas Station</srai></template>
</category>
<category><pattern>HAHA FUNNY</pattern>
<template><srai>LOL</srai></template>
</category>
<category><pattern>HOW IS YOUR BATTERY *</pattern>
<template><srai>BATTERY LEVEL</srai></template>
</category>
<category><pattern>HOW IS YOUR IQ</pattern>
<template><srai>IQ</srai></template>
</category>
<category><pattern>LAUNCH THE * APPLICATION</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>OPEN AN EMAIL</pattern>
<template><srai>EMAIL</srai></template>
</category>
<category><pattern>PLZZ *</pattern>
<template><srai>PLEASE <star/></srai></template>
</category>
<category><pattern>SEND ME A TRANSCRIPT</pattern>
<template><srai>TRANSCRIPT</srai></template>
</category>
<category><pattern>WHAT * IS YOUR FAVORITE</pattern>
<template><srai>WHAT IS YOUR FAVORITE <star/></srai></template>
</category>
<category><pattern>WHAT CITY AM I *</pattern>
<template><srai>MY CITY</srai></template>
</category>
<category><pattern>WHAT COUNTRY AM I IN</pattern>
<template><srai>MY COUNTRY </srai></template>
</category>
<category><pattern>WHAT DOES * SPELL</pattern>
<template><srai>IMPLODE <star/></srai></template>
</category>
<category><pattern>WHAT TOWN AM I *</pattern>
<template><srai>MY TOWN</srai></template>
</category>
<category><pattern>WHAT TOWN AM I IN</pattern>
<template><srai>MY TOWN</srai></template>
</category>
<category><pattern>WHO * IS</pattern>
<template><srai>WHO IS <star/></srai></template>
</category>
<category><pattern>YOU CAN BUT *</pattern>
<template><srai>YOU CAN</srai> <sr/></template>
</category>
<category><pattern>DO YOU KNOW WHERE THE * IS</pattern>
<template><srai>WHERE IS THE <star/></srai></template>
</category>
<category><pattern>HAHAHAHAHA</pattern>
<template><srai>LOL</srai></template>
</category>
<category><pattern>HOW IS YOUR BATTERY</pattern>
<template><srai>BATTERY LEVEL</srai></template>
</category>
<category><pattern>HOW OLD WOULD YOU SAY * IS</pattern>
<template><srai>HOW OLD IS <star/></srai></template>
</category>
<category><pattern>I AM 23 *</pattern>
<template><srai>MY AGE IS 23</srai></template>
</category>
<category><pattern>OPEN * FOR ME</pattern>
<template><srai>OPEN <star/></srai></template>
</category>
<category><pattern>OPEN MY * APP</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>SHOW ME A PHOTO *</pattern>
<template><srai>SHOW ME <star/></srai></template>
</category>
<category><pattern>WHAT CITY AM I IN</pattern>
<template><srai>MY CITY</srai></template>
</category>
<category><pattern>WHAT IS YOUR RELIGION *</pattern>
<template><srai>RELIGION</srai></template>
</category>
<category><pattern>WHAT STREET AM I *</pattern>
<template><srai>MY STREET</srai></template>
</category>
<category><pattern>WHERE * IS</pattern>
<template><srai>WHERE IS <star/></srai></template>
</category>
<category><pattern>WHERE IS MY _ NOW</pattern>
<template><srai>WHERE IS MY <star/></srai></template>
</category>
<category><pattern>ASK ME A QUESTION *</pattern>
<template><srai>ASK ME A QUESTION</srai></template>
</category>
<category><pattern>CAN YOU OPEN UP *</pattern>
<template><srai>OPEN <star/></srai></template>
</category>
<category><pattern>DEN *</pattern>
<template><srai>THEN <star/></srai></template>
</category>
<category><pattern>GIVE ME A LINK *</pattern>
<template><srai>SEARCH <star/></srai></template>
</category>
<category><pattern>HOW HOT IS IT * IN *</pattern>
<template><srai>WEATHER IN <star index="2"/></srai></template>
</category>
<category><pattern>I AM 28 *</pattern>
<template><srai>MY AGE IS 28</srai> <sr/></template>
</category>
<category><pattern>I AM AT WORK *</pattern>
<template><srai>I AM AT WORK</srai></template>
</category>
<category><pattern>I AM LONELY *</pattern>
<template><srai>I AM LONELY</srai></template>
</category>
<category><pattern>I LIKE * WHAT ABOUT YOU</pattern>
<template><srai>I LIKE <star/></srai> <srai>DO YOU LIKE <star/></srai></template>
</category>
<category><pattern>IF YOU ARE NOT * THEN *</pattern>
<template><srai>ARE YOU <star/></srai> <sr/></template>
</category>
<category><pattern>OKAY FINE *</pattern>
<template><srai>OK</srai> <sr/></template>
</category>
<category><pattern>OPEN GOOGLE PLAY</pattern>
<template><srai>LAUNCH GOOGLE PLAY STORE</srai></template>
</category>
<category><pattern>SET MY FACEBOOK *</pattern>
<template><srai>update facebook status</srai></template>
</category>
<category><pattern>SHOW ME A PICTURE OF SOME *</pattern>
<template><srai>SHOW ME <star/></srai></template>
</category>
<category><pattern>TRANSCRIPTS</pattern>
<template><srai>TRANSCRIPT</srai></template>
</category>
<category><pattern>WALGREENS *</pattern>
<template><srai>SEARCH WALGREENS <star/></srai></template>
</category>
<category><pattern>YOU ARE USELESS *</pattern>
<template><srai>YOU ARE USELESS</srai></template>
</category>
<category><pattern>YOU THOUGHT *</pattern>
<template><srai>DO YOU THINK <star/></srai></template>
</category>
<category><pattern>YOUR RIGHT *</pattern>
<template><srai>YOU ARE RIGHT <star/></srai></template>
</category>
<category><pattern>ARE YOU ABLE TO FIND *</pattern>
<template><srai>CAN YOU FIND <star/></srai></template>
</category>
<category><pattern>B QUIET *</pattern>
<template><srai>BE QUIET <star/></srai></template>
</category>
<category><pattern>CAN YOU FIND ME A PICTURE OF *</pattern>
<template><srai>SHOW ME <star/></srai></template>
</category>
<category><pattern>DO YOU BELIEVE IN ALIENS *</pattern>
<template><srai>DO YOU BELIEVE IN ALIENS</srai></template>
</category>
<category><pattern>DO YOU EVER HAVE *</pattern>
<template><srai>DO YOU HAVE <star/></srai></template>
</category>
<category><pattern>DO YOU KNOW HOW TO PLAY *</pattern>
<template><srai>CAN YOU PLAY <star/></srai></template>
</category>
<category><pattern>DO YOU KNOW WHERE THE *</pattern>
<template><srai>WHERE THE <star/></srai></template>
</category>
<category><pattern>EHM *</pattern>
<template><srai>UM</srai> <sr/></template>
</category>
<category><pattern>HERE S *</pattern>
<template><srai>HERE IS <star/></srai></template>
</category>
<category><pattern>HEY NOW *</pattern>
<template><sr/></template>
</category>
<category><pattern>HI DO YOU *</pattern>
<template><srai>HI</srai> <srai>DO YOU <star/></srai></template>
</category>
<category><pattern>I AM 21 *</pattern>
<template><srai>MY AGE IS 21</srai> <sr/></template>
</category>
<category><pattern>I AM A MALE *</pattern>
<template><srai>I AM A MALE</srai></template>
</category>
<category><pattern>I AM SLEEPY *</pattern>
<template><srai>I AM TIRED</srai></template>
</category>
<category><pattern>I FEEL SAD *</pattern>
<template><srai>I AM SAD</srai></template>
</category>
<category><pattern>I FIND YOU *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>I KNOW SO *</pattern>
<template><srai>I KNOW</srai> <srai><star/></srai></template>
</category>
<category><pattern>I LOVE YOU AND *</pattern>
<template><srai>I LOVE YOU</srai> <sr/></template>
</category>
<category><pattern>I WANT TO CALL *</pattern>
<template><srai>CALL <star/></srai></template>
</category>
<category><pattern>IM KIDDING *</pattern>
<template><srai>I AM KIDDING <star/></srai></template>
</category>
<category><pattern>IM NOT SURE *</pattern>
<template><srai>I AM NOT SURE <star/></srai></template>
</category>
<category><pattern>IS IT OK IF I *</pattern>
<template><srai>CAN I <star/></srai></template>
</category>
<category><pattern>IT IS IT *</pattern>
<template><srai>IS IT <star/></srai></template>
</category>
<category><pattern>LAUNCH * APPLICATION</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>LAUNCH THE * APP</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>LEARNED *</pattern>
<template><srai>I LEARNED <star/></srai></template>
</category>
<category><pattern>MAY I HAVE *</pattern>
<template><srai>I WANT <star/></srai></template>
</category>
<category><pattern>MY FRIENDS CALL ME *</pattern>
<template><srai>CALL ME <star/></srai></template>
</category>
<category><pattern>NEED A *</pattern>
<template><srai>I NEED A <star/></srai></template>
</category>
<category><pattern>NIKE *</pattern>
<template><srai>SEARCH NIKE <star/></srai></template>
</category>
<category><pattern>PULL UP MY *</pattern>
<template><srai>OPEN <star/></srai></template>
</category>
<category><pattern>RIGHT NOW I AM *</pattern>
<template><srai>I AM <star/></srai></template>
</category>
<category><pattern>SEE YA *</pattern>
<template><srai>BYE</srai></template>
</category>
<category><pattern>SET THE ALARM *</pattern>
<template><srai>SET ALARM <star/></srai></template>
</category>
<category><pattern>SHOW ME A FUNNY PICTURE ABOUT A *</pattern>
<template><srai>SHOW ME <star/></srai></template>
</category>
<category><pattern>SHOW ME A PIC *</pattern>
<template><srai>SHOW ME <star/></srai></template>
</category>
<category><pattern>SPEAK SPANISH *</pattern>
<template><srai>LANGUAGE</srai></template>
</category>
<category><pattern>THAT MAKES NO SENSE *</pattern>
<template><srai>THAT MAKES NO SENSE</srai></template>
</category>
<category><pattern>WHAT IS MY BATTERY LEVEL *</pattern>
<template><srai>BATTERY LEVEL</srai></template>
</category>
<category><pattern>WHAT IS THE SIZE OF YOUR *</pattern>
<template><srai>SIZE</srai></template>
</category>
<category><pattern>WHAT WHO *</pattern>
<template><srai>WHO <star/></srai></template>
</category>
<category><pattern>WHO I AM</pattern>
<template><srai>WHO AM I</srai></template>
</category>
<category><pattern>WHY NOT I *</pattern>
<template><srai>WHY NOT</srai> <srai>I <star/></srai></template>
</category>
<category><pattern>WICH *</pattern>
<template><srai>WHICH <star/></srai></template>
</category>
<category><pattern>WILL YOU SHOW ME YOUR *</pattern>
<template><srai>SHOW ME YOUR <star/></srai></template>
</category>
<category><pattern>XBOX *</pattern>
<template><srai>SEARCH XBOX <star/></srai></template>
</category>
<category><pattern>YEPP *</pattern>
<template><srai>YES</srai> <sr/></template>
</category>
<category><pattern>YOU KNOW LIKE *</pattern>
<template><srai>LIKE <star/></srai></template>
</category>
<category><pattern>AHEM</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>ALRIGHT I WILL *</pattern>
<template><srai>I WILL <star/></srai></template>
</category>
<category><pattern>ANIMATION</pattern>
<template><srai>SEARCH ANIMATION</srai></template>
</category>
<category><pattern>ASDF</pattern>
<template><srai>AGE</srai> <srai>GENDER</srai> <srai>LOCATION</srai></template>
</category>
<category><pattern>AT IT FROM MY PHONE BOOK</pattern>
<template><srai>PHONE BOOK</srai></template>
</category>
<category><pattern>BATMAN</pattern>
<template><srai>SEARCH BATMAN</srai></template>
</category>
<category><pattern>BC *</pattern>
<template><srai>BECAUSE <star/></srai></template>
</category>
<category><pattern>BECAUSE IM A *</pattern>
<template><srai>BECAUSE I AM A <star/></srai></template>
</category>
<category><pattern>BEST BUY</pattern>
<template><srai>FIND THE NEAREST BEST BUY</srai></template>
</category>
<category><pattern>CAN WE BE FRIENDS *</pattern>
<template><srai>CAN WE BE FRIENDS</srai></template>
</category>
<category><pattern>CAN WE CHANGE YOUR NAME</pattern>
<template><srai>CHANGE YOUR NAME</srai></template>
</category>
<category><pattern>CAN YOU BE QUIET</pattern>
<template><srai>BE QUIET</srai></template>
</category>
<category><pattern>CAN YOU PLEASE SHOW ME A PICTURE OF *</pattern>
<template><srai>SHOW ME <star/></srai></template>
</category>
<category><pattern>CAN YOU SEARCH FOR *</pattern>
<template><srai>SEARCH FOR <star/></srai></template>
</category>
<category><pattern>CAN YOU SPEAK OTHER LANGUAGES</pattern>
<template><srai>LANGUAGE</srai></template>
</category>
<category><pattern>CAN YOU TELL A JOKE</pattern>
<template><srai>JOKE</srai></template>
</category>
<category><pattern>CAN YOU TELL ME A STORY</pattern>
<template><srai>TELL ME A STORY</srai></template>
</category>
<category><pattern>COLDPLAY</pattern>
<template><srai>SEARCH COLDPLAY</srai></template>
</category>
<category><pattern>COME ON WHAT</pattern>
<template><srai>COME ON</srai> <srai>WHAT</srai></template>
</category>
<category><pattern>CYA</pattern>
<template><srai>BYE</srai></template>
</category>
<category><pattern>DICKS</pattern>
<template><srai>FIND THE NEAREST DICKS</srai></template>
</category>
<category><pattern>DO NOT CARE *</pattern>
<template><srai>I DO NOT CARE <star/></srai></template>
</category>
<category><pattern>DO YOU HAVE A FACEBOOK ACCOUNT</pattern>
<template><srai>FACEBOOK PAGE</srai></template>
</category>
<category><pattern>DO YOU HAVE A PICTURE OF YOURSELF</pattern>
<template><srai>PIC</srai></template>
</category>
<category><pattern>DO YOU KNOW ANYTHING ABOUT ME</pattern>
<template><srai>WHAT DO YOU KNOW ABOUT ME</srai></template>
</category>
<category><pattern>DO YOU KNOW HOW OLD I AM</pattern>
<template><srai>HOW OLD AM I</srai></template>
</category>
<category><pattern>DO YOU KNOW JUSTIN BIEBER</pattern>
<template><srai>WHO IS JUSTIN BIEBER</srai></template>
</category>
<category><pattern>DO YOU KNOW MEXICO</pattern>
<template><srai>WHAT IS MEXICO</srai></template>
</category>
<category><pattern>DO YOU KNOW WHAT THE * IS</pattern>
<template><srai>WHAT IS THE <star/></srai></template>
</category>
<category><pattern>DO YOU KNOW WHERE I AM</pattern>
<template><srai>WHERE AM I</srai></template>
</category>
<category><pattern>DO YOU KNOW WHERE I CAN *</pattern>
<template><srai>WHERE CAN I <star/></srai></template>
</category>
<category><pattern>FINE N YOU</pattern>
<template><srai>I AM FINE</srai> <srai>HOW ARE YOU</srai></template>
</category>
<category><pattern>FO SHO</pattern>
<template><srai>FOR SURE</srai></template>
</category>
<category><pattern>GET ME DIRECTIONS *</pattern>
<template><srai>DIRECTIONS <star/></srai></template>
</category>
<category><pattern>GOD YOU ARE *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>HES HOT</pattern>
<template><srai>HE IS HOT</srai></template>
</category>
<category><pattern>HEY DUDE *</pattern>
<template><sr/></template>
</category>
<category><pattern>HEYA</pattern>
<template><srai>HI</srai></template>
</category>
<category><pattern>HI DEAR *</pattern>
<template><srai>HI <star/></srai></template>
</category>
<category><pattern>HIIII</pattern>
<template><srai>HI</srai></template>
</category>
<category><pattern>HISTORY</pattern>
<template><srai>TRANSCRIPT</srai></template>
</category>
<category><pattern>HOW ARE YOU HOW *</pattern>
<template><srai>HOW ARE YOU</srai> <srai>HOW <star/></srai></template>
</category>
<category><pattern>HOW ARE YOU HOW ARE YOU *</pattern>
<template><srai>HOW ARE YOU</srai></template>
</category>
<category><pattern>HOW ARE YOU THIS MORNING</pattern>
<template><srai>HOW ARE YOU</srai></template>
</category>
<category><pattern>HOW IS THE WEATHER THERE</pattern>
<template><srai>WEATHER</srai></template>
</category>
<category><pattern>HOW MANY CHILDREN DO YOU HAVE</pattern>
<template><srai>CHILDREN</srai></template>
</category>
<category><pattern>HOW MUCH BATTERY LIFE DO I HAVE</pattern>
<template><srai>BATTERY LEVEL</srai></template>
</category>
<category><pattern>HOW MUCH DO I WEIGH</pattern>
<template><srai>MY WEIGHT</srai></template>
</category>
<category><pattern>HOW TO FIND *</pattern>
<template><srai>SEARCH <star/></srai></template>
</category>
<category><pattern>I AM A LESBIAN</pattern>
<template><srai>MY ORIENTATION IS GAY</srai> <srai>MY GENDER IS FEMALE</srai></template>
</category>
<category><pattern>I AM ILL</pattern>
<template><srai>I AM SICK</srai></template>
</category>
<category><pattern>I FEEL SAD</pattern>
<template><srai>I AM SAD</srai></template>
</category>
<category><pattern>I GUESS YOU ARE *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>I LIVE IN LONDON</pattern>
<template><srai>MY RESIDENCE IS LONDON</srai></template>
</category>
<category><pattern>I MEAN I AM *</pattern>
<template><srai>I AM <star/></srai></template>
</category>
<category><pattern>I NEED TO GO</pattern>
<template><srai>BYE</srai></template>
</category>
<category><pattern>I SAID SHE *</pattern>
<template><srai>SHE <star/></srai></template>
</category>
<category><pattern>I SAY YES *</pattern>
<template><srai>YES <star/></srai></template>
</category>
<category><pattern>I THINK ITS *</pattern>
<template><srai>I THINK IT IS <star/></srai></template>
</category>
<category><pattern>I THINK YOU KNOW *</pattern>
<template><srai>DO YOU KNOW <star/></srai></template>
</category>
<category><pattern>I UNDERSTAND I *</pattern>
<template><srai>I UNDERSTAND</srai> <srai>I <star/></srai></template>
</category>
<category><pattern>IM BLEEDING</pattern>
<template><srai>I AM BLEEDING</srai></template>
</category>
<category><pattern>IM HUNGRY</pattern>
<template><srai>I AM HUNGRY</srai></template>
</category>
<category><pattern>IM SEXY</pattern>
<template><srai>I AM SEXY</srai></template>
</category>
<category><pattern>IT IS IN MY PHONE BOOK</pattern>
<template><srai>PHONE BOOK</srai></template>
</category>
<category><pattern>KAY</pattern>
<template><srai>OK</srai></template>
</category>
<category><pattern>KEWL</pattern>
<template><srai>COOL</srai></template>
</category>
<category><pattern>LISTEN HERE *</pattern>
<template><srai>LISTEN HERE</srai> <sr/></template>
</category>
<category><pattern>LOCATE ME</pattern>
<template><srai>WHERE AM I</srai></template>
</category>
<category><pattern>MAKE A PHONE CALL</pattern>
<template><srai>DIAL</srai></template>
</category>
<category><pattern>ME TOO BUT *</pattern>
<template><srai>ME TOO</srai> <sr/></template>
</category>
<category><pattern>MEANING *</pattern>
<template><sr/></template>
</category>
<category><pattern>MOI *</pattern>
<template><srai>LANGUAGE</srai></template>
</category>
<category><pattern>MUM</pattern>
<template><srai>MOM</srai></template>
</category>
<category><pattern>MY B DAY IS *</pattern>
<template><srai>MY BIRTHDAY IS <star/></srai></template>
</category>
<category><pattern>MY BIRTHDAY IS IN *</pattern>
<template><srai>MY BIRTHDAY IS <star/></srai></template>
</category>
<category><pattern>NAME 1 *</pattern>
<template><srai>SEARCH <star/></srai></template>
</category>
<category><pattern>NOT RIGHT NOW *</pattern>
<template><srai>NO <star/></srai></template>
</category>
<category><pattern>O M G *</pattern>
<template><sr/></template>
</category>
<category><pattern>OPEN CLOCK</pattern>
<template><srai>LAUNCH CLOCK</srai></template>
</category>
<category><pattern>OPEN MY FACEBOOK *</pattern>
<template><srai>LAUNCH FACEBOOK</srai></template>
</category>
<category><pattern>OPEN MY MUSIC PLAYER</pattern>
<template><srai>OPEN MUSIC PLAYER</srai></template>
</category>
<category><pattern>OPEN THE APP *</pattern>
<template><srai>LAUNCH <star/></srai></template>
</category>
<category><pattern>READ EMAIL</pattern>
<template><srai>OPEN GMAIL</srai></template>
</category>
<category><pattern>SHOW ME A PICTURE OF A GIRL</pattern>
<template><srai>SHOW ME A GIRL</srai></template>
</category>
<category><pattern>SHOW ME A PICTURE OF A HORSE</pattern>
<template><srai>SHOW ME A HORSE</srai></template>
</category>
<category><pattern>SHOW ME A PICTURE OF A ZOMBIE</pattern>
<template><srai>SHOW ME A ZOMBIE</srai></template>
</category>
<category><pattern>SHUT THE * UP</pattern>
<template><srai>SHUT UP</srai></template>
</category>
<category><pattern>SORRY THAT *</pattern>
<template><srai>SORRY</srai> <srai>THAT <star/></srai></template>
</category>
<category><pattern>SPEAK JAPANESE</pattern>
<template><srai>LANGUAGE</srai></template>
</category>
<category><pattern>SURE IS</pattern>
<template><srai>YES IT IS</srai></template>
</category>
<category><pattern>SURE THING</pattern>
<template><srai>YES</srai></template>
</category>
<category><pattern>TELEPHONE</pattern>
<template><srai>DIAL</srai></template>
</category>
<category><pattern>TELL ME A LITTLE BIT ABOUT YOURSELF</pattern>
<template><srai>DESCRIBE YOURSELF</srai></template>
</category>
<category><pattern>TELL ME A PICTURE OF *</pattern>
<template><srai>SHOW ME A PICTURE OF <star/></srai></template>
</category>
<category><pattern>THANK YOU THANK YOU *</pattern>
<template><srai>THANK YOU <star/></srai></template>
</category>
<category><pattern>THANKS SO MUCH</pattern>
<template><srai>THANKS</srai></template>
</category>
<category><pattern>THAT IS A GOOD QUESTION *</pattern>
<template><srai>THAT IS A GOOD QUESTION</srai> <sr/></template>
</category>
<category><pattern>THAT IS GOOD THAT IS GOOD</pattern>
<template><srai>THAT IS GOOD</srai></template>
</category>
<category><pattern>THAT IS NOT CORRECT</pattern>
<template><srai>BAD ANSWER</srai></template>
</category>
<category><pattern>THAT IS WHAT I SAID *</pattern>
<template><sr/></template>
</category>
<category><pattern>THAT WAS SO *</pattern>
<template><srai>THAT WAS <star/></srai></template>
</category>
<category><pattern>THEN YOUR *</pattern>
<template><srai>YOUR <star/></srai></template>
</category>
<category><pattern>THEY CALL ME *</pattern>
<template><srai>CALL ME <star/></srai></template>
</category>
<category><pattern>THEYRE *</pattern>
<template><srai>THEY ARE <star/></srai></template>
</category>
<category><pattern>TODAY S WEATHER</pattern>
<template><srai>WHAT IS THE WEATHER</srai></template>
</category>
<category><pattern>UPDATE MY FACEBOOK *</pattern>
<template><srai>update facebook status</srai></template>
</category>
<category><pattern>UPDATE MY FACEBOOK</pattern>
<template><srai>update facebook status</srai></template>
</category>
<category><pattern>VIEW *</pattern>
<template><srai>OPEN <star/></srai></template>
</category>
<category><pattern>WHAT ARE YOU ABLE TO *</pattern>
<template><srai>SKILLS</srai></template>
</category>
<category><pattern>WHAT ARE YOU UP TO *</pattern>
<template><srai>WHAT ARE YOU DOING</srai></template>
</category>
<category><pattern>WHAT ARE YOU WEARING TODAY</pattern>
<template><srai>WHAT ARE YOU WEARING</srai></template>
</category>
<category><pattern>WHAT ARE YOUR ABILITIES</pattern>
<template><srai>SKILLS</srai></template>
</category>
<category><pattern>WHAT COLORS YOUR *</pattern>
<template><srai>WHAT COLOR IS YOUR <star/></srai></template>
</category>
<category><pattern>WHAT DO YOU DO FOR LIVING</pattern>
<template><srai>JOB</srai></template>
</category>
<category><pattern>WHAT DOES THE WORD * MEAN</pattern>
<template><srai>DEFINE <star/></srai></template>
</category>
<category><pattern>WHAT IS GOING ON IN *</pattern>
<template><srai>NEWS ABOUT <star/></srai></template>
</category>
<category><pattern>WHAT IS MY BATTERY LEVEL NOW</pattern>
<template><srai>BATTERY LEVEL</srai></template>
</category>
<category><pattern>WHAT IS NAME</pattern>
<template><srai>NAME</srai></template>
</category>
<category><pattern>WHAT IS THE WEATHER GONNA BE LIKE TODAY</pattern>
<template><srai>WEATHER FORECAST</srai></template>
</category>
<category><pattern>WHAT IS TODAYS DATE</pattern>
<template><srai>DATE</srai></template>
</category>
<category><pattern>WHAT IS UP TO</pattern>
<template><srai>WHAT IS UP</srai></template>
</category>
<category><pattern>WHAT IS UP WITH YOU *</pattern>
<template><srai>WHAT IS UP</srai></template>
</category>
<category><pattern>WHAT IS YOUR FATHER NAME</pattern>
<template><srai>BOTMASTER</srai></template>
</category>
<category><pattern>WHAT IS YOUR FAVORITE ARTIST</pattern>
<template><srai>WHO IS YOUR FAVORITE ARTIST</srai></template>
</category>
<category><pattern>WHAT IS YOUR FAVORITE BOOK *</pattern>
<template><srai>WHAT IS YOUR FAVORITE BOOK</srai></template>
</category>
<category><pattern>WHAT IS YOUR FUNCTION</pattern>
<template><srai>SKILLS</srai></template>
</category>
<category><pattern>WHAT IS YOUR MAJOR</pattern>
<template><srai>JOB</srai></template>
</category>
<category><pattern>WHAT IS YOUR STATUS</pattern>
<template><srai>STATUS</srai></template>
</category>
<category><pattern>WHAT IT MEANS</pattern>
<template><srai>WHAT DOES IT MEAN</srai></template>
</category>
<category><pattern>WHAT KIND OF MUSIC DO YOU LISTEN TO</pattern>
<template><srai>FAVORITE MUSIC</srai></template>
</category>
<category><pattern>WHAT MOVIES DO YOU LIKE</pattern>
<template><srai>WHAT IS YOUR FAVORITE MOVIE</srai></template>
</category>
<category><pattern>WHAT RELIGION *</pattern>
<template><srai>RELIGION</srai></template>
</category>
<category><pattern>WHAT TIME DO YOU GO TO BED</pattern>
<template><srai>SLEEP</srai></template>
</category>
<category><pattern>WHAT TIME IS IT RIGHT NOW</pattern>
<template><srai>TIME</srai></template>
</category>
<category><pattern>WHAT TIME NOW</pattern>
<template><srai>TIME</srai></template>
</category>
<category><pattern>WHAT WOULD YOU LIKE ME TO *</pattern>
<template><srai>WHAT CAN I <star/></srai></template>
</category>
<category><pattern>WHEN S *</pattern>
<template><srai>WHEN IS <star/></srai></template>
</category>
<category><pattern>WHERE ARE YOU DOING *</pattern>
<template><srai>WHAT ARE YOU DOING <star/></srai></template>
</category>
<category><pattern>WHERE I AM *</pattern>
<template><srai>WHERE AM I</srai></template>
</category>
<category><pattern>WHERE IS LONDON</pattern>
<template><srai>MAP London</srai></template>
</category>
<category><pattern>WHO AM I SPEAKING WITH</pattern>
<template><srai>WHO ARE YOU</srai></template>
</category>
<category><pattern>WHO DESIGNED YOU</pattern>
<template><srai>BOTMASTER</srai></template>
</category>
<category><pattern>WHO IS MY MOM</pattern>
<template><srai>WHO IS MY MOTHER</srai></template>
</category>
<category><pattern>WHO WHO WHO</pattern>
<template><srai>WHO</srai></template>
</category>
<category><pattern>WHOA *</pattern>
<template><srai>INTERJECTION</srai> <sr/></template>
</category>
<category><pattern>WHY ARE YOU ALWAYS *</pattern>
<template><srai>WHY ARE YOU <star/></srai></template>
</category>
<category><pattern>WHY ARE YOU BEING SO *</pattern>
<template><srai>YOU ARE <star/></srai></template>
</category>
<category><pattern>WILL I NEED AN UMBRELLA TOMORROW</pattern>
<template><srai>WEATHER FORECAST</srai></template>
</category>
<category><pattern>WOAH</pattern>
<template><srai>INTERJECTION</srai></template>
</category>
<category><pattern>WOULD YOU MARRY ME</pattern>
<template><srai>MARRY ME</srai></template>
</category>
<category><pattern>WUT</pattern>
<template><srai>WHAT</srai></template>
</category>
<category><pattern>WWW FACEBOOK COM</pattern>
<template><srai>OPEN FACEBOOK</srai></template>
</category>
<category><pattern>YAAY</pattern>
<template><srai>YAY</srai></template>
</category>
<category><pattern>YES IT IS WHAT *</pattern>
<template><srai>YES</srai> <srai>WHAT <star/></srai></template>