-
Notifications
You must be signed in to change notification settings - Fork 0
/
delme
2292 lines (2283 loc) · 79.7 KB
/
delme
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
http://marvel.com/universe3zx/index.php?title=Category:People&from=A
http://marvel.com/universe3zx/index.php?title=Category:People&from=B
http://marvel.com/universe3zx/index.php?title=Category:People&from=C
http://marvel.com/universe3zx/index.php?title=Category:People&from=D
http://marvel.com/universe3zx/index.php?title=Category:People&from=E
http://marvel.com/universe3zx/index.php?title=Category:People&from=F
http://marvel.com/universe3zx/index.php?title=Category:People&from=G
http://marvel.com/universe3zx/index.php?title=Category:People&from=H
http://marvel.com/universe3zx/index.php?title=Category:People&from=I
http://marvel.com/universe3zx/index.php?title=Category:People&from=J
http://marvel.com/universe3zx/index.php?title=Category:People&from=K
http://marvel.com/universe3zx/index.php?title=Category:People&from=L
http://marvel.com/universe3zx/index.php?title=Category:People&from=M
http://marvel.com/universe3zx/index.php?title=Category:People&from=N
http://marvel.com/universe3zx/index.php?title=Category:People&from=O
http://marvel.com/universe3zx/index.php?title=Category:People&from=P
http://marvel.com/universe3zx/index.php?title=Category:People&from=Q
http://marvel.com/universe3zx/index.php?title=Category:People&from=R
http://marvel.com/universe3zx/index.php?title=Category:People&from=S
http://marvel.com/universe3zx/index.php?title=Category:People&from=T
http://marvel.com/universe3zx/index.php?title=Category:People&from=U
http://marvel.com/universe3zx/index.php?title=Category:People&from=V
http://marvel.com/universe3zx/index.php?title=Category:People&from=W
http://marvel.com/universe3zx/index.php?title=Category:People&from=X
http://marvel.com/universe3zx/index.php?title=Category:People&from=Y
http://marvel.com/universe3zx/index.php?title=Category:People&from=Z
DBG:: url = http://marvel.com/universe3zx/index.php?title=Category:People&from=A
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="IE=Edge" http-equiv="X-UA-Compatible"/>
<link href="https://plus.google.com/108523337373444601877/posts" rel="publisher"/>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
<meta content="text/css" http-equiv="Content-Style-Type"/>
<meta content="MediaWiki 1.15.1" name="generator"/>
<meta content="Category:People,Toc" name="keywords"/>
<link href="/universe3zx/extensions/CategoryTree/CategoryTree.css?5" rel="stylesheet" type="text/css"/>
<link href="/favicon.ico" rel="shortcut icon"/>
<link href="/universe3zx/opensearch_desc.php" rel="search" title="Marvel Universe Wiki (en)" type="application/opensearchdescription+xml"/>
<link href="/universe3zx/index.php?title=Special:RecentChanges&feed=rss" rel="alternate" title="Marvel Universe Wiki RSS Feed" type="application/rss+xml"/>
<link href="/universe3zx/index.php?title=Special:RecentChanges&feed=atom" rel="alternate" title="Marvel Universe Wiki Atom Feed" type="application/atom+xml"/>
<link href="http://marvel.com/universe/Category:People" rel="canonical"/>
<title>
Category:People - Marvel Universe Wiki: The definitive online source for Marvel super hero bios.
</title>
<link href="/universe3zx/skins/common/shared.css?207" media="screen" rel="stylesheet" type="text/css"/>
<link href="/universe3zx/skins/common/commonPrint.css?207" media="print" rel="stylesheet" type="text/css"/>
<link href="/universe3zx/skins/marvel/styles.css" rel="stylesheet" type="text/css"/>
<link href="/universe3zx/skins/marvel/screen.css" rel="stylesheet" type="text/css"/>
<link href="/universe3zx/skins/marvel/mu_wiki.css" rel="stylesheet" type="text/css"/>
<link href="/universe3zx/extensions/FlaggedRevs/flaggedrevs.css?56" rel="stylesheet" type="text/css"/>
<link href="/universe3zx/index.php?title=-&action=raw&maxage=18000&gen=css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
/*<![CDATA[*/
var skin = "marvel";
var stylepath = "/universe3zx/skins";
var wgArticlePath = "/universe/$1";
var wgScriptPath = "/universe3zx";
var wgScript = "/universe3zx/index.php";
var wgVariantArticlePath = false;
var wgActionPaths = {};
var wgServer = "http://marvel.com";
var wgCanonicalNamespace = "Category";
var wgCanonicalSpecialPageName = false;
var wgNamespaceNumber = 14;
var wgPageName = "Category:People";
var wgTitle = "People";
var wgAction = "view";
var wgArticleId = "1296";
var wgIsArticle = true;
var wgUserName = null;
var wgUserGroups = null;
var wgUserLanguage = "en";
var wgContentLanguage = "en";
var wgBreakFrames = false;
var wgCurRevisionId = 67671;
var wgVersion = "1.15.1";
var wgEnableAPI = true;
var wgEnableWriteAPI = true;
var wgSeparatorTransformTable = ["", ""];
var wgDigitTransformTable = ["", ""];
var wgMWSuggestTemplate = "http://marvel.com/universe3zx/api.php?action=opensearch\x26search={searchTerms}\x26namespace={namespaces}\x26suggest";
var wgDBname = "universe3";
var wgSearchNamespaces = [0];
var wgMWSuggestMessages = ["with suggestions", "no suggestions"];
var wgRestrictionEdit = [];
var wgRestrictionMove = [];
/*]]>*/
</script>
<script src="/universe3zx/index.php?title=-&action=raw&gen=js&useskin=marvel" type="text/javascript">
</script>
<!--
<script type="" src="/universe3zx/skins/common/wikibits.js" ></script>
<script type="" src="/i/2007/js/utility.js" ></script>
-->
<script src="/universe3zx/extensions/CategoryTree/CategoryTree.js?5" type="text/javascript">
</script>
<script type="text/javascript">
var categoryTreeCollapseMsg = "collapse";
var categoryTreeExpandMsg = "expand";
var categoryTreeCollapseBulletMsg = "[\x3cb\x3e−\x3c/b\x3e]";
var categoryTreeExpandBulletMsg = "[\x3cb\x3e+\x3c/b\x3e]";
var categoryTreeLoadMsg = "load";
var categoryTreeLoadingMsg = "loading…";
var categoryTreeNothingFoundMsg = "nothing found";
var categoryTreeNoSubcategoriesMsg = "no subcategories";
var categoryTreeNoParentCategoriesMsg = "no parent categories";
var categoryTreeNoPagesMsg = "no pages or subcategories";
var categoryTreeErrorMsg = "Problem loading data.";
var categoryTreeRetryMsg = "Please wait a moment and try again.";
</script>
<script src="/universe3zx/skins/common/ajax.js?207" type="text/javascript">
</script>
<script src="/universe3zx/skins/common/mwsuggest.js?207" type="text/javascript">
</script>
<script src="/i/js/jquery.js?207" type="text/javascript">
</script>
<script src="/universe3zx/skins/common/wikibits.js?207" type="text/javascript">
</script>
<script src="/i/2007/js/utility.js?207" type="text/javascript">
</script>
<script type="text/javascript">
var wgFlaggedRevsParams = {"tags": {"accuracy": 2, "depth": 2, "readability": 2}};
var wgFlaggedRevsParams2 = {"tags": {"reliability": 3, "completeness": 2, "npov": 2, "presentation": 1}};
var wgStableRevisionId = 67671;
var wgAjaxFeedback = {"sendingMsg": "Submitting...", "sentMsg": "Thank you!"}
var wgAjaxReview = {"sendingMsg": "Submitting...", "sentMsg": "Review complete!", "actioncomplete": "Action complete"}
</script>
<script src="/universe3zx/extensions/FlaggedRevs/flaggedrevs.js?56" type="text/javascript">
</script>
<style type="text/css">
body, #masthead {
background:url('https://i.annihil.us/u/prod/marvel/i/mg/6/c0/515dd291b58f7.jpg') 50% 0px no-repeat #000000;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-273913-20']);
_gaq.push(['_trackPageLoadTime']);
_gaq.push(['_setCustomVar',1, "user segment", "nonmember", 2]);
_gaq.push(['_trackPageview','/mvl/universe/Category:People']);
_gaq.push(['_setDomainName', 'marvel.com']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- Marvel GTP Ad Tags Library start here -->
<script type="text/javascript">
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type="text/javascript">
(function() {
var useSSL = 'https:' == document.location.protocol;
var src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})();
</script>
<script type="text/javascript">
if(document.location.protocol=='http:'){
var Tynt=Tynt||[];Tynt.push('bqEi3UnFmr4iATadbi-bnq');Tynt.i={"ap":"More on Marvel.com:"};
(function(){var s=document.createElement('script');s.async="async";s.type="text/javascript";s.src='http://tcr.tynt.com/ti.js';var h=document.getElementsByTagName('script')[0];h.parentNode.insertBefore(s,h);})();
}
</script>
</head>
<body class="index-index" id="index-index" onload="findLinks('myLink');">
<div id="page_frame" style="overflow:hidden;">
<div id="skin_promo_ad_gpt">
</div>
<div class="clear" id="header">
<div id="banner_promo">
<!-- Operative Tag starts here -->
<!-- GPT Starts Here -->
<div id="banner_promo_ad_gpt">
<script type="text/javascript">
googletag.defineSlot('/10281695/Marvel.com/universe', [[970, 66],[728, 90]], 'banner_promo_ad_gpt')
.addService(googletag.pubads());
googletag.enableServices();
googletag.display('banner_promo_ad_gpt');
</script>
</div>
</div>
<span id="top_anchor">
</span>
<!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<div id="navigation-div">
<!--[if IE 8]><link rel="stylesheet" type="text/css" media="all" href="https://i.annihil.us/u/prod/marvel/s/css/6c0bc9ca71904105d0112a9a9153c7e2.css" /><![endif]-->
<link href="https://i.annihil.us/u/prod/marvel/s/css/053fc33225ac1eb9470d3d34808095b7.css" media="all" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
(function() {
function async_load(){
files = new Array();
files.push({type : "text/javascript",
src : "https://i.annihil.us/u/prod/marvel/s/js/967a689ed12bc004e7c242d9e0a0b3be.js"});
for(i in files) {
s = document.createElement('script');
s.type = files[i].type;
s.async = files[i].async;
s.src = files[i].src;
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
}
if (window.attachEvent) {
window.attachEvent('onload', async_load);
} else {
window.addEventListener('load', async_load, false);
}
})();
</script>
<script type="text/javascript">
var URLs = {
'login' : 'https://marvel.com/signin?referer=http%3A%2F%2Fmarvel.com%2Ftopnav%3Fhome_url%3Dhttp%3A%2F%2Fmarvel.com%2Funiverse3zx%2Findex.php%3Ftitle%3DCategory%3APeople%26from%3DA%26current_section%3Dcharacters%26version%3D5%26small_nav%3Dfalse%26wiki_jainrain%3Dtrue',
'signup' : 'https://marvel.com/register?referer=http%3A%2F%2Fmarvel.com%2Ftopnav%3Fhome_url%3Dhttp%3A%2F%2Fmarvel.com%2Funiverse3zx%2Findex.php%3Ftitle%3DCategory%3APeople%26from%3DA%26current_section%3Dcharacters%26version%3D5%26small_nav%3Dfalse%26wiki_jainrain%3Dtrue',
'rpxWidgetUrl' : 'http://widget-cdn.rpxnow.com/js/lib/forge.marvel.com/widget.js',
'loyaltyUrl' : 'https://loyalty-api.marvel.com',
'rpxWidgetUrlSecure' : 'https://rpxnow.com/js/lib/forge.marvel.com/widget.js'
};
</script>
<div class="top-nav-dynamic-js-info" data-url="//marvel.com/topnavjs">
</div>
<!--[if IE 8]> <div class="lt-IE9 marvelWidget_Container notresponsive"> <![endif]-->
<!--[if gt IE 8]><!-->
<div class="marvelWidget_Container responsive">
<!--<![endif]-->
<div class="not_inner" id="marvel_topnav_wrapper">
<!-- header -->
<div class="not_inner clearfix" id="marvel_topnav">
<h1>
<a class="icon-marvel-logo" href="//marvel.com/">
</a>
</h1>
<div id="marvel_topnav_mobile">
<span class="icon-menu _topnavicon" id="icon-menu">
</span>
<span class="icon-account _topnavicon ">
</span>
</div>
<div id="marvel_topnav_ul_wrapper">
<div id="marvel_prenav">
<div id="marvel_social">
<ul class="left_menu">
<li>
<a href="https://www.facebook.com/Marvel/" id="facebook_top" target="_blank">
<span class="spriteSocial facebookSocial">
</span>
</a>
</li>
<li>
<a href="https://twitter.com/Marvel" id="twitter_top" target="_blank">
<span class="spriteSocial twitterSocial">
</span>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCvC4D8onUfXzvjTOM-dBfEA" id="youtube_top" target="_blank">
<span class="spriteSocial youtubeSocial">
</span>
</a>
</li>
</ul>
</div>
<div class="right_menu">
<div class="right_menu">
<div class="topnavRightMenu top-nav-module-container" data-params='{ "selector": "topnavRightMenu", "url": "//marvel.com/secure/widget/widgets/rightmenu/topnavRightMenu?exclude_login=0&jsonp_request=1" }'>
</div>
</div>
</div>
</div>
<div class="nav5" id="marvel_horiz_rule">
</div>
<div>
<ul id="marvel_topnav_ul">
<li class="home">
<a class="current" href="//marvel.com/">
Home
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="//marvel.com/news?nav=1">
Latest News
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="//marvel.com/comics">
Comics
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="//marvel.com/movies">
Movies
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="//marvel.com/videos">
Videos
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="//marvel.com/games">
Games
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="//marvel.com/tv">
TV
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="//marvel.com/characters">
Characters
</a>
</li>
<li class="top-nav-menu-item">
<a class="" href="https://shop.marvel.com">
Shop
</a>
</li>
<li class="sub_mobile">
<a href="/insider">
<span class="spriteInsiderLogo">
</span>
Join Now!
</a>
</li>
<li class="sub_mobile">
<a class="mobileLink" href="http://marvel.com/creditcard?siteCode=MCLAMONB&cmpid=MCLAMONB&Dcom=MOLNAV" id="mastercard_top_mobile">
Marvel MasterCard
<span class="regSymbol">
®
</span>
</a>
</li>
<li class="sub_mobile">
<div class="social_mobile">
<div>
<!--<span>Follow us:</span>-->
<div class="icon">
<a href="https://www.facebook.com/Marvel/" id="facebook_top_mobile">
<span class="spriteSocial facebookSocial">
</span>
</a>
</div>
<div class="icon">
<a href="https://twitter.com/Marvel" id="twitter_top_mobile">
<span class="spriteSocial twitterSocial">
</span>
</a>
</div>
<div class="icon">
<a href="https://www.youtube.com/channel/UCvC4D8onUfXzvjTOM-dBfEA" id="youtube_top_mobile">
<span class="spriteSocial youtubeSocial">
</span>
</a>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<div>
<ul class="right">
<div class="dropdown signin">
<div class="topnavUserWidget top-nav-module-container" data-params='{ "selector": "topnavUserWidget", "url": "//marvel.com/secure/topnavuserinsiderwidget?home_url=http%3A%2F%2Fmarvel.com%2Funiverse3zx%2Findex.php%3Ftitle%3DCategory%3APeople&use_absolute=0&jsonp_request=1" }'>
</div>
</div>
</ul>
</div>
</div>
</div>
<!-- header -->
<div class="clearfix">
</div>
</div>
</div>
</div>
<div class="section_heading" id="sh_community" style="border:none; padding-bottom:15px;">
<div class="advertisement module">
</div>
</div>
<div id="univ_top_wrap">
<div id="univ_top" style="z-index:10000;">
</div>
<div id="personaltools_wrap">
<div id="personaltools">
<span class="toolbar_item">
Wiki User Tools:
</span>
<span class="toolbar_item">
<a class="redlink" href="/universe/Help:Contents">
Help
</a>
</span>
</div>
<br clear="all"/>
<span class="toolbar_item" id="pt-edit">
<a href="/universe3zx/index.php?title=Category:People&action=edit">
View Page Source
</a>
</span>
</div>
<br clear="all"/>
</div>
<div id="page_content">
<div id="title-header">
<span class="mu_tax">
<a class="mu_tax" href="/universe/">
Marvel Universe
</a>
<h1 class="taxon-h1" style="border:0;color:#505050;">
Category:People
</h1>
</span>
</div>
<div class=" left-rail " style="margin-left:0">
<div class="module-body clear">
<div class="headline-block wiki_char">
<h1 class="taxon-h1" style="border:0;">
Category:People
</h1>
<div id="articletools">
<a href="javascript:showhide('editpanel')">
<img alt="show/hide article tools" border="0" height="40" src="/i/images/btn/wiki_tools_btn.jpg" title="show/hide article tools" width="40"/>
<span class="page_tools">
page
<br/>
tools
</span>
</a>
<div id="editpanel" style="display: none;">
<div class="articletool-td" id="ca-nstab-category" onclick="javascript:window.location='/universe/Category:People'">
<a class="minor_link" href="/universe/Category:People">
Category
</a>
</div>
<div class="articletool-td" id="ca-talk" onclick="javascript:window.location='/universe/Category_talk:People'">
<a class="minor_link" href="/universe/Category_talk:People">
Talk About Page
</a>
</div>
<div class="articletool-td" id="ca-viewsource" onclick="javascript:window.location='/universe3zx/index.php?title=Category:People&action=edit'">
<a class="minor_link" href="/universe3zx/index.php?title=Category:People&action=edit">
View Page Source
</a>
</div>
<div class="articletool-td" id="ca-history" onclick="javascript:window.location='/universe3zx/index.php?title=Category:People&action=history'">
<a class="minor_link" href="/universe3zx/index.php?title=Category:People&action=history">
Page History
</a>
</div>
<div class="module-shadow" style="padding:0px;border:none;background-color:#AFAFAF;">
</div>
</div>
</div>
</div>
<div class="social_container">
<div id="social_sharing">
<div class="social_site" id="facebook">
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1">
</script>
<div id="fb-root" style="display:inline">
</div>
<fb:like font="" href="" layout="button_count" send="false" show_faces="false" width="90">
</fb:like>
</div>
<div class="social_site" id="twitter">
<a class="twitter-share-button" data-count="horizontal" href="http://twitter.com/share" width="90">
Tweet
</a>
<script src="http://platform.twitter.com/widgets.js" type="text/javascript">
</script>
</div>
<div class="social_site" id="google">
<script src="https://apis.google.com/js/plusone.js" type="text/javascript">
</script>
<g:plusone size="medium">
</g:plusone>
</div>
</div>
</div>
<div class="get_updates">
[
<a href="/universe/Special:CategorySubscriptions/Category:People" title="Special:CategorySubscriptions/Category:People">
Get e-mail updates about this category
</a>
]
</div>
<div class="category_txt">
The individual characters that inhabit the Marvel Universe!
</div>
<br clear="all"/>
<table border="0" class="toc plainlinks">
<tr>
<th>
<a href="/universe/MediaWiki:Toc" title="MediaWiki:Toc">
MediaWiki:Toc
</a>
:
</th>
<td>
<a class="external text" href="http://marvel.com/universe/Category:People" rel="nofollow" target="_blank" title="http://marvel.com/universe/Category:People">
Top
</a>
–
<p>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=0" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=0">
0–9
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=A" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=A">
A
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=B" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=B">
B
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=C" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=C">
C
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=D" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=D">
D
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=E" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=E">
E
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=F" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=F">
F
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=G" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=G">
G
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=H" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=H">
H
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=I" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=I">
I
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=J" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=J">
J
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=K" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=K">
K
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=L" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=L">
L
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=M" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=M">
M
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=N" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=N">
N
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=O" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=O">
O
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=P" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=P">
P
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=Q" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=Q">
Q
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=R" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=R">
R
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=S" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=S">
S
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=T" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=T">
T
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=U" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=U">
U
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=V" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=V">
V
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=W" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=W">
W
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=X" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=X">
X
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=Y" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=Y">
Y
</a>
<a class="external text" href="http://marvel.com/universe3zx/index.php?title=Category:People&from=Z" rel="nofollow" target="_blank" title="http://marvel.com/universe3zx/index.php?title=Category:People&from=Z">
Z
</a>
</p>
</td>
</tr>
</table>
<!--
NewPP limit report
Preprocessor node count: 124/1000000
Post-expand include size: 6305/2097152 bytes
Template argument size: 59/2097152 bytes
Expensive parser function count: 0/100
-->
<!-- Saved in stable version parser cache with key universe3:stable-pcache:idhash:1296-0!1!0!!en!2relaunch-&&@*!&@@!edit=0 and timestamp 20161109222026 -->
<br style="clear:both;"/>
<div class="paginate">
(
<a href="/universe3zx/index.php?title=Category:People&until=A" title="Category:People">
previous 200
</a>
) (
<a href="/universe3zx/index.php?title=Category:People&from=Basilisk+%28Proto-Husk%29" title="Category:People">
next 200
</a>
)
</div>
<div id="mw-subcategories">
<h2>
Subcategories
</h2>
<p>
This category has the following subcategory, out of 23 total.
</p>
<h3>
A
</h3>
<ul>
<li>
<div class="CategoryTreeSection">
<div class="CategoryTreeItem">
<span class="CategoryTreeBullet">
<span class="CategoryTreeToggle" onclick="if (this.href) this.href='javascript:void(0)'; categoryTreeExpandNode('Avengers',{"mode":10,"hideprefix":20,"showcount":true,"namespaces":false},this);" style="display: none;" title="expand">
[
<b>
+
</b>
]
</span>
</span>
<a class="CategoryTreeLabel CategoryTreeLabelNs14 CategoryTreeLabelCategory" href="/universe/Category:Avengers">
Avengers
</a>
<span title="contains 0 subcategories, 368 pages, and 0 files">
(368)
</span>
</div>
<div class="CategoryTreeChildren" style="display:none">
</div>
</div>
</li>
</ul>
</div>
<div id="mw-pages">
<h2>
Pages in category "People"
</h2>
<p>
The following 199 pages are in this category, out of 3,314 total.
</p>
<table cellspacing="10" width="100%">
<tr valign="top">
<td>
<h3>
A
</h3>
<ul>
<li>
<a href="/universe/A_(Lady_Killers)" title="A (Lady Killers)">
A (Lady Killers)
</a>
</li>
<li>
<a href="/universe/Aardwolf" title="Aardwolf">
Aardwolf
</a>
</li>
<li>
<a href="/universe/Aaronson,_Jesse_(Age_of_Apocalypse)" title="Aaronson, Jesse (Age of Apocalypse)">
Aaronson, Jesse (Age of Apocalypse)
</a>
</li>
<li>
<a href="/universe/Aaronson,_Terry_(Age_of_Apocalypse)" title="Aaronson, Terry (Age of Apocalypse)">
Aaronson, Terry (Age of Apocalypse)
</a>
</li>
<li>
<a href="/universe/Aberration" title="Aberration">
Aberration
</a>
</li>
<li>
<a href="/universe/Abomination" title="Abomination">
Abomination
</a>
</li>
<li>
<a href="/universe/Abraxas" title="Abraxas">
Abraxas
</a>
</li>
<li>
<a href="/universe/Absorbing_Man" title="Absorbing Man">
Absorbing Man
</a>
</li>
<li>
<a href="/universe/Abyss" title="Abyss">
Abyss
</a>
</li>
<li>
<a href="/universe/Abyss_(Age_of_Apocalypse)" title="Abyss (Age of Apocalypse)">
Abyss (Age of Apocalypse)
</a>
</li>
<li>
<a href="/universe/Abyss_(alien)" title="Abyss (alien)">
Abyss (alien)
</a>
</li>
<li>
<a href="/universe/Ace_(G.R.A.M.P.A.)" title="Ace (G.R.A.M.P.A.)">
Ace (G.R.A.M.P.A.)
</a>
</li>
<li>
<a href="/universe/Achebe" title="Achebe">
Achebe
</a>
</li>
<li>
<a href="/universe/Achelous" title="Achelous">
Achelous
</a>
</li>
<li>
<a href="/universe/Acrobat_(Carl_Zante)" title="Acrobat (Carl Zante)">
Acrobat (Carl Zante)
</a>
</li>
<li>
<a href="/universe/Acroyear" title="Acroyear">
Acroyear
</a>
</li>
<li>
<a href="/universe/Adam_II_(Earth-8206)" title="Adam II (Earth-8206)">
Adam II (Earth-8206)
</a>
</li>
<li>
<a href="/universe/Adaptoid_(New_Enforcers)" title="Adaptoid (New Enforcers)">
Adaptoid (New Enforcers)
</a>
</li>
<li>
<a href="/universe/Adaptoid_(Spawn)" title="Adaptoid (Spawn)">
Adaptoid (Spawn)
</a>
</li>
<li>
<a href="/universe/Administrator" title="Administrator">
Administrator
</a>
</li>
<li>
<a href="/universe/Adversary" title="Adversary">
Adversary
</a>
</li>
<li>
<a href="/universe/Aegis_(Lady_of_All_Sorrows)" title="Aegis (Lady of All Sorrows)">
Aegis (Lady of All Sorrows)
</a>
</li>
<li>
<a href="/universe/Aegis_(Trey_Rollins)" title="Aegis (Trey Rollins)">
Aegis (Trey Rollins)
</a>
</li>
<li>
<a href="/universe/Aero" title="Aero">
Aero
</a>
</li>
<li>
<a href="/universe/Aged_Genghis" title="Aged Genghis">
Aged Genghis
</a>
</li>
<li>
<a href="/universe/Agent_(Rick_Mason)" title="Agent (Rick Mason)">
Agent (Rick Mason)
</a>
</li>
<li>
<a href="/universe/Agent_X_(Nijo)" title="Agent X (Nijo)">
Agent X (Nijo)
</a>
</li>
<li>
<a href="/universe/Agent_Zero" title="Agent Zero">
Agent Zero
</a>
</li>
<li>
<a href="/universe/Aggamon" title="Aggamon">
Aggamon
</a>
</li>
<li>
<a href="/universe/Aginar" title="Aginar">
Aginar
</a>
</li>
<li>
<a href="/universe/Aguila_(Alejandro_Montoya)" title="Aguila (Alejandro Montoya)">
Aguila (Alejandro Montoya)
</a>
</li>
<li>
<a href="/universe/Aguila_(Paco_Montoya)" title="Aguila (Paco Montoya)">
Aguila (Paco Montoya)
</a>
</li>
<li>
<a href="/universe/Ahab" title="Ahab">
Ahab
</a>
</li>
<li>
<a href="/universe/Ai_Apaec" title="Ai Apaec">
Ai Apaec
</a>
</li>
<li>
<a href="/universe/Air-Walker_(Gabriel_Lan)" title="Air-Walker (Gabriel Lan)">
Air-Walker (Gabriel Lan)
</a>
</li>
<li>
<a href="/universe/Airstrike_(Dmitri_Bukharin)" title="Airstrike (Dmitri Bukharin)">
Airstrike (Dmitri Bukharin)
</a>
</li>
<li>
<a href="/universe/Ajak" title="Ajak">
Ajak
</a>
</li>
<li>
<a href="/universe/Ajax_(Francis)" title="Ajax (Francis)">
Ajax (Francis)
</a>
</li>
<li>
<a href="/universe/Ajaxis" title="Ajaxis">
Ajaxis
</a>
</li>
<li>
<a href="/universe/Akhenaten" title="Akhenaten">
Akhenaten
</a>
</li>
<li>
<a href="/universe/Aladi_Ko_Eke" title="Aladi Ko Eke">
Aladi Ko Eke
</a>
</li>
<li>
<a href="/universe/Albert_%26_Elsie-Dee" title="Albert & Elsie-Dee">
Albert & Elsie-Dee
</a>
</li>
<li>
<a href="/universe/Albino_(Augusta_Seger)" title="Albino (Augusta Seger)">
Albino (Augusta Seger)
</a>
</li>
<li>
<a href="/universe/Albion_(Peter_Hunter)" title="Albion (Peter Hunter)">
Albion (Peter Hunter)
</a>
</li>
<li>
<a href="/universe/Alchemy" title="Alchemy">
Alchemy
</a>
</li>
<li>
<a href="/universe/Alcmena" title="Alcmena">
Alcmena
</a>
</li>
<li>
<a href="/universe/Aldebron" title="Aldebron">
Aldebron
</a>
</li>
<li>
<a href="/universe/Alflyse" title="Alflyse">
Alflyse
</a>
</li>
<li>
<a href="/universe/Alhazred,_Abdul" title="Alhazred, Abdul">
Alhazred, Abdul
</a>
</li>
<li>
<a href="/universe/Alice_(unrevealed)" title="Alice (unrevealed)">
Alice (unrevealed)
</a>
</li>
<li>
<a href="/universe/Alkhema" title="Alkhema">
Alkhema
</a>
</li>
<li>
<a href="/universe/All-American" title="All-American">
All-American
</a>
</li>
<li>
<a href="/universe/Allatou" title="Allatou">
Allatou
</a>
</li>
<li>
<a href="/universe/Alpha_the_Ultimate_Mutant" title="Alpha the Ultimate Mutant">
Alpha the Ultimate Mutant
</a>
</li>
<li>
<a href="/universe/Alter_Ego" title="Alter Ego">
Alter Ego
</a>
</li>
<li>
<a href="/universe/Amalgam" title="Amalgam">
Amalgam
</a>
</li>
<li>
<a href="/universe/Amanda_(Mutant)" title="Amanda (Mutant)">
Amanda (Mutant)
</a>
</li>
<li>
<a href="/universe/Amergin" title="Amergin">
Amergin
</a>
</li>
<li>
<a href="/universe/American_Eagle_(Jason_Strongbow)" title="American Eagle (Jason Strongbow)">
American Eagle (Jason Strongbow)
</a>
</li>
<li>
<a href="/universe/Americop" title="Americop">
Americop
</a>
</li>
<li>
<a href="/universe/Amiko" title="Amiko">
Amiko
</a>
</li>
<li>
<a href="/universe/Aminedi" title="Aminedi">
Aminedi
</a>
</li>
<li>
<a href="/universe/Amphibian_(Earth-712)" title="Amphibian (Earth-712)">
Amphibian (Earth-712)
</a>
</li>
<li>
<a href="/universe/Amphibion" title="Amphibion">
Amphibion
</a>
</li>
<li>