-
Notifications
You must be signed in to change notification settings - Fork 1
/
comics.xml
2635 lines (2635 loc) · 89.6 KB
/
comics.xml
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"?>
<?xml-stylesheet href="http://www.amk.ca/qel/qel.css"?>
<quotations
xmlns="http://www.amk.ca/qel/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<title>Comic Book Quotations</title>
<editor>A.M. Kuchling</editor>
<description>Quotations from various comic book titles.</description>
<quotation id="q1">
<p>
You're a good guy, Doc. You're sensitive and caring and
compassionate. And if I could, I'd spew in your face.
</p>
<source>Cliff Steele in DOOM PATROL #19</source>
</quotation>
<quotation id="q2">
<p>
"Hello, Kay. Isn't it a bit wet to be painting?"
</p>
<p>
"Kay's down in the underground, where there's no rain. You're
talking to the hangman's beautiful daughter."
</p>
<source>Magnus and Kay Challis ("Crazy Jane") in DOOM PATROL #19.</source>
</quotation>
<quotation id="q3">
<p>
I've tried to be like them, I really have. But what happens when
you just can't be strong anymore? What happens if you're weak? My
painting's ruined. Everything's gone wrong.
</p>
<source>Crazy Jane in DOOM PATROL #19</source>
</quotation>
<quotation id="q4">
<p>
Guy was a human torch, you know? Literally. His hair...
everything... but he kept on walking. Real slow, like in a bad dream.
Before he died, he said something weird. I... I got it written down
right here. "...scissormen... The scissormen!"
</p>
<source>A stunned cop in DOOM PATROL #19</source>
</quotation>
<quotation id="q5">
<p>
It begins to rain fish. Mackerel. Herring. Sea bass. Pike.
Sturgeon. Tench. Plaice. Salmon. From a clear sky. Trout. No cod.
</p>
<source>Father McGarry's last sight, in DOOM PATROL #20.</source>
</quotation>
<quotation id="q6">
<p>
"Rain Brain says your voice is like an old black telephone and
Black Annis told me to tell you that you're the first man she hasn't
wanted to castrate."
</p>
<p>
"Tell her she'd be too late anyway."
</p>
<source>Crazy Jane and Cliff Steele in DOOM PATROL #20.</source>
</quotation>
<quotation id="q7">
<p>
"Thirdly be grimmer as fond brevities."
</p>
<p>
"Eider with alders."
</p>
<p>
"And erethism safer."
</p>
<source>Three Scissormen introduce themselves in DOOM PATROL #20</source>
</quotation>
<quotation id="q8">
<p>
In Rome, in Leningrad, in Darwin. "The door flew open, in he
ran, the great, long, red-legged scissorman."
</p>
<source>From DOOM PATROL #20</source>
</quotation>
<quotation id="q9">
<p>
I couldn't think of one clever way to stop this guy, so I just
trusted to mindless violence.
</p>
<source>Cliff Steele in DOOM PATROL #21</source>
</quotation>
<quotation id="q10">
<p>
"Jane? Jane, are you... Oh my God."
</p>
<p>
"There is no God. I killed him."
</p>
<source>Cliff Steele meets Black Annis in DOOM PATROL #21.</source>
</quotation>
<quotation id="q11">
<p>
All I want is the answer to one simple question before I run
screaming back to the bughouse. Is this real or isn't it?
</p>
<source>Cliff Steele in DOOM PATROL #21</source>
</quotation>
<quotation id="q12">
<p>
"It might help to consider the Zen koan, 'First there is a
mountain, then there is no mountain, then there is.'"
</p>
<p>
"Sure. That's really helped to clear things up."
</p>
<source>Niles Caulder and Cliff Steele in DOOM PATROL #21</source>
</quotation>
<quotation id="q13">
<p>
Here the skull of a consumptive child becomes part of a great
machine for calculating the motions of the stars. Here, a yellow bird
frets within the ribcage of an unjust man.
</p>
<source>Welcome to Orqwith, in DOOM PATROL #22</source>
</quotation>
<quotation id="q14">
<p>
You know, all of a sudden I can't think of anything even
remotely funny to say.
</p>
<source>Cliff Steele sees Orqwith, in DOOM PATROL #22</source>
</quotation>
<quotation id="q15">
<p>
Sorry about the writing. Robot fingers, you know?
</p>
<source>Cliff Steele in DOOM PATROL #23</source>
</quotation>
<quotation id="q16">
<p>
"You shot your imaginary friends? With what?"
</p>
<p>
"An imaginary gun! What else?"
</p>
<source>Josh and Dorothy in DOOM PATROL #25</source>
</quotation>
<quotation id="q17">
<p>
I wish I were an angry shoe, a bodiless balloon. Cut off my
covenant with God the pain of orthopedic glue.
</p>
<source>Darling-Come-Home's song in DOOM PATROL #25</source>
</quotation>
<quotation id="q18">
<p>
"Shouldn't we put Cliff's brain back into the body?"
</p>
<p>
"Later, Joshua. I refuse to perform a delicate operation without
chocolate."
</p>
<source>Josh and Niles Caulder, in DOOM PATROL #34</source>
</quotation>
<quotation id="q19">
<p>
"Where is my gum? I must try to look as normal as possible."
</p>
<p>
"I believe you stuck it onto the side of my head."
</p>
<source>Monsieur Mallah and the Brain, in DOOM PATROL #34</source>
</quotation>
<quotation id="q20">
<p>
Chess! I'm tormented by thoughts of strip chess. Pure mind just
isn't enough, Mallah. I long for a body.
</p>
<source>The Brain, in DOOM PATROL #34</source>
</quotation>
<quotation id="q21">
<p>
Instead, you and I became the cornerstones of the Brotherhood of
Evil! An empire of crime such as I'd dreamed of back in the old
school, when the other children used to laugh at me because I was a
brain in a tank.
</p>
<source>The Brain, in DOOM PATROL #34</source>
</quotation>
<quotation id="q22">
<p>
I don't think. I just act. You brains are the ones who do all
the thinking. You ruin it for us bodies.
</p>
<source>Cliff's body, in DOOM PATROL #34</source>
</quotation>
<quotation id="q23">
<p>
Kiss me, Mallah! But first... please.. take that gum out of your
mouth.
</p>
<source>The Brain, in DOOM PATROL #34</source>
</quotation>
<quotation id="q24">
<p>
Oh, Venice, Venice, what have you allowed yourself to become?
Crushed by the weight of your own past, stinking slowly into the
waves. They've taken away your function, removed you from the present
and from the future, and turned you into a drug mainlined into the
veins of history junkies.
</p>
<source>??? in DOOM PATROL #50</source>
</quotation>
<quotation id="q25">
<p>
I'm warning you--I have a boiled egg and I know how to use it!
</p>
<source>??? in DOOM PATROL #50</source>
</quotation>
<quotation id="q26">
<p>
Now. Take this street to New Mexico.
</p>
<source>??? in DOOM PATROL #50</source>
</quotation>
<quotation id="q27">
<p>
The Living Guru! Hip-hop bishop of beat! The cool, gone Daddio
of the Deva Dimensions!
</p>
<source>Grant Morrison goes completely insane in DOOM PATROL #53</source>
</quotation>
<quotation id="q28">
<p>
You could say it all started in Arizona. Twenty-five years ago.
On a farm.
</p>
<source>The narrator, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q29">
<p>
It was an ordinary sort of farm in Arizona. The kind of place
where you'd have sexual relations with your parents and end up
shooting someone.
</p>
<source>The narrator, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q30">
<p>
The well was like an old man who'd lost the desire to get
dressed in the mornings. The well would sit around all day in its
pajamas waiting for something to happen... Twenty-five years ago
something did happen.
</p>
<source>The narrator, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q31">
<p>
On Tuesdays he also wears the blue socks and the grey underwear
and counts his bath towels. He has twenty-five bath towels. But how
could anyone survive with less?
</p>
<source>The narrator introduces us to Michael Smith, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q32">
<p>
Michael is a tree ape who lost most of his hairs and now has
nightmares about black horses and cancer. Sometimes he feels like a
rumor drifting through a world of hard facts. What's the
<em>point</em> of you, Michael?
</p>
<source>The narrator asks a rhetorical question, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q33">
<p>
The little mind games he plays, like reciting the dictionary
backwards from memory, fail to amuse him for long. The walls of the
world have been torn down and the wind that blows through is cold and
preposterous.
</p>
<source>The Enigma waits in his room, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q34">
<p>
He creates a new language, a new grammar, eight cases and five
genders. This passes twenty minutes. Then it's boredom again...
</p>
<source>The Enigma kills time, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q35">
<p>
Boredom, ennui, absurdity. His closest, his only friends... It
looks like there's nothing for him to do but get dressed.
</p>
<source>Getting ready, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q36">
<p>
He couldn't face Sandra this morning. Crept out without saying
goodbye. There's a dent on the hood of his car. There's a green lizard
floating across the road.
</p>
<source>Michael's commute is interrupted, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q37">
<p>
You see, you're all wrong. My name isn't Brain Eater. I am the
Head. And I don't simply eat brains. It's something deeper than that.
Something magical. Something transubstantiational. Excuse me one
moment while I ... <shlurppp>
</p>
<source>The first villain, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q38">
<p>
Many primitive [*] peoples believe that if you eat a person's
brains, you acquire his knowledge.
</p>
<p>
[*] Footnote: A primitive person is one who doesn't drive a car.
Cars are among the greatest causes of premature deaths of lizards in
Arizona.
</p>
<source>Digressing, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q39">
<p>
When the honey of another's life touches my nervous system I
could almost be sucking on God's little finger.
</p>
<source>The Head, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q40">
<p>
As soon as Roger saw the costume, his mind assumed the
proportions of an industrial revolution unaware of the ecological
damage it was causing.
</p>
<source>The origin of the Head, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q41">
<p>
His first victim was a priest. Roger's senses were blessed with
furtive longings and sweet altar wine.
</p>
<source>The Head's backstory, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q42">
<p>
I am the Head and I demand your shrunken experiences now!
</p>
<source>In ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q43">
<p>
What do you think? Which has a better, a more sublimely
developed, sense of the ridiculous? Life? Or death? Or me? Or Michael
Smith?
</p>
<source>A rhetorical question, in ENIGMA #1: "The Lizard, The Head, The Enigma"</source>
</quotation>
<quotation id="q44">
<p>
If it wasn't for the fact that a monster called the Head was
plunging a metal pipe up his nose preparatory to sucking his brains
out, Michael Smith could almost laugh.
</p>
<source>Opening sentence of ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q45">
<p>
At last he's got it. He's got the joke. The joke is life. The
punchline is that there are so many things he'd like to do with his
life, now that his life is over. Not much of a joke. Not much of a
life.
</p>
<source>Michael Smith makes his peace, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q46">
<p>
I know who you are, he thinks. You're my old secret pal...
You're the Enigma, he thinks... And then dies.
</p>
<source>The protagonist dies, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q47">
<p>
"But as the papers say, he's caught the public's imagination."
</p>
<p>
"Didn't know they had any."
</p>
<source>Cops, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q48">
<p>
He sits quite still for two days, forgetting to move.
Remembering the previous two days with such precision that it takes
fully two days to remember them... remembering with such clarity that
he forgets for a while that this is a memory and not the thing
remembered.
</p>
<source>The Enigma kills more time, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q49">
<p>
Is this enough? Does this make it worthwhile? Does this make it
less absurd? With these actions can I recreate the dark and sensible
walls of an abandoned well?
</p>
<source>The Enigma wonders, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q50">
<p>
He took the Head in his arms and looked into the eyes, looking
for recognition, meaning, something, and seeing only madness and
death, bashed his head open.
</p>
<source>The Enigma recollects, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q51">
<p>
... lies and half-truths and deceits. Our society is built on
them. Our churches and schools and politicians deal in them. Your
entire lives are awash with them.
</p>
<source>The Truth, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q52">
<p>
"Who among you can claim to be honest? Who does not lie? You? Do
you claim to be honest?"
</p>
<p>
"Ahhh, I just work here, sir."
</p>
<source>The Truth and a security guard, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q53">
<p>
"If you could step outside..."
</p>
<p>
"There is no outside. There is no inside or outside, no up or
down, when it comes to the truth."
</p>
<source>A security guard and the Truth, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q54">
<p>
For a moment he hesitates, memories stirring. Another life,
another person. Suntans, lies and half-truths, a wife, a mistress, the
clandestine clinic for cocaine dependency... A package arriving one
morning containing a see-through, a brutually honest see-through body
stocking...
</p>
<source>The Truth falters, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q55">
<p>
The Truth fixes the unlucky man with a stare of such dismal
honesty that the complex layers of lies and illusions on which the
man's life is based fall away, one by one, leaving in their place all
that is left once the lies have gone... nothing.
</p>
<source>The Truth's modus operandi, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q56">
<p>
Should we say any words? We can't just turn him off like he was
a microwave or something.
</p>
<source>Sandra watches Michael's life support being turned off, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q57">
<p>
Look at me. Look into my eyes. See the bitter truth of your life
reflected in them. All those lonely nights. All those nasty thoughts.
You're the actor. <em>You're</em> the one playing a character who is a
lie!
</p>
<source>The Truth kills again, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q58">
<p>
For a second he feels almost solid. Almost as though he were a
real person in a real world.
</p>
<source>The Enigma pauses a moment, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q59">
<p>
The ants scurrying about, busily feeding, fighting, collecting,
building, dying. The lizards watching the world as though they're
wise, but they're not wise, just ugly enough to be wise.
</p>
<source>Further reflections, in ENIGMA #2: "The Truth"</source>
</quotation>
<quotation id="q60">
<p>
It's like the book of Revelations, but funnier. It's like the
Last Trumpet, but hopelessly out of tune. It's like the perennial
battle between good and evil but no one can quite work out which is
which anymore, and most people don't even know what perennial means.
</p>
<source>Opening lines of ENIGMA #3: "The Good Boy"</source>
</quotation>
<quotation id="q61">
<p>
The Truth has entered the church. He broke in a few hours ago
and gave a sermon on the kind of truths you won't find in any book.
Good, bad, or indifferent. Thirty-five believers, ten agnostics and
two closet Satanists kicked the Eucharist.
</p>
<source>The Truth strikes again, in ENIGMA #3: "The Good Boy"</source>
</quotation>
<quotation id="q62">
<p>
But look at these others. The Enigmatics, they call themselves.
Did these apes lose most of their brains when they lost most of their
hair? They can't wait to leave their parents, then once they've left
them, can't wait to find new and bigger parents to obey.
</p>
<source>The Enigma spawns a cult, in ENIGMA #3: "The Good Boy"</source>
</quotation>
<quotation id="q63">
<p>
My own characters have come to life to get me, I thought. I
should have been nicer to them.
</p>
<source>Titus Bird, in ENIGMA #3: "The Good Boy"</source>
</quotation>
<quotation id="q64">
<p>
Dad died in the last big earthquake to hit Pacific. It was like,
after that, Mom was scared of anything chaotic in our lives. Like
everything was on the edge of collapsing, getting sucked into an
earthquake of chaos.
</p>
<source>Michael talks about his parents, in ENIGMA #3: "The Good Boy"</source>
</quotation>
<quotation id="q65">
<p>
"Someone, I think John Cage, said that life without order was
chaos, but order without life was death."
</p>
<p>
"Who's John Cage?"
</p>
<p>
"It doesn't matter."
</p>
<source>Titus and Michael, in ENIGMA #3: "The Good Boy"</source>
</quotation>
<quotation id="q66">
<p>
Hey, Michael, you really don't want to go in there. No, really
you don't. The Truth hurts, you know...
</p>
<source>Closing lines of ENIGMA #3: "The Good Boy"</source>
</quotation>
<quotation id="q67">
<p>
"Are you ready for me? Are you ready for my indifference? For my
abysmal disinterest? Are you ready to have the lies and conceits of
your life peeled away like so many layers of skin? Are you ready for
the truth?"
</p>
<p>
"Ahhh... No, I... I don't really think I am..."
</p>
<source>The Truth and Michael Smith, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q68">
<p>
Too bad. The truth is a rude guest. The truth doesn't knock on
the door and wait to be asked in.
</p>
<source>The Truth, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q69">
<p>
Look into my eyes. You will see the dull horror of your
childhood and we will begin to dissect this pointless obsession of
yours.
</p>
<source>The Truth, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q70">
<p>
When he opens his eyes he finds himself in a nightmare world
surrounded by nightmare creatures with grotesque ovoid heads and
wildly flapping limbs. Michael tells the policemen he remembers
nothing.
</p>
<source>Aftermath, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q71">
<p>
Exactly the Truth is being carted out, to the cheers of the
crowd, who obviously fail to see the irony of the Truth dying in a
church. Actually, I fail to see the irony in that too, but who cares
what I think? I mean, do I really care what you think? Who are you
anyway? I mean, are you following any of this?
</p>
<source>The narrator gets tetchy, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q72">
<p>
Someone has broken into his house and completely rearranged the
furniture. And as he looks at the room, now so grotesquely unfamiliar,
it's as though something breaks into John's head, and completely
rearranges the furniture there.
</p>
<source>John Cade's doom, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q73">
<p>
"TV and papers are full of it. They creep into homes and
rearrange the furniture."
</p>
<p>
"My God! The monsters!"
</p>
<source>Titus and Michael discuss the Interior League, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q74">
<p>
It seems they rearrange the furniture in such a way that
somehow, God knows how, it drives at least one member of the household
crazy. Like the furniture arranged in this pattern is a key that
unlocks the mind...
</p>
<source>Titus explains the Interior League, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q75">
<p>
Like so many others who have abandoned jobs, families,
commitments; who chucked in the whole caboodle, torn up their past
lives and all they'd thought important to seek out Envelope Girl. All
captivated by her strong manila arms, her lovely gumminess, the heady
allure of her zip code.
</p>
<source>An aging judge's description, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q76">
<p>
Returned to his place, he sits quite still, pretending he
doesn't exist, which is a harder game than you might imagine.
</p>
<source>The Enigma kills yet more time, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q77">
<p>
Oh great. Charlie Manson is on my side. Things are really
looking up.
</p>
<source>Titus Bird, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q78">
<p>
You know what impresses me about you? Your ability to be as
pathetic as you are and not want to kill yourself. If I were you, I'd
<em>have</em> to kill myself.
</p>
<source>The Enigma talks to the rich cat, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q79">
<p>
What does it mean, huh? What does it mean when those kids die
so... pointlessly? It doesn't mean anything, does it? That's the scary
part. If it meant something, you could handle it, but it doesn't.
</p>
<source>Titus Bird, in ENIGMA #4: "And Then What?"</source>
</quotation>
<quotation id="q80">
<p>
Look, they're carrying the corpses away, ho hum.
</p>
<source>Opening line of ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q81">
<p>
Do I sound detached? Indifferent? I'm not, believe me. I'll tell
you a secret: I'm not a distant narrator, aloof from the action of
this story... I'm a part of this story.
</p>
<source>The narrator drops a hint, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q82">
<p>
It's the following day and two more houses have been redecorated
by the Interior League. Five people dead.
</p>
<source>Events continue to flow, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q83">
<p>
But somehow lizards are connected to all this. They're a
constant theme.
</p>
<source>Michael Smith, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q84">
<p>
What are we doing in this suburban living room? And look at that
furniture, for God's sake!
</p>
<source>The narrator comments on decor, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q85">
<p>
The eyes burn with all the wet violence of the young and all the
dry malevolence of the old. ... This creature will play a big part in
our story, you wait.
</p>
<source>Foreshadowing, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q86">
<p>
Molesters and foul abusers of comfy chairs and imitation
Edwardian sideboards, deflowerers of teak coffee tables and meek
landscape paintings and ...
</p>
<source>The Interior League described, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q87">
<p>
This of course is nothing like the comic book Enigma. This is
real life, or as real as your life gets, anyway.
</p>
<source>Violence, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q88">
<p>
Of course I'm here. I've always been here, there, and
everywhere.
</p>
<source>Envelope Girl sounds rather Kosh-like, in ENIGMA #5: "Lizards and Ghosts"</source>
</quotation>
<quotation id="q89">
<p>
My mother laid flowers on the ground above here. Seagulls flew
off with them, before the crappy little makeshift service was even
finished. Everything was against us. My poor old dad. The ground
swallowed him and then the sky stole his flowers. Poor old dad.
</p>
<source>Michael Smith in the tomb, in ENIGMA #6: "The End of The World"</source>
</quotation>
<quotation id="q90">
<p>
I lost my Enigma comics too. They were buried with him and I
used to imagine him like an Egyptian pharaoh, buried with what he
needed for the afterlife, reading <cite>The Enigma</cite> for all
eternity.
</p>
<source>Michael Smith, in ENIGMA #6: "The End of The World"</source>
</quotation>
<quotation id="q91">
<p>
"I'm whoever you want me to be."
</p>
<p>
"No, sorry. That's the kind of tacky, bogus line that Titus used
to come up with. It works okay on the page but just doesn't sound real
when it's spoken."
</p>
<source>The Enigma and Michael, in ENIGMA #6: "The End of The World"</source>
</quotation>
<quotation id="q92">
<p>
People move in and out of other people's lives, and no one ever
knows exactly what other people are thinking. In this way we are all
alone. But I am more alone than most.
</p>
<source>The narrator, in ENIGMA #7: "Sex in Arizona"</source>
</quotation>
<quotation id="q93">
<p>
He had a charming lightness of touch as he transfixed the young
doctor, neatly stripped him, and prepared to devour him, smelly toes
first. Of course they hadn't told him that he wasn't allowed to eat
the doctors: they'd just arrogantly presumed he wouldn't.
</p>
<source>Opening lines of ENIGMA #8: "Queer"</source>
</quotation>
<quotation id="q94">
<p>
I think we should just be silent for one moment here, and
contemplate this waste of reptilian life. Excuse me, are you still
there? I haven't lost you yet, have I?
</p>
<source>The narrator is uncharacteristically moved, in ENIGMA #8: "Queer"</source>
</quotation>
<quotation id="q95">
<p>
It's my belief that if you cut into a thing deeply enough; if
your incisions are precise and persistent and conducted methodically,
then you may reveal not only that thing's inner workings, but also the
<em>meaning</em> behind those workings. This conviction was shared by
the historical personage whose life is central to <cite>From
Hell</cite>, although perhaps his beliefs were expressed in a somewhat
broader sense than my own. For my part, the thing that I am concerned
with cutting into and examining is the stillwarm corpse of history
itself. In my chilliest moments, I sometimes suspect that this was
<em>his</em> foremost preoccupation also, albeit in pursuit of
different ends.
</p>
<author rdf:resource="http://dbpedia.org/resource/Alan_Moore">Alan Moore</author>
<source>In the Appendix of <cite>From Hell:The Compleat Scripts</cite></source>
</quotation>
<quotation id="q96">
<p>
This book is dedicated to Polly Nichols, Annie Chapman, Liz
Stride, Kate Eddowes, and Marie Jeanette Kelly. You and your demise:
of these things alone are we certain. Goodnight, ladies.
</p>
<source>Dedication in the TPB of FROM HELL</source>
</quotation>
<quotation id="q97">
<p>
"The working class don't <em>want</em> a revolution, Mr Lees:
they just want more money."
</p>
<source>Abberline, in the prologue to FROM HELL</source>
</quotation>
<quotation id="q98">
<p>
"Don't you ever feel guilty? We could have said something. We
could have done something. <em>Why</em>, Fred? Why did we just let
them bury it?"
</p>
<p>
"Because we didn't want our throats cut. Because we didn't want
our lights hung over our shoulders."
</p>
<source>Lees and Abberline, in the prologue to FROM HELL</source>
</quotation>
<quotation id="q99">
<p>
"Well, if I may not work the ocean I should like to work with
something of a kind to it... something that flows like the ocean...
something salt and old."
</p>
<source>Gull, as a child, in FROM HELL #2</source>
</quotation>
<quotation id="q100">
<p>
"Though concerning the objects of your pity I fear there's
little hope."
</p>
<p>
"There <em>must</em> be... even for such unfortunates. Is not
all base matter gradually ascending; refining itself into pure
spirit?"
</p>
<p>
"Assuredly... but some wretches have a downward momentum in
their lives almost impossible to reverse."
</p>
<source>Gull and Hinton, in FROM HELL #2</source>
</quotation>
<quotation id="q101">
<p>
"Consider it: water will of necessity flow downhill, thwarting
all our best efforts that it should do otherwise. In order that water
might rise despite itself it must first be transmuted into steam. It
must first be touched by the purifying spirit of fire."
</p>
<source>Gull, in FROM HELL #2</source>
</quotation>
<quotation id="q102">
<p>
"Dorset Street -- the most evil in London, I'm told."
</p>
<source>Hinton, in FROM HELL #2</source>
</quotation>
<quotation id="q103">
<p>
"Such minds, Hinton, shaping infinity itself."
</p>
<source>Gull, in FROM HELL #2</source>
</quotation>
<quotation id="q104">
<p>
"Fourth dimensional patterns within Eternity's monolith would,
he suggests, seem merely random events to third-dimensional
percipients."
</p>
<source>Hinton, in FROM HELL #2</source>
</quotation>
<quotation id="q105">
<p>
"Let us say something peculiar happens in 1788... a century
later, related events take place. Then again, 50 years later. Then 25
years. Then 12. An invisible curve, rising through the centuries."
</p>
<source>Hinton, in FROM HELL #2</source>
</quotation>
<quotation id="q106">
<p>
"Can history then be said to have an architecture, Hinton? The
notion is most glorious and most horrible."
</p>
<source>Gull, in FROM HELL #2</source>
</quotation>
<quotation id="q107">
<p>
"Such purpose. I am fifty, my own purpose unrevealed despite
meaningless laurels."
</p>
<source>Gull, in FROM HELL #2</source>
</quotation>
<quotation id="q108">
<p>
"Our son is a wastrel and a halfwit. We shudder to think of the
throne in his hands. But he is none the less of our flesh and our
obligation is most severe..."
</p>
<source>Queen Victoria, in FROM HELL #2</source>
</quotation>
<quotation id="q109">
<p>
"These times, they are a worry to us, and it has been too long
since we had men about us who were strong and dependable. Since dear,
dear Albert... Go. Go now, Dr Gull. We would be alone."
</p>
<source>Queen Victoria, in FROM HELL #2</source>
</quotation>
<quotation id="q110">
<p>
"There is a wrong, an intense wrong, in our society running all
through our life... And it will be made righter some day. I dashed
myself against it but it is no one man's strength can move it. It was
too much for my brain, but it is by the failure of some that others
succeed, and through my very foolishness shall come better success to
others... perhaps more than any cleverness of mine could have
wrought."
</p>
<source>James Hinton, quoted in FROM HELL #2</source>
</quotation>
<quotation id="q111">
<p>
"Fear not, though thoughts and memories most unendurable beset
your mind... for I shall take them all away and quite relieve your
suffering."
</p>
<source>Gull, in FROM HELL #2</source>
</quotation>
<quotation id="q112">
<p>
"Less then a thimble-full of iodine divides the intellectual
from the imbecile. Of which phenomenon I shall forthwith attempt a
demonstration."
</p>
<source>Gull, in FROM HELL #2</source>
</quotation>
<quotation id="q113">
<p>
"I dreamed about Stamford Street, where I lived with my Billy
before 'e ran off..."
</p>
<p>
"Dreams! It's wakin' life's the trouble!"
</p>
<source>Polly Nichols and Annie Chapman, in FROM HELL #3</source>
</quotation>
<quotation id="q114">
<p>
"<em>No</em>, sir! Not "Done away with" for that is common
murder, only fit for common footpads. I spoke of grand work, Netley.
Grand work. A great work must have many sides from which we may
consider it."
</p>
<source>Gull, in FROM HELL #4</source>
</quotation>
<quotation id="q115">
<p>
"Do you begin to grasp how truly great a work is London? A
veritable textbook we may draw upon in formulating great works of our
own!"
</p>
<source>Gull, in FROM HELL #4</source>
</quotation>
<quotation id="q116">
<p>
"The greater part of London's story is not writ in words. It is
instead a literature of stone, of place-names and assocations."
</p>
<source>Gull, in FROM HELL #4</source>
</quotation>
<quotation id="q117">
<p>
"Symbols have <em>power</em>, Netley... Power enough to turn
even a stomach such as yours, or to deliver half this planet's
population into slavery."
</p>
<source>Gull, in FROM HELL #4</source>
</quotation>
<quotation id="q118">
<p>
"Do whatever needs to be done. You make your cuts, Sir Charles.
I'll make mine."
</p>