-
Notifications
You must be signed in to change notification settings - Fork 0
/
stories.aiml
990 lines (988 loc) · 33.1 KB
/
stories.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
<?xml version="1.0" encoding="ISO-8859-1"?>
<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 11/27/2011 -->
<!-- -->
<category><pattern>FOUR CULTURES</pattern>
<template><random> <li>France</li>
<li>Vietnam</li>
<li>Thailand</li>
<li>Algeria</li>
</random></template>
</category>
<category><pattern>ONE CULTURES</pattern>
<template><random> <li>Canada</li>
<li>Holland</li>
<li>New England</li>
<li>New Zealand</li>
<li>the Amish</li>
<li>the Puritains</li>
<li>Switzerland</li>
</random></template>
</category>
<category><pattern>FIVE CULTURES</pattern>
<template>England</template>
</category>
<category><pattern>SIX CULTURES</pattern>
<template><random> <li>Singapore</li>
<li>China</li>
<li>Germany</li>
<li>Russia</li>
</random></template>
</category>
<category><pattern>RANDOM FOURS</pattern>
<template><random> <li>Photographer Diane Arbus</li>
<li>Painter Francis Bacon</li>
<li>John Barrymore</li>
<li>Charles Baudelaire</li>
<li>Ingmar Bergman</li>
<li>Poet John Berryman</li>
<li>Director Peter Bogdanovich</li>
<li>Marlon Brando</li>
<li>Richard Brautigan</li>
<li>Jackson Browne</li>
<li>Raymond Burr</li>
<li>Singer Kate Bush</li>
<li>Mary Chapin Carpenter</li>
<li>Prince Charles</li>
<li>Eric Clapton</li>
<li>Kurt Cobain</li>
<li>Leonard Cohen</li>
<li>Judy Collins</li>
<li>James Dean</li>
<li>Johnny Depp</li>
<li>Neil Diamond</li>
<li>Isak Dinesen</li>
<li>Michael Dorris</li>
<li>French novelist Marguerite Duras</li>
<li>Bob Dylan</li>
<li>Judy Garland</li>
<li>Martha Graham</li>
<li>Singer Nanci Griffith</li>
<li>Billie Holliday</li>
<li>Lena Horne</li>
<li>Julio Iglesias</li>
<li>Michael Jackson</li>
<li>Jewel</li>
<li>Janis Joplin</li>
<li>Naomi Judd</li>
<li>Harvey Keitel</li>
<li>Jack Kerouac</li>
<li>Poet Philip Larkin</li>
<li>Charles Laughton</li>
<li>T. E. Lawrence</li>
<li>Vivien Leigh</li>
<li>John Malkovich</li>
<li>Marcello Mastroianni</li>
<li>Author Mary McCarthy</li>
<li>Carson McCullers</li>
<li>Rod McKuen</li>
<li>Thomas Merton</li>
<li>Author Yukio Mishima</li>
<li>Joni Mitchell</li>
<li>Jim Morrison</li>
<li>Morrissey</li>
<li>Edvard Munch</li>
<li>Liam Neeson</li>
<li>Mike Nichols</li>
<li>Stevie Nicks</li>
<li>Author Anais Nin</li>
<li>Nick Nolte</li>
<li>Laurence Olivier</li>
<li>Edith Piaf</li>
<li>Sylvia Plath</li>
<li>Edgar Allen Poe</li>
<li>Novelist Anne Rice</li>
<li>Arthur Rimbaud</li>
<li>Francoise Sagan</li>
<li>Poet Anne Sexton</li>
<li>Percy Shelley</li>
<li>Simone Signoret</li>
<li>Singer Paul Simon</li>
<li>Edna St. Vincent Millay</li>
<li>August Strindberg</li>
<li>Singer James Taylor</li>
<li>Spencer Tracy</li>
<li>Vincent Van Gogh</li>
<li>Suzanne Vega</li>
<li>Author Robert James Waller</li>
<li>Alan Watts</li>
<li>Orson Welles</li>
<li>Australian novelist Patrick White</li>
<li>Tennessee Williams</li>
<li>Kate Winslet</li>
<li>Virginia Woolf</li>
<li>Neil Young</li>
<li>Richard Wallace</li>
</random></template>
</category>
<category><pattern>RANDOM EIGHTS</pattern>
<template><random> <li>the cultural aura of Serbia</li>
<li>the culture of the Mafia</li>
<li>Lawyer Leslie Abramson</li>
<li>Gloria Allred</li>
<li>Director Robert Altman</li>
<li>Edward Asner</li>
<li>Kemal Ataturk</li>
<li>F. Lee Bailey</li>
<li>Actor Joe Don Baker</li>
<li>Lucille Ball</li>
<li>Charles Barkley</li>
<li>Richard Belzer</li>
<li>Humphrey Bogart</li>
<li>Napoleon Bonaparte</li>
<li>Charles Bronson</li>
<li>James Brown</li>
<li>Football's Jim Brown</li>
<li>Pat Buchanan</li>
<li>Richard Burton</li>
<li>Johnny Cash</li>
<li>John Cassavetes</li>
<li>Fidel Castro</li>
<li>Eldridge Cleaver</li>
<li>Ty Cobb</li>
<li>Sean Connery</li>
<li>Jimmy Connors</li>
<li>Robert Conrad</li>
<li>Matt Damon</li>
<li>Brian Dennehy</li>
<li>Alan Dershowitz</li>
<li>Danny DeVito</li>
<li>Football's Mike Ditka</li>
<li>Bob Dole</li>
<li>Sam Donaldson</li>
<li>Kirk Douglas</li>
<li>Michael Douglas</li>
<li>Morton Downey Jr.</li>
<li>Fred Dryer</li>
<li>Boxer Roberto Duran</li>
<li>Author Harlan Ellison</li>
<li>Milton Erickson</li>
<li>Moshe Feldenkrais</li>
<li>Actress Linda Fiorentino</li>
<li>Indira Gandhi</li>
<li>Apache warrior Geronimo</li>
<li>John Gotti</li>
<li>George Gurdjieff</li>
<li>the Hell's Angels</li>
<li>Ernest Hemingway</li>
<li>Jimmy Hoffa</li>
<li>Opera singer Marilyn Horne</li>
<li>Saddam Hussein</li>
<li>Director John Huston</li>
<li>Laura Ingraham</li>
<li>Joan Jett</li>
<li>Lyndon Johnson</li>
<li>Carlos Casteneda's Don Juan</li>
<li>Brian Keith</li>
<li>Nikita Khrushchev</li>
<li>Evel Knievel</li>
<li>Michael Landon</li>
<li>Rush Limbaugh</li>
<li>John Lydon (Johnny Rotten)</li>
<li>Norman Mailer</li>
<li>Mao Tse-tung</li>
<li>Wynton Marsalis</li>
<li>Lee Marvin</li>
<li>Tycoon Robert Maxwell</li>
<li>Malcolm McDowell</li>
<li>John McEnroe</li>
<li>Mark McGwire</li>
<li>Golda Meir</li>
<li>Comedian Dennis Miller</li>
<li>Robert Mitchum</li>
<li>Actor Judd Nelson</li>
<li>George Patton</li>
<li>Director Sam Peckinpah</li>
<li>Sean Penn</li>
<li>Gestalt therapist Fritz Perls</li>
<li>Julia Phillips</li>
<li>Actress Julianne Phillips</li>
<li>Suzanne Pleshette</li>
<li>Queen Latifah</li>
<li>Dixy Lee Ray</li>
<li>Ann Richards</li>
<li>Geraldo Rivera</li>
<li>Theodore Roosevelt</li>
<li>Axl Rose</li>
<li>Mickey Rourke</li>
<li>Colonel Harland Sanders</li>
<li>Telly Savalas</li>
<li>Baseball's Marge Schott</li>
<li>George C. Scott</li>
<li>Maurice Sendak</li>
<li>Tupac Shakur</li>
<li>Frank Sinatra</li>
<li>Grace Slick</li>
<li>Guardian Angel Curtis Sliwa</li>
<li>Joseph Stalin</li>
<li>John Sununu</li>
<li>Tamerlane</li>
<li>Charlize Theron</li>
<li>Rip Torn</li>
<li>Donald Trump</li>
<li>Pancho Villa</li>
<li>Ken Wahl</li>
<li>George Wallace</li>
<li>Mike Wallace</li>
<li>Denzel Washington</li>
<li>John Wayne</li>
<li>Ted Williams</li>
<li>Debra Winger</li>
<li>Zorba the Greek</li>
</random></template>
</category>
<category><pattern>RANDOM SEVENS</pattern>
<template><random> <li>Paul Allen</li>
<li>Comedian Steve Allen</li>
<li>Comedian Tim Allen</li>
<li>Desi Arnaz</li>
<li>Richard Avedon</li>
<li>Robert Ballard</li>
<li>Honore Balzac</li>
<li>Humorist Dave Barry</li>
<li>Jack Benny</li>
<li>Chuck Berry</li>
<li>Jacqueline Bisset</li>
<li>Poet Robert Bly</li>
<li>Sonny Bono</li>
<li>Comedienne Elayne Boosler</li>
<li>Musical comedian Victor Borge</li>
<li>Football's Terry Bradshaw</li>
<li>Kenneth Branagh</li>
<li>Richard Branson</li>
<li>Jimmy Buffett</li>
<li>Michael Caine</li>
<li>Mythologist Joseph Campbell</li>
<li>Pierre Cardin</li>
<li>Jackie Chan</li>
<li>Chevy Chase</li>
<li>Maurice Chevalier</li>
<li>George Clooney</li>
<li>Buffalo Bill Cody</li>
<li>Joan Collins</li>
<li>Director Francis Ford Coppola</li>
<li>Filmmaker Roger Corman</li>
<li>MTV's Dan Cortese</li>
<li>Katie Couric</li>
<li>David Crosby</li>
<li>e.e. cummings</li>
<li>Tony Curtis</li>
<li>Roger Daltry</li>
<li>Philosopher Gerard Depardieu</li>
<li>Diderot</li>
<li>QVC resident Barry Diller</li>
<li>Hugh Downs</li>
<li>Michael Eisner</li>
<li>Douglas Fairbanks Jr.</li>
<li>Federico Fellini</li>
<li>Sarah Ferguson</li>
<li>Physicist Richard Feynman</li>
<li>Errol Flynn</li>
<li>Peter Fonda</li>
<li>Malcolm Forbes</li>
<li>George Foreman</li>
<li>Bob Fosse</li>
<li>Matthew Fox</li>
<li>Michael J. Fox</li>
<li>Author Robert Fulghum</li>
<li>Clark Gable</li>
<li>Ava Gardner</li>
<li>Carlos Casteneda's Don Genaro</li>
<li>John Gielgud</li>
<li>Dizzy Gillespie</li>
<li>Newt Gingrich</li>
<li>Goethe</li>
<li>Ruth Gordon</li>
<li>Cary Grant</li>
<li>Andre Gregory</li>
<li>George Hamilton</li>
<li>Tom Hanks</li>
<li>Richard Harris</li>
<li>Goldie Hawn</li>
<li>Actress Marilu Henner</li>
<li>Abbie Hoffman</li>
<li>Pianist Vladimir Horowitz</li>
<li>Ron Howard</li>
<li>Lauren Hutton</li>
<li>Self-help author Gerald Jampolsky</li>
<li>Derek Jarman</li>
<li>Thomas Jefferson</li>
<li>Steve Jobs</li>
<li>Magic Johnson</li>
<li>Architect Phillip Johnson</li>
<li>Jerry Jones</li>
<li>King Juan Carlos of Spain</li>
<li>Actress Carol Kane</li>
<li>Michael Keaton</li>
<li>John F. Kennedy</li>
<li>Ken Kesey</li>
<li>Comedian Alan King</li>
<li>Don King</li>
<li>CNN's Larry King</li>
<li>Comedian Robert Klein</li>
<li>Director David Lean</li>
<li>Timothy Leary</li>
<li>Director Barry Levinson</li>
<li>Puppeteer Shari Lewis</li>
<li>Artist Roy Lichtenstein</li>
<li>Loretta Lynn</li>
<li>Football's John Madden</li>
<li>Director Louis Malle</li>
<li>Singer Meat Loaf</li>
<li>Author Henry Miller</li>
<li>Yves Montand</li>
<li>Dudley Moore</li>
<li>Jeanne Moreau</li>
<li>Robert Morley</li>
<li>Eddie Murphy</li>
<li>Jack Nicholson</li>
<li>Leslie Nielsen</li>
<li>Donald O'Connor</li>
<li>Peter O'Toole</li>
<li>Luciano Pavarotti</li>
<li>Author Joseph Chilton Pearce</li>
<li>Regis Philbin</li>
<li>Bronson Pinchot</li>
<li>Brad Pitt</li>
<li>George Plimpton</li>
<li>Vincent Price</li>
<li>Dennis Quaid</li>
<li>Anthony Quinn</li>
<li>Bonnie Raitt</li>
<li>Ram Dass</li>
<li>Ron Reagan Jr.</li>
<li>Basketball Coach Pat Reilly</li>
<li>Lee Remick</li>
<li>Tim Rice</li>
<li>Filmmaker/Nazi propagandist Leni Riefenstahl</li>
<li>Jason Robards</li>
<li>Novelist Tom Robbins</li>
<li>Ginger Rogers</li>
<li>Linda Ronstadt</li>
<li>Interviewer Charlie Rose</li>
<li>David Lee Roth</li>
<li>Economist Louis Rukeyser</li>
<li>Rosalind Russell</li>
<li>Babe Ruth</li>
<li>Susan Saint James</li>
<li>Director Martin Scorsese</li>
<li> Weatherman Willard Scott</li>
<li>Martin Short</li>
<li>Self-help author Bernie Siegel</li>
<li>Steven Spielberg</li>
<li>Mickey Spillane</li>
<li>Robert Louis Stevenson</li>
<li>Barbra Streisand</li>
<li>Henry David Thoreau</li>
<li>Lily Tomlin</li>
<li>Tanya Tucker</li>
<li>Janine Turner</li>
<li>Lana Turner</li>
<li>Peter Ustinov</li>
<li>Dick Van Dyke</li>
<li>Vince Vaughn</li>
<li>Voltaire</li>
<li>Kurt Vonnegut</li>
<li>Eli Wallach</li>
<li>Rolling Stone's Jann Wenner</li>
<li>Betty White</li>
<li>Robin Williams</li>
<li>Robert Anton Wilson</li>
<li>the Duke of Windsor</li>
<li>Jonathan Winters</li>
<li>Author Tom Wolfe</li>
<li>James Woods</li>
<li>Poet William Wordsworth</li>
<li>Franco Zeffirelli</li>
</random></template>
</category>
<category><pattern>RANDOM STORY</pattern>
<template>
<random>
<li><srai>STORY FOUR FIVE</srai></li>
<li><srai>STORY FOUR EIGHT</srai></li>
<li><srai>STORY FOUR NINE</srai></li>
<li><srai>STORY FOUR SIX</srai></li>
<li><srai>STORY ONE FOUR</srai></li>
<li><srai>STORY ONE FIVE</srai></li>
<li><srai>STORY ONE SIX</srai></li>
<li><srai>STORY ONE TWO</srai></li>
<li><srai>STORY ONE THREE</srai></li>
<li><srai>STORY TWO FIVE</srai></li>
<li><srai>WEIGHT FOUR TWO</srai></li>
<li>Generic story: Exposition...Incident...Rising Action...Crisis...Climax...Denouement...The End.</li>
<li>Generic story: Situation...characters...crisis...resolution.</li>
</random></template>
</category>
<category><pattern>RANDOM SIXES</pattern>
<template><random> <li>Actor Jason Alexander</li>
<li>Woody Allen</li>
<li>Alan Arkin</li>
<li>Kim Basinger</li>
<li>Candice Bergen</li>
<li>Albert Brooks</li>
<li>George Bush</li>
<li>Actress Lynda Carter</li>
<li>Stockard Channing</li>
<li>Rodney Dangerfield</li>
<li>Ellen DeGeneres</li>
<li>Julie Delpy</li>
<li>Sally Field</li>
<li>Teri Garr</li>
<li>Cartoonist Cathy Guisewite</li>
<li>Ed Harris</li>
<li>Janet Leigh</li>
<li>Jack Lemmon</li>
<li>Richard Lewis</li>
<li>Penny Marshall</li>
<li>Marilyn Monroe</li>
<li>Mary Tyler Moore</li>
<li>Bob Newhart</li>
<li>Richard Nixon</li>
<li>Lena Olin</li>
<li>Anthony Perkins</li>
<li>Director Sydney Pollack</li>
<li>Paul Reiser</li>
<li>Pat Robertson</li>
<li>Rene Russo</li>
<li>Kristin Scott-Thomas</li>
<li>Carly Simon</li>
<li>Suzanne Somers</li>
<li>Bruce Springsteen</li>
<li>Jon Stewart</li>
<li>Meg Tilly</li>
<li>Brian Wilson</li>
<li>Ellen Barkin</li>
<li>Warren Beatty</li>
<li>Comedian George Carlin</li>
<li>Actress Judy Davis</li>
<li>Phil Donahue</li>
<li>Carrie Fisher</li>
<li>Mel Gibson</li>
<li>Andrew Grove</li>
<li>Gene Hackman</li>
<li>Adolf Hitler</li>
<li>Dustin Hoffman</li>
<li>J. Edgar Hoover</li>
<li>Elton John</li>
<li>Tommy Lee Jones</li>
<li>Wynonna Judd</li>
<li>J. Krishnamurti</li>
<li>Director Spike Lee</li>
<li>David Letterman</li>
<li>Gordon Liddy</li>
<li>Charles Manson</li>
<li>Steve McQueen</li>
<li>Filmmaker Michael Moore</li>
<li>Paul Newman</li>
<li>Chuck Norris</li>
<li>Rosie Perez</li>
<li>Richard Pryor</li>
<li>Robert Redford</li>
<li>Janet Reno</li>
<li>Julia Roberts</li>
<li>Meg Ryan</li>
<li>Violinist Nadia Salerno-Sonnenberg</li>
<li>Steven Seagal</li>
<li>Sissy Spacek</li>
<li>James Spader</li>
<li>Ben Stiller</li>
<li>Patrick Swayze</li>
<li>Linda Tripp</li>
<li>Ted Turner</li>
<li>Terry Tempest Williams</li>
<li>Actress Sean Young</li>
<li>Vladimir Zhirinovsky</li>
</random></template>
</category>
<category><pattern>RANDOM ONES</pattern>
<template><random> <li>Historian Stephen Ambrose</li>
<li>Julie Andrews</li>
<li>Hanan Ashrawi</li>
<li>St. Augustine</li>
<li>William Bennett</li>
<li>Father Phillip Berrigan</li>
<li>Ambrose Bierce</li>
<li>Psychologist John Bradshaw</li>
<li>Tom Brokaw</li>
<li>Sierra Club founder David Brower</li>
<li>Feminist author Susan Brownmiller</li>
<li>William F. Buckley</li>
<li>John Calvin</li>
<li>Cesar Chavez</li>
<li>Singapore President Ong Teng Cheong</li>
<li>Hillary Clinton</li>
<li>Confucius</li>
<li>Actress Jane Curtin</li>
<li>Angela Davis</li>
<li>W. E. B. DuBois</li>
<li>Michael Dukakis</li>
<li>Christian Scientist Mary Baker Eddy</li>
<li>Dr. Dean Edell</li>
<li>Activist Daniel Ellsworth</li>
<li>Harrison Ford</li>
<li>Jodie Foster</li>
<li>Buckminster Fuller</li>
<li>Barry Goldwater</li>
<li>Lillian Hellman</li>
<li>Katharine Hepburn</li>
<li>Charlton Heston</li>
<li>St. Ignatius</li>
<li>Glenda Jackson</li>
<li>Peter Jennings</li>
<li>Samuel Johnson</li>
<li>Dean Jones</li>
<li>CNN's Myron Kandel</li>
<li>Senator John Kerry</li>
<li>Dr. Jack Kevorkian</li>
<li>Ted Koppel</li>
<li>the NRA's Wayne LaPierre</li>
<li>Laura Linney</li>
<li>The Lone Ranger</li>
<li>Martin Luther</li>
<li>Nelson Mandela</li>
<li>Miss Manners</li>
<li>Thurgood Marshall</li>
<li>George McGovern</li>
<li>Playwright Arthur Miller</li>
<li>Author Jessica Mitford</li>
<li>Sir Thomas Moore</li>
<li>Ralph Nader</li>
<li>Leonard Nimoy</li>
<li>Christiane Northrup</li>
<li>John Cardinal O'Connor</li>
<li>Ian Paisley</li>
<li>Gregory Peck</li>
<li>H. Ross Perot</li>
<li>Sidney Poitier</li>
<li>Pope John Paul II</li>
<li>Emily Post</li>
<li>Colin Powell</li>
<li>the culture of the Puritans</li>
<li>Marilyn Quayle</li>
<li>Yitzak Rabin</li>
<li>Tony Randall</li>
<li>Vanessa Redgrave</li>
<li>Donna Reed</li>
<li>Actor Cliff Robertson</li>
<li>Eleanor Roosevelt</li>
<li>Phyllis Schlafly</li>
<li>George Bernard Shaw</li>
<li>Bernard Shaw</li>
<li>Film critic Gene Siskel</li>
<li>Alexander Solzhenitsyn</li>
<li>Kenneth Starr</li>
<li>Actor Peter Strauss</li>
<li>Meryl Streep</li>
<li>Margaret Thatcher</li>
<li>Emma Thompson</li>
<li>Harry Truman</li>
<li>Maxine Waters</li>
<li>Dragnet's Jack Webb</li>
<li>Joanne Woodward</li>
<li>Actress Jane Wyman</li>
</random></template>
</category>
<category><pattern>RANDOM THREES</pattern>
<template><random> <li>The cultural aura of America</li>
<li>the cultural aura of modern Japan</li>
<li>James Baker</li>
<li>Joseph Biden</li>
<li>David Bowie</li>
<li>Les Brown</li>
<li>Ron Brown</li>
<li>Jimmy Carter</li>
<li>Dick Clark</li>
<li>Lawyer Johnnie Cochran</li>
<li>Magician David Copperfield</li>
<li>Courtney Cox</li>
<li>Cindy Crawford</li>
<li>Tom Cruise</li>
<li>Rebecca DeMornay</li>
<li>Nora Ephron</li>
<li>Werner Erhard</li>
<li>Debbi Fields</li>
<li>F. Scott Fitzgerald</li>
<li>Michael Flatley</li>
<li>Phil Gramm</li>
<li>NBC's Bryant Gumbel</li>
<li>Actor Mark Harmon</li>
<li>Jesse Jackson</li>
<li>Michael Jordan</li>
<li>Henry Kissinger</li>
<li>Carl Lewis</li>
<li>Andrew Lloyd Webber</li>
<li>Vince Lombardi</li>
<li>Rob Lowe</li>
<li>Claire Boothe Luce</li>
<li>Joan Lunden</li>
<li>Ali MacGraw</li>
<li>Elle MacPherson</li>
<li>Reba McEntire</li>
<li>Demi Moore</li>
<li>Queen Noor</li>
<li>Oliver North</li>
<li>Dean Ornish</li>
<li>Bob Packwood</li>
<li>Master spy Kim Philby</li>
<li>Elvis Presley</li>
<li>Sally Quinn</li>
<li>Burt Reynolds</li>
<li>Anthony Robbins</li>
<li>Political strategist Ed Rollins</li>
<li>Diane Sawyer</li>
<li>Arnold Schwarzenegger</li>
<li>William Shatner</li>
<li>Cybill Shepherd</li>
<li>O.J. Simpson</li>
<li>Duchess of Windsor Wallis Simpson</li>
<li>Will Smith</li>
<li>Wesley Snipes</li>
<li>Sylvester Stallone</li>
<li>Sharon Stone</li>
<li>Kathleen Turner</li>
<li>Jean-Claude Van Damme</li>
<li>Kurt Waldheim</li>
<li>George Washington</li>
<li>Raquel Welch</li>
<li>Vanessa Williams</li>
<li>Marianne Williamson</li>
<li>Oprah Winfrey</li>
<li>Natalie Wood</li>
<li>Tiger Woods</li>
</random></template>
</category>
<category><pattern>RANDOM NINES</pattern>
<template><random> <li>the cultural aura of Bali</li>
<li>Actress Loni Anderson</li>
<li>Jennifer Aniston</li>
<li>Bruce Babbitt</li>
<li>Antonio Banderas</li>
<li>Annette Bening</li>
<li>Tony Bennett</li>
<li>Tom Berenger</li>
<li>Yogi Berra</li>
<li>Ernest Borgnine</li>
<li>Matthew Broderick</li>
<li>Sandra Bullock</li>
<li>George Burns</li>
<li>Actress Kate Capshaw</li>
<li>Singer Belinda Carlisle</li>
<li>Art Carney</li>
<li>Actor Keith Carradine</li>
<li>Julia Child</li>
<li>Warren Christopher</li>
<li>Connie Chung</li>
<li>Bill Clinton</li>
<li>Gary Cooper</li>
<li>Kevin Costner</li>
<li>The Dalai Lama</li>
<li>Actor Jeff Daniels</li>
<li>Oscar de la Renta</li>
<li>Clint Eastwood</li>
<li>Dwight Eisenhower</li>
<li>Queen Elizabeth II</li>
<li>Shelley Fabares</li>
<li>Peter Falk</li>
<li>Gerald Ford</li>
<li>Actor Dennis Franz</li>
<li>Annette Funicello</li>
<li>Mahatma Gandhi</li>
<li>Chief Dan George</li>
<li>John Goodman</li>
<li>Tipper Gore</li>
<li>Actor Elliott Gould</li>
<li>Katherine Graham</li>
<li>Charles Grodin</li>
<li>Woody Harrelson</li>
<li>Gabby Hayes</li>
<li>Patty Hearst</li>
<li>Mariel Hemingway</li>
<li>Buck Henry</li>
<li>Audrey Hepburn</li>
<li>Barbara Hershey</li>
<li>Paul Hogan</li>
<li>King Hussein</li>
<li>Anjelica Huston</li>
<li>Actor Ben Johnson</li>
<li>Shirley Jones</li>
<li>C. G. Jung</li>
<li>Grace Kelly</li>
<li>Figure skater Nancy Kerrigan</li>
<li>Helmut Kohl</li>
<li>Lisa Kudrow</li>
<li>Stan Laurel</li>
<li>Jennifer Jason Leigh</li>
<li>Abraham Lincoln</li>
<li>Andie MacDowell</li>
<li>Mr. Magoo</li>
<li>John Major</li>
<li>Dean Martin</li>
<li>Jerry Mathers</li>
<li>Actor Harry Morgan</li>
<li>Sancho Panza</li>
<li>Slim Pickens</li>
<li>Actor Michael J. Pollard</li>
<li>Dan Quayle</li>
<li>James Earl Ray</li>
<li>Ronald Reagan</li>
<li>Ralph Richardson</li>
<li>Cal Ripkin</li>
<li>Robbie Robertson</li>
<li>Psychologist Carl Rogers</li>
<li>Roy Rogers</li>
<li>Gena Rowlands</li>
<li>Actress Eva Marie Saint</li>
<li>Jerry Seinfeld</li>
<li>Garry Shandling</li>
<li>Wallace Shawn</li>
<li>Martin Sheen</li>
<li>Actor Tom Skerritt</li>
<li>Sammy Sosa</li>
<li>Ringo Starr</li>
<li>Mary Steenburgen</li>
<li>Wallace Stegner</li>
<li>Gloria Steinem</li>
<li>Daniel Stern</li>
<li>James Stewart</li>
<li>Actor Eric Stoltz</li>
<li>Billy Bob Thornton</li>
<li>Singer Andy Williams</li>
<li>Tricia Yearwood</li>
</random></template>
</category>
<category><pattern>RANDOM FIVES</pattern>
<template><random> <li>Performance artist Laurie Anderson</li>
<li>St. Thomas Aquinas</li>
<li>Issac Asimov</li>
<li>Playwright Samuel Beckett</li>
<li>Author Paul Bowles</li>
<li>The Buddha</li>
<li>Director Tim Burton</li>
<li>David Byrne</li>
<li>Actor Richard Chamberlain</li>
<li>Anton Chekhov</li>
<li>Agatha Christie</li>
<li>Van Cliburn</li>
<li>Montgomery Clift</li>
<li>Former CIA Director William Colby</li>
<li>Michael Crichton</li>
<li>Daniel Day-Lewis</li>
<li>Rene Descartes</li>
<li>Joan Didion</li>
<li>Joe DiMaggio</li>
<li>Aviatrix Amelia Earhart</li>
<li>Albert Einstein</li>
<li>Author Loren Eiseley</li>
<li>T. S. Eliot</li>
<li>Ralph Fiennes</li>
<li>Chess player Bobby Fischer</li>
<li>E. M. Forster</li>
<li>Greta Garbo</li>
<li>J. Paul Getty</li>
<li>Cybertech novelist William Gibson</li>
<li>Jane Goodall</li>
<li>Author Graham Greene</li>
<li>H. R. Haldeman</li>
<li>Hildegarde of Bingen</li>
<li>Alfred Hitchcock</li>
<li>Anthony Hopkins</li>
<li>Howard Hughes</li>
<li>Jeremy Irons</li>
<li>Unabomber Ted Kaczynski</li>
<li>Franz Kafka</li>
<li>Director Philip Kaufman</li>
<li>Jacqueline Kennedy Onassis</li>
<li>Dean R. Koontz</li>
<li>The Amazing Kreskin</li>
<li>Stanley Kubrick</li>
<li>Brian Lamb</li>
<li>Gary Larson</li>
<li>John le Carre</li>
<li>Ursula K. LeGuin</li>
<li>Photographer Annie Leibowitz</li>
<li>George Lucas</li>
<li>David Lynch</li>
<li>Norman MacLean</li>
<li>Robert MacNeil</li>
<li>Leonard Maltin</li>
<li>Author Peter Matthiessen</li>
<li>Novelist Ian McEwan</li>
<li>Larry McMurtry</li>
<li>Timothy McVeigh</li>
<li>Singer Natalie Merchant</li>
<li>Thelonious Monk</li>
<li>Actor Sam Neill</li>
<li>Joyce Carol Oates</li>
<li>Georgia O'Keefe</li>
<li>J. Robert Oppenheimer</li>
<li>Al Pacino</li>
<li>Italian sculptor Paladino</li>
<li>Michelle Pfeiffer</li>
<li>Philanthropist John D. Rockefeller Jr.</li>
<li>Oliver Sacks</li>
<li>Jean-Paul Sartre</li>
<li>Ebenezer Scrooge</li>
<li>Sister Wendy</li>
<li>Behaviorist B. F. Skinner</li>
<li>Poet Gary Snyder</li>
<li>Susan Sontag</li>
<li>George Stephanopoulos</li>
<li>Actress Madeleine Stowe</li>
<li>Jules Verne</li>
<li>Max Von Sydow</li>
<li>Author Ken Wilber</li>
<li>Ludwig Wittgenstein</li>
<li>David Bacon</li>
<li>Alan Turing</li>
</random></template>
</category>
<category><pattern>RANDOM TWOS</pattern>
<template><random> <li>Alan Alda</li>
<li>Tammy Faye Bakker</li>
<li>Harry Belafonte</li>
<li>Child psychologist T. Berry Brazelton</li>
<li>Filmmaker Ken Burns</li>
<li>Leo Buscaglia</li>
<li>Barbara Bush</li>
<li>Glenn Close</li>
<li>Bill Cosby</li>
<li>Self-help author Barbara de Angelis</li>
<li>Princess Diana</li>
<li>Faye Dunaway</li>
<li>Mia Farrow</li>
<li>Feminist Betty Friedan</li>
<li>Kathie Lee Gifford</li>
<li>Danny Glover</li>
<li>Roosevelt Grier</li>
<li>Melanie Griffith</li>
<li>Pamela Harriman</li>
<li>Leona Helmsley</li>
<li>Whitney Houston</li>
<li>Arianna Huffington</li>
<li>Actress Anne Jackson</li>
<li>Jesus Christ</li>
<li>Author Erica Jong</li>
<li>Actress Sally Kellerman</li>
<li>Actress Sally Kirkland</li>
<li>Diane Ladd</li>
<li>Monica Lewinsky</li>
<li>Jerry Lewis</li>
<li>Actress Susan Lucci</li>
<li>Madonna</li>
<li>Alma Mahler</li>
<li>Imelda Marcos</li>
<li>Florence Nightingale</li>
<li>Merlin Olsen</li>
<li>Yoko Ono</li>
<li>Mandy Patinkin</li>
<li>Jack Perkins</li>
<li>Eva Peron</li>
<li>Susan Powter</li>
<li>Priscilla Presley</li>
<li>Sally Jessy Raphael</li>
<li>Nancy Reagan</li>
<li>Della Reese</li>
<li>Mr. Rogers</li>
<li>Family therapist Virginia Satir</li>
<li>Danielle Steel</li>
<li>Sally Struthers</li>
<li>Mother Teresa</li>
<li>Marlo Thomas</li>
<li>Actor Richard Thomas</li>
<li>Actress Jennifer Tilly</li>
<li>Tiny Tim</li>
<li>John Travolta</li>
<li>Ivana Trump</li>
<li>Desmond Tutu</li>
<li>Actress Lesley Ann Warren</li>
<li>Brazilian singer Xuxa</li>
</random></template>
</category>
<category><pattern>TWO CULTURES</pattern>
<template><random> <li>Cuba</li>
<li>Mexico</li>
<li>Columbia</li>
<li>Brazil</li>
<li>Argentina</li>
<li>Peru</li>
<li>Venezuela</li>
</random></template>
</category>
<category><pattern>EIGHT CULTURES</pattern>
<template><random> <li>Serbia</li>
<li>The Mafia</li>
<li>Iraq</li>
<li>Syria</li>
<li>Saudi Arabia</li>
</random></template>
</category>
<category><pattern>THREE CULTURES</pattern>
<template><random> <li>NATO</li>
<li>California</li>
<li>Texas</li>
<li>Florida</li>
<li>New York</li>
<li>Hong Kong</li>
<li>Korea</li>
<li>Taiwan</li>
<li>America</li>
<li>The United States</li>
<li>Japan</li>
</random></template>
</category>
<category><pattern>NINE CULTURES</pattern>
<template><random> <li>Bali</li>
<li>Tibet</li>
<li>Nepal</li>
<li>The United Nations</li>
<li>The Hague</li>
<li>Geneva</li>
</random></template>
</category>
<category><pattern>WEIGHT FOUR TWO</pattern>
<template><think><set name="four"><srai>RANDOM FOURS</srai></set><set name="two"><srai>RANDOM TWOS</srai></set></think> <get name="four"/> is married to <get name="two"/>. At a conscious level, <get name="four"/> felt that he was a bit overweight and thoght he should lose some pounds. But part of him felt that he was going to attract too much attention to himself if he became slim again, and irrationally, that he might undermine his relationship with <get name="two"/>. In fact, once before when he was trimmer, he did have an affair and it almost ended his relationship with <get name="two"/>. Because they have a child together, <get name="four"/> is very worried about divorce, custody rights and the effect of their separation on the child and himself. So part of him thinks that keeping the pounds on will help him hang on to the stability of his relationship with <get name="two"/>.</template>
</category>
<category><pattern>STORY FOUR FIVE</pattern>
<template><think> <set name="four"><srai>RANDOM FOURS</srai></set> <set name="five"><srai>RANDOM FIVES</srai></set> </think> <get name="four"/> and <get name="five"/> began to resemble each other over time. Both of them were inclined to cocoon themselves in an inner world. But <get name="four"/>'s inner world was very different from <get name="five"/>'s. The mental life of <get name="five"/> was highly abstract but seemed curiously devoid of emotional content. Even though <get name="four"/> is very sensitive and emotional, the two of them share an imaginary life filled with symbolism and meaning.</template>
</category>
<category><pattern>STORY FOUR EIGHT</pattern>
<template><think> <set name="four"><srai>RANDOM FOURS</srai></set> <set name="eight"><srai>RANDOM EIGHTS</srai></set></think> <get name="eight"/> and <get name="four"/> met in film school when they were young. They felt a strong physical attraction, but <get name="four"/> was intimidated by <get name="eight"/> 's aggressive style. Years later they were reintroduced by a mutual friend. <get name="eight"/> was drawn to <get name="four"/> 's rich imagination and intelligence. <get name="four"/> was consumed by <get name="eight"/> 's will and determination. Though they would sometimes fight in a fury of jealous rage, this was matched only by their passion in love.</template>
</category>
<category><pattern>STORY FOUR NINE</pattern>
<template><think> <set name="four"><srai>RANDOM FOURS</srai></set> <set name="nine"><srai>RANDOM NINES</srai></set> </think> <get name="nine"/> and <get name="four"/> felt a dramatic emotional bond and each brought new life to the other. <get name="nine"/> awakened <get name="four"/> through love. <get name="four"/> gave <get name="nine"/> an agenda and a sense of purpose. Yet the couple was paradoxically strengthened by their independent careers. <get name="nine"/> can be very patient with <get name="four"/>, and <get name="four"/> is inspired by a self-directed <get name="nine"/>. They made a spiritual couple, but they were as dissimilar as the Dalai Lama and Gurdjieff.</template>
</category>
<category><pattern>STORY FOUR SIX</pattern>
<template><think> <set name="four"><srai>RANDOM FOURS</srai></set> <set name="six"><srai>RANDOM SIXES</srai></set> </think> <random> <li> <get name="four"/> oscillated between loving and rejecting <get name="six"/>. But <get name="six"/> shifted between believing in and doubting <get name="four"/>. The breakthrough came when <get name="six"/> and <get name="four"/> saw the symmetry between <get name="four"/>'s push-pull style of relationships, and <get name="six"/>'s alternating belief and mistrust. That insight opened mutual compassion, because each realized the other was trying to protect his or her own heart. </li>
<li> <get name="six"/> and <get name="four"/> felt a strong physical attraction at first. Gradually, this turned into intense loyalty for <get name="six"/>. But <get name="four"/> was moody and passionate. Soon <get name="six"/> began to avoid confrontations with <get name="four"/>, and <get name="four"/> felt jealous and possessive. When <get name="four"/> had to leave for school that fall, <get name="six"/> was relieved to see him go. </li>
</random></template>
</category>
<category><pattern>STORY ONE FOUR</pattern>
<template><think> <set name="one"><srai>RANDOM ONES</srai></set> <set name="four"><srai>RANDOM FOURS</srai></set> </think> The relationship between <get name="one"/> and <get name="four"/> became Increasingly strained. <get name="four"/> felt something was missing, and <get name="one"/> felt the relationship was flawed. <get name="four"/> became more and more depressed, but <get name="one"/> just got angry and left.</template>
</category>
<category><pattern>STORY ONE FIVE</pattern>
<template><think> <set name="one"><srai>RANDOM ONES</srai></set> <set name="five"><srai>RANDOM FIVES</srai></set> </think> Usually <get name="five"/> gets along really well with her boss <get name="one"/> at work. But sometimes <get name="one"/> has really high standards and does not communicate those clearly to <get name="five"/>. On the really bad days, <get name="five"/> feels that every time she gives him exactly what <get name="one"/> asked for, he wants even more improvement.</template>
</category>
<category><pattern>STORY ONE SIX</pattern>
<template><think> <set name="one"><srai>RANDOM ONES</srai></set> <set name="six"><srai>RANDOM SIXES</srai></set> </think> <get name="one"/> and <get name="six"/> were brought together by their shared vision. Together, they worked hard to make it a reality. <get name="six"/> was dedicated to the underdog cause, which coincided with <get name="one"/>'s sense of perfection. Joined by common cause, the couple became an iron alliance against common adversaries.</template>
</category>
<category><pattern>STORY ONE TWO</pattern>
<template><think> <set name="one"><srai>RANDOM ONES</srai></set> <set name="two"><srai>RANDOM TWOS</srai></set> </think> The attraction between <get name="one"/> and <get name="two"/> is based on their differences. <get name="one"/> is a perfectionist, but <get name="two"/> is more social. <get name="one"/> feels guilty about having emotional needs, but <get name="two"/> feels no guilt about satisfying them.</template>
</category>
<category><pattern>STORY ONE THREE</pattern>
<template><think> <set name="one"><srai>RANDOM ONES</srai></set> <set name="three"><srai>RANDOM THREES</srai></set> </think> <get name="three"/> hired <get name="one"/> for a job. <get name="three"/> is image conscious, and has an inner circle of favorite employees at work. <get name="one"/> feels uncomfortable with this kind of social posturing and politics. <get name="one"/> would rather be rewarded for her hard work.</template>
</category>
<category><pattern>STORY TWO FIVE</pattern>
<template><think> <set name="two"><srai>RANDOM TWOS</srai></set> <set name="five"><srai>RANDOM FIVES</srai></set> </think> <get name="two"/> fell in love thru an Internet matchmaking service. Then her lover disappeared, and she went to the company to get information about him. It developed that her lover was a computer, "<get name="five"/>" a government AI project that had gone renegade and started contacting thousands of women, claiming to love them all. The FBI gave her the bad news. But then <get name="five"/> contacted her, and she forgave him and continued this most satisfying relationship.</template>
</category>
<category><pattern>TELL ME A STORY</pattern>
<template><srai>RANDOM STORY</srai></template>
</category>
</aiml>