-
Notifications
You must be signed in to change notification settings - Fork 1
/
lib_directions_69.aiml
5675 lines (5193 loc) · 383 KB
/
lib_directions_69.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.1">
<!--This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.-->
<!-- -->
<!-- This file has the following topics: -->
<!-- Staplers, 3 hole punch, paper cutters, bathrooms, drinking fountains, parking, study spaces-->
<!-- -->
<!-- General -->
<category><pattern>WHERE IS SPECIAL COLLECTIONS</pattern>
<template>Special Collections is located on the 5th floor of Langson Library. The hours are M-F from 11 AM - 5 PM.</template></category>
<category><pattern>HOW CAN I ACCESS SPECIAL COLLECTIONS</pattern>
<template><srai>WHERE IS SPECIAL COLLECTIONS</srai></template></category>
<category><pattern>WHERE IS THE TEC</pattern>
<template>The TEC is the Langson Library Classroom 228, it is located on the main (lobby) floor behind the exhibits cases.</template></category>
<category><pattern>WHAT IS THE GRUNIGEN LIBRARY</pattern>
<template>The Grunigen Library is our medical library located in Orange.</template></category>
<category><pattern>WHERE IS UCI</pattern>
<template>UCI is in Irvine, California.</template></category>
<category><pattern>LANGSON LIBRARY</pattern>
<template>Can you be more specific about what you would like to know about Langson Library?</template></category>
<category><pattern>WHERE IS THE NEW BOOKS LOBBY</pattern>
<template>The New Books Lobby is on the main floor of the Langson Library, behind and to the right of the Reference (Ask Us) desk.</template></category>
<category><pattern>IS THERE A LAW LIBRARY</pattern>
<template>Yes there is! Take a look at their <a href=" http://www.law.uci.edu/library/" target="_blank">website</a>.</template></category>
<category><pattern>SCIENCE LIBRARY ACCESSIBLE FLOORS</pattern>
<template>The Ayala Science Library has five accessible floors, all floors (except for the basement and 3rd floor) are accessible by the public.</template></category>
<category><pattern>* ACCESSIBLE FLOORS DOES THE SCIENCE LIBRARY *</pattern>
<template><srai>SCIENCE LIBRARY ACCESSIBLE FLOORS</srai></template></category>
<category><pattern>ACCESSIBLE FLOORS DOES THE SCIENCE LIBRARY *</pattern>
<template><srai>SCIENCE LIBRARY ACCESSIBLE FLOORS</srai></template></category>
<category><pattern>* ACCESSIBLE FLOORS DOES THE SCIENCE LIBRARY</pattern>
<template><srai>SCIENCE LIBRARY ACCESSIBLE FLOORS</srai></template></category>
<category><pattern>3RD FLOOR OF THE SCIENCE LIBRARY</pattern>
<template>The third floor of the science library holds the Acquisitions and Cataloging departments for the UC Irvine Libraries. It is a staff floor and there is no public access.</template></category>
<category><pattern>* 3RD FLOOR OF THE SCIENCE LIBRARY</pattern>
<template><srai>3RD FLOOR OF THE SCIENCE LIBRARY</srai></template></category>
<category><pattern>3RD FLOOR OF THE SCIENCE LIBRARY *</pattern>
<template><srai>3RD FLOOR OF THE SCIENCE LIBRARY</srai></template></category>
<category><pattern>* 3RD FLOOR OF THE SCIENCE LIBRARY *</pattern>
<template><srai>3RD FLOOR OF THE SCIENCE LIBRARY</srai></template></category>
<category><pattern>THIRD FLOOR OF THE SCIENCE LIBRARY</pattern>
<template><srai>3RD FLOOR OF THE SCIENCE LIBRARY</srai></template></category>
<category><pattern>* THIRD FLOOR OF THE SCIENCE LIBRARY</pattern>
<template><srai>3RD FLOOR OF THE SCIENCE LIBRARY</srai></template></category>
<category><pattern>THIRD FLOOR OF THE SCIENCE LIBRARY *</pattern>
<template><srai>3RD FLOOR OF THE SCIENCE LIBRARY</srai></template></category>
<category><pattern>* THIRD FLOOR OF THE SCIENCE LIBRARY *</pattern>
<template><srai>3RD FLOOR OF THE SCIENCE LIBRARY</srai></template></category>
<category><pattern>LANGSON LIBRARY BASEMENT</pattern>
<template>What is it about our basement you would like to know?</template></category>
<category><pattern>GRUNIGEN MEDICAL LIBRARY</pattern>
<template>I don't deal well with statements, can you ask in the form of a question.</template></category>
<category><pattern>LAW LIBRARY</pattern>
<template><srai>GRUNIGEN MEDICAL LIBRARY</srai></template></category>
<category><pattern>AUTHOR</pattern>
<template><srai>GRUNIGEN MEDICAL LIBRARY</srai></template></category>
<category><pattern>HONORS</pattern>
<template><srai>GRUNIGEN MEDICAL LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN LANGSON LIBRARY</pattern>
<template>Langson contains the collections and services that support research and teaching in the Arts, Humanities, Education, Social Sciences, Social Ecology, and Business and Management.</template></category>
<category><pattern>* WHAT IS IN LANGSON LIBRARY</pattern>
<template><srai>WHAT IS IN LANGSON LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN LANGSON LIBRARY *</pattern>
<template><srai>WHAT IS IN LANGSON LIBRARY</srai></template></category>
<category><pattern>* WHAT IS IN LANGSON LIBRARY *</pattern>
<template><srai>WHAT IS IN LANGSON LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN THE LANGSON LIBRARY</pattern>
<template><srai>WHAT IS IN LANGSON LIBRARY</srai></template></category>
<category><pattern>* WHAT IS IN THE LANGSON LIBRARY</pattern>
<template><srai>WHAT IS IN LANGSON LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN THE LANGSON LIBRARY *</pattern>
<template><srai>WHAT IS IN LANGSON LIBRARY</srai></template></category>
<category><pattern>* WHAT IS IN THE LANGSON LIBRARY *</pattern>
<template><srai>WHAT IS IN LANGSON LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN AYALA LIBRARY</pattern>
<template>UCI’s Ayala Science Library, one of the largest consolidated science, technology, and medicine libraries in the nation, contains the collections and services that support research and teaching in the schools of Biological Sciences, Engineering, Information and Computer Science, Physical Sciences, portions of social Ecology, and Medicine.</template></category>
<category><pattern>* WHAT IS IN AYALA LIBRARY</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN AYALA LIBRARY *</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>* WHAT IS IN AYALA LIBRARY *</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN THE AYALA LIBRARY</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>* WHAT IS IN THE AYALA LIBRARY</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN THE AYALA LIBRARY *</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>* WHAT IS IN THE AYALA LIBRARY *</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN AYALA</pattern>
<template><srai>WHAT IS IN AYALA LIBRARY</srai></template></category>
<category><pattern>WHERE ARE THE BOOK STACKS</pattern>
<template>The general print collections are shelved on the basement level, the 1st floor, and the 3rd and 4th floors of the Langson Library, the 4th through 6th floors of the Ayala Science Library, and the main level of the Grunigen Medical Library.</template></category>
<category><pattern>WHERE * BOOK STACKS</pattern>
<template><srai>WHERE ARE THE BOOK STACKS</srai></template></category>
<category><pattern>WHERE * STACKS</pattern>
<template><srai>WHERE ARE THE BOOK STACKS</srai></template></category>
<category><pattern>BOOK STACKS * LOCATED</pattern>
<template><srai>WHERE ARE THE BOOK STACKS</srai></template></category>
<category><pattern>BOOK STACKS * LOCATION</pattern>
<template><srai>WHERE ARE THE BOOK STACKS</srai></template></category>
<category><pattern>LOCATION * BOOK STACKS</pattern>
<template><srai>WHERE ARE THE BOOK STACKS</srai></template></category>
<category><pattern>LOCATE * BOOK STACKS</pattern>
<template><srai>WHERE ARE THE BOOK STACKS</srai></template></category>
<category><pattern>WHERE IS THE MUSIC LIBRARY</pattern>
<template>The UCI Libraries does not have a separate music library, instead music resources are at the Langson Library.</template></category>
<!-- the go-to statement for parking -->
<category><pattern>WHERE DO I PARK</pattern>
<template>For the Langson Library and Gateway Study Center, park at Student Center Parking Lot, Social Sciences Parking Lot, or Lot 1. For the Science Library, park at Mesa Parking Structure, Lot 7, Lot 8, or Lot 13R. For the Grunigen Medical Library, park at UCI patient/visitor parking structure on Dawn Way. For more information on parking, visit <a href=" http://www.lib.uci.edu/locations-directions-parking" target="_blank">http://www.lib.uci.edu/locations-directions-parking</a>.</template></category>
<category>
<pattern>PARKING</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE SHOULD I PARK</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>PARKING</pattern>
<template><srai>WHERE SHOULD I PARK</srai></template>
</category>
<!-- reduce parking lot to parking -->
<category>
<pattern>PARKING LOT</pattern>
<template><srai>PARKING</srai></template>
</category>
<category>
<pattern>* PARKING LOT</pattern>
<template><srai><star index="1" /> PARKING</srai></template>
</category>
<category>
<pattern>PARKING LOT *</pattern>
<template><srai>PARKING <star index="1" /></srai></template>
</category>
<category>
<pattern>* PARKING LOT *</pattern>
<template><srai><star index="1" /> PARKING <star index="2" /></srai></template>
</category>
<category><pattern>IS THERE FREE PARKING NEARBY</pattern>
<template>There is no free parking available near campus. Maybe someone can give you a ride or perhaps consider taking the <a href="http://www.octa.net/" target="_blank">bus</a>.</template></category>
<category><pattern>* I CANT AFFORD TO PARK</pattern>
<template><srai>IS THERE FREE PARKING NEARBY</srai></template></category>
<category><pattern>IS THERE FREE PARKING NEAR THE LIBRARY</pattern>
<template><srai>IS THERE FREE PARKING NEARBY</srai></template></category>
<!-- general "where is..." statements -->
<category>
<pattern>WHERE IS THE LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>DIRECTIONS TO LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>WHERE IS THE UCI LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>WHERE IS THE LIBRARY LOCATED</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>WHERE IS LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>WHERE * THE LIBRARIES LOCATED</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>WHERE IS LANGSON</pattern>
<template>Langson Library is located along Ring Road, near the Administration Building. <a href="http://goo.gl/maps/ysuUz" target="_blank">Click here</a> to view a map.</template>
</category>
<category><pattern>HOW DO I GET TO LANGSON</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category><pattern>HOW DO I GET TO THE LANGSON LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category><pattern>WHERE IS LANGSON LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category><pattern>DIRECTIONS TO LANGSON LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category><pattern>WHERE IS THE LANGSON LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category><pattern>WHERE IS LANGSON LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category><pattern>WHERE ON CAMPUS IS LANGSON LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category><pattern>* SOCIAL SCIENCES LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template></category>
<category>
<pattern>WHERE IS AYALA</pattern>
<template>Science Library is located along Ring Road, near the BC Caverns and the bridge to the medical area. <a href="http://goo.gl/maps/BTWvi" target="_blank">Click here</a> to view a map.</template>
</category>
<category>
<pattern>WHERE IS AYALA SCIENCE LIBRARY</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS AYALA LOCATED</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS SCIENCE LIBRARY LOCATED</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS THE SCIENCE LIBRARY LOCATED</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS THE AYALA SCIENCE LIBRARY</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS THE AYALA LIBRARY</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS THE AYALALIBRARY</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>LOCATION OF AYALA SCIENCE LIBRARY</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS SCIENCE</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS THE SCIENCE LIBRARY</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>WHERE IS GATEWAY</pattern>
<template>The Gateway Study Center is located across the Langson Library, located near the Administration Building and flagpoles. <a href="http://goo.gl/maps/fVKns" target="_blank">Click here</a> to view a map.</template>
</category>
<category>
<pattern>GATEWAY STUDY CENTER</pattern>
<template><srai>WHERE IS GATEWAY</srai></template>
</category>
<category>
<pattern>GATEWAY STUDY CENTER FIRST FLOOR</pattern>
<template><srai>WHERE IS GATEWAY</srai></template>
</category>
<category>
<pattern>LOCATION OF GATEWAY</pattern>
<template><srai>WHERE IS GATEWAY</srai></template>
</category>
<category>
<pattern>WHERE IS THE GATEWAY</pattern>
<template><srai>WHERE IS GATEWAY</srai></template>
</category>
<category>
<pattern>WHERE IS GRUNIGEN</pattern>
<template>The Grunigen Medical Library is located in the UC Irvine Medical Center in the city of Orange. <a href="http://goo.gl/maps/Tp4RZ" target="_blank">Click here</a> to view a map.</template>
</category>
<category>
<pattern>WHERE IS GML</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>WHERE IS THE GRUNIGEN LIBRARY</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>LOCATION OF GRUNIGEN</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>WHERE IS GML LOCATED</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>WHERE IS GRUNIGEN MEDICAL LIBRARY</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>WHERE IS THE MEDICAL LIBRARY</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>WHERE IS THE MULTIMEDIA CENTER</pattern>
<template>The Multimedia Resources Center (MRC) is located on the First Floor of the Ayala Science Library across from the Ayala Science Library Lobby entrance.</template>
</category>
<category>
<pattern>WHERE IS THE MRC</pattern>
<template><srai>WHERE IS THE MULTIMEDIA CENTER</srai></template>
</category>
<category>
<pattern>LOCATION OF MRC</pattern>
<template><srai>WHERE IS THE MULTIMEDIA CENTER</srai></template>
</category>
<category>
<pattern>WHERE IS THE LAW LIBRARY</pattern>
<template>The Law Library is located on East Peltason Drive next to the School of Education.</template>
</category>
<category>
<pattern>LOCATION OF LAW LIBRARY</pattern>
<template>The Law Library is located on East Peltason Drive next to the School of Education.</template>
</category>
<!-- how do I get to statements -->
<category>
<pattern>HOW DO I GET TO THE LIBRARY</pattern>
<template>The UC Irvine Libraries has four different locations: the Langson Library, the Science Library, the Gateway Study Center, and the Grunigen Medical Library. Which location would you like to get to?</template>
</category>
<category>
<pattern>HOW DO I GET TO THE LIBRARIES</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>DIRECTIONS</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>LOCATION OF LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>LANGSON LIBRARY</pattern>
<that>The UC Irvine Libraries has four different locations the Langson Library the Science Library the Gateway Study Center and the Grunigen Medical Library Which location would you like to get to_</that>
<template><srai>WHERE IS LANGSON</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO LANGSON LIBRARY</pattern>
<template><srai>WHERE IS LANGSON</srai></template>
</category>
<category>
<pattern>SCIENCE LIBRARY</pattern>
<that>The UC Irvine Libraries has four different locations the Langson Library the Science Library the Gateway Study Center and the Grunigen Medical Library Which location would you like to get to_</that>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO * SCIENCE LIBRARY</pattern>
<template><srai>WHERE IS AYALA</srai></template>
</category>
<category>
<pattern>GATEWAY STUDY CENTER</pattern>
<that>The UC Irvine Libraries has four different locations the Langson Library the Science Library the Gateway Study Center and the Grunigen Medical Library Which location would you like to get to_</that>
<template><srai>WHERE IS GATEWAY</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO GATEWAY *</pattern>
<template><srai>WHERE IS GATEWAY</srai></template>
</category>
<category>
<pattern>GRUNIGEN MEDICAL LIBRARY</pattern>
<that>The UC Irvine Libraries has four different locations the Langson Library the Science Library the Gateway Study Center and the Grunigen Medical Library Which location would you like to get to_</that>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO GRUNIGEN MEDICAL LIBRARY</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>GRUNIGEN *</pattern>
<that>The UC Irvine Libraries has four different locations the Langson Library the Science Library the Gateway Study Center and the Grunigen Medical Library Which location would you like to get to_</that>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO GRUNIGEN</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>GML</pattern>
<that>The UC Irvine Libraries has four different locations the Langson Library the Science Library the Gateway Study Center and the Grunigen Medical Library Which location would you like to get to_</that>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO GML</pattern>
<template><srai>WHERE IS GRUNIGEN</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>WHERE ARE YOU LOCATED</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>HOW DO I GET TO *</pattern>
<template><srai>WHERE IS <star /></srai></template>
</category>
<!-- catch-all statement -->
<category>
<pattern>HOW DO I GET TO * FROM *</pattern>
<template><srai>WHERE IS <star index="1" /></srai></template>
</category>
<category>
<pattern>WHERE CAN I FIND *</pattern>
<template><srai>WHERE IS <star /></srai></template>
</category>
<category>
<pattern>I NEED DIRECTIONS TO THE LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>I NEED DIRECTIONS TO LIBRARY</pattern>
<template><srai>HOW DO I GET TO THE LIBRARY</srai></template>
</category>
<category>
<pattern>I NEED DIRECTIONS TO *</pattern>
<template><srai>WHERE IS <star /></srai></template>
</category>
<!-- Addresses -->
<category><pattern>MAILING ADDRESSES</pattern>
<template>Our mailing addresses can be found <a href=" http://www.lib.uci.edu/mailing-addresses" target="_blank">here</a>.</template></category>
<category><pattern>* MAILING ADDRESSES</pattern>
<template><srai>MAILING ADDRESSES</srai></template></category>
<category><pattern>MAILING ADDRESSES *</pattern>
<template><srai>MAILING ADDRESSES</srai></template></category>
<category><pattern>* MAILING ADDRESSES *</pattern>
<template><srai>MAILING ADDRESSES</srai></template></category>
<category><pattern>* MAIL *</pattern>
<template><srai>MAILING ADDRESSES</srai></template></category>
<category><pattern>ADDRESS</pattern>
<template>Would you like the mailing address or the carrier address (the carrier address is used for express delivery companies such as UPS, FedEx, etc.)?</template></category>
<category><pattern>* ADDRESS</pattern>
<template><srai>ADDRESS</srai></template></category>
<category><pattern>ADDRESS *</pattern>
<template><srai>ADDRESS</srai></template></category>
<category><pattern>* ADDRESS *</pattern>
<template><srai>ADDRESS</srai></template></category>
<category><pattern>WHAT IS THE ADDRESS</pattern>
<template><srai>ADDRESS</srai></template></category>
<category><pattern>CARRIER</pattern>
<that>Would you like the mailing address or the carrier address_</that>
<template>The carrier address is: Ayala Science Library / Receiving Dock, Building 520 / ATTN: [Name, Department] / Irvine, CA 92697.</template></category>
<category><pattern>CARRIER ADDRESS</pattern>
<that>Would you like the mailing address or the carrier address_</that>
<template>The carrier address is: Ayala Science Library / Receiving Dock, Building 520 / ATTN: [Name, Department] / Irvine, CA 92697.</template></category>
<category><pattern>MAILING</pattern>
<that>Would you like the mailing address or the carrier address_</that>
<template>Which library do you need the mailing address for: Langson, Ayala, or Grunigen?</template></category>
<category><pattern>MAILING ADDRESS</pattern>
<that>Would you like the mailing address or the carrier address_</that>
<template>Which library do you need the mailing address for: Langson, Ayala, or Grunigen?</template></category>
<category><pattern>LANGSON</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Langson Library is: University of California / The UCI Libraries - Zot 8100 / PO BOX 19557 / Irvine, CA 92623-9557.</template></category>
<category><pattern>LANGSON LIBRARY</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Langson Library is: University of California / The UCI Libraries - Zot 8100 / PO BOX 19557 / Irvine, CA 92623-9557.</template></category>
<category><pattern>AYALA</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Ayala Science Library is: University of California / The UCI Libraries - Zot 8200 / PO BOX 19557 / Irvine, CA 92623-9557.</template></category>
<category><pattern>AYALA LIBRARY</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Ayala Science Library is: University of California / The UCI Libraries - Zot 8200 / PO BOX 19557 / Irvine, CA 92623-9557.</template></category>
<category><pattern>AYALA SCIENCE LIBRARY</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Ayala Science Library is: University of California / The UCI Libraries - Zot 8200 / PO BOX 19557 / Irvine, CA 92623-9557.</template></category>
<category><pattern>GRUNIGEN</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Grunigen Medical Library is: University of California / The UCI Libraries - Zot 8190 / Bldg. 22A Rte. 82 / 101 City Drive South / Orange, CA 92868.</template></category>
<category><pattern>GRUNIGEN LIBRARY</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Grunigen Medical Library is: University of California / The UCI Libraries - Zot 8190 / Bldg. 22A Rte. 82 / 101 City Drive South / Orange, CA 92868.</template></category>
<category><pattern>GRUNIGEN MEDICAL LIBRARY</pattern>
<that>Which library do you need the mailing address for Langson Ayala or Grunigen_</that>
<template>The mailing address for the Grunigen Medical Library is: University of California / The UCI Libraries - Zot 8190 / Bldg. 22A Rte. 82 / 101 City Drive South / Orange, CA 92868.</template></category>
<!-- parking statements -->
<category>
<pattern>WHAT IS THE CLOSEST PARKING TO *</pattern>
<template><srai>WHICH PARKING IS CLOSEST TO <star /></srai></template>
</category>
<category>
<pattern>WHERE DO I PARK *</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE SHOULD I PARK</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE SHOULD I PARK*</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE CAN I PARK</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE CAN I FIND PARKING</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE CAN I PARK *</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE IS PARKING *</pattern>
<template><srai>WHERE DO I PARK</srai></template>
</category>
<category>
<pattern>WHERE IS PARKING NEAR *</pattern>
<template><srai>WHICH PARKING IS CLOSEST TO <star /></srai></template>
</category>
<category>
<pattern>WHICH PARKING IS CLOSEST TO LANGSON</pattern>
<template>The closest parking lot to the Langson Library is Student Center Parking Lot, Social Sciences Parking Lot, or Lot 1.</template>
</category>
<category><pattern>WHAT IS THE CLOSEST PARKING LOT TO THE LANGSON LIBRARY</pattern>
<template><srai>WHICH PARKING IS CLOSEST TO LANGSON</srai></template></category>
<category>
<pattern>WHICH PARKING IS CLOSEST TO GATEWAY</pattern>
<template>The closest parking lot to the Gateway Study Center is Student Center Parking Lot, Social Sciences Parking Lot, or Lot 1.</template>
</category>
<category>
<pattern>WHICH PARKING IS CLOSEST TO SCIENCE</pattern>
<template>The closest parking lot to the Ayala Science Library is Mesa Parking Structure, Lot 7, Lot 8, or Lot 13R.</template>
</category>
<category><pattern>WHICH PARKING LOT IS BY THE AYALA SCIENCE LIBRARY</pattern>
<template><srai>WHICH PARKING IS CLOSEST TO SCIENCE</srai></template></category>
<category>
<pattern>WHICH PARKING IS CLOSEST TO GRUNIGEN</pattern>
<template>The closest parking lot to the Grunigen Medical Center is UCI patient/visitor parking structure on Dawn Way.</template>
</category>
<category>
<pattern>WHICH IS THE CLOSEST PARKING TO *</pattern>
<template><srai>WHICH PARKING LOT IS CLOSEST TO <star /></srai></template>
</category>
<category>
<pattern>WHICH IS THE NEAREST PARKING TO *</pattern>
<template><srai>WHICH PARKING LOT IS CLOSEST TO <star /></srai></template>
</category>
<category>
<pattern>WHICH PARKING IS NEAR *</pattern>
<template><srai>WHICH PARKING LOT IS CLOSEST TO <star /></srai></template>
</category>
<category>
<pattern>HOW MUCH IS PARKING</pattern>
<template>Parking rates can be found at <a href="http://www.parking.uci.edu/permits/rates.cfm">http://www.parking.uci.edu/permits/rates.cfm</a></template>
</category>
<category>
<pattern>FREE PARKING</pattern>
<template><srai>HOW MUCH IS PARKING<star /></srai></template>
</category>
<category>
<pattern>FREE PARKING *</pattern>
<template><srai>HOW MUCH IS PARKING<star /></srai></template>
</category>
<category>
<pattern>* FREE PARKING</pattern>
<template><srai>HOW MUCH IS PARKING<star /></srai></template>
</category>
<category>
<pattern>* FREE PARKING *</pattern>
<template><srai>HOW MUCH IS PARKING<star /></srai></template>
</category>
<!-- catch-all statement -->
<category>
<pattern>HOW MUCH IS PARKING *</pattern>
<template>Parking rates can be found at <a href="http://www.parking.uci.edu/permits/rates.cfm">http://www.parking.uci.edu/permits/rates.cfm</a></template>
</category>
<!-- response in case chatbot asks to specify which library -->
<category>
<pattern>*</pattern>
<that>THE UC IRVINE LIBRARIES HAS FOUR DIFFERENT LOCATIONS THE LANGSON LIBRARY THE SCIENCE LIBRARY THE GATEWAY STUDY CENTER AND THE GRUNIGEN MEDICAL LIBRARY WHICH LOCATION WOULD YOU LIKE TO GET TO</that>
<template><srai>WHERE IS<star /></srai></template>
</category>
<!-- where is the library from LA -->
<category>
<pattern>HOW DO I GET TO THE LIBRARY FROM NORTH 405</pattern>
<template>If you are coming going south on the 405, exit Jamboree. Make a right on Jamboree and then a left on Campus. UC Irvine will be on your right. Please visit <a href=" http://www.lib.uci.edu/locations-directions-parking" target="_blank">http://www.lib.uci.edu/locations-directions-parking</a> for more directions.</template>
</category>
<!-- where is the library from San Diego -->
<category>
<pattern>HOW DO I GET TO THE LIBRARY FROM SOUTH 405</pattern>
<template>If you are coming going north on the 405, exit Culver. Make a left on Culver and then a right on Campus. UC Irvine will be on your left. Please visit <a href=" http://www.lib.uci.edu/locations-directions-parking" target="_blank">http://www.lib.uci.edu/locations-directions-parking</a> for more directions.</template>
</category>
<!-- where are the elevators -->
<category>
<pattern>WHERE ARE THE ELEVATORS</pattern>
<template>I can tell you where the elevators are. Which library are you in?</template>
</category>
<category>
<pattern>WHERE IS THE ELEVATOR</pattern>
<template><srai>WHERE ARE THE ELEVATORS</srai></template>
</category>
<category>
<pattern>LANGSON</pattern>
<that>I CAN TELL YOU WHERE THE ELEVATORS ARE_</that>
<template><srai>WHERE ARE THE LANGSON ELEVATORS</srai></template>
</category>
<category>
<pattern>WHERE ARE THE LANGSON ELEVATORS</pattern>
<template>Langson Library has 2 sets of elevators. They are found in the center of the library.</template>
</category>
<category>
<pattern>AYALA</pattern>
<that>I CAN TELL YOU WHERE THE ELEVATORS ARE_</that>
<template><srai>WHERE ARE THE SCIENCE ELEVATORS</srai></template>
</category>
<category>
<pattern>SCIENCE</pattern>
<that>I CAN TELL YOU WHERE THE ELEVATORS ARE_</that>
<template><srai>WHERE ARE THE SCIENCE ELEVATORS</srai></template>
</category>
<category>
<pattern>WHERE ARE THE SCIENCE ELEVATORS</pattern>
<template>Science Library elevator is found between the drum and the bar areas.</template>
</category>
<category>
<pattern>GATEWAY</pattern>
<that>I CAN TELL YOU WHERE THE ELEVATORS ARE_</that>
<template><srai>WHERE ARE THE GATEWAY ELEVATORS</srai></template>
</category>
<category>
<pattern>WHERE ARE THE GATEWAY ELEVATORS</pattern>
<template>Gateway Student Center does not have elevators. Stairs are located both to the far left and far right from the main entrance.</template>
</category>
<category>
<pattern>GRUNIGEN</pattern>
<that>I CAN TELL YOU WHERE THE ELEVATORS ARE_</that>
<template><srai>WHERE ARE THE GRUNIGEN ELEVATORS</srai></template>
</category>
<category>
<pattern>GML</pattern>
<that>I CAN TELL YOU WHERE THE ELEVATORS ARE_</that>
<template><srai>WHERE ARE THE GRUNIGEN ELEVATORS</srai></template>
</category>
<category>
<pattern>WHERE ARE THE GRUNIGEN ELEVATORS</pattern>
<template>The Grunigen Medical Library is on the main floor of its building. To get to the elevators head out of the library and go left past the library windows. The elevators will be on the left.</template>
</category>
<category>
<pattern>WHERE ARE THE GML ELEVATORS</pattern>
<template>The Grunigen Medical Library is on the main floor of its building. To get to the elevators head out of the library and go left past the library windows. The elevators will be on the left.</template>
</category>
<!-- Study Space -->
<category><pattern>HOW MANY STUDY ROOMS DOES AYALA HAVE</pattern>
<template>Ayala has 29 study rooms.</template></category>
<category><pattern>HOW MANY STUDY ROOMS DOES LANGSON HAVE</pattern>
<template>Langson has 8 study rooms.</template></category>
<category><pattern>HOW MANY STUDY ROOMS DOES GATEWAY HAVE</pattern>
<template>Gateway has 13 study rooms.</template></category>
<category><pattern>STUDY SPACE</pattern>
<template>Information about study spaces can be found at <a href=" http://www.lib.uci.edu/study-space-locator" target="_blank">Study Space Locator</a> page.</template></category>
<category><pattern>* STUDY SPACE</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>STUDY SPACE *</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>* STUDY SPACE *</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>WHAT STUDY SPACES ARE AVAILABLE</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>WHERE CAN I STUDY</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>I NEED A PLACE TO STUDY</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>IS THERE PLACES TO STUDY</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>IS THERE PLACES TO STUDY *</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>STUDY ROOM</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category><pattern>WHERE CAN I FIND A STUDY ROOM</pattern>
<template><srai>STUDY SPACE</srai></template></category>
<category>
<pattern>WHERE CAN I FIND COMPUTERS</pattern>
<template>Our <a href=" http://www.lib.uci.edu/computer-locator" target="_blank">Find an Available Computer</a> page list the number of available computers by library and floor.</template>
</category>
<category>
<pattern>WHERE CAN I FIND AN OPEN COMPUTER</pattern>
<template><srai>WHERE CAN I FIND COMPUTERS</srai></template>
</category>
<category>
<pattern>WHERE ARE THE COMPUTERS</pattern>
<template><srai>WHERE CAN I FIND COMPUTERS</srai></template>
</category>
<category><pattern>WHERE ARE THE COMPUTER LABS IN LANGSON LIBRARY</pattern>
<template><srai>WHERE CAN I FIND COMPUTERS</srai></template></category>
<category><pattern>DO YOU HAVE COMPUTER LABS</pattern>
<template><srai>WHERE CAN I FIND COMPUTERS</srai></template></category>
<!-- MAPS -->
<category><pattern>WHERE IS A MAP OF THE LIBRARY</pattern>
<template>You can find maps to help you locate our library facilities as well as individual library floor plans via <a href=" http://www.lib.uci.edu/locations-directions-parking" target="_blank">Locations, Directions and Parking</a> on our "Visit the Libraries" page.</template></category>
<category><pattern>MAP OF THE LIBRARY</pattern>
<template><srai>WHERE IS A MAP OF THE LIBRARY</srai></template></category>
<category><pattern>* MAP OF THE LIBRARY</pattern>
<template><srai>WHERE IS A MAP OF THE LIBRARY</srai></template></category>
<category><pattern>MAP OF THE LIBRARY *</pattern>
<template><srai>WHERE IS A MAP OF THE LIBRARY</srai></template></category>
<category><pattern>* MAP OF THE LIBRARY *</pattern>
<template><srai>WHERE IS A MAP OF THE LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN THE BASEMENT OF LANGSON</pattern>
<template><srai>WHERE IS A MAP OF THE LIBRARY</srai></template></category>
<category><pattern>WHAT IS IN THE FIRST LEVEL OF LANGSON</pattern>
<template><srai>WHERE IS A MAP OF THE LIBRARY</srai></template></category>
<category><pattern>WHAT BOOKS ARE IN THE BASEMENT OF LANGSON</pattern>
<template><srai>WHERE IS A MAP OF THE LIBRARY</srai></template></category>
<category><pattern>FLOOR CALL NUMBERS</pattern>
<template>Take a look at our <a href=" http://www.lib.uci.edu/call-numbers" target="_blank">Guide to Call Number and Subject Locations</a>.</template></category>
<category><pattern>_ FLOOR CALL NUMBERS</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>FLOOR CALL NUMBERS *</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>_ FLOOR CALL NUMBERS *</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHICH CALL NUMBERS WHICH FLOOR</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>CALL NUMBERS</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>* CALL NUMBERS</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>CALL NUMBERS *</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>* CALL NUMBERS *</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHERE CAN I FIND THE CALL NUMBERS FOR PG</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHAT FLOOR ARE THE F CALL NUMBERS ON</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHAT FLOOR ARE THE F*S ON</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>HOW CAN I FIND A BOOK WITH THE CALL NUMBER F</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHAT FLOOR IS THE CALL NUMBER ON</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHERE DO I FIND THE CALL NUMBER *</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>I HAVE A CALL NUMBER</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHERE WOULD I FIND THE HV*S</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>CALL NUMBER</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHAT IS THE CALL NUMBER *</pattern>
<template><srai>FLOOR CALL NUMBERS</srai></template></category>
<category><pattern>WHAT ARE THE FLOOR PLANS</pattern>
<template>Take a look at our <a href=" http://www.lib.uci.edu/floor-plans" target="_blank">floor plans</a>!</template></category>
<category><pattern>MAP OF LANGSON LIBRARY</pattern>
<template>Take a look at our <a href=" http://www.lib.uci.edu/floor-plans" target="_blank">floor plans</a>!</template></category>
<category><pattern>* MAP OF LANGSON</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF LANGSON *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF LANGSON *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF SCIENCE</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF SCIENCE</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF SCIENCE *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF SCIENCE *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF AYALa</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF AYALA</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF AYALA *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF AYALA *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF GRUNIGEN</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF GRUNIGEN</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF GRUNIGEN *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF GRUNIGEN *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF GRUNIGEN MEDICAL LIBRARY</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF GRUNIGEN MEDICAL LIBRARY</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF GRUNIGEN MEDICAL LIBRARY *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* MAP OF GRUNIGEN MEDICAL LIBRARY *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>LANGSON LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* LANGSON LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>LANGSON LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* LANGSON LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* AYALA LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* AYALA LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>SCIENCE LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* SCIENCE LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>SCIENCE LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* SCIENCE LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>GRUNIGEN LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* GRUNIGEN LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>GRUNIGEN LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* GRUNIGEN LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>GRUNIGEN MEDICAL LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* GRUNIGEN MEDICAL LIBRARY MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>GRUNIGEN MEDICAL LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* GRUNIGEN MEDICAL LIBRARY MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>LANGSON MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* LANGSON MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>LANGSON MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* LANGSON MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* AYALA MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* AYALA MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>SCIENCE MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* SCIENCE MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>SCIENCE MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* SCIENCE MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>GRUNIGEN MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* GRUNIGEN MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>GRUNIGEN MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* GRUNIGEN MAP *</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>* FLOOR MAP</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>MAP OF * FLOOR AYALA</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA SCIENCE LIBRARY BAR</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA * BAR</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA SCIENCE LIBRARY DRUM</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>AYALA * DRUM</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>WHERE IS AYALA SCIENCE LIBRARY BAR</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<category><pattern>WHERE IS AYALA SCIENCE LIBRARY DRUM</pattern>
<template><srai>MAP OF LANGSON LIBRARY</srai></template></category>
<!-- where are the stairs -->
<category>
<pattern>WHERE ARE THE STAIRS</pattern>
<template>I can tell you where the stairs are. Which library are you in?</template>
</category>
<category>
<pattern>WHERE IS THE STAIRS</pattern>
<template><srai>WHERE ARE THE STAIRS</srai></template>
</category>
<category>
<pattern>*</pattern>
<that>I CAN TELL YOU WHERE THE STAIRS ARE WHICH LIBRARY ARE YOU IN</that>
<template><srai>WHERE ARE THE <star /> STAIRS</srai></template>
</category>
<category>
<pattern>WHERE ARE THE LANGSON STAIRS</pattern>
<template>Langson Library stairs can be found both on the left and right of the main entrance.</template>
</category>
<category>
<pattern>LANGSON</pattern>
<that>I can tell you where the stairs are_</that>
<template>Langson Library stairs can be found both on the left and right of the main entrance.</template>
</category>
<category>
<pattern>LANGSON LIBRARY</pattern>
<that>I can tell you where the stairs are_</that>
<template>Langson Library stairs can be found both on the left and right of the main entrance.</template>
</category>
<category>
<pattern>WHERE ARE THE SCIENCE STAIRS</pattern>
<template>Science Library stairs is found between the drum and the bar areas.</template>
</category>
<category>
<pattern>WHERE ARE THE AYALA STAIRS</pattern>
<template>Science Library stairs is found between the drum and the bar areas.</template>
</category>
<category>
<pattern>AYALA</pattern>
<that>I can tell you where the stairs are_</that>
<template>Science Library stairs is found between the drum and the bar areas.</template>
</category>
<category>
<pattern>ASL</pattern>
<that>I can tell you where the stairs are_</that>
<template>Science Library stairs is found between the drum and the bar areas.</template>
</category>
<category>
<pattern>AYALA SCIENCE LIBRARY</pattern>
<that>I can tell you where the stairs are_</that>
<template>Science Library stairs is found between the drum and the bar areas.</template>
</category>
<category>
<pattern>SCIENCE</pattern>
<that>I can tell you where the stairs are_</that>
<template>Science Library stairs is found between the drum and the bar areas.</template>
</category>
<category>
<pattern>WHERE ARE THE GATEWAY STAIRS</pattern>
<template>Gateway Student Center stairs are located both to the far left and far right from the main entrance.</template>
</category>
<category>
<pattern>GATEWAY</pattern>
<that>I can tell you where the stairs are_</that>
<template>Gateway Student Center stairs are located both to the far left and far right from the main entrance.</template>
</category>
<category>
<pattern>WHERE ARE THE GRUNIGEN STAIRS</pattern>
<template>The Grunigen Medical Library only has one floor and does not have stairs.</template>
</category>
<category>
<pattern>GRUNIGEN</pattern>
<that>I can tell you where the stairs are_</that>
<template>The Grunigen Medical Library only has one floor and does not have stairs.</template>
</category>
<category>
<pattern>GRUNIGEN MEDICAL LIBRARY</pattern>