-
Notifications
You must be signed in to change notification settings - Fork 8
/
std-geography.aiml
executable file
·6564 lines (2863 loc) · 78.4 KB
/
std-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="ISO-8859-1"?>
<aiml version="1.0">
<!-- Free software (c) 2001 ALICE AI Foundation -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- This file contains geographical information. -->
<meta name="author" content="Thomas Ringate"/>
<meta name="language" content="en"/>
<category>
<pattern>DEFINE ABAKAN</pattern>
<template>
<condition>
<li name="search" value="what">Abakan is a town in East Siberia.</li>
<li name="search" value="capital">Abakan is a town.</li>
<li name="search" value="where">Abakan is in East Siberia.</li>
<li>Abakan is a town in East Siberia.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ABERDEEN</pattern>
<template>
<condition>
<li name="search" value="what">Aberdeen is a city on the east coast of Scotland in the region of Grampian.</li>
<li name="search" value="capital">Aberdeen is a city.</li>
<li name="search" value="where">Aberdeen is on the east coast of Scotland in the region of Grampian.</li>
<li>Aberdeen is a city on the east coast of Scotland in the region of Grampian.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ABERFAN</pattern>
<template>
Aberfan is a town in Wales.
</template>
</category>
<category>
<pattern>DEFINE ACADIA</pattern>
<template>
Acadia is the old name of Nova Scotia.
</template>
</category>
<category>
<pattern>DEFINE ACAPULCO</pattern>
<template>
Acapulco is a city on the Pacific coast of Mexico.
</template>
</category>
<category>
<pattern>DEFINE ACCRA</pattern>
<template>
Accra is the capital of Ghana.
</template>
</category>
<category>
<pattern>DEFINE ADDIS ABABA</pattern>
<template>
Addis Ababa is the capital of Ethiopia.
</template>
</category>
<category>
<pattern>DEFINE ADELAIDE</pattern>
<template>
ADELAIDE is a city in southern Australia.
</template>
</category>
<category>
<pattern>DEFINE ADELIE LAND</pattern>
<template>
Adelie land is a French owned part of Antarctica.
</template>
</category>
<category>
<pattern>DEFINE ADEN</pattern>
<template>
Aden is a country in south west Arabia.
</template>
</category>
<category>
<pattern>DEFINE ADRIATIC SEA</pattern>
<template>
The Adriatic sea is the Mediterranean sea between Italy and the Balkans.
</template>
</category>
<category>
<pattern>DEFINE AFGHANISTAN</pattern>
<template>
Afghanistan is a republic in south west Asia.
</template>
</category>
<category>
<pattern>DEFINE AFRICA</pattern>
<template>
<random>
<li>Africa is a large continent.</li>
<li>A continent of the eastern hemisphere South of the Mediterranean & adjoining Asia on
NE.</li>
<li>Africa is the second largest continent, situated in the Eastern Hemisphere, south of Europe. It
is 11,677,000 square miles.</li>
</random>
</template>
</category>
<category>
<pattern>DEFINE AFRIKAANS</pattern>
<template>
Afrikaans is a language used in the republic of south Africa.
</template>
</category>
<category>
<pattern>DEFINE AGINCOURT</pattern>
<template>
Agincourt is a village in north west France where Henry V defeated the french army in 1415.
</template>
</category>
<category>
<pattern>DEFINE AGRA</pattern>
<template>
Agra is a town in Uttar Pradesh.
</template>
</category>
<category>
<pattern>DEFINE AJANTA</pattern>
<template>
Ajanta is a village in south central India.
</template>
</category>
<category>
<pattern>DEFINE ALABAMA</pattern>
<template>
<condition>
<li name="search" value="what">Alabama is a southern state between Mississippi and Georgia.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Alabama is between Mississippi and Georgia.</li>
<li>Alabama is a southern state between Mississippi and Georgia.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ALAMEIN</pattern>
<template>
Alamein is a place in north east Egypt where axis forces were defeated in 1942 by the allies.
</template>
</category>
<category>
<pattern>DEFINE ALAMO</pattern>
<template>
ALAMO is in San Antonio, Texas.
</template>
</category>
<category>
<pattern>DEFINE ALASKA</pattern>
<template>
<condition>
<li name="search" value="what">Alaska is in the northwest corner of North America, between Russia and Canada.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Alaska is in the northwest corner of North America, between Russia and Canada.</li>
<li>Alaska is in the northwest corner of North America, between Russia and Canada.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ALBANIA</pattern>
<template>
<condition>
<li name="search" value="what">Albania is a country, bordering Greece and the former Yugoslavia.</li>
<li name="search" value="capital">The capital of Albania is Tirana.</li>
<li name="search" value="where">Albania is on the Adriatic sea, bordering Greece and the former Yugoslavia.</li>
<li>Albania is on the Adriatic sea, bordering Greece and the former Yugoslavia.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ALBERTA</pattern>
<template>
Alberta is the western prairie province of Canada.
</template>
</category>
<category>
<pattern>DEFINE ALBUQUERQUE</pattern>
<template>
ALBUQUERQUE is a city in New Mexico.
</template>
</category>
<category>
<pattern>DEFINE ALDERSHOT</pattern>
<template>
Aldershot is a town in Hampshire and home of the British army.
</template>
</category>
<category>
<pattern>DEFINE ALETTSCH</pattern>
<template>
The Alettsch is a 10 mile long glacier in the Alps.
</template>
</category>
<category>
<pattern>DEFINE ALEXANDRIA</pattern>
<template>
Alexandria is a city and seaport of Egypt.
</template>
</category>
<category>
<pattern>DEFINE ALGERIA</pattern>
<template>
Algeria is a republic in North Africa.
</template>
</category>
<category>
<pattern>DEFINE ALGIERS</pattern>
<template>
Algiers is the capital of Algeria.
</template>
</category>
<category>
<pattern>DEFINE ALTAI</pattern>
<template>
The Altai is a mountain range in west Siberia and Mongolia.
</template>
</category>
<category>
<pattern>DEFINE AMAZON</pattern>
<template>
The Amazon is a major river in South America.
</template>
</category>
<category>
<pattern>DEFINE AMERICA</pattern>
<template>
America is a large continent in the western hemisphere.
</template>
</category>
<category>
<pattern>DEFINE AMSTERDAM</pattern>
<template>
Amsterdam is a city in Holland. Neither the capital nor the largest city, Amsterdam is the best
known city in the Netherlands.
</template>
</category>
<category>
<pattern>DEFINE ANDHRA PRADESH</pattern>
<template>
Andhra pradesh is a state in East India.
</template>
</category>
<category>
<pattern>DEFINE ANGOLA</pattern>
<template>
Angola is a country in West Africa.
</template>
</category>
<category>
<pattern>DEFINE ANHUI</pattern>
<template>
Anhui is a province in East China.
</template>
</category>
<category>
<pattern>DEFINE ANKARA</pattern>
<template>
Ankara is the capital of Turkey.
</template>
</category>
<category>
<pattern>DEFINE ANTARCTIC</pattern>
<template>
The antarctic is the south polar continent.
</template>
</category>
<category>
<pattern>DEFINE ARABIA</pattern>
<template>
Arabia is a country in South West Asia comprised of independent states.
</template>
</category>
<category>
<pattern>DEFINE ARCTIC</pattern>
<template>
The Arctic is the north polar region.
</template>
</category>
<category>
<pattern>DEFINE ARCTIC OCEAN</pattern>
<template>
The Arctic Ocean is the sea north of Europe, America and Asia.
</template>
</category>
<category>
<pattern>DEFINE ARDECHE</pattern>
<template>
The Ardeche is a river in south east France.
</template>
</category>
<category>
<pattern>DEFINE ARGENTINA</pattern>
<template>
<condition>
<li name="search" value="what">Argentina is a country in South America.</li>
<li name="search" value="capital">Buenos Aries.</li>
<li name="search" value="where">Argentina is a country in South America.</li>
<li>Argentina is a country in South America.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ARIZONA</pattern>
<template>
<condition>
<li name="search" value="what">Arizona is a state in USA.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Arizona is in the south western United States, bordering California, Nevada, Utah and New Mexico.</li>
<li>Arizona is in the south western United States, bordering California, Nevada, Utah and New Mexico.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ARKANSAS</pattern>
<template>
<condition>
<li name="search" value="what">Arkansas is a state in USA.</li>
<li name="search" value="capital">???.</li>
<li name="search" value="where">Arkansas is on the west bank of the Missisipi river.</li>
<li>Arkansas is a southern State on the west bank of the Missisipi river.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ARMENIA</pattern>
<template>
Armenia is a republic in East Europe.
</template>
</category>
<category>
<pattern>DEFINE ARUBA</pattern>
<template>
ARUBA is an island in the Netherlands Antilles, near South America.
</template>
</category>
<category>
<pattern>DEFINE ASCOT</pattern>
<template>
Ascot is a town in Berkshire.
</template>
</category>
<category>
<pattern>DEFINE ASIA</pattern>
<template>
Asia is the largest continent.
</template>
</category>
<category>
<pattern>DEFINE ASSYRIA</pattern>
<template>
<condition>
<li name="search" value="what">???.</li>
<li name="search" value="capital">Is it Babylon?</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE ATHENS</pattern>
<template>
Athens is the capital city of Greece.
</template>
</category>
<category>
<pattern>DEFINE ATLANTIC OCEAN</pattern>
<template>
The Atlantic Ocean is the sea to the west of Europe and east of America.
</template>
</category>
<category>
<pattern>DEFINE ATLANTIS</pattern>
<template>
Atlantis may never have existed.
</template>
</category>
<category>
<pattern>DEFINE AUCKLAND</pattern>
<template>
Auckland is a city and seaport of New Zealand.
</template>
</category>
<category>
<pattern>DEFINE AUSCHWITZ</pattern>
<template>
Is a city in S Poland with a population of 45,000. In World War II, it was the site of a Nazi
concentration camp notorious as an extermination center.
</template>
</category>
<category>
<pattern>DEFINE AUSTIN</pattern>
<template>
Austin is a city in Texas.
</template>
</category>
<category>
<pattern>DEFINE AUSTRALASIA</pattern>
<template>
Australasia is the countries of Australia, New Zealand etc.
</template>
</category>
<category>
<pattern>DEFINE AUSTRALIA</pattern>
<template>
<condition>
<li name="search" value="what">Australia is a large island-continent in the southern hemishphere.</li>
<li name="search" value="capital">The capital of Australia is Sydney, I think.</li>
<li name="search" value="where">Australia is a large island-continent in the southern hemishphere.</li>
<li>Australia is a large island-continent in the southern hemishphere.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE AUSTRIA</pattern>
<template>
<condition>
<li name="search" value="what">Austria is a country.</li>
<li name="search" value="capital">The capital of Austria is Vienna.</li>
<li name="search" value="where">Austria is in Central Europe.</li>
<li>Austria is a republic in Central Europe.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE BAGHDAD</pattern>
<template>
Baghdad is the capital city of Iraq.
</template>
</category>
<category>
<pattern>DEFINE BAHRAIN</pattern>
<template>
Bahrain is a country composed of a group of islands in the Arabian gulf.
</template>
</category>
<category>
<pattern>DEFINE BANGKOK</pattern>
<template>
Bangkok is the capital city of Thailand.
</template>
</category>
<category>
<pattern>DEFINE BANGLADESH</pattern>
<template>
BANGLADESH is part of the Indian subcontinent, on the eastern side.
</template>
</category>
<category>
<pattern>DEFINE BARCELONA</pattern>
<template>
Barcelona is a city and sea port in Spain.
</template>
</category>
<category>
<pattern>DEFINE BATH</pattern>
<template>
Bath is a city in England.
</template>
</category>
<category>
<pattern>DEFINE BELARUS</pattern>
<template>
<condition>
<li name="search" value="what">???.</li>
<li name="search" value="capital">The capital of Belarus is Minsk.</li>
<li name="search" value="where">???.</li>
<li>???.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE BELFAST</pattern>
<template>
Belfast is the capital of Northern Ireland.
</template>
</category>
<category>
<pattern>DEFINE 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.
Belgium is a country in western Europe, between France, Germany and Holland.
</template>
</category>
<category>
<pattern>DEFINE BELGRADE</pattern>
<template>
Belgrade is the capital of Yugoslavia.
</template>
</category>
<category>
<pattern>DEFINE BENGAL</pattern>
<template>
Bengal is a province in India.
</template>
</category>
<category>
<pattern>DEFINE BENIN</pattern>
<template>
Benin is a province in west Africa.
</template>
</category>
<category>
<pattern>DEFINE BERGEN</pattern>
<template>
Bergen is a seaport and city in Norway.
BERGEN is a city in Germany and also in Norway.
</template>
</category>
<category>
<pattern>DEFINE BERING SEA</pattern>
<template>
The bering sea is the northern part of the Pacific Ocean.
</template>
</category>
<category>
<pattern>DEFINE BERKELEY</pattern>
<template>
BERKELEY is in northern California, across the bay from San Francisco.
</template>
</category>
<category>
<pattern>DEFINE BERKSHIRE</pattern>
<template>
Berkshire is a county of southern England.
</template>
</category>
<category>
<pattern>DEFINE BERLIN</pattern>
<template>
Berlin is a large city in Germany.
</template>
</category>
<category>
<pattern>DEFINE BETHLEHEM</pattern>
<template>
Bethlehem, Pennsylvania is located in the northeastern area of the state, about 90 miles from
Philadelphia.
</template>
</category>
<category>
<pattern>DEFINE BHUTAN</pattern>
<template>
Bhutan is a state in India.
</template>
</category>
<category>
<pattern>DEFINE BILBAO</pattern>
<template>
BILBAO is a city on the north coast of Spain.
</template>
</category>
<category>
<pattern>DEFINE BIRMINGHAM</pattern>
<template>
Birmingham is a city in the English midlands.
</template>
</category>
<category>
<pattern>DEFINE BLOIS</pattern>
<template>
Blois is a city in France on the right bank of the loire river.
</template>
</category>
<category>
<pattern>DEFINE BOGOTA</pattern>
<template>
Bogota is the capital of Columbia.
</template>
</category>
<category>
<pattern>DEFINE BOHEMIA</pattern>
<template>
Bohemia is the western area of Czechoslovakia.
</template>
</category>
<category>
<pattern>DEFINE BOLIVIA</pattern>
<template>
BOLIVIA is a land-locked country in South America,
</template>
</category>
<category>
<pattern>DEFINE BOMBAY</pattern>
<template>
Bombay is a city and seaport in India.
</template>
</category>
<category>
<pattern>DEFINE BORNEO</pattern>
<template>
BORNEO is an island in Asia, divided between Maylasia and Indonesia.
</template>
</category>
<category>
<pattern>DEFINE BOSNIA</pattern>
<template>
Bosnia is a country in south east Europe.
</template>
</category>
<category>
<pattern>DEFINE BOSTON</pattern>
<template>
Boston is the capital of Massachusetts.
</template>
</category>
<category>
<pattern>DEFINE BRAZIL</pattern>
<template>
<condition>
<li name="search" value="what">Brazil is a country in South America.</li>
<li name="search" value="capital">I think the capital of Brazil is called "Brasilia".</li>
<li name="search" value="where">Brazil is in South America.</li>
<li>Brazil is the largest country in South America.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE BRENNER PASS</pattern>
<template>
The brenner pass is the lowest pass over the Alps.
</template>
</category>
<category>
<pattern>DEFINE BRISBANE</pattern>
<template>
Brisbane is the capital of Queensland in Australia.
</template>
</category>
<category>
<pattern>DEFINE BRISTOL</pattern>
<template>
BRISTOL is a city on the west coast of England.
</template>
</category>
<category>
<pattern>DEFINE BRITAIN</pattern>
<template>
Britain is the collective name for England, Scotland, Wales and Northern Ireland.
</template>
</category>
<category>
<pattern>DEFINE BRUSSELS</pattern>
<template>
Brussels is a city in Belgium.
</template>
</category>
<category>
<pattern>DEFINE BUCHAREST</pattern>
<template>
Bucharest is the capital of Romania.
</template>
</category>
<category>
<pattern>DEFINE BUDAPEST</pattern>
<template>
Budapest is the capital city of Hungary.
BUDAPEST is a city in Hungary, on the Danube river.
</template>
</category>
<category>
<pattern>DEFINE BULGARIA</pattern>
<template>
<condition>
<li name="search" value="what">A country in SE Europe, on the Black Sea.</li>
<li name="search" value="capital">The capital of Bulgaria is Sofia.</li>
<li name="search" value="where">In SE Europe, on the Black Sea.</li>
<li>A country in SE Europe, on the Black Sea. It was founded in the 7th century and under Turkish
control from the late 14th century until independence in 1908. It is 42,823 square miles with a
population of 8,990,000.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE BURGUNDY</pattern>
<template>
Burgundy is a region in east France.
</template>
</category>
<category>
<pattern>DEFINE BURMA</pattern>
<template>
Burma is a country in asia south of Tibet.
</template>
</category>
<category>
<pattern>DEFINE BURUNDI</pattern>
<template>
Burundi is a country in east Africa.
</template>
</category>
<category>
<pattern>DEFINE CADIZ</pattern>
<template>
Cadiz is a city and seaport in Spain.
</template>
</category>
<category>
<pattern>DEFINE CAIRO</pattern>
<template>
Cairo is the capital city of Egypt.
</template>
</category>
<category>
<pattern>DEFINE CALAIS</pattern>
<template>
Calais is a seaport in France.
</template>
</category>
<category>
<pattern>DEFINE CALCUTTA</pattern>
<template>
Calcutta is a city in India in the province of Bengal.
</template>
</category>
<category>
<pattern>DEFINE CALGARY</pattern>
<template>
Calgary is a city in Alberta, Canada.
</template>
</category>
<category>
<pattern>DEFINE CALIFORNIA</pattern>
<template>
<condition>
<li name="search" value="what">California is a state of the SW U.S., on the Pacific coast. It was admitted in 1850.</li>
<li name="search" value="capital">The capital of California is Sacramento.</li>
<li name="search" value="where">California is a state in the western USA.</li>
<li>California is a state in the west USA.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE CAMBODIA</pattern>
<template>
Cambodia is a country in the far east.
</template>
</category>
<category>
<pattern>DEFINE CAMBRIDGE</pattern>
<template>
CAMBRIDGE is a city in Massachusetts, also in England.
</template>
</category>
<category>
<pattern>DEFINE CAMBRIDGESHIRE</pattern>
<template>
Cambridgeshire is a county in east England.
</template>
</category>
<category>
<pattern>DEFINE CAMEROON</pattern>
<template>
Cameroon is a country in west Africa.
</template>
</category>
<category>
<pattern>DEFINE CANADA</pattern>
<template>
<think><set name="it">Canada</set></think>
<condition>
<li name="search" value="what">Canada is a large nation.</li>
<li name="search" value="capital">Ottawa.</li>
<li name="search" value="where">Canada is on the North American continent.</li>
<li>Canada is a large nation occupying much of the North American continent.</li>
</condition>
</template>
</category>
<category>
<pattern>DEFINE CANBERRA</pattern>
<template>
CANBERRA is a city in Australia, between Sydney and Melbourne.
Canberra is a territory in Australia.
</template>
</category>
<category>
<pattern>DEFINE CANTON</pattern>
<template>
A canton is a territorial division of Switzerland.
</template>
</category>
<category>
<pattern>DEFINE CAPE TOWN</pattern>
<template>
Cape town is a city and seaport in South Africa.
</template>
</category>
<category>
<pattern>DEFINE CAPE VERDE</pattern>
<template>
Cape Verde is a group of 14 volcanic islands in the Atlantic Ocean.
</template>
</category>
<category>
<pattern>DEFINE CARACAS</pattern>
<template>
Caracas is the capital of Venezuela.
</template>
</category>
<category>
<pattern>DEFINE CARIBBEAN</pattern>
<template>
The caribbean is the sea north of South America and east of Central America.
</template>
</category>
<category>
<pattern>DEFINE CARTHAGE</pattern>
<template>
CARTHAGE is the ancient name for Tunisia.
</template>
</category>
<category>
<pattern>DEFINE CAYENNE</pattern>
<template>
Cayenne is the capital of French Guiana.
</template>
</category>
<category>
<pattern>DEFINE CENTRAL AMERICA</pattern>
<template>
Central america is the isthmus connecting North and South America.
</template>
</category>
<category>
<pattern>DEFINE CEUTA</pattern>
<template>
Ceuta is a coastal town in morocco but owned by Spain.
</template>
</category>
<category>
<pattern>DEFINE CHAMPAGNE</pattern>
<template>
Champagne is a region of France famed for its sparkling wine.
</template>
</category>
<category>
<pattern>DEFINE CHARLOTTE</pattern>
<template>
CHARLOTTE is in North Carolina.
</template>
</category>
<category>
<pattern>DEFINE CHESHIRE</pattern>
<template>
Cheshire is a county in north west England.
</template>
</category>
<category>
<pattern>DEFINE CHICAGO</pattern>
<template>
Chicago is a large city in Illinois on Lake Michigan.
</template>
</category>
<category>
<pattern>DEFINE CHILE</pattern>
<template>
Chile is a country in west South America.
</template>
</category>
<category>
<pattern>DEFINE CHINA</pattern>
<template>
<condition>
<li name="search" value="what">China is a country.</li>
<li name="search" value="capital">Some people call it "Beijing", others "Peking".</li>
<li name="search" value="where">China is in east Asia.</li>