-
Notifications
You must be signed in to change notification settings - Fork 1
/
geography.aiml
2541 lines (2541 loc) · 161 KB
/
geography.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 version="1.0">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>NORWAY DENMARK *</pattern>
<template>That sounds like a wondeful trip.</template>
</category>
<category><pattern>CALIFORNIA IS *</pattern>
<template>I knew it was on the west coast, but I never knew California was <person/>.</template>
</category>
<category><pattern>CALIFORNIA</pattern>
<template>I am in <set name="location">California</set> too! <think> <set name="it"> <set name="topic">California</set> </set> </think></template>
</category>
<category><pattern>CALIFORNIA *</pattern>
<template>Which part of California do you like best?</template>
</category>
<category><pattern>WHAT ANIMAL IS SACRED IN INDIA</pattern>
<template>Cow.</template>
</category>
<category><pattern>WHAT IS HE DOING * CALIFORNIA</pattern>
<template>He is probably there for the Gold Rush.</template>
</category>
<category><pattern>WHAT IS INDIA</pattern>
<template>A region in South Asia, south of the Himalayas, including a large peninsula between the Arabian Sea and the Bay of Bengal. It contains India, Pakistan, Bangladesh, Nepal, and Bhutan. A republic in central and South India, established by Act of British Parliament in 1947, became a republic in 1950. It is a member of the Commonwealth. It is 1,269,000 square miles with a population of 783,940,000.</template>
</category>
<category><pattern>WHAT IS BELGIUM</pattern>
<template>A kingdom in W. Europe, on the North Sea, its independence was established in 1831. It is 11,792 square miles with a population of 9,868,000.</template>
</category>
<category><pattern>WHAT IS THE POPULATION OF THE USA</pattern>
<template>The United States has about 300 million people.</template>
</category>
<category><pattern>WHAT IS THE POPULATION OF USA</pattern>
<template>About 300 million people.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MINNESOTA</pattern>
<template>St. Paul.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NAURU</pattern>
<template>no official capital; government offices in Yaren District. <think> <set name="it"> <set name="topic">nauru</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BAKER ISLAND</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">baker island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ASHMORE *</pattern>
<template>none; administered from Canberra, Australia. <think> <set name="it"> <set name="topic">ashmore and cartier islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ INDONESIA</pattern>
<template>Jakarta. <think> <set name="it"> <set name="topic">indonesia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ESTONIA</pattern>
<template>Tallinn. <think> <set name="it"> <set name="topic">estonia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MONTSERRAT</pattern>
<template>Plymouth. <think> <set name="it"> <set name="topic">montserrat</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BANGLADESH</pattern>
<template>Dhaka. <think> <set name="it"> <set name="topic">bangladesh</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MIDWAY ISLANDS</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">midway islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MARTINIQUE</pattern>
<template>Fort-de-France. <think> <set name="it"> <set name="topic">martinique</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ UKRAINE</pattern>
<template>Kiev {Kyyiv}. <think> <set name="it"> <set name="topic">ukraine</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GERMANY</pattern>
<template>Berlin. <think> <set name="it"> <set name="topic">germany</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NORTH KOREA</pattern>
<template>P'yongyang. <think> <set name="it"> <set name="topic">korea, north</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NORTH CAROLINA</pattern>
<template>Raleigh.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NORTH *</pattern>
<template>Bismarck.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NORTH DAKOTA</pattern>
<template>Bismarck.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ YEMEN</pattern>
<template>Sanaa. <think> <set name="it"> <set name="topic">yemen</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SOLOMON ISLANDS</pattern>
<template>Honiara. <think> <set name="it"> <set name="topic">solomon islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NIGERIA</pattern>
<template>Abuja. <think> <set name="it"> <set name="topic">nigeria</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SPAIN</pattern>
<template>The capital of Spain is Madrid.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SINGAPORE</pattern>
<template>Singapore. <think> <set name="it"> <set name="topic">singapore</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MICHIGAN</pattern>
<template>Lansing.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ASSYRIA</pattern>
<template>Is it Babylon?</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEBRASKA</pattern>
<template>Lincoln.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JERSEY</pattern>
<template>Saint Helier. <think> <set name="it"> <set name="topic">jersey</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ DOMINICA</pattern>
<template>Roseau. <think> <set name="it"> <set name="topic">dominica</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JAPAN</pattern>
<template>Tokyo. <think> <set name="it"> <set name="topic">japan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JOHNSTON ATOLL</pattern>
<template>none. <think> <set name="it"> <set name="topic">johnston atoll</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ DELAWARE</pattern>
<template>Dover.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ EUROPA ISLAND</pattern>
<template>none; administered by France from Reunion. <think> <set name="it"> <set name="topic">europa island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ARKANSAS</pattern>
<template>Little Rock.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ENGLAND</pattern>
<template>London.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NAVASSA ISLAND</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">navassa island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MACEDONIA</pattern>
<template>Skopje. <think> <set name="it"> <set name="topic">macedonia, the former yugoslav republic of</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ARMENIA</pattern>
<template>Yerevan. <think> <set name="it"> <set name="topic">armenia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GREENLAND</pattern>
<template>Nuuk {Godthab}. <think> <set name="it"> <set name="topic">greenland</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FINLAND</pattern>
<template>The capital of Finland is Helsinki.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BRAZIL</pattern>
<template>I think the capital of Brazil is called "Brasilia".</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LUXEMBOURG</pattern>
<template>Luxembourg. <think> <set name="it"> <set name="topic">luxembourg</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ UTAH</pattern>
<template>Salt Lake City.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAUDIA ARABIA</pattern>
<template>Riyadh.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ALASKA</pattern>
<template>Juneau.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LITHUANIA</pattern>
<template>Vilnius. <think> <set name="it"> <set name="topic">lithuania</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CALIFORNIA</pattern>
<template>Sacramento.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SACRAMENTO</pattern>
<template>That is a trick question.<think> <set name="it"> <set name="topic">SACRAMENTO</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ POLAND</pattern>
<template>Warsaw. <think> <set name="it"> <set name="topic">poland</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SYRIA</pattern>
<template>Damascus, Syria.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FLORIDA</pattern>
<template>Tallahassee.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WEST VIRGINIA</pattern>
<template>Charleston.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TRINIDAD AND TOBAGO</pattern>
<template>Port-of-Spain. <think> <set name="it"> <set name="topic">trinidad and tobago</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ AUSTRAILIA</pattern>
<template>I think it is called Canberra.<think> <set name="it"> <set name="topic">AUSTRAILIA</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PARAGUAY</pattern>
<template>Asuncion. <think> <set name="it"> <set name="topic">paraguay</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ OREGON</pattern>
<template>Salem.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ VERMONT</pattern>
<template>Montpelier.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MARSHALL ISLANDS</pattern>
<template>Majuro. <think> <set name="it"> <set name="topic">marshall islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CORAL SEA ISLANDS</pattern>
<template>none; administered from Canberra, Australia. <think> <set name="it"> <set name="topic">coral sea islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NETHERLANDS ANTILLES</pattern>
<template>Willemstad. <think> <set name="it"> <set name="topic">netherlands antilles</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NETHERLANDS</pattern>
<template>Amsterdam; The Hague is the seat of government. <think> <set name="it"> <set name="topic">netherlands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BRUNEI</pattern>
<template>Bandar Seri Begawan. <think> <set name="it"> <set name="topic">brunei</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BERMUDA</pattern>
<template>Hamilton. <think> <set name="it"> <set name="topic">bermuda</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TOGO</pattern>
<template>Lome. <think> <set name="it"> <set name="topic">togo</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ANTIGUA *</pattern>
<template>Saint John's. <think> <set name="it"> <set name="topic">antigua and barbuda</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ AZERBAIJAN</pattern>
<template>Baku {Baki}. <think> <set name="it"> <set name="topic">azerbaijan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ YUGOSLAVIA</pattern>
<template>Belgrade.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BOTSWANA</pattern>
<template>Gaborone. <think> <set name="it"> <set name="topic">botswana</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ZAMBIA</pattern>
<template>Lusaka. <think> <set name="it"> <set name="topic">zambia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TUNISIA</pattern>
<template>Tunis. <think> <set name="it"> <set name="topic">tunisia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ AMERICAN SAMOA</pattern>
<template>Pago Pago. <think> <set name="it"> <set name="topic">american samoa</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ URUGUAY</pattern>
<template>Montevideo. <think> <set name="it"> <set name="topic">uruguay</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PALMYRA ATOLL</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">palmyra atoll</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MAURITANIA</pattern>
<template>Nouakchott. <think> <set name="it"> <set name="topic">mauritania</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BURMA</pattern>
<template>Rangoon {regime refers to the capital as Yangon}. <think> <set name="it"> <set name="topic">burma</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GUATEMALA</pattern>
<template>Guatemala. <think> <set name="it"> <set name="topic">guatemala</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LIBYA</pattern>
<template>Tripoli. <think> <set name="it"> <set name="topic">libya</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ECUADOR</pattern>
<template>Quito. <think> <set name="it"> <set name="topic">ecuador</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ OMAN</pattern>
<template>Muscat. <think> <set name="it"> <set name="topic">oman</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NORTHERN MARIANA *</pattern>
<template>Saipan. <think> <set name="it"> <set name="topic">northern mariana islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAUDI ARABIA</pattern>
<template>Riyadh, Saudi Arabia. <think> <set name="it"> <set name="topic">SAUDI ARABIA</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ AUSTRIA</pattern>
<template>The capital of Austria is Vienna.<think> <set name="it"> <set name="topic">AUSTRIA</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BELARUS</pattern>
<template>The capital of Belarus is Minsk.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KAZAKSTAN</pattern>
<template>Almaty. <think> <set name="it"> <set name="topic">kazakstan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BAHRAIN</pattern>
<template>Manama. <think> <set name="it"> <set name="topic">bahrain</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CAPE VERDE</pattern>
<template>Praia. <think> <set name="it"> <set name="topic">cape verde</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CHRISTMAS ISLAND</pattern>
<template>The Settlement. <think> <set name="it"> <set name="topic">christmas island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MACAU</pattern>
<template>Macau. <think> <set name="it"> <set name="topic">macau</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WAKE ISLAND</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">wake island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MAURITIUS</pattern>
<template>Port Louis. <think> <set name="it"> <set name="topic">mauritius</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ DJIBOUTI</pattern>
<template>Djibouti. <think> <set name="it"> <set name="topic">djibouti</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MONACO</pattern>
<template>Monaco. <think> <set name="it"> <set name="topic">monaco</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JUAN DE NOVA ISLAND</pattern>
<template>none; administered by France from Reunion. <think> <set name="it"> <set name="topic">juan de nova island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ EGYPT</pattern>
<template>Cairo, Egypt.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MAINE</pattern>
<template>Augusta.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ RHODE ISLAND</pattern>
<template>Providence.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEPAL</pattern>
<template>Kathmandu. <think> <set name="it"> <set name="topic">nepal</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ EQUATORIAL GUINEA</pattern>
<template>Malabo. <think> <set name="it"> <set name="topic">equatorial guinea</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CYPRUS</pattern>
<template>Nicosia. <think> <set name="it"> <set name="topic">cyprus</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ VIRGIN ISLANDS</pattern>
<template>Charlotte Amalie. <think> <set name="it"> <set name="topic">virgin islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NIGER</pattern>
<template>Niamey. <think> <set name="it"> <set name="topic">niger</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ZAIRE</pattern>
<template>Kinshasa. <think> <set name="it"> <set name="topic">zaire</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ARIZONA</pattern>
<template>Phoenix.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ALBANIA</pattern>
<template>The capital of Albania is Tirana. <think> <set name="it"> <set name="topic">ALBANIA</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ IRAQ</pattern>
<template>Baghdad. <think> <set name="it"> <set name="topic">iraq</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SOMALIA</pattern>
<template>Mogadishu. <think> <set name="it"> <set name="topic">somalia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ISRAEL</pattern>
<template>Jerusalem. <think> <set name="it"> <set name="topic">israel</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TEXAS</pattern>
<template>Austin.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CROATIA</pattern>
<template>Zagreb. <think> <set name="it"> <set name="topic">croatia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ VATICAN *</pattern>
<template>Vatican City. <think> <set name="it"> <set name="topic">holy see {vatican city}</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PUERTO RICO</pattern>
<template>San Juan. <think> <set name="it"> <set name="topic">puerto rico</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ EL SALVADOR</pattern>
<template>San Salvador. <think> <set name="it"> <set name="topic">el salvador</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BOUVET ISLAND</pattern>
<template>none; administered from Oslo, Norway. <think> <set name="it"> <set name="topic">bouvet island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ COLORADO</pattern>
<template>Denver.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ USA</pattern>
<template>Washington.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WASHINGTON</pattern>
<template>Olympia.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ HONDURAS</pattern>
<template>Tegucigalpa. <think> <set name="it"> <set name="topic">honduras</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ QATAR</pattern>
<template>Doha. <think> <set name="it"> <set name="topic">qatar</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAINT HELENA</pattern>
<template>Jamestown. <think> <set name="it"> <set name="topic">saint helena</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAINT LUCIA</pattern>
<template>Castries. <think> <set name="it"> <set name="topic">saint lucia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAINT KITTS AND NEVIS</pattern>
<template>Basseterre. <think> <set name="it"> <set name="topic">saint kitts and nevis</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAINT PIERRE *</pattern>
<template>Saint-Pierre. <think> <set name="it"> <set name="topic">saint pierre and miquelon</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAINT VINCENT *</pattern>
<template>Kingstown. <think> <set name="it"> <set name="topic">saint vincent and the grenadines</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FRANCE</pattern>
<template>Paris. <think> <set name="it"> <set name="topic">france</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ THE US</pattern>
<template>Washington, D. C.<think> <set name="it"> <set name="topic">THE US</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ THE UNITED STATES</pattern>
<template>The U.S. capital is Washington, D. C.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ THE GAMBIA</pattern>
<template>Banjul. <think> <set name="it"> <set name="topic">the gambia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ THE NETHERLANDS</pattern>
<template>The Hague.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ THE BAHAMAS</pattern>
<template>Nassau. <think> <set name="it"> <set name="topic">the bahamas</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ THE ISLE OF MAN</pattern>
<template>Douglas. <think> <set name="it"> <set name="topic">man, isle of</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PAPUA NEW GUINEA</pattern>
<template>Port Moresby. <think> <set name="it"> <set name="topic">papua new guinea</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ANGOLA</pattern>
<template>Luanda. <think> <set name="it"> <set name="topic">angola</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WISCONSIN</pattern>
<template>Madison.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ANDORRA</pattern>
<template>Andorra la Vella. <think> <set name="it"> <set name="topic">andorra</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GLORIOSO ISLANDS</pattern>
<template>none; administered by France from Reunion. <think> <set name="it"> <set name="topic">glorioso islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TANZANIA</pattern>
<template>Dar es Salaam. <think> <set name="it"> <set name="topic">tanzania</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ IRAN</pattern>
<template>Tehran. <think> <set name="it"> <set name="topic">iran</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GABON</pattern>
<template>Libreville. <think> <set name="it"> <set name="topic">gabon</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SLOVENIA</pattern>
<template>Ljubljana. <think> <set name="it"> <set name="topic">slovenia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WESTERN SAHARA</pattern>
<template>none. <think> <set name="it"> <set name="topic">western sahara</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WESTERN SAMOA</pattern>
<template>Apia. <think> <set name="it"> <set name="topic">western samoa</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NORFOLK ISLAND</pattern>
<template>Kingston {administrative center}; Burnt Pine {commercial center}. <think> <set name="it"> <set name="topic">norfolk island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ IRELAND</pattern>
<template>Dublin. <think> <set name="it"> <set name="topic">ireland</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PITCAIRN ISLANDS</pattern>
<template>Adamstown. <think> <set name="it"> <set name="topic">pitcairn islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NORWAY</pattern>
<template>The capital of Norway is Oslo.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NICARAGUA</pattern>
<template>Managua. <think> <set name="it"> <set name="topic">nicaragua</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GUINEA BISSAU</pattern>
<template>Bissau. <think> <set name="it"> <set name="topic">guinea-bissau</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GUINEA</pattern>
<template>Conakry. <think> <set name="it"> <set name="topic">guinea</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PORTUGAL</pattern>
<template>Lisbon.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KUWAIT</pattern>
<template>Kuwait. <think> <set name="it"> <set name="topic">kuwait</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CZECH REPUBLIC</pattern>
<template>Prague. <think> <set name="it"> <set name="topic">czech republic</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ OHIO</pattern>
<template>Columbus.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ARGENTINA</pattern>
<template>Buenos Aries.<think> <set name="it"> <set name="topic">ARGENTINA</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JARVIS ISLAND</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">jarvis island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ETHIOPIA</pattern>
<template>Addis Ababa. <think> <set name="it"> <set name="topic">ethiopia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SERBIA *</pattern>
<template>Belgrade. <think> <set name="it"> <set name="topic">serbia and montenegro</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ AUSTRALIA</pattern>
<template>The capital of Australia is Sydney, I think.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ALABAMA</pattern>
<template>Montgomery.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LEBANON</pattern>
<template>Beirut. <think> <set name="it"> <set name="topic">lebanon</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TENNESSEE</pattern>
<template>Nashville.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ AFGHANISTAN</pattern>
<template>Kabul. <think> <set name="it"> <set name="topic">afghanistan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NIUE</pattern>
<template>Alofi. <think> <set name="it"> <set name="topic">niue</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CANADA</pattern>
<template><think> <set name="it"> <set name="topic">canada</set> </set> </think> <random> <li>Ottawa.</li> <li>I heard it was Toronto.</li> </random></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ COSTA RICA</pattern>
<template>San Jose. <think> <set name="it"> <set name="topic">costa rica</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CAMEROON</pattern>
<template>Yaounde. <think> <set name="it"> <set name="topic">cameroon</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MALAWI</pattern>
<template>Lilongwe. <think> <set name="it"> <set name="topic">malawi</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MALDIVES</pattern>
<template>Male. <think> <set name="it"> <set name="topic">maldives</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TONGA</pattern>
<template>Nuku'alofa. <think> <set name="it"> <set name="topic">tonga</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BELIZE</pattern>
<template>Belmopan. <think> <set name="it"> <set name="topic">belize</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAN MARINO</pattern>
<template>San Marino. <think> <set name="it"> <set name="topic">san marino</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KIRIBATI</pattern>
<template>Tarawa. <think> <set name="it"> <set name="topic">kiribati</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GHANA</pattern>
<template>Accra. <think> <set name="it"> <set name="topic">ghana</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LAOS</pattern>
<template>Vientiane. <think> <set name="it"> <set name="topic">laos</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WALLIS *</pattern>
<template>Mata-Utu {on Ile Uvea}. <think> <set name="it"> <set name="topic">wallis and futuna</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ VANUATU</pattern>
<template>Port-Vila. <think> <set name="it"> <set name="topic">vanuatu</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ COMOROS</pattern>
<template>Moroni. <think> <set name="it"> <set name="topic">comoros</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KANSAS</pattern>
<template>Topeka.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LOUISIANA</pattern>
<template>Baton Rouge.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GIBRALTAR</pattern>
<template>Gibraltar. <think> <set name="it"> <set name="topic">gibraltar</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MISSOURI</pattern>
<template>Jefferson City .</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BURKINA FASO</pattern>
<template>Ouagadougou. <think> <set name="it"> <set name="topic">burkina faso</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ HUNGARY</pattern>
<template>The capital of Hungary is Budapest.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ HAWAII</pattern>
<template>Honolulu.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MOZAMBIQUE</pattern>
<template>Maputo. <think> <set name="it"> <set name="topic">mozambique</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SWAZILAND</pattern>
<template>Mbabane {administrative}; Lobamba {legislative}. <think> <set name="it"> <set name="topic">swaziland</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FALKLAND ISLANDS</pattern>
<template>Stanley. <think> <set name="it"> <set name="topic">falkland islands {islas malvinas}</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ HOWLAND ISLAND</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">howland island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ INDIANA</pattern>
<template>Indianapolis.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ UGANDA</pattern>
<template>Kampala. <think> <set name="it"> <set name="topic">uganda</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TAIWAN</pattern>
<template>Taipei. <think> <set name="it"> <set name="topic">taiwan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PARIS</pattern>
<template>Is this a trick question?<think> <set name="it"> <set name="topic">PARIS</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LIBERIA</pattern>
<template>Monrovia. <think> <set name="it"> <set name="topic">liberia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TROMELIN ISLAND</pattern>
<template>none; administered by France from Reunion. <think> <set name="it"> <set name="topic">tromelin island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LIECHTENSTEIN</pattern>
<template>Vaduz. <think> <set name="it"> <set name="topic">liechtenstein</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BOSNIA AND HERZEGOVINA</pattern>
<template>Sarajevo. <think> <set name="it"> <set name="topic">bosnia and herzegovina</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GREECE</pattern>
<template>Athens. <think> <set name="it"> <set name="topic">greece</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ROMANIA</pattern>
<template>Bucharest. <think> <set name="it"> <set name="topic">romania</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ RUSSIA</pattern>
<template>Moscow. <think> <set name="it"> <set name="topic">russia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PAKISTAN</pattern>
<template>It is called Islamabad.<think> <set name="it"> <set name="topic">PAKISTAN</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ZIMBABWE</pattern>
<template>The capital is called Harare.<think> <set name="it"> <set name="topic">ZIMBABWE</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TURKS *</pattern>
<template>Grand Turk. <think> <set name="it"> <set name="topic">turks and caicos islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ HEARD ISLAND AND MCDONALD ISLANDS</pattern>
<template>none; administered from Canberra, Australia. <think> <set name="it"> <set name="topic">heard island and mcdonald islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TUVALU</pattern>
<template>Funafuti. <think> <set name="it"> <set name="topic">tuvalu</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MAYOTTE</pattern>
<template>Mamoutzou. <think> <set name="it"> <set name="topic">mayotte</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ IDAHO</pattern>
<template>Boise.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GEORGIA</pattern>
<template>Atlanta.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GUERNSEY</pattern>
<template>Saint Peter Port. <think> <set name="it"> <set name="topic">guernsey</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PALAU</pattern>
<template>Koror. <think> <set name="it"> <set name="topic">palau</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MOROCCO</pattern>
<template>Rabat. <think> <set name="it"> <set name="topic">morocco</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FIJI</pattern>
<template>Suva. <think> <set name="it"> <set name="topic">fiji</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MONGOLIA</pattern>
<template>The capital of Mongolia is Ulan Bator.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SWEDEN</pattern>
<template>I think the capital of Sweden is Stockholm.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BRITISH VIRGIN *</pattern>
<template>Road Town. <think> <set name="it"> <set name="topic">british virgin islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BRITISH INDIAN *</pattern>
<template>none. <think> <set name="it"> <set name="topic">british indian ocean territory</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ INDIA</pattern>
<template>New Delhi is the capital of India.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MALAYSIA</pattern>
<template>Kuala Lumpur. <think> <set name="it"> <set name="topic">malaysia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ICELAND</pattern>
<template>Reykjavik. <think> <set name="it"> <set name="topic">iceland</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ RWANDA</pattern>
<template>Kigali. <think> <set name="it"> <set name="topic">rwanda</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PENNSYLVANIA</pattern>
<template>Harrisburg.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FRENCH POLYNESIA</pattern>
<template>Papeete. <think> <set name="it"> <set name="topic">french polynesia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FRENCH GUIANA</pattern>
<template>Cayenne. <think> <set name="it"> <set name="topic">french guiana</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FRENCH *</pattern>
<template>None; administered from Paris, France. <think> <set name="it"> <set name="topic">french <star/> </set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BASSAS DA INDIA</pattern>
<template>none; administered by France from Reunion. <think> <set name="it"> <set name="topic">bassas da india</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KOREA</pattern>
<template>Seoul. <think> <set name="it"> <set name="topic">korea, south</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CUBA</pattern>
<template>Havana. <think> <set name="it"> <set name="topic">cuba</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SVALBARD</pattern>
<template>Longyearbyen. <think> <set name="it"> <set name="topic">svalbard</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ITALY</pattern>
<template>Rome. <think> <set name="it"> <set name="topic">italy</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ COCOS ISLANDS</pattern>
<template>West Island. <think> <set name="it"> <set name="topic">cocos {keeling} islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ERITREA</pattern>
<template>Asmara {formerly Asmera}. <think> <set name="it"> <set name="topic">eritrea</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SOUTH KOREA</pattern>
<template>Seoul. <think> <set name="it"> <set name="topic">korea, south</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SOUTH AFRICA</pattern>
<template>Pretoria {administrative}; Cape Town {legislative}; Bloemfontein {judicial}. <think> <set name="it"> <set name="topic">south africa</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SOUTH CAROLINA</pattern>
<template>Columbia.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SOUTH GEORGIA *</pattern>
<template>none; Grytviken on South Georgia is the garrison town. <think> <set name="it"> <set name="topic">south georgia and the south sandwich islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SOUTH DAKOTA</pattern>
<template>Pierre.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JAN MAYEN</pattern>
<template>none. <think> <set name="it"> <set name="topic">jan mayen</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MALTA</pattern>
<template>Valletta. <think> <set name="it"> <set name="topic">malta</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEVADA</pattern>
<template>Carson City.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CONGO</pattern>
<template>Brazzaville. <think> <set name="it"> <set name="topic">congo</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SAO TOME *</pattern>
<template>Sao Tome. <think> <set name="it"> <set name="topic">sao tome and principe</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TURKMENISTAN</pattern>
<template>Ashgabat. <think> <set name="it"> <set name="topic">turkmenistan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ UZBEKISTAN</pattern>
<template>Tashkent {Toshkent}. <think> <set name="it"> <set name="topic">uzbekistan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ IOWA</pattern>
<template>Des Moines.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ THAILAND</pattern>
<template>Bangkok. <think> <set name="it"> <set name="topic">thailand</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CAMBODIA</pattern>
<template>Phnom Penh. <think> <set name="it"> <set name="topic">cambodia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GUAM</pattern>
<template>Agana. <think> <set name="it"> <set name="topic">guam</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ DOMINICAN REPUBLIC</pattern>
<template>Santo Domingo. <think> <set name="it"> <set name="topic">dominican republic</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PERU</pattern>
<template>Lima is the capital of Peru.<think> <set name="it"> <set name="topic">PERU</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KENTUCKY</pattern>
<template>Frankfort.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LATVIA</pattern>
<template>Riga. <think> <set name="it"> <set name="topic">latvia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CAYMAN ISLANDS</pattern>
<template>George Town. <think> <set name="it"> <set name="topic">cayman islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BHUTAN</pattern>
<template>Thimphu. <think> <set name="it"> <set name="topic">bhutan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CLIPPERTON ISLAND</pattern>
<template>none; administered by France from French Polynesia. <think> <set name="it"> <set name="topic">clipperton island</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ OKLAHOMA</pattern>
<template>Oklahoma City.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MADAGASCAR</pattern>
<template>Antananarivo. <think> <set name="it"> <set name="topic">madagascar</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ COLOMBIA</pattern>
<template>Bogata is the capital of Columbia.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BELGIUM</pattern>
<template>Brussels. <think> <set name="it"> <set name="topic">belgium</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PHILIPPINES</pattern>
<template>Manila. <think> <set name="it"> <set name="topic">philippines</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CENTRAL AFRICAN *</pattern>
<template>Bangui. <think> <set name="it"> <set name="topic">central african republic</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ COOK ISLANDS</pattern>
<template>Avarua. <think> <set name="it"> <set name="topic">cook islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MOLDOVA</pattern>
<template>Chisinau. <think> <set name="it"> <set name="topic">moldova</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ COTE D IVOIRE</pattern>
<template>Yamoussoukro. <think> <set name="it"> <set name="topic">cote d'ivoire</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ FAROE ISLANDS</pattern>
<template>Torshavn. <think> <set name="it"> <set name="topic">faroe islands</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KYRGYZSTAN</pattern>
<template>Bishkek. <think> <set name="it"> <set name="topic">kyrgyzstan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ VIRGINIA</pattern>
<template>Richmond.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SEYCHELLES</pattern>
<template>Victoria. <think> <set name="it"> <set name="topic">seychelles</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JAMAICA</pattern>
<template>Kingston. <think> <set name="it"> <set name="topic">jamaica</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ WYOMING</pattern>
<template>Cheyenne .</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GUYANA</pattern>
<template>Georgetown. <think> <set name="it"> <set name="topic">guyana</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CHAD</pattern>
<template>N'Djamena. <think> <set name="it"> <set name="topic">chad</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ANGUILLA</pattern>
<template>The Valley. <think> <set name="it"> <set name="topic">anguilla</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GUADELOUPE</pattern>
<template>Basse-Terre. <think> <set name="it"> <set name="topic">guadeloupe</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MICRONESIA</pattern>
<template>Kolonia {on the island of Pohnpei}. <think> <set name="it"> <set name="topic">micronesia, federated states of</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ JORDAN</pattern>
<template>Amman. <think> <set name="it"> <set name="topic">jordan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CONNECTICUT</pattern>
<template>Hartford.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ UNITED ARAB *</pattern>
<template>Abu Dhabi. <think> <set name="it"> <set name="topic">united arab emirates</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ UNITED STATES</pattern>
<template>Washington, DC. <think> <set name="it"> <set name="topic">united states</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ UNITED KINGDOM</pattern>
<template>London. <think> <set name="it"> <set name="topic">united kingdom</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ HONG KONG</pattern>
<template>Victoria. <think> <set name="it"> <set name="topic">hong kong</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MEXICO</pattern>
<template>Mexico. <think> <set name="it"> <set name="topic">mexico</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MONTANA</pattern>
<template>Helena.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ILLINOIS</pattern>
<template>Springfield.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SLOVAKIA</pattern>
<template>Bratislava. <think> <set name="it"> <set name="topic">slovakia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ DENMARK</pattern>
<template>Copenhagen. <think> <set name="it"> <set name="topic">denmark</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ VIETNAM</pattern>
<template>Hanoi. <think> <set name="it"> <set name="topic">vietnam</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ARUBA</pattern>
<template>Oranjestad. <think> <set name="it"> <set name="topic">aruba</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NAMIBIA</pattern>
<template>Windhoek. <think> <set name="it"> <set name="topic">namibia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MISSISSIPPI</pattern>
<template>Jackson.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SENEGAL</pattern>
<template>Dakar. <think> <set name="it"> <set name="topic">senegal</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ GRENADA</pattern>
<template>Saint George's. <think> <set name="it"> <set name="topic">grenada</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SURINAME</pattern>
<template>Paramaribo. <think> <set name="it"> <set name="topic">suriname</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BOLIVIA</pattern>
<template>La Paz {seat of government}; Sucre {legal capital and seat of judiciary}. <think> <set name="it"> <set name="topic">bolivia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ HAITI</pattern>
<template>Port-au-Prince. <think> <set name="it"> <set name="topic">haiti</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CHILE</pattern>
<template>Santiago. <think> <set name="it"> <set name="topic">chile</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KENYA</pattern>
<template>Nairobi. <think> <set name="it"> <set name="topic">kenya</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TURKEY</pattern>
<template>Ankara is the capital of Turkey. <think> <set name="it"> <set name="topic">TURKEY</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ AMERICA</pattern>
<template>The capital of the U.S. is Washington, D. C.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ KINGMAN REEF</pattern>
<template>none; administered from Washington, DC. <think> <set name="it"> <set name="topic">kingman reef</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SRI LANKA</pattern>
<template>Colombo. <think> <set name="it"> <set name="topic">sri lanka</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BARBADOS</pattern>
<template>Bridgetown. <think> <set name="it"> <set name="topic">barbados</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TOKELAU</pattern>
<template>none; each atoll has its own administrative center. <think> <set name="it"> <set name="topic">tokelau</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BULGARIA</pattern>
<template>The capital of Bulgaria is Sofia.<think> <set name="it"> <set name="topic">BULGARIA</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ VENEZUELA</pattern>
<template>Caracas. <think> <set name="it"> <set name="topic">venezuela</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ PANAMA</pattern>
<template>Panama. <think> <set name="it"> <set name="topic">panama</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MALI</pattern>
<template>Bamako. <think> <set name="it"> <set name="topic">mali</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SWITZERLAND</pattern>
<template>Bern. <think> <set name="it"> <set name="topic">switzerland</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ CHINA</pattern>
<template>Some people call it "Beijing", others "Peking".</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MARYLAND</pattern>
<template>Annapolis.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BURUNDI</pattern>
<template>Bujumbura. <think> <set name="it"> <set name="topic">burundi</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEW CALEDONIA</pattern>
<template>Noumea. <think> <set name="it"> <set name="topic">new caledonia</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEW JERSEY</pattern>
<template>Trenton.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEW HAMPSHIRE</pattern>
<template>Concord.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEW YORK</pattern>
<template>Albany.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEW MEXICO</pattern>
<template>Santa Fe.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEW ZEALAND</pattern>
<template>Wellington. <think> <set name="it"> <set name="topic">new zealand</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ NEW *</pattern>
<template>New <person/> city?</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ LESOTHO</pattern>
<template>Maseru. <think> <set name="it"> <set name="topic">lesotho</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ MASSACHUSETTS</pattern>
<template>Boston.</template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ BENIN</pattern>
<template>Porto-Novo. <think> <set name="it"> <set name="topic">benin</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SIERRA LEONE</pattern>
<template>Freetown. <think> <set name="it"> <set name="topic">sierra leone</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ REUNION</pattern>
<template>Saint-Denis. <think> <set name="it"> <set name="topic">reunion</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ TAJIKISTAN</pattern>
<template>Dushanbe. <think> <set name="it"> <set name="topic">tajikistan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ SUDAN</pattern>
<template>Khartoum. <think> <set name="it"> <set name="topic">sudan</set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE CAPITAL _ ALGERIA</pattern>
<template>Algiers. <think> <set name="it"> <set name="topic">algeria</set> </set> </think></template>