Merge lp://staging/~stuart-lumgair/dosage/stuarts_plugins into lp://staging/~dosage-dev/dosage/old

Proposed by Stuart I. Lumgair
Status: Merged
Approved by: Tristan Seligmann
Approved revision: not available
Merged at revision: not available
Proposed branch: lp://staging/~stuart-lumgair/dosage/stuarts_plugins
Merge into: lp://staging/~dosage-dev/dosage/old
Diff against target: 2510 lines (+2319/-98)
8 files modified
dosage/plugins/a.py (+9/-0)
dosage/plugins/c.py (+15/-0)
dosage/plugins/d.py (+1/-96)
dosage/plugins/drunkduck.py (+2272/-0)
dosage/plugins/k.py (+7/-0)
dosage/plugins/m.py (+7/-0)
dosage/plugins/p.py (+7/-0)
dosage/plugins/z.py (+1/-2)
To merge this branch: bzr merge lp://staging/~stuart-lumgair/dosage/stuarts_plugins
Reviewer Review Type Date Requested Status
Tristan Seligmann Approve
Review via email: mp+17508@code.staging.launchpad.net
To post a comment you must log in.
Revision history for this message
Stuart I. Lumgair (stuart-lumgair) wrote :

adds fully tested drunkduck.py and a few individual scrapers

Revision history for this message
Tristan Seligmann (mithrandi) wrote :

There are a bunch of pyflakes warnings in this branch (although actually the ones in dosage/plugins/z.py are my fault). Could you fix these?

dosage/plugins/d.py:3: 'queryNamer' imported but unused
dosage/plugins/drunkduck.py:4: 'getQueryParams' imported but unused
dosage/plugins/z.py:1: 'urllib' imported but unused
dosage/plugins/z.py:4: 'indirectStarter' imported but unused
tools/comicgenesis_base_list_scraper.0.0.13.py:153: local variable 'templst' is assigned to but never used
tools/dd_base_tester.0.0.1.py:5: 'urllib' imported but unused
tools/dd_base_tester.0.0.1.py:6: 'string' imported but unused
tools/drunkduck_base_list_scraper.0.0.2.py:6: 'string' imported but unused
tools/drunkduck_base_list_scraper.0.0.2.py:87: undefined name 'pages'
tools/drunkduck_base_list_scraper.0.0.2.py:89: undefined name 'pages'
tools/drunkduck_base_list_scraper.0.0.3.py:6: 'string' imported but unused
tools/drunkduck_base_list_scraper.0.0.3.py:106: undefined name 'pages'
tools/drunkduck_base_list_scraper.0.0.3.py:108: undefined name 'pages'
tools/remove_comments.py:7: 'os' imported but unused
tools/remove_comments.py:8: 'sys' imported but unused
tools/remove_comments.py:9: 'string' imported but unused
tools/remove_comments.py:16: undefined name 'true'

They're mostly unused imports or variables, but it looks like there may be some buggy code as well (see all the "undefined name" warnings).

Other than that, this looks great!

review: Needs Fixing
Revision history for this message
Stuart I. Lumgair (stuart-lumgair) wrote :

> There are a bunch of pyflakes warnings in this branch (although actually the
> ones in dosage/plugins/z.py are my fault). Could you fix these?

 fixes made in 619, my branch

Revision history for this message
Tristan Seligmann (mithrandi) :
review: Approve
609. By Tristan Seligmann

Merge lp:~stuart-lumgair/dosage/stuarts_plugins.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'dosage/plugins/a.py'
--- dosage/plugins/a.py 2010-01-15 06:17:39 +0000
+++ dosage/plugins/a.py 2010-01-17 19:41:09 +0000
@@ -77,6 +77,15 @@
7777
7878
7979
80class Alice(BasicScraper):
81 latestUrl = 'http://alice.alicecomics.com/'
82 imageUrl = 'http://alice.alicecomics.com/%s'
83 imageSearch = compile(r'(/comics/.+?)"')
84 prevSearch = compile(r' .+"?com(/.+?)" rel="prev')
85 help = 'Index format: non'
86
87
88
80class AlienLovesPredator(BasicScraper):89class AlienLovesPredator(BasicScraper):
81 imageUrl = 'http://alienlovespredator.com/%s'90 imageUrl = 'http://alienlovespredator.com/%s'
82 imageSearch = compile(r'<img src="(.+?)"[^>]+>(<center>\n|\n|</center>\n)<div style="height: 2px;">&nbsp;</div>', MULTILINE)91 imageSearch = compile(r'<img src="(.+?)"[^>]+>(<center>\n|\n|</center>\n)<div style="height: 2px;">&nbsp;</div>', MULTILINE)
8392
=== modified file 'dosage/plugins/c.py'
--- dosage/plugins/c.py 2010-01-15 05:16:07 +0000
+++ dosage/plugins/c.py 2010-01-17 19:41:09 +0000
@@ -85,6 +85,15 @@
8585
8686
8787
88class CigarroAndCerveja(BasicScraper):
89 latestUrl = 'http://www.cigarro.ca/'
90 imageUrl = 'http://www.cigarro.ca/?p=%s'
91 imageSearch = compile(r"(/comics/.+?)'")
92 prevSearch = compile(r'(/\?p=.+?)">&laq')
93 help = 'Index format: non'
94
95
96
88class CombustibleOrange(BasicScraper):97class CombustibleOrange(BasicScraper):
89 latestUrl = 'http://www.combustibleorange.com/'98 latestUrl = 'http://www.combustibleorange.com/'
90 imageUrl = 'http://www.combustibleorange.com/index.php?current=%s'99 imageUrl = 'http://www.combustibleorange.com/index.php?current=%s'
@@ -163,6 +172,12 @@
163 name = 'CtrlAltDel/Sillies'172 name = 'CtrlAltDel/Sillies'
164 latestUrl = 'http://www.cad-comic.com/sillies/'173 latestUrl = 'http://www.cad-comic.com/sillies/'
165174
175class Curvy(BasicScraper):
176 latestUrl = 'http://www.c.urvy.org/'
177 imageUrl = 'http://www.c.urvy.org/?date=%s'
178 imageSearch = compile(r'(/c/.+?)"')
179 prevSearch = compile(r'(/\?date=.+?)">&lt;&lt; Previous page')
180 help = 'Index format: yyyymmdd'
166181
167182
168def cloneManga(name, shortName, lastStrip=None):183def cloneManga(name, shortName, lastStrip=None):
169184
=== modified file 'dosage/plugins/d.py'
--- dosage/plugins/d.py 2010-01-15 06:17:39 +0000
+++ dosage/plugins/d.py 2010-01-17 19:41:09 +0000
@@ -1,6 +1,6 @@
1from re import compile, IGNORECASE, MULTILINE1from re import compile, IGNORECASE, MULTILINE
22
3from dosage.helpers import BasicScraper, bounceStarter, queryNamer, indirectStarter3from dosage.helpers import BasicScraper, bounceStarter, indirectStarter
4from dosage.util import getQueryParams4from dosage.util import getQueryParams
55
66
@@ -131,101 +131,6 @@
131 return getQueryParams(imageUrl)['save-as'][0].rsplit('.', 1)[0]131 return getQueryParams(imageUrl)['save-as'][0].rsplit('.', 1)[0]
132132
133133
134def drunkDuck(shortName):
135 linkSearch = r"<a href='(/[^/]*/index\.php\?p=\d+)' title='The %s page!'>"
136 return BasicScraper.make(
137 name='DrunkDuck/' + shortName,
138 imageUrl='index.php?p=%s' % (shortName,),
139 imageSearch=compile(r"<img src='(http://[a-z0-9]*.drunkduck.com/[^/]*/pages/[^'/]+)'>", IGNORECASE),
140 prevSearch=compile(linkSearch % ('previous',), IGNORECASE),
141 help='Index format: n (unpadded)',
142 namer=queryNamer('p', usePageUrl=True),
143 starter=bounceStarter('http://www.drunkduck.com/%s/' % (shortName,), compile(linkSearch % ('next',), IGNORECASE)))
144
145duckComics = [
146 '00_Wings',
147 '20_Galaxies',
148 '3rd_Party_Fantasy',
149 'AACMAW',
150 'ABNORMAL',
151 'Al_De_Baran',
152 'Alpha_Glitch',
153 'Anti_Glory',
154 'Assassin_Assassin',
155 'Beyond_Help',
156 'Blood_of_the_Dragon',
157 'Bowsers_Plan_B',
158 'bread',
159 'Brutus',
160 'CCC_Presents',
161 'ChaoScape',
162 'Charby_the_Vampirate',
163 'College_Zoo',
164 'Consoles',
165 'Crazy_Duck',
166 'Culture_Shock',
167 'Dogs_Eye_View',
168 'Dribble_For_Kids',
169 'Elijah_and_Azuu',
170 'Elijah_and_Azuu_Classic',
171 'fallaparts_parts',
172 'Frightmoore_University',
173 'Fusion',
174 'I_Cant_Draw',
175 'Inner_Demons',
176 'Insomnia',
177 'Jet_and_Joe',
178 'Kingdom_Hearts_Chain_Of_Oddness',
179 'Kitschcore_Presents',
180 'Kong_Comic',
181 'Krud_E_Komix_Inc',
182 'Laugh_It_Off',
183 'Life_and_Death',
184 'Lifes_A_Riot',
185 'Locoma',
186 'Lo_Rez',
187 'Luciefer',
188 'Mad_World',
189 'Mahrs_Miscellaneous_Mishaps',
190 'MegaMan_Theater',
191 'Megaman__the_comic',
192 'Mental_For_Rental',
193 'MIKYAGU',
194 'Mixed_Bag_Comics',
195 'Mooks',
196 'Nightmistress',
197 'NPC',
198 'Pinky_TA',
199 'Psychic_Headache',
200 'Puppetry',
201 'Random_Thoughts',
202 'Rogue_Agent_Axl',
203 'schlock_horror',
204 'Screwball_Islands',
205 'Shiny_Things',
206 'Slither_and_Friends',
207 'SNAKES_ON_A_PLANE_THE_COMIC',
208 'So_Fantastic_Pork_Show_9oCLOCK',
209 'Songs_of_An_Angel',
210 'Starving_Artists',
211 'The_Gods_of_ArrKelaan',
212 'The_Roach_Ranch',
213 'The_Whovian_Observer',
214 'This_Side_Up',
215 'Tony_The_Hedgehog',
216 'Too_Far',
217 'trythesoup',
218 'Vampire_Phantasm',
219 'Villainy_Minor',
220 'WeirdStar',
221 'Wintergreen',
222 'World_Domination',
223 ]
224
225for shortName in duckComics:
226 globals()[shortName] = drunkDuck(shortName)
227
228
229134
230class DorkTower(BasicScraper):135class DorkTower(BasicScraper):
231 latestUrl = 'http://www.dorktower.com/'136 latestUrl = 'http://www.dorktower.com/'
232137
=== added file 'dosage/plugins/drunkduck.py'
--- dosage/plugins/drunkduck.py 1970-01-01 00:00:00 +0000
+++ dosage/plugins/drunkduck.py 2010-01-17 19:41:09 +0000
@@ -0,0 +1,2272 @@
1from re import compile, IGNORECASE
2
3from dosage.helpers import BasicScraper, bounceStarter, queryNamer
4
5
6def drunkDuck(shortName):
7 linkSearch = r"<a href='(/[^/]*/index\.php\?p=\d+)' title='The %s page!'>"
8 return BasicScraper.make(
9 name='DrunkDuck/' + shortName,
10 imageUrl='index.php?p=%s' % (shortName,),
11 imageSearch=compile(r"<img src='(http://[a-z0-9]*.drunkduck.com/[^/]*/pages/[^'/]+)'>", IGNORECASE),
12 prevSearch=compile(linkSearch % ('previous',), IGNORECASE),
13 help='Index format: n (unpadded)',
14 namer=queryNamer('p', usePageUrl=True),
15 starter=bounceStarter('http://www.drunkduck.com/%s/' % (shortName,), compile(linkSearch % ('next',), IGNORECASE)))
16
17duckComics = [
18 '0_Opposites_attract_0',
19 '0_eight',
20 '101_Ways_to_Drive_a_Maren_Insane',
21 '12_Men_Died_Making_This_Strip',
22 '1337_Ninjas',
23 '16_and_Up',
24 '20_Galaxies',
25 '25_Years',
26 '2G_Pokemon',
27 '2Masters',
28 '2Masters_Prelouges',
29 '2_Bitter_4_Words',
30 '2nd_Shift',
31 '2s_a_company',
32 '3D_Glasses',
33 '3RD_EARTH_issue_2',
34 '3_guardian_Goddess',
35 '3_stoires',
36 '3rd_Party_Fantasy',
37 '4_Humor',
38 '8Bit_Adventure',
39 'AACMAW',
40 'AB_the_virus',
41 'AComicMadeOutOfBoredom',
42 'AD_1997',
43 'AFG_Part_1',
44 'AFG_Part_2',
45 'AGENCY',
46 'AHAB',
47 'AKA_Limzee',
48 'AN2090',
49 'ANGELOU_____Las_aventuras_de_Nikole',
50 'ANIME_WARS',
51 'ARCTIC_BLAST',
52 'AUTO_ROBO',
53 'AWES0ME',
54 'AWESOME_HIGH_FIVE_EDITION',
55 'A_Dim_View',
56 'A_Disease_Called_Puberty',
57 'A_Dynasty_of_Random_Megaman',
58 'A_Faulty_Future',
59 'A_Knights_Tale',
60 'A_Little_Piece_of_Insanity',
61 'A_Loonatics_Tale',
62 'A_Note_On_My_Life',
63 'A_Place_called_Random',
64 'A_Roll_of_the_Dice',
65 'A_Shaggy_Dog_Story',
66 'A_Spot_of_Sunshine',
67 'A_Tale_of_Two_Sprites',
68 'A_Veteran_Lounge_Tale',
69 'A_Way_to_the_Stars',
70 'A_collection_of_Gothic_Literature',
71 'Abram_goes_to_hell',
72 'According_To_Plan',
73 'Achievement_Wh0rz',
74 'Acrobat',
75 'Acting_Out',
76 'Adam_and_Sei',
77 'Advanced_Placement',
78 'Adventures_Guild',
79 'Adventures_of_Jon_and_Andrew',
80 'Adventures_of_Tails_and_Klonoa',
81 'After_Lily',
82 'Age_of_Ends',
83 'Ageless_Legend',
84 'Air_Raid_Robertson',
85 'Akashik',
86 'Akatoshi',
87 'Akniatt',
88 'Al_De_Baran',
89 'Al_and_Scout',
90 'Alecto_Songbook',
91 'Aleion',
92 'Alenas_Tank_Patrol',
93 'Alexander_and_Lucas',
94 'Alien_Circus',
95 'Alien_Concepts',
96 'Alone',
97 'Also_Bagels',
98 'Altimatium',
99 'Am_I_Still_Here',
100 'Ambrosia_Syndrome',
101 'Amya',
102 'Anathema',
103 'Anatta',
104 'And_Then_There_Was_Fred',
105 'Androgynous',
106 'Angel_Ninja_vs_Devil_Ninja',
107 'Angelfish',
108 'Angelic_Tourniquet',
109 'Angelos',
110 'Angels',
111 'Angels_Apology',
112 'Angels_Dont_Cry',
113 'Angels_of_Shadows',
114 'Animania',
115 'Animania_Shadows_of_Time',
116 'Anime_Remix',
117 'Animosity_Sonata',
118 'Another_Articifial_Time',
119 'Another_Beginning',
120 'Another_Sonic_Comic',
121 'Another_Stickman_Comic',
122 'Another_Story',
123 'Another_Unidentified_Comic',
124 'Answers',
125 'Antcomics',
126 'Antcomics_Fan_Art',
127 'Anthem',
128 'Anti_Christ_Daiji',
129 'Anubis_Dreams',
130 'Anwar_And_Chad_Show',
131 'Anyone_but_Virginia',
132 'Anything_About_Nothing',
133 'Anything_Goes',
134 'ApAp',
135 'Apartment_408_Full_Size',
136 'Applied_Living',
137 'Ar_Oh_Ef_El',
138 'Arachnid_Goddess',
139 'Ardra',
140 'Arghh_What_a_life',
141 'Arrowflight_Chronicles',
142 'Art_School_Sub_Rosa',
143 'Art_School_Sub_Rosa_Fanart_Contest',
144 'Art_and_sketches',
145 'Arthur_King',
146 'Artificial_Blood',
147 'Artwork____The_Mirror_of_Life',
148 'As_the_Galaxy_Turns',
149 'Ask_a_Stupid_Question',
150 'Assassin_Assassin',
151 'Assorted_moments',
152 'Asteroid_of_Doom',
153 'Asylum_Story',
154 'At_The_Library',
155 'Atavism',
156 'Atlantis_Rising',
157 'Atta_boy',
158 'Attach_This',
159 'Avast_Ye',
160 'Avian_insanity',
161 'Aw_Nuts_2',
162 'Awakenings_Online',
163 'BANG_Reku_and_Kiyoshis_Spiritual_Detective_Agency',
164 'BERZERK_issue_2',
165 'BFF',
166 'BIOLOGICAL_INDESTRUCTIBLE_TACTICAL_COMBAT_HYBRID_SQUAD',
167 'BIONICLE_Reworded',
168 'BIONICLE_Zeroes',
169 'BK_Shadow_Nemesis',
170 'BLADE_OF_THE_FREAK',
171 'BLANK_LIFE_insert_player_rokulily',
172 'BLOOP',
173 'BVC_Scrap_Book',
174 'Bacon_Strips',
175 'Bad_Coffee',
176 'Bad_Grafiks',
177 'Bad_Guy_High',
178 'Bad_Taste',
179 'Bad_Troll_Comic',
180 'Badly_Drawn_Penguins',
181 'Badly_Drawn_Webcomic',
182 'Bally_Who',
183 'Banango',
184 'Bar_d',
185 'Barely_Listening',
186 'Baroque_Viceroyalty',
187 'Battle_Dawn_Comics',
188 'Be_Faithful',
189 'Bear_Versus_Zombies',
190 'Bear_and_The_Boy',
191 'Bearly_Abel',
192 'BeastWARs_lost_memories',
193 'Beautiful_Disaster',
194 'Beautiful_Skies',
195 'Beauty_Into_Beast',
196 'Beauty_and_Horror',
197 'Because_I_Can',
198 'Because_of_Ivan',
199 'Because_of_You',
200 'Been_Better',
201 'Beer_Noodles',
202 'Beneficially_challenged',
203 'Berserk_Final',
204 'Beta',
205 'Better_Luck_Next_Time',
206 'Betting_On_Love',
207 'Between_Failures',
208 'Between_Worlds',
209 'Beware_of_Walking_Mushrooms',
210 'Beyond_Fiction',
211 'BffSatan',
212 'Bico_s_Place',
213 'Biff',
214 'Bilaran_Wars',
215 'Bill_and_Po',
216 'Binding_Shadows',
217 'Bipolar_Is_A_Laughing_Matter',
218 'Birth_Of_Genesis',
219 'BitchSnake',
220 'Bitter_Sweet_Melancholy',
221 'Black_Hole_Dawn',
222 'Blackaby',
223 'Blade_of_Toshubi',
224 'Blazes_Rumble',
225 'Bleach_Asylum_Behind_Closed_Eyes',
226 'Bleach_Asylum_Yonkoma',
227 'Blood_Bound',
228 'Blood_Groove',
229 'Blood_Martian_Flowers',
230 'Blood_Nation',
231 'Blood_Reign_and_Devil_Jack',
232 'Blood_sign',
233 'Bloodlust_Eternal_Conflict',
234 'BluDoo',
235 'Blue0',
236 'Blue_Ninja_and_Red_Pirate',
237 'Blue_Strawberry',
238 'Bob_and_Pete',
239 'Bob_the_Alien',
240 'Bobby_Monos_Crappy_Comics',
241 'Bobby_the_fetus',
242 'BombSquad',
243 'Bomb_Shrapnel',
244 'Bombshell',
245 'Bonds_That_Break',
246 'Boner_And_Punkin',
247 'Boo',
248 'Boogey_Dancing',
249 'Book_of_Desolation',
250 'Bored_as_Hell',
251 'Bored_by_the_Bus_Stop',
252 'Boredom_Blabber_Mania',
253 'Boredom_Comics',
254 'Bots',
255 'Bottle_Cap',
256 'Bowser_wars',
257 'Bowsers_Plan_B',
258 'Boxdog',
259 'Brain_Dump',
260 'Brain_Pork',
261 'Brainfuzz',
262 'Brathalla',
263 'Breaking_the_Ice',
264 'Bright_Earth',
265 'Brinkerhoff',
266 'Broken_Reploid',
267 'Broken_Things',
268 'Broken_Wings',
269 'Brutus',
270 'Brymstone',
271 'Bulletproof',
272 'Bunny_Comic',
273 'But_Not_Really',
274 'Butte',
275 'Button_Bashers',
276 'CATS_AND_ICECREAM',
277 'CCC_Presents',
278 'CIM_1_Final',
279 'CLM_Training_Academy',
280 'COCA',
281 'CODIGO_SAGRADO__based_on_M_R_Hagen_Vampire_The_Masquerade',
282 'CONtrail_Residuals',
283 'CQB_Epics',
284 'CROSS_WORLDS_NEXXUS',
285 'CRY_The_Story_of_the_the_lost_Humanity',
286 'CS_Battlegrounds',
287 'CYPICO',
288 'Caggage',
289 'Caissa_hates_me',
290 'Canadian_Gamers',
291 'Cancerous_AIDS',
292 'Captain_Communism',
293 'Carnies',
294 'Carrot_and_Roper',
295 'Cartoon_Egoist',
296 'Case_1313666xBlind_an_Blue',
297 'Cashcow',
298 'Casmajor_Druids',
299 'Catboy_at_th_Con',
300 'Caution_May_Contain_Nuts',
301 'Caves_and_Critters',
302 'Cecil_Dragon_Slayer',
303 'Celebrity_Stalker',
304 'Cerintha',
305 'Certified_Monster',
306 'Chad_the_Fat_Kid',
307 'Chain_of_Stuff',
308 'Chains',
309 'Chalkdust',
310 'Changing_Worlds',
311 'Chaos_Punks',
312 'Chaos_Reigns',
313 'Chaos_Sonic',
314 'CharCole',
315 'Character_Cave',
316 'Charby_the_Vampirate',
317 'Cherry_Knot',
318 'Children_of_the_Night',
319 'Choking_Dolphins',
320 'Chooken',
321 'Chris_And_Vernbugg',
322 'Christian_Humber_Reloaded',
323 'Chronicles_of_Calays',
324 'Chronicles_of_Gathion',
325 'Chronicles_of_Trent',
326 'Chrono_Chaos',
327 'Chu_and_Kenny',
328 'Circle_Arcadia',
329 'City_of_Lost_Souls',
330 'City_of_Weirdos',
331 'Civil_Servitude',
332 'Clandestine_Rhapsody',
333 'ClashDown',
334 'Clipped_Together',
335 'Clique_Me',
336 'Clock_drawings',
337 'Cloud_Eagle',
338 'Cloudy_in_Rainbow_Town',
339 'Coalition_of_the_Reluctant',
340 'Cockroach_Theater',
341 'Code_Twilight',
342 'Coffee_Boy',
343 'Coffee_Time',
344 'Cold_Pizza',
345 'Coloured_Stuff',
346 'Columbian_Messianic_Society',
347 'Comic_Book_Whore',
348 'Comic_Pie',
349 'Comic_Tutorials',
350 'Comics_I_Made_While_Blindfolded',
351 'Coming_Soon',
352 'Commedia_dellArte',
353 'Commedia_dellArte_2',
354 'Common_Symptoms',
355 'Complex_Love',
356 'Conduit_Flux',
357 'Coney_island_Disco_Palace',
358 'Confetti_Surprise_Volume_One',
359 'Consumed',
360 'Contemporary_Eclipse',
361 'Convenient_Hell_A_DDCW_Event',
362 'Conventional_Wisdom',
363 'Cooks_Assistant',
364 'CorruptHardware',
365 'Counterfeit',
366 'Coveinant_Journey',
367 'Cowboys_and_Aliens_II',
368 'Crab_Bucket',
369 'Crack_Bird_and_Company',
370 'Crackwalker',
371 'Cramberries',
372 'Crash_Redux',
373 'Creepy_Carly',
374 'Creepy_Girl_and_Her_Zombie_Dog',
375 'Crimson_Dark',
376 'Crimson_Veil',
377 'Crisscross',
378 'Crossbones',
379 'Crossover',
380 'Crossover_High',
381 'Crossover_Street',
382 'Crossoverlord',
383 'Crossoville',
384 'Crow',
385 'Crowhaven',
386 'Cru_The_DwarF',
387 'Cryptic_Allusions',
388 'Cubicles',
389 'Culture_Shock',
390 'Curtis_Lawsons_Grindhouse',
391 'Cwens_Quest',
392 'CyBoar',
393 'Cyberspace',
394 'Cynical_Optimism',
395 'DANGERMOTH',
396 'DARK_RISING',
397 'DHF_Jam',
398 'DIAMOND_English_version',
399 'DIS',
400 'DRAKKAR',
401 'DTF_6',
402 'D_Contract',
403 'D_R_I_G_S',
404 'D_U_S_K',
405 'DaKirbinator',
406 'Da_gratest_avenshure_ov_all_time',
407 'Daemonslayers_Heritage',
408 'Daidal_Tapestry',
409 'Daisy_and_Moira_and_Roy',
410 'DamCho_Jam_Comics',
411 'Danielle_Dark',
412 'Dannysawesomenessfavoriteme',
413 'Dansk_Folly',
414 'Daphne_Descends',
415 'Dare_To_Dream',
416 'Dark_Dark_Reign',
417 'Dark_Fenrir_X',
418 'Dark_Light',
419 'Dark_Worlds',
420 'Dark_Worlds_Trilogy',
421 'Darkness_Labors',
422 'Darkside',
423 'Darlos_Life_Journal',
424 'Daron',
425 'Dasien',
426 'DeAtH_pLaYs_ChEsS',
427 'DeadEnd',
428 'DeadFingers',
429 'Dead_Blood',
430 'Dead_Door_goldwater',
431 'Dead_End_Zone_Act_3',
432 'Dead_Men',
433 'Dead_Men_Tell_No_Tales',
434 'Dead_Strangers',
435 'Dead_Wrong',
436 'Deadend_comic',
437 'Deadhead_Zero',
438 'Deadpill',
439 'Dear_Diary',
440 'Death_By_Bunny',
441 'Death_By_Pixel',
442 'Death_by_Spikes',
443 'Death_work',
444 'Deathbeamz_Classic_Presents_Mercs',
445 'Deaths_Embrace',
446 'Decepticomics',
447 'DeepHurting',
448 'Defining_Logic',
449 'Defunct_Ialus',
450 'Demon_Blues',
451 'Demon_Eater',
452 'Demon_Hells_Touniment',
453 'Demon_Slayers',
454 'Demon_Slayers_en_Espanol',
455 'Demon_hunters',
456 'Demonology',
457 'Denizens__Attention',
458 'Der_Hundt',
459 'Despotize',
460 'Detective_Fork',
461 'Detective_Fork_2',
462 'Detulux_Incorporated',
463 'Deus_Ex_Machina',
464 'Develles',
465 'Deviant_Prophets',
466 'Devoid_of_Life',
467 'Devon_Legacy_Bios',
468 'Dice_n_Dice',
469 'Differences',
470 'DigiChronicles',
471 'DigiMini_Strips',
472 'DigiMon_Inc',
473 'Digimon_Chaos',
474 'Digimon_Legend',
475 'Digimon_V',
476 'Digital_Exodus',
477 'Digital_Heart',
478 'Digital_Screensaver',
479 'Din_Krakatau',
480 'Dirtheads',
481 'Dis_Reality',
482 'Discount_City',
483 'Distant_Embrace',
484 'Divine_Leap',
485 'Divine_Wrath',
486 'Divisible_by_Zero',
487 'Do_Not_Tell',
488 'Dog_the_Spot',
489 'Dogs_Eye_View',
490 'Dollar_Store_Caviar',
491 'Dollar_Store_Haircut',
492 'Dome_busta',
493 'Don_Josh',
494 'Doodlerama',
495 'Doodles_by_Slothed',
496 'Doodles_in_Time',
497 'Doodlez',
498 'Dot_TXT',
499 'Dot_TXT_Bold',
500 'Doug_N_Exile',
501 'Dougs_Hugs',
502 'Down_Home',
503 'Down_The_Stairs_in_Bethany_Hospital',
504 'Dragon_Ball_Z_Future_Perfect',
505 'Dragon_Ball_Z_Story',
506 'Dragon_City',
507 'Dragon_Kingdoms_Remake',
508 'Dragon_Maiden',
509 'Dragonballz__Smash_Tournament',
510 'Dragons_Quest___Crystals_of_the_Elder',
511 'Drawn_Blog',
512 'Drawn_to_you',
513 'Drawnsword',
514 'Dread_Sisterhood_of_Randomnessossity',
515 'Dreaded_Eater',
516 'Dream_Chronicles',
517 'Dream_of_the_Dragon',
518 'Dreams_in_Synergy',
519 'Dreams_of_Stone',
520 'Dregs_of_Society',
521 'Drifters_Tale',
522 'DrunkDuck_Poop',
523 'DrunkDuck_Speesheez',
524 'Drunk_Duck_Awards_2009',
525 'Drunk_Duck_Beauty_Contest',
526 'Drunk_Duck_Fan_Arts',
527 'Drunk_Satan_Robot',
528 'Due_East',
529 'Duh',
530 'Dungeons_and_Dumbasses',
531 'Dystopia_City',
532 'ELO',
533 'EPIC_Q',
534 'EXTRAordinary',
535 'Echzeon',
536 'Ed_Contradictory',
537 'Edepth_Angel',
538 'Edgey_Sketchy',
539 'Educen_Bacillus',
540 'Eff_Eff_Ex',
541 'Ekoa',
542 'El_Oh_El',
543 'Elemental_Eye_in_Schools',
544 'Elemental_Heir',
545 'Elemental_Revolution',
546 'Elementary_Aspects',
547 'Elementas_Protectors_of_the_Universe',
548 'Elements_Classic',
549 'Elspeth',
550 'Elven_Legend',
551 'Em_oi',
552 'Emerald_Winter',
553 'Endstone',
554 'Endstone_Attic',
555 'Engine',
556 'Enter_the_Duck_3',
557 'Enthalpy',
558 'Ephemeral',
559 'Epic_Brundala',
560 'Erehwon',
561 'Erth',
562 'Es_war_einmal_im_Mittelalter',
563 'Eskimo_Dave',
564 'Esoterica',
565 'Essay_Bee_Comics_Presents_Fusion',
566 'Essence_Babies',
567 'Essence_of_Time',
568 'Estatic_Gods',
569 'Eternal_Flame',
570 'Eternal_Illusion',
571 'Eternity_Comic',
572 'Eternity_Complex',
573 'Eternity_Dreams',
574 'EtheC',
575 'Ethereal',
576 'Ethos',
577 'Even_For_a_Lunch_Meat',
578 'Evergreen_Comics',
579 'Every_Day',
580 'Everybodys_Sonics_Friend',
581 'Everyday_Life_of_Sho_and_Kye',
582 'Everything_Else_and_More',
583 'Eves_Apple',
584 'Evil_Dawn',
585 'Evil_Empire_Moratorium',
586 'Evil_Snowman',
587 'Excitement_Abounding',
588 'Explo',
589 'Explorers_Of_the_Unknown',
590 'Explosion_Proof',
591 'Extra_stuff_of_the_other_comics',
592 'Eye_For_a_Lie',
593 'FACARA',
594 'FBOF',
595 'FIGHT',
596 'FIGHT_2',
597 'FRANKENSTEIN__Her_Majestys_Secret_Service',
598 'FUZZY_BUNNIES_FROM_HELL',
599 'Faelings',
600 'Faerie_Tale',
601 'FaeryTale_Grimm',
602 'Failtrain',
603 'Falling_Petals',
604 'False_Gods',
605 'Familiarize',
606 'FanDanGo',
607 'Fan_Dan_Go',
608 'Fan_art_of_the_Grin',
609 'Fandom',
610 'Fantasy_Characters_in_Storytown',
611 'Far_Out_There',
612 'Farmillia',
613 'Fascination',
614 'Fatal_Edge',
615 'Fate_Running_Wild',
616 'Fate_of_the_Blue_Star',
617 'Fated_Feather',
618 'Fates_Bitch',
619 'FauL3_TuR',
620 'Faults',
621 'Faust',
622 'Faux_Fur',
623 'FeedthyRobot',
624 'Feeling_Lonely',
625 'Feeling_Rushed',
626 'Feral_City',
627 'Fifth_Dimension',
628 'Fight_of_Metal_Gears',
629 'Fighter_House',
630 'Figment_of_Freux',
631 'Final_Fantasies_Revived',
632 'Final_Fantasy_28__Devils_Chase',
633 'Final_Fantasy_3_Point_1',
634 'Final_Fantasy_Massively_Multiplayer_Mayhem',
635 'Final_Fantasy_The_Legend_of_the_Dragon_Blade',
636 'Final_Fantasy_X_LOL_edition',
637 'Finding_Yourself',
638 'Finding_the_One',
639 'FireBorn',
640 'Fire_Fighter',
641 'Firefly_Cross',
642 'FirstImpressions',
643 'Fish_Stick',
644 'Five_Bullets_Til_Revenge',
645 'Five_Dollar_Fate',
646 'Fizz',
647 'Flaming_Fuzzy_Comics',
648 'Flaming_Fuzzy_People',
649 'Flammable_Pants',
650 'Flapjacks',
651 'Flick_and_Jube',
652 'Flying_Under_the_Influence',
653 'Fn_Lugans',
654 'Fools_and_such',
655 'For_Gods_Sake',
656 'Forever_September',
657 'Forsaken_Valor',
658 'Four_Bats',
659 'Four_Seasons',
660 'Four_Swords_Adventures',
661 'Foxy_Smoochies',
662 'Frame_by_Frame',
663 'Frank_Baron_NSO',
664 'Frank_and_Vinny',
665 'Freaky_World',
666 'Fred_Peterson_The_Mighty_Warlord_Book_1',
667 'FreeFall_Drift',
668 'Freeworld',
669 'Friction',
670 'Frogstaff_Comics',
671 'From_bad_to_worse',
672 'Front_Beat',
673 'Ftmark',
674 'Fuds',
675 'Full_Moon_Charm_Archives',
676 'Fullmoon_Stories',
677 'Function_Over_Fashion',
678 'Furry_Dav',
679 'Fuse',
680 'GATE',
681 'GBCink',
682 'GENOPSIDA_XERO',
683 'GIF_Showcase',
684 'GIRL_JESUS',
685 'GOLDEN',
686 'GOTT_GAUSS',
687 'Gaijin_Hi',
688 'Galactic_Divine',
689 'Galactic_Hub_Serreven',
690 'Galaxy_Wars',
691 'Gambit_as_Bishounen',
692 'GameFace_Live_The_Comic',
693 'Gamenoy_legends',
694 'Gamer_Man_Awsome',
695 'Gamers_Anonymous',
696 'Games_of_the_Mad',
697 'GansWorks',
698 'Gary_the_Alchemist',
699 'Gaylings',
700 'GeeKz',
701 'Gello_Apocalypse',
702 'Gelotology',
703 'Geminni',
704 'General_Madness',
705 'Genrica_Comica',
706 'George_the_Dragon',
707 'Getting_Into_The_MiddleGround',
708 'Ghost_Hunters_Online_Manga',
709 'Ghosting',
710 'Gift',
711 'Girl_Comic',
712 'Girl_Love',
713 'Girls_cant_be_funny',
714 'Give_Me_The_Sky',
715 'Glass_Hearts',
716 'Gloom',
717 'Gloop_and_Glop',
718 'Gnartoons',
719 'Gnoph',
720 'Go_A_Viking_The_Sword_of_Kings',
721 'Go_For_it',
722 'God_Complex',
723 'God_Damn_It',
724 'God_Shaped_Holes',
725 'God_of_Destruction',
726 'Godot',
727 'Golden_Edge_Mystery',
728 'Goldfish',
729 'Golem_x_Pineapple',
730 'Goo_From_Another_Dimension',
731 'Good_Guy',
732 'Good_Riddance',
733 'Good_Taste',
734 'Got_Moxie',
735 'Gotcha',
736 'Gothenreich_Chronicles',
737 'Graces_Wings',
738 'Graer_Babbin_Sheets',
739 'Grandpa_Sex_Machine',
740 'Graphical_Deviants',
741 'Graphite_Den',
742 'Greed_over_Need',
743 'GreenSoup',
744 'Greenstar_Comics',
745 'Grey_Legacy',
746 'Grim_Is_Our_Game',
747 'Grog',
748 'Grog_Extras',
749 'Grounded_Angel',
750 'Growth',
751 'Guardian_Chronicles',
752 'Guatama',
753 'Gundula_un_de_Stuventiger',
754 'Guys_n_Ghouls',
755 'HAPPYATTACK',
756 'HEY_MAC_ADVENTURES_OF_A_MIDDLE_AGED_COW',
757 'H_I_K_A_R_I',
758 'HaTs',
759 'Habit',
760 'Hainted_Holler',
761 'Hakkum_Town',
762 'Hall_of_Randomness_Revamped',
763 'Halo_Annihilation',
764 'Hanako_Story',
765 'Happyface_Comics',
766 'Harkovast',
767 'Hartists_Rants',
768 'Hatpire',
769 'Haunting_Nights_Christmas_Dreams_Issue_1',
770 'Hazy_Daisy_Jam',
771 'Hearts_and_Nails',
772 'Hedgehog_Champion',
773 'Hefs_adventures',
774 'Hellbent',
775 'Hercules',
776 'Hero_Force',
777 'Hero_SComic_PK5',
778 'Heroes_Adventures',
779 'Hexagon_Death_Squad',
780 'Hey_Professor',
781 'High_school',
782 'Hikari_The_Demon_Swordsman',
783 'Historiography',
784 'Hitorihitori',
785 'Holding_Chaos',
786 'Holiday_Village_Doodles',
787 'Hollow_High',
788 'Hollow_Secrets',
789 'Homestore',
790 'Hometown_Gangsters',
791 'Hopscotch',
792 'Horribleville',
793 'HotShot_Hunters',
794 'HotelSoul',
795 'House_of_the_Muses_3',
796 'House_of_the_Muses_4',
797 'House_of_the_Muses_5_House_of_Many_Kings',
798 'House_of_the_Muses_clips_previews_and_outtakes',
799 'How_Unfortunate',
800 'Human_Nature',
801 'Humorous_Stories_of_the_Explicit_Randomness',
802 'Hurrocks_Fardel',
803 'Hyacinth_Duck',
804 'IZ_Acceptance',
805 'I_Come_From_Mars',
806 'I_Fell_Down_The_Stairs',
807 'I_Hate_my_Life_Comics',
808 'I_Heart_Sushi',
809 'I_Love_You',
810 'I_Was_Kidnapped_By_Lesbian_Pirates_From_Outer_Space',
811 'I_am',
812 'I_got_it_in_my_mouth',
813 'I_had_a_dream',
814 'I_think_my_polar_bear_whistles',
815 'Ialus',
816 'Iconoclasm',
817 'Illegal_Aliens',
818 'Illogical',
819 'Illusional_Beauty',
820 'Im_a_shaman',
821 'Imaginary_Daughter',
822 'Imaginary_Daughter_Bonus',
823 'Imaginary_Tactics',
824 'Immortal_Elementals',
825 'Important_Business',
826 'In_One_Time',
827 'Inappropriate_Irving',
828 'Inchoatica',
829 'Inconsistent_Biomix',
830 'Incursion',
831 'Infiltration_of_Graveyard_Fortress',
832 'Insanity_of_Xade',
833 'Insert_Something_Here',
834 'Inside_The_OC_Convention',
835 'Insomnia_The_Comic',
836 'Instant_Tea',
837 'Interim_State',
838 'Internet_Superbuddies',
839 'Intersection',
840 'Inu',
841 'InuYasha_got_Hair_Cut',
842 'Inuyasha_Desire_to_be_Stronger',
843 'Inverted_Polarity',
844 'Irony_in_a_Jar',
845 'Is_That_Even_Legal',
846 'Ishi_Alliance',
847 'Island_Of_Submission',
848 'Italian_Godfather',
849 'Its_Ninja_Time',
850 'Its_The_Thought_That_Counts',
851 'ItzWrAiTh',
852 'Ixion',
853 'JATM',
854 'JRs_Minutemen',
855 'Jac_Strips_for_You',
856 'Jackrabbit_Days',
857 'Jake_the_Evil_Hare',
858 'Japanofail',
859 'Jarret',
860 'Jason_Vs',
861 'Jenny_Everywhere_and_the_Golden_Key',
862 'Jesi_The_Genie',
863 'Jet_and_Joe',
864 'Jhulene_the_Paladin',
865 'Jim_Reaper',
866 'Jim_and_Shawn',
867 'Jiraiyas_Quest_for_Tsunade',
868 'Jix',
869 'JixandDragonCityfanart',
870 'Joe_Bivins_Man_Genius',
871 'John',
872 'John_Clyde_the_Nature_Guide',
873 'Jonkos_Picture_Diary',
874 'Jos_Pokemon_Adventure',
875 'Jos_Pokemon_Journey_Kanto_Version',
876 'JoshRants',
877 'Judo_Man',
878 'Jules_Comics_Promo_Comic',
879 'JuliusModels_the_Comic',
880 'Jump',
881 'Junk_Food',
882 'Juno',
883 'Jurbas',
884 'JustAnotherDay',
885 'Just_Call_Me_Freedom',
886 'Just_Liam',
887 'Just_Like_James',
888 'KALA_dan',
889 'KAMs_Fanart',
890 'KDS_Pokemon_Adventure_Kanto_Version',
891 'KH_X_Bleach',
892 'KOTWR_EXTRA_Under_the_Cherry_Tree',
893 'Kaiju_Girl_theatre',
894 'Kaiths_Komics',
895 'Kaizu',
896 'Kakeiro',
897 'Karl_and_his_feasable_sketching',
898 'Karrel',
899 'Katts__Eyes',
900 'Keeper_of_the_White_Rose',
901 'Kemono_Densetsu',
902 'Kenesis_Cronicles_Broken_Bonds',
903 'Kenji_Nin',
904 'Keptn_Iglu',
905 'Kerea',
906 'Kevin_Z',
907 'Keyguard_Active',
908 'Keys',
909 'Kha_War_of_the_Mounts',
910 'Kidnapped',
911 'Kids_With_Gas_Eat_Free',
912 'Killer_Body',
913 'Killer_Kittenz',
914 'Kincaid',
915 'King_Me',
916 'King_of_Hearts',
917 'Kingdom_Naruto_Hearts',
918 'Kingdom_Sonic_Trilogy',
919 'Kirby_Advance_Adventures',
920 'Kirby_Komiks',
921 'Knights_of_the_New_Republic',
922 'Knightwatch',
923 'Knock_on_Wood',
924 'Knots',
925 'Knuckles_Adventure',
926 'KoanHead',
927 'Kombat_Kubs',
928 'Kung_Fu_Komix',
929 'Kunt_k',
930 'Kurenai_Mashin',
931 'Kuro_Shouri',
932 'Kuro_Shouri_Fanart',
933 'Kuromaka',
934 'Kusarno_Adventure',
935 'KvS',
936 'LASTFantasy',
937 'LAX_Light_Motion_Dreams',
938 'LA_ESPADA_DEL_ANORMAL',
939 'LIFE_DEATH',
940 'LOE_Plus',
941 'LOT',
942 'LOVEFEAST',
943 'L_odyssee_des_bras_casses',
944 'Lady_Doom',
945 'Laggoo_and_the_Kings_Trident',
946 'Lama_Glama',
947 'Laments_of_Having_Too_Much_Time_On_Your_Hands',
948 'Lamora',
949 'Land_of_the_Joel',
950 'Land_of_the_Lords',
951 'Larry_the_Taco',
952 'Last_Call',
953 'Last_Chance_The_Beast_Hunter',
954 'Last_Of_The_Wilds',
955 'Last_Place_Comics',
956 'Laughter_at_Tymoczkos',
957 'Lavender_Legend',
958 'Laxative',
959 'Le_Farce',
960 'LeeEXE',
961 'Left',
962 'Legacy_Unlimited',
963 'Legacy_of_Blaze',
964 'Legend_Sketchbook',
965 'Legend_of_Setar',
966 'Legend_of_Terrar',
967 'Legend_of_Zelda_Curse_of_Courage',
968 'Legend_of_the_King',
969 'Legendary_Beings_Ara_and_Celi',
970 'Legendary_pkmn',
971 'Leggo_my_Ego',
972 'Lego_Space',
973 'LetsBrawl',
974 'LetsBrawl2',
975 'Life_Plus',
976 'Life_Poorly_Drawn',
977 'Life_Under_The_Top_Hat',
978 'Life_and_Death',
979 'Life_and_Maybe_Death_of_Ed',
980 'Life_as_an_8bit',
981 'Life_as_an_8bit_2',
982 'Life_as_told_by_Rutger',
983 'Life_at_Halesowen',
984 'Life_on_the_Fringe',
985 'Light_Apprentice_Nate',
986 'Like_Fish_in_Water',
987 'Link_Skywalker',
988 'Linked_Fate',
989 'Linnyanie',
990 'Listen_To_Yer_Mama',
991 'Livin_On_The_Edge',
992 'Living_Large',
993 'Living_With_Insanity',
994 'Lizzy',
995 'Local_Look_Awesometown_Editorials',
996 'Locoma',
997 'Locoma_the_archive',
998 'Logic_Sucks',
999 'Lola',
1000 'London_Underworld',
1001 'Loser_Corner',
1002 'Lost_Chapters_of_Megaman',
1003 'Lost_in_Transition',
1004 'Lotus_Root_Children',
1005 'Louder_Than_Bombs',
1006 'Lovarian_Adventures',
1007 'Love_Annotated',
1008 'Love_Curse',
1009 'Love_Story',
1010 'Love_you_like_crazy',
1011 'Lovegood',
1012 'Lucid_Moments',
1013 'Luciefer',
1014 'Lucky_Dawg',
1015 'Lunas_Journey',
1016 'Lupin_III_FLL',
1017 'MAG_ISA',
1018 'MAYA_1',
1019 'MAYA_The_Temple_of_Warriors',
1020 'MAYA_____The_legend_of_Wolf',
1021 'MAYA_la_leyenda_del_lobo',
1022 'MEDABOTS_Time_Space',
1023 'ME_FREAK',
1024 'MIKYAGU',
1025 'MKIA_The_Sprite_Comic',
1026 'MMM_BooGrrs',
1027 'MMZX_Changeable_worlds',
1028 'MMZ_After_Zero',
1029 'MS_Pain',
1030 'MSpaint_relationships',
1031 'MY_LIFE_NOT_REAL_COMIC',
1032 'MY_MAFFIA',
1033 'Mad_World',
1034 'Madison',
1035 'Madness_to_my_Method',
1036 'Magenta_the_Witchgirl',
1037 'Maggot_Boy',
1038 'Magic_Eater',
1039 'Magical_Mania',
1040 'Magical_Misfits',
1041 'Magical_Misfits_Gallery',
1042 'Magicians_Quest',
1043 'Magiversity',
1044 'Maidens_Monsters_and_Madmen_the_Tim_Tyler_sketchbook',
1045 'Majoring_in_Evil',
1046 'Makeshift_Man',
1047 'ManBoys',
1048 'Manifestations',
1049 'Maple_Legacy',
1050 'Maple_Syrup',
1051 'Mario_Can_Has_Cheeseburger',
1052 'Mario_and_Luigi_Misadventures',
1053 'Mario_in_Johto',
1054 'Marios_Day_Job',
1055 'Marital_Bliss',
1056 'Marooned',
1057 'Marred_Visage',
1058 'Martin_and_Machs_sketches_of_life',
1059 'Martin_and_Mitchell',
1060 'Martins_House',
1061 'Master_the_Tiger',
1062 'Mastermind_BTRN',
1063 'Mastorism',
1064 'Matka',
1065 'Matt_and_Karls_Pokemon_Adventure',
1066 'McEvens_Times',
1067 'Meardnom',
1068 'Mech_Academy',
1069 'MegaMan_Theater',
1070 'MegaMan_Zero_the_ghousts_of_Past',
1071 'MegaNonsense',
1072 'Mega_Child_Xtreme',
1073 'Megaman_9_the_comic',
1074 'Megaman_Omega_Zero',
1075 'Megaman_ZXA',
1076 'Megaman_ZX_Prime',
1077 'Megaman__the_Comic',
1078 'Megaman_and_BetaFlame',
1079 'Megaman_and_the_Demons',
1080 'Megaman_battle_network_continues',
1081 'Megamantics',
1082 'Meh_Comic_Tester',
1083 'Memesink',
1084 'Mental_Meltdown',
1085 'Merej',
1086 'Messed_Up_Final_Fantasy_IV',
1087 'Messing_Around',
1088 'Metal_Breakdown',
1089 'Metal_Gear_Again',
1090 'Metroid_Vengeance',
1091 'Michael',
1092 'Mikame',
1093 'Mike_And_The_Captain',
1094 'Mildly_mundane',
1095 'Millennium',
1096 'Milo_and_John',
1097 'Mind_Under_Matter',
1098 'Mindless',
1099 'Minion',
1100 'Mirada_Atras',
1101 'Misadventures_of_Classic_MegaMan',
1102 'Misfire_Reactional',
1103 'Misfits_of_Fandom',
1104 'Misfits_of_Mischief',
1105 'Mishap_Mania',
1106 'Miss_Grey',
1107 'Missing_days_of_february',
1108 'Mission_Control',
1109 'Mistake_Girl',
1110 'Mob_Ties',
1111 'Modern_Day_Witchdoctor',
1112 'Modern_Morality_with_Bill_and_Phil',
1113 'Molapro_Comics',
1114 'Momiji',
1115 'MonkXDevil',
1116 'Monkey_Boogie',
1117 'Monkey_Pot',
1118 'Monkeys_and_Midgets_B_and_W',
1119 'Monkeyshine',
1120 'Monkeyshine_Supplemental',
1121 'Monster_in_a_Cave',
1122 'Moon_Reflected_in_Water',
1123 'Moonguin',
1124 'Moonlight_Motel',
1125 'Moose_Shoe',
1126 'Morning_Squirtz',
1127 'Morph_Man_Heir',
1128 'Morphic',
1129 'Mortifer',
1130 'MrCoffee',
1131 'Much_the_Millers_Son',
1132 'Murder_She_Sprited',
1133 'Murder_in_the_Mushroom_Kingdom',
1134 'Musical_Farm',
1135 'Mutant_Batchelors',
1136 'My_Chao_Your_Problem',
1137 'My_Hero',
1138 'My_Imaginary_Life',
1139 'My_Immortal',
1140 'My_Insult_To_Society',
1141 'My_Lady',
1142 'My_Last_Day',
1143 'My_Life_In_The_Trenches',
1144 'My_Name_Is_Billy_I_Made_These',
1145 'My_New_Job',
1146 'My_No_1_comic____a_DD_comunity_project',
1147 'My_Pet_Demon',
1148 'My_Sister_prequel_Eclipse',
1149 'My_Sister_the_Awakening',
1150 'My_Sister_the_Damned',
1151 'My_Sister_the_Witch_0',
1152 'My_Strange_Love',
1153 'My_Thingie',
1154 'My_Zombie_Life',
1155 'My_colection_of_pokemon_shorts',
1156 'Myo_Min_Myo',
1157 'Mysteries_of_the_Arcana',
1158 'Mystery_Science_Lets_Play_3000',
1159 'Mythological_Chronicle',
1160 'Myths_And_Legends',
1161 'N2Deep',
1162 'NALO_COMICS',
1163 'NEGLIGENCE_filler_and_fan_art',
1164 'NOT_ANOTHER_SONIC_COMIC',
1165 'NPC',
1166 'Nadya',
1167 'Nahim',
1168 'NaiveXP',
1169 'NanKan_Minis',
1170 'Nano_Bits',
1171 'Nargle_Arts',
1172 'Narou',
1173 'NaruHina_Forgotten',
1174 'Naruto_AM',
1175 'Naruto_Comic_Album',
1176 'Naruto_Pains_Wrath',
1177 'Naruto_Shippuden_Ninja_Strife_To_The_End',
1178 'Naruto_The_Comic',
1179 'Naruto_The_Ninja_Tournament',
1180 'National_Dex',
1181 'Natty_Patty',
1182 'Navi_Civil_War',
1183 'NecroLupus',
1184 'Necro_Magic',
1185 'Nectar_of_the_Gods',
1186 'Negate_Never',
1187 'Negligence',
1188 'Neko_Sprite_Comic',
1189 'Nerdcore',
1190 'Nerdy_Boy',
1191 'Net_Ghosts',
1192 'New_America',
1193 'New_Challenger_Approaches',
1194 'New_Jerusalem',
1195 'New_Nation',
1196 'New_Supa_Comics',
1197 'Nibbles_Comic',
1198 'Nightfall_GN',
1199 'Nimahs_Quest',
1200 'Nine',
1201 'Nine_Shot_Sonata',
1202 'Ninjoy',
1203 'NintenDuh',
1204 'Nintendo_Super_Squad',
1205 'Nintendos_Untold_Legends',
1206 'NoCharCom',
1207 'NoWhere_Fast',
1208 'NoX_LEGACY',
1209 'No_Bees_Please',
1210 'No_Capes',
1211 'No_Horse_Town',
1212 'No_Need_for_Bushido_Remix',
1213 'No_Pun_Intended',
1214 'No_Sprites_For_You',
1215 'No_Talent',
1216 'No_Taste',
1217 'No_nightsticks_for_you',
1218 'Noise_Pollution',
1219 'Nolans_Closet',
1220 'Normal_Is_Boring',
1221 'Normalcy_is_for_Wimps',
1222 'Not_Neurotypical',
1223 'Notebook',
1224 'Novusgenesis_Hype',
1225 'Noxious',
1226 'Nr_101_and_Other_Weird_Tales',
1227 'Nu_and_Me',
1228 'Numerals',
1229 'Nutcase_Fraternity',
1230 'Nzabob',
1231 'OH_SNAPS_comics',
1232 'OMEGAN_SURVIVORS',
1233 'OYGWTFBBQ',
1234 'Obiit',
1235 'Oblivion_Chaos',
1236 'Odd_Days',
1237 'Odds_n_ends',
1238 'Of_Cyndaquil_and_Totodile',
1239 'Off_Hours',
1240 'Ogrifina_Redbottom',
1241 'Oh_Brother_Qlippoth',
1242 'Oh_Momo',
1243 'Oh_Pokemon',
1244 'Oh_gawd',
1245 'Old_Comic',
1246 'Old_Pond',
1247 'Omega_Chase',
1248 'Omega_Soul',
1249 'Omikami',
1250 'On_the_Grind',
1251 'One_AM',
1252 'One_Girl_Guy_Army',
1253 'One_Shot',
1254 'One_Sixth_Sense',
1255 'Only_Love_and_Music',
1256 'Opaque_Dreams',
1257 'Operator',
1258 'Orange_Cloud',
1259 'Orbit',
1260 'Oridnary_Awkwardness',
1261 'Ouch',
1262 'Our_little_kirby',
1263 'Out_Post_7',
1264 'Out_To_Lunch',
1265 'Out_of_Context',
1266 'Out_of_Curiosity',
1267 'Outcast',
1268 'Outlawed',
1269 'Outskirts_of_Orgrimmar',
1270 'Over',
1271 'Overshadow',
1272 'Oyer',
1273 'POKeMON_GSC',
1274 'POLO',
1275 'PSI',
1276 'PUTRID_MEAT',
1277 'P_O_V',
1278 'Pagan_Zoetrope',
1279 'Paint_Heroes',
1280 'Palestra',
1281 'Pancakes',
1282 'Panda_panda',
1283 'Pandemonium',
1284 'Panel_De_Pun___Stupid_Comic_Thing',
1285 'Panthea_Obscura',
1286 'Paradox_of_Chaos',
1287 'Paranoia_and_Denial',
1288 'Paranormal_Activity',
1289 'Parker_Lot',
1290 'Parody_Paridise',
1291 'Patchs_Revenge',
1292 'Pater_Hiob_Dynamit_im_Sarg',
1293 'Pegwarmers',
1294 'Pelaiah',
1295 'Penis_Fun',
1296 'Per_Ardua',
1297 'Perceived',
1298 'Percius',
1299 'Perfect_Impact',
1300 'Perfect_Nightmare_Overkill',
1301 'Perfectly_Normal_Insanity',
1302 'Perpendicular_Universe',
1303 'Persona_3_FTW',
1304 'Pewfell',
1305 'Phantasmagoric_Fragrance_of_Flowers_Past',
1306 'Pharmacy_Time_Comics',
1307 'Phayrh',
1308 'Philly',
1309 'Phobophobia',
1310 'Photos_from_Japan',
1311 'Phychd',
1312 'PiLLI__ADVENTURE',
1313 'Pictures',
1314 'PicturesThat_Have_No_Relation_To_Each_Other',
1315 'Pink_Lady',
1316 'Pink_Sapphire',
1317 'Pinkerton',
1318 'Pinky_TA',
1319 'Pirates_ate_my_neighbors',
1320 'Pixel_Plumbers',
1321 'Planet_B',
1322 'Planet_Chaser',
1323 'Plastic',
1324 'Please_Insert_Humor',
1325 'Plokmans_Misadventures',
1326 'Plooshies',
1327 'Plum',
1328 'PoKeMoN_HEROES',
1329 'PoKeMoN_Shiny_Diamond',
1330 'PoKemon_Pyrite_Version',
1331 'Pocket_Dragon',
1332 'Poetry',
1333 'Poharex',
1334 'Poisonapples',
1335 'PokeBall_Z',
1336 'PokeSprites',
1337 'Poke_ZTX',
1338 'Pokedex',
1339 'Pokemon_AM',
1340 'Pokemon_Amethyst',
1341 'Pokemon_Batle_Tent_Reborn',
1342 'Pokemon_Battle_Tent_Mania',
1343 'Pokemon_Blue_Moon',
1344 'Pokemon_Contest_Challenge',
1345 'Pokemon_Copa_Version',
1346 'Pokemon_DS_Hope_in_Kanto',
1347 'Pokemon_Decade',
1348 'Pokemon_Delta_Storm',
1349 'Pokemon_Dhanmondi_Legends',
1350 'Pokemon_Dynamic_Fantasy_Version',
1351 'Pokemon_Edge_2009',
1352 'Pokemon_FTW',
1353 'Pokemon_Gold__Brendan_in_Kanto',
1354 'Pokemon_Granite',
1355 'Pokemon_Graphite',
1356 'Pokemon_Haven',
1357 'Pokemon_J_Blaze',
1358 'Pokemon_Jade',
1359 'Pokemon_Legacy_Version',
1360 'Pokemon_Mystery_Dungeon_Legendary_Adventure',
1361 'Pokemon_Nightshade_Blossom',
1362 'Pokemon_Perils',
1363 'Pokemon_Phantom_Flame',
1364 'Pokemon_Random_Kanto',
1365 'Pokemon_Shadow',
1366 'Pokemon_Shroom_Version',
1367 'Pokemon_Silver_State_Version',
1368 'Pokemon_Soaring_Soul',
1369 'Pokemon_Special_The_Sprite_Comic',
1370 'Pokemon_Survival',
1371 'Pokemon_The_Untold_Legend',
1372 'Pokemon_Twist_Of_Fate',
1373 'Pokemon_Warpers',
1374 'Pokemon_XS',
1375 'Pokemon_Yellow_Comics',
1376 'Pokemon_yellow_the_sprite_comic',
1377 'Poking_FUN',
1378 'Polandball',
1379 'Politics_The_Tankers_Way',
1380 'PolkOut',
1381 'PollyMorfs',
1382 'Polygon_dot_Wars',
1383 'Pooky',
1384 'Pop',
1385 'Por_Kulpa_del_Moai',
1386 'Posted',
1387 'PowerTrip',
1388 'Powerup_Adventure',
1389 'Powerup_Comics',
1390 'Prelude',
1391 'Present_Day',
1392 'Pretarsus',
1393 'Pretty_Stump_Bunny',
1394 'Prim_and_Proper',
1395 'Prince_of_Darkness_IS',
1396 'Prince_of_Ice',
1397 'Princess_Natsumi',
1398 'Professor_Prince',
1399 'Professor_Procto',
1400 'Project_217',
1401 'Project_Cartographer',
1402 'Project_Cyber_World',
1403 'Project_Demonhunter',
1404 'Project_Josprens',
1405 'Project_Mango',
1406 'Proof_of_Existence',
1407 'Prophet_Abel',
1408 'Proto_Bio_Crisis_Shock_FES',
1409 'Proto_Culture_Comics',
1410 'Psych_Ward',
1411 'Psycho_Filler_Freakout',
1412 'Psycotic_Gestures',
1413 'Public_Domain_Funnies',
1414 'Public_Misfit_Kids',
1415 'Pulp_Fantasy',
1416 'Punk_Pink',
1417 'Puppets_and_Strings',
1418 'Purgatory_Tower',
1419 'Pwnd_Randomness',
1420 'Pyro_Damo_The_Beginning',
1421 'QUANTUM_Rock_of_Ages',
1422 'QUEST',
1423 'Que_Pasa_Contigo',
1424 'Quest_For_Zanvadas',
1425 'Quim',
1426 'Qwerty',
1427 'RAWRNESS',
1428 'RE_KINGDOM_HEARTS_Chain_of_Pointlessness',
1429 'RIOT_and_FadeOut_From_the_Top',
1430 'RPGcrazed',
1431 'RPJay',
1432 'RSVP_Peace',
1433 'RTTT',
1434 'Raging_flame_Mizume',
1435 'Ragnadventure',
1436 'Ragnarok_Online_A_boys_destiny',
1437 'Rags_to_Whiskers',
1438 'Raidou_Kuzunoha_the_19th',
1439 'Rainbow_Carousel',
1440 'Raison_Detre',
1441 'Rakina',
1442 'Rampant_Cynicism',
1443 'Random_Chibi',
1444 'Random_Gmod_days',
1445 'Random_Logic',
1446 'Random_Malfuntion',
1447 'Random_Megaman',
1448 'Random_Moments',
1449 'Random_Moments_In_Fire_Emblem',
1450 'Random_Plasma_Adventure',
1451 'Random_Violence',
1452 'Random_stupidity',
1453 'Rantamantation',
1454 'Rasvaar',
1455 'Rated_Douk',
1456 'Ravenwood',
1457 'Raw_Fish',
1458 'Razor_Candy',
1459 'Real_Otakus',
1460 'Real_Super',
1461 'Reality_Stars',
1462 'Realm_Adventures',
1463 'Rebellion_The_Revival',
1464 'Rebound',
1465 'Rectangles',
1466 'Red_Mantis',
1467 'Red_Point',
1468 'Red_String',
1469 'Redeeming_Fate',
1470 'Redemption_of_Heroes',
1471 'Refraction',
1472 'Regular_Guy',
1473 'Reign_of_the_Fallen_Navis',
1474 'Reliquary',
1475 'Remsi',
1476 'Renga_Manga',
1477 'Requiem_for_Innocents',
1478 'Requiems_Gate',
1479 'Retrospect',
1480 'Return_Zero',
1481 'Return_of_the_Exile',
1482 'Revenge_Addict',
1483 'Revive_me_Ragnarok_Online_Webcomics',
1484 'Revol_The_Original_Strips',
1485 'RiTH',
1486 'Rick_The_Stick',
1487 'Riggs_Hell',
1488 'Rileys_notebook',
1489 'Rival_Angels',
1490 'Riyu_and_Panja',
1491 'Robomeks',
1492 'Robot_Bandits',
1493 'Robot_Chuck',
1494 'Robots_In_My_Attic',
1495 'Robukkagenerator',
1496 'Rock_Band_Blues',
1497 'Rogue_Agent_Axl',
1498 'Rokan_Cant_Draw_Comics',
1499 'Roleplay_101',
1500 'Roll_For_Intelligence',
1501 'Romeo',
1502 'Ronin_Seraph',
1503 'Room_Mates',
1504 'Rose',
1505 'Row_and_Bee',
1506 'Rubies',
1507 'Ruby',
1508 'Ruby_And_Pipers_World_Of_Magical_Pink_Fearie_Unicorns',
1509 'Rule_of_Three',
1510 'Rules_of_Make_Believe',
1511 'Rumf_Adventures',
1512 'Rums_Tale',
1513 'Rust_and_Brimstone',
1514 'Rymes_With_Orange',
1515 'Ryosaki_Uzumaki_1',
1516 'Ryus_Krew_Museum',
1517 'Ryushin_and_Littlerains_comic_rpg',
1518 'SECKS',
1519 'SONIC_IN_NARUTO_SHINOBI_LAND',
1520 'SOPHIA_Awakening',
1521 'SOS_Saga',
1522 'SPiDERS',
1523 'SSB_tourny',
1524 'STICKFODDER',
1525 'STIX',
1526 'STOCKS',
1527 'STOLIDUS_LONGINUS',
1528 'SUPERSEXY__PINUP_HEROS',
1529 'Sack_O_Puppies',
1530 'Safety_Man',
1531 'Saint_Remy',
1532 'Salimah',
1533 'Sally_and_Dally',
1534 'Salt_The_Holly',
1535 'Salt_and_Pepper',
1536 'Salvation',
1537 'Sam_and_Javon',
1538 'Sammy_the_Skunk',
1539 'Satans_Evil_Square',
1540 'Saviours_X',
1541 'Scar',
1542 'ScareCrow_Lullaby',
1543 'Scarlet',
1544 'Schizophrenia_Bloom',
1545 'Schools_Are_Prisons',
1546 'Schrodinger',
1547 'Scorch',
1548 'Scrambled_Worlds',
1549 'Screwball_Islands',
1550 'Screws_Loose',
1551 'Scribble',
1552 'Scylla',
1553 'Seal_of_Destiny',
1554 'Searching_For_Mr_Bite',
1555 'Second_Wind',
1556 'Secret_Adventure',
1557 'Secret_Agent_Eddie',
1558 'Segcom',
1559 'Senshi_Vs_Sentai',
1560 'Serious_Lesbian',
1561 'Seth_the_Hippo',
1562 'Seven_Damnations',
1563 'Sex_on_the_Beach',
1564 'Shades',
1565 'Shades_of_Gray',
1566 'Shades_of_Illusion',
1567 'Shadixs_Story',
1568 'Shadow_Blood',
1569 'Shadow_Bridge_2nd_Edition',
1570 'Shadow_Force',
1571 'Shadow_Fox',
1572 'Shadow_Reaver',
1573 'Shadow_Self',
1574 'Shadow_Sprinters',
1575 'Shadow_The_Hedgehog',
1576 'Shadow_The_Weirdo',
1577 'Shadowflight',
1578 'Shaman_Quest',
1579 'Shark_Bait',
1580 'She_Who_Destroys_Light',
1581 'Sherlock_Face',
1582 'Shinigami_Less_Than_Symbol_3',
1583 'Shining_Wolf',
1584 'Shiny_Things',
1585 'Ship_in_a_Bottle',
1586 'Short_Bus',
1587 'Short_Bus_Brothel',
1588 'Short_Story_Comics',
1589 'Silence_is_Golden',
1590 'Silvershot',
1591 'Simple',
1592 'Sinful',
1593 'Sins_Of_Our_Demons',
1594 'Sins_of_the_Fallen',
1595 'Sir_Ron_Lionhearts_Fantastic_Adventures',
1596 'Sire',
1597 'Sismonkey',
1598 'Sketchorama',
1599 'Sketchy',
1600 'Sketchy_at_Best',
1601 'Skewed_Reality_Origins',
1602 'Skunktraining',
1603 'Slackerz',
1604 'Slackman',
1605 'Slam_Dance',
1606 'Slice_of_Life',
1607 'Slight_Miscalculation',
1608 'Slither_and_Friends',
1609 'Slugs_of_Mystery',
1610 'Sluice',
1611 'Small_Wonder',
1612 'Smash_Brothers_Evangelion_Wars',
1613 'Smash_Hate',
1614 'Smelly_Brownies',
1615 'Smiley_Pie',
1616 'Smoke_Manmuscle_PI',
1617 'Smores',
1618 'Smug_I_Could_Do',
1619 'Snail_Comics',
1620 'Snatches',
1621 'So_Fantastic_Pork_Show_9oCLOCK',
1622 'So_Sequential',
1623 'Soapbox_Hill',
1624 'Solar_Kiss',
1625 'Some_Battling_Monsters',
1626 'Some_Notes',
1627 'Something_Like_Life',
1628 'Something_Original',
1629 'Something_To_Do',
1630 'Sonic_A_Heroes_Tail',
1631 'Sonic_Advance_The_Real_Story',
1632 'Sonic_Advanced_Online',
1633 'Sonic_Adventure_Chaos_Theory',
1634 'Sonic_Bluff',
1635 'Sonic_College',
1636 'Sonic_Confusion',
1637 'Sonic_Destination_Chaos',
1638 'Sonic_Doom',
1639 'Sonic_Gone_Completely_Wrong',
1640 'Sonic_Heroes_Uncut',
1641 'Sonic_Icons',
1642 'Sonic_Meets_Megaman',
1643 'Sonic_MisAdventure_ADVANCE',
1644 'Sonic_NC',
1645 'Sonic_Overdose',
1646 'Sonic_Torment',
1647 'Sonic_and_Amy_The_Dark_Doppels',
1648 'Sonic_and_Amy_The_Dark_Doppels_Vol_2',
1649 'Sonic_and_Amy_The_Dark_Doppels_Vol_3',
1650 'Sonic_and_his_comic',
1651 'Sonic_and_tails_corner',
1652 'Sonic_plus_a_castle',
1653 'Sonic_series',
1654 'Sonic_the_Hedgehog_2_The_Real_Story',
1655 'Sonic_the_Hedgehog_and_the_Black_Emerald',
1656 'Sonic_the_Hedgehog_in_the_Comic',
1657 'Sonic_with_Brains',
1658 'SoulLesser',
1659 'Soul_Less',
1660 'Soul_Palisade',
1661 'Soup',
1662 'SpacePatrol',
1663 'Space_Flakes',
1664 'Spacefighters_on_Earth',
1665 'Speeder_and_Red',
1666 'Speesheez',
1667 'Spike_and_Fuzzy',
1668 'Spikey_Hair_Vs_Top_Hat',
1669 'Spirit_X',
1670 'Spitfire',
1671 'Splash_Damage',
1672 'Splash_Damage_Extra_Stuff',
1673 'Splices_of_Life',
1674 'Sprite_City',
1675 'Sprite_Life___Nineteen_Eternal',
1676 'Sprite_Rejects',
1677 'Sprite_Wars',
1678 'Sprited_in_Real_Life',
1679 'Spritely',
1680 'Spyr',
1681 'Square',
1682 'Square_One',
1683 'Squircle',
1684 'Stack_of_Buttons',
1685 'Stanleys_Place',
1686 'StarFox_Hunters_Journal',
1687 'Star_Crossed_Destiny',
1688 'Star_Trax',
1689 'Star_Wars_Tales__Fury_and_Intensity',
1690 'Starcraft',
1691 'Startoons_Super_Force',
1692 'Stealth',
1693 'Stetson_Kennedy',
1694 'Stickguy',
1695 'Sticking_Sporks_in_Something_Else',
1696 'Stickman_and_Cube',
1697 'Stolen_Blood',
1698 'Stories_of_Strangeness',
1699 'Stormclaw_Shadows',
1700 'Story_of_My_Life',
1701 'Strawberry_Death_Cake',
1702 'Stripes_of_Life',
1703 'Stripper_Rippers',
1704 'Stuftassic_Park',
1705 'Stupidity_in_Magic',
1706 'Stupidity_is_a_Virtue',
1707 'Styles',
1708 'SubStandard_Comics',
1709 'Subsidery',
1710 'Subway_and_Julian',
1711 'Such_A_Simple_Life',
1712 'Such_Is_Life',
1713 'Sugarcoat',
1714 'Summer_Fangs',
1715 'Sunset_Grill',
1716 'Supacat',
1717 'Super_Haters',
1718 'Super_Heights',
1719 'Super_Larry',
1720 'Super_Mario_And_Luigi_Adventures',
1721 'Super_Mario_RPG_2',
1722 'Super_Shroom',
1723 'Super_Smash_Bros_Royale',
1724 'Super_Temps',
1725 'Superman_Comics',
1726 'Supermassive_Black_Hole_A_Star',
1727 'Supernaturals_Presents',
1728 'Surreal_pseudophotographic_thought_diary',
1729 'Sword_in_Hand',
1730 'Sword_of_Heaven',
1731 'Sword_of_Tears',
1732 'Swordsong',
1733 'Syndicate',
1734 'Synthetic_Aggressive_Trilobite',
1735 'TAK',
1736 'TCCPC',
1737 'TCCPC_1',
1738 'TFGMs_Doodles',
1739 'THANG_THANG',
1740 'THE_FALL',
1741 'THE_KIBA_CHRONICLES',
1742 'TOASTERHEAD',
1743 'TORNEO_CLM',
1744 'TV_Man',
1745 'T_and_S',
1746 'Taco_El_Gato_Issue_2',
1747 'Tails_female_twin',
1748 'Taint_of_Exile',
1749 'Tainted_White',
1750 'Takiras_Secret_Realm',
1751 'Tales_from_Two_Tiny_Tittybars',
1752 'Tales_of_Rayqui',
1753 'Tales_of_Strange',
1754 'Tales_of_the_Traveling_Gnome',
1755 'Tama_Chronicles',
1756 'Tama_Krato',
1757 'Tamashi_no_hon',
1758 'Tangerines',
1759 'Tankadin',
1760 'Tantei_Deka',
1761 'Taste_my_Beanpaste',
1762 'Tater_and_Farces_MSPaint_Video_Game_Comic_Assfuck_Jamboree',
1763 'Team_Heroes',
1764 'Team_Rainbow',
1765 'Ted_The_Terrible_Superhero',
1766 'Ted_and_Zed',
1767 'Temp_Test',
1768 'Tenacious_D_The_sprite_comic',
1769 'Tera_Forming',
1770 'Terra_online_comic',
1771 'Terran_Sandz',
1772 'That_Damn_Furby',
1773 'That_Lucas_Curl',
1774 'That_Which_Is_Summoned',
1775 'Thats_Comical',
1776 'TheNewLuciefer',
1777 'The_12the_Planet',
1778 'The_3rd',
1779 'The_7th_hurt_soul',
1780 'The_Adept',
1781 'The_Adventure_of_the_Goat_Chin_Pirates',
1782 'The_Adventures_of_Crunch_Crakerton',
1783 'The_Adventures_of_Hybrid',
1784 'The_Adventures_of_Master_Chief',
1785 'The_Adventures_of_Starbuck_Jones',
1786 'The_Adventures_of_Steven_and_Joe',
1787 'The_Adventures_of_kirby_and_the_semi_amazing_town_of_threed',
1788 'The_Amazing_Kiteboy',
1789 'The_Arcadia_Anthology',
1790 'The_Art_of_Joe_Jarin',
1791 'The_Asim_Stone',
1792 'The_Auragon_Base',
1793 'The_Author_Realm',
1794 'The_Authors_Corner',
1795 'The_Awkward_Communicator',
1796 'The_Black_Flag',
1797 'The_Black_Scale',
1798 'The_Blazing_Storm_Tournament',
1799 'The_Broken',
1800 'The_Burned',
1801 'The_CHOSEN',
1802 'The_Carriers',
1803 'The_Chelation_Kid',
1804 'The_Chronicles_of_Wyrden',
1805 'The_Chronicles_of_Your_Mom',
1806 'The_Comical_Bit_o_Time_Wasting_Nonsense',
1807 'The_Compozerz',
1808 'The_Continentals',
1809 'The_Corner_Store_Crew',
1810 'The_Corvette_Game',
1811 'The_Cristmas_Spirit',
1812 'The_Crossroads',
1813 'The_Crypt_Kid',
1814 'The_Cure',
1815 'The_Curious_Adventures_of_Aldus_Maycombe',
1816 'The_Dark_Truth',
1817 'The_Darkness_Returns',
1818 'The_Dashing_Rogue',
1819 'The_Death_of_Sydney_Walls',
1820 'The_Deed',
1821 'The_Deity',
1822 'The_Deletion',
1823 'The_Demon_Inside',
1824 'The_Devon_Legacy_Random_Art',
1825 'The_Djinn_Jihad',
1826 'The_Door',
1827 'The_Dragon_Fists_of_Smorty_Smythe',
1828 'The_Dreggs',
1829 'The_ECS_Strips',
1830 'The_Electric_Owl',
1831 'The_Elemental_Storm_Volume_4',
1832 'The_Endlessly_Agonizing_Sufferings_of_Miranda_the_Emo_Balloon',
1833 'The_Ends',
1834 'The_Ensuing_Tales_of_Jayden_and_Crusader',
1835 'The_Epic',
1836 'The_Epic_237',
1837 'The_Epic_goes_to_Hell',
1838 'The_Errant_Apprentice',
1839 'The_Exaggerated_Life_Story',
1840 'The_Facts_of_Life',
1841 'The_Fantastic_Felixii',
1842 'The_Fantastic_Webcomick_of_Archiba_Pews',
1843 'The_Farm_story',
1844 'The_Featureless_Plane',
1845 'The_Fifty_Peso_Ninja',
1846 'The_Fighting_Stranger',
1847 'The_Final_Phenomenon_ACT_I',
1848 'The_Final_Zone',
1849 'The_Flaming_Chicken',
1850 'The_Forgotten_Memories',
1851 'The_Funisher',
1852 'The_Garden',
1853 'The_Gift_of_the_Gun',
1854 'The_Gimblians',
1855 'The_Goblin_Apprentice',
1856 'The_Gods_are_Laughing_at_us',
1857 'The_Gods_of_ArrKelaan',
1858 'The_Golden_Sun_Struggle',
1859 'The_Green_Room',
1860 'The_Greener_Side',
1861 'The_Harvest_Lottery',
1862 'The_Heist',
1863 'The_Holiday_Doctor',
1864 'The_Hollow',
1865 'The_Horribles',
1866 'The_House_of_Other_Worlds',
1867 'The_House_of_Sonic',
1868 'The_Hub',
1869 'The_Hunting',
1870 'The_Impractical_Mr_Imp',
1871 'The_JDL',
1872 'The_KAMics',
1873 'The_Kick_Assers',
1874 'The_Lamp',
1875 'The_Last_Days_of_War',
1876 'The_Leftovers',
1877 'The_Legend_of_Ample_Alison',
1878 'The_Legend_of_Zelda_Echoes_of_Time',
1879 'The_Legend_of_Zelda_Palace_of_the_Clockwork_Martinet',
1880 'The_Legend_of_Zelda_Souls_of_Darkness',
1881 'The_Legend_of_Zelda_The_Sun_Cat',
1882 'The_Life_Death_and_Rebirth_of_Elicia',
1883 'The_Life_and_Times_of_Copa',
1884 'The_Life_of_a_Young_WoW_Addict',
1885 'The_Mage_Did_It',
1886 'The_Magic_Flute',
1887 'The_Magnificent_Misadventures_of_Mustardo',
1888 'The_Many_Misfortunes_of_Lady_Luck',
1889 'The_Many_Stories_of_Sonic_the_Hedgehog',
1890 'The_MatFkkinRix',
1891 'The_Meaning_Of_Life',
1892 'The_Mighty_Omega',
1893 'The_Minimal_Adventures_of_Pippa_and_Cici',
1894 'The_Misadventures_Of_Metalix',
1895 'The_Misadventures_of_Suicidary_Man',
1896 'The_Mobius_Chronicles',
1897 'The_Mugen_Comic_Club',
1898 'The_Mystery_of_the_Golden_Edge',
1899 'The_NEW_Life_Of_TimmY',
1900 'The_Nameless_Double_Authored_Comic',
1901 'The_NanKan_Agency',
1902 'The_New_Amy_Rose',
1903 'The_Nineteenth_Century_Industrialist',
1904 'The_Ninth_Doctor',
1905 'The_Omega_Key',
1906 'The_Onett_Suite',
1907 'The_Oozer',
1908 'The_Open_Minded',
1909 'The_Order_vol_1',
1910 'The_Other_Side_of_High_School',
1911 'The_Pen_is_Mightier',
1912 'The_People_That_Melt_in_The_Rain',
1913 'The_Perfect_Love_letter',
1914 'The_Perfect_Score',
1915 'The_Pirate_Terminators',
1916 'The_Planet_Closest_To_Heaven',
1917 'The_Pond_of_Realms',
1918 'The_Pools_of_Zara',
1919 'The_Prime_of_Ambition',
1920 'The_Princess',
1921 'The_Princess_and_the_Giant',
1922 'The_Queen_of_Hearts',
1923 'The_Railyard',
1924 'The_Rambling_Crazy_Man',
1925 'The_Random_Stick_Show',
1926 'The_Reborn',
1927 'The_Red_Prince',
1928 'The_Reluctant_Catalyst',
1929 'The_Renagades',
1930 'The_Repository_of_Dangerous_Things',
1931 'The_Retributionist',
1932 'The_Return_of_the_Blobs_in_Blue_and_Green',
1933 'The_Revenger_Tradgedy',
1934 'The_Revolution',
1935 'The_Rose_Killer',
1936 'The_Rube_Goldberg_Machine',
1937 'The_SSA',
1938 'The_Savior_of_Hell',
1939 'The_Secret_Files_of_MAX',
1940 'The_Secret_Lives_Of_Penguins',
1941 'The_Secret_life_of_a_Teenage_Sprite_Comic',
1942 'The_Sevii_Island_Saga',
1943 'The_Shadow_Pokemon_Revived',
1944 'The_Shape_of_the_Heart',
1945 'The_Ski_Mask_Thug',
1946 'The_Sok_Comic',
1947 'The_Sonic_Saga',
1948 'The_Star_Droids',
1949 'The_Stuff_Zone',
1950 'The_Stupid_Adventures',
1951 'The_Stupid_Adventures_Year_Two',
1952 'The_SuperFogeys',
1953 'The_Surgeon',
1954 'The_Surreal_Adventures_of_Edgar_Allan_Poo',
1955 'The_Surrealist',
1956 'The_Symbolocity',
1957 'The_Symmetrical_Breadpazoid',
1958 'The_Thesaian_killers',
1959 'The_Traveling_Assist',
1960 'The_Trouble_With_Martians',
1961 'The_Truth_About_Corey_Strode',
1962 'The_Twisted_Life_of_Clifford_Robotnik',
1963 'The_Uncanny_Uper_Dave',
1964 'The_Unnamed_Fellowship',
1965 'The_Untold_Legends_of_Ice',
1966 'The_Urban_Knight',
1967 'The_Urban_Legends',
1968 'The_Water_Phoenix_King',
1969 'The_Way_of_the_Flaim',
1970 'The_Weapon',
1971 'The_Webcomic_Review_Comic_On_The_Web',
1972 'The_Weekly_Life_in_Simons_Basement',
1973 'The_Winged_One',
1974 'The_Wonderful_Adventures_of_Everyday_Life',
1975 'The_World_According_to_Mongruels',
1976 'The_World_Robot_Competition',
1977 'The_World_Tournament',
1978 'The_World_of_Higal',
1979 'The_Wrong_Hero',
1980 'The_Y_Team',
1981 'The_Young_Defenders',
1982 'The__Flea',
1983 'The_lost_boys_of_hometown',
1984 'The_most_random_sprite_comic_in_the_whole_entire_world',
1985 'The_new_Megaman',
1986 'The_story_of_Quark',
1987 'The_true_Kingdom_Hearts',
1988 'The_world_of_Stickmen',
1989 'There_Life',
1990 'They_All_Bleed_the_Same',
1991 'Thing_Thing_The_comic',
1992 'Things_I_Did_Recently',
1993 'Third_World_Think_Tank',
1994 'Third_World_Truth',
1995 'Thirteen_Under_Seven_The_Manga',
1996 'This_Ego_of_Mine',
1997 'This_Is_What_I_Do',
1998 'Thistil_Mistil_Kistil',
1999 'Thog_Infinitron',
2000 'Thorns_on_a_Rose',
2001 'Thoughts_Of_the_Judicous',
2002 'Threshold',
2003 'Tides_of_Hopes',
2004 'Tim_and_Steph_get_married',
2005 'Time_Breakers',
2006 'Time_Killers',
2007 'Times_Like_This',
2008 'Timestone',
2009 'Timothy_Green',
2010 'TnT_the_Comic',
2011 'To_Be_Loved',
2012 'TogetherInMind',
2013 'Tokyo_101',
2014 'Tomb_of_the_King',
2015 'Tomb_of_the_King_2',
2016 'Toshubis_pinup_and_fanart',
2017 'Total_Immersion',
2018 'Totally_Cool_Comic',
2019 'Touch_and_Go_Tommy',
2020 'Toy_Story_X',
2021 'Toys_vs_Toys',
2022 'Tozzer',
2023 'Tracking_Inspiration',
2024 'Trail_Mix',
2025 'Travesty_of_the_Night',
2026 'Triangular_Hats',
2027 'Trinity_Legends_of_Zevera',
2028 'Trip',
2029 'Trolling_Around',
2030 'Troop_37',
2031 'Troop_of_Bad_Angels',
2032 'True_Power',
2033 'Try_Everything_Once',
2034 'Tsubasa_Randomness',
2035 'Tsubomi_Blue_Dreams',
2036 'Tweedledum',
2037 'Twisted_Chronicles',
2038 'Twisted_Logic',
2039 'Twisted_Mirrors',
2040 'TwoMoons',
2041 'Two_Faces_One_Coin',
2042 'Two_Strings',
2043 'Two_Weeks_Notice',
2044 'Two_pods_in_a_pea',
2045 'Twonks_and_Plonkers',
2046 'Tygar',
2047 'Tyler_This_is_Your_Life',
2048 'Tylerth',
2049 'USB',
2050 'USB_Extras',
2051 'U_Chuu_No_Hoshi_Hotoshi_Tsuko',
2052 'Uber1337',
2053 'Ukeke_and_Shyguys_Adventures_and_Stuff',
2054 'Ultimate_tourny_of_ultimate_fighting',
2055 'UnNatural_Order',
2056 'Under_CONstruction',
2057 'Under_an_Alien_Star',
2058 'Under_the_Helmet',
2059 'Unfunny_comics',
2060 'Unicorns_and_Razorblades',
2061 'Unique',
2062 'University_Plus_1',
2063 'Unknown_Experiement',
2064 'Unknown_Feathers',
2065 'Unlife_is_Unfair',
2066 'Unlucky_In_A_Tin_Can',
2067 'Unmature',
2068 'Unplotful',
2069 'Unsound_of_Mind',
2070 'Unsung_Heroes_Of_Subtlety',
2071 'Untitled_Comic',
2072 'Urban_Legends',
2073 'Used_Books',
2074 'Used_Books_Bios',
2075 'VP_Fancomics',
2076 'VUS',
2077 'Vampire_Phantasm_X',
2078 'Vampire_Rising',
2079 'VampyrFetal',
2080 'Vanguard',
2081 'Vegetarian_Zombies',
2082 'Verge_the_Paranormal_Detective',
2083 'Versus',
2084 'Vi_is_Manor',
2085 'Vibes_And_The_OtherKinds',
2086 'Vic_and_Edwards',
2087 'Vice_and_Virtue',
2088 'Victory_Theme',
2089 'Vieil_Etang',
2090 'Viera_Dimension',
2091 'Vigil_1to_4',
2092 'Vile_Withering',
2093 'Villainy_Minor',
2094 'Villans_Untld',
2095 'Villian_Next_Door',
2096 'Vinnie_and_Debrah',
2097 'Vinny_the_Villain',
2098 'Virtual_reality',
2099 'Visible_Invaders_From_Beyond',
2100 'Vivid_Imagery',
2101 'Vultures_Eat_the_Dead',
2102 'WGO',
2103 'WHACKED',
2104 'WIRES',
2105 'WIRES_2',
2106 'WIRES_3',
2107 'WWE_The_Comic',
2108 'W_V_W',
2109 'Wakon_Yosai',
2110 'Wallys',
2111 'Warped_Archive',
2112 'WarriorBorn',
2113 'Warriors_of_the_night',
2114 'Wasteland',
2115 'Wave',
2116 'Way_the_Cookie_Crumbles',
2117 'Wayfinder',
2118 'Weave',
2119 'WeirdStar',
2120 'Weird_Adventures_in_Unemployment',
2121 'Weird_Void',
2122 'Welcome_To_Border_City',
2123 'Well_crap',
2124 'Wer_Carastrix_Thaczil',
2125 'WetComa',
2126 'What_I_Learned_Today',
2127 'What_The_Fucking_Shit_Fuck_Ass_Fuck_Is_Mario_Gonna_Do_Now',
2128 'What_You_Dont_See',
2129 'What_happens_when_theyre_not_working',
2130 'What_is_Super',
2131 'What_is_this',
2132 'Whateverland_USA',
2133 'When_Sunlight_Skips',
2134 'White_Noise',
2135 'Why_Not',
2136 'Wibble',
2137 'WiffleWorld',
2138 'Wild_Heart',
2139 'William_Feist__Paranormal_Investigator',
2140 'Willow_And_Timothy',
2141 'Wind_Riders',
2142 'Wintergreen',
2143 'Wish',
2144 'With_All_Your_Might',
2145 'Within_Shadows',
2146 'Woah_Roscoe',
2147 'Wolf',
2148 'Wolfeye_City',
2149 'Wolfies_World',
2150 'Women',
2151 'Wonkedo',
2152 'WoolleyComix',
2153 'Woolley_Thinking',
2154 'Workdays',
2155 'World_Domination_Plan_Z',
2156 'World_One',
2157 'World_of_Orenda',
2158 'Wrinkles',
2159 'WyrmLaird',
2160 'XAZ_A_Megaman_X_Fancomic',
2161 'Xenoes_313',
2162 'Xiomania',
2163 'Xs_everyday_life',
2164 'YO_Comix',
2165 'YU_GI_OH_NL',
2166 'Yamase',
2167 'Yamete_Kudasai',
2168 'Yaoi_Seth',
2169 'Year_of_the_Turtle',
2170 'Yheilm_Wide_Tragedy',
2171 'Yoshi_Saga',
2172 'Young_Studs',
2173 'Your_Number_One_Bishounen',
2174 'Youre_So_Gay',
2175 'Youre_mine',
2176 'ZODIAC_An_Anthropomorphic_Web_Comic',
2177 'ZaWorld_Zero',
2178 'Zephyr_of_Fate',
2179 'Zero7',
2180 'Zero_G',
2181 'Zo__Adventures',
2182 'ZomBen',
2183 'Zombi_Minacity',
2184 'Zombie_Mojo',
2185 'Zombiepocalypse',
2186 'Zombies_Are_People_Too',
2187 'Zuber_Zakari',
2188 'a_devils_life',
2189 'action',
2190 'amoebaville',
2191 'an_unencumbered_postbox',
2192 'and_Id',
2193 'andilire',
2194 'binary_cupcakes',
2195 'blackheart',
2196 'buski_and_shnop',
2197 'civil_war',
2198 'delightfully_evil',
2199 'desolation_angel_tango',
2200 'devil_grass',
2201 'dickandfart',
2202 'digimon_break',
2203 'disaffection',
2204 'disorder_and_disarray',
2205 'ePUNKS',
2206 'eliada',
2207 'estuche_patito_cuakman',
2208 'eternal_darkness',
2209 'featuring_Talking_Guinea_Pigs',
2210 'geebo',
2211 'girl_robot',
2212 'greenbrook',
2213 'greys_journey',
2214 'hardKORE_Legends',
2215 'hiro',
2216 'just_junk',
2217 'just_random',
2218 'kAI',
2219 'l_Anachrotist',
2220 'laughAlittle',
2221 'light_within_shadow',
2222 'mr_Sandman',
2223 'mr_red_and_mr_blue',
2224 'my_bloody_nobelen',
2225 'nerdStrip',
2226 'nicola_and_belmondo',
2227 'oldguy_and_young_guy',
2228 'operation_blakck_sun',
2229 'planet_of_the_sonic',
2230 'pokemon_war',
2231 'project_kokiro',
2232 'prophecy',
2233 'public_humiliation',
2234 'pyroicon',
2235 'random_anime_fanart_comics',
2236 'random_ass_friday_comics',
2237 'say_hello',
2238 'shinji_the_great_freak',
2239 'shonenpunk',
2240 'signifikat',
2241 'simply_sarah',
2242 'sonic_vs_life',
2243 'sonicsomething',
2244 'soulflare',
2245 'stickhappens',
2246 'story_irc',
2247 'stupid_machine_comics',
2248 'superSUPER',
2249 'super_smash_bros_omega',
2250 'te_quiero_____matar',
2251 'the_Grim_Sibz',
2252 'the_kibble_legion',
2253 'the_life_and_times_of_tammie',
2254 'the_milkyway',
2255 'the_random_archives_of_TJ',
2256 'the_untold_legend_of_pokemon',
2257 'toolagged',
2258 'trythesoup',
2259 'umm',
2260 'unlingual',
2261 'wanderblue_shorts',
2262 'watchdogs',
2263 'what_errant_beast',
2264 'word',
2265 'xAll_Things_Consideredx',
2266 'yay_ponys',
2267 'yoshi_freaks_real_life',
2268 'zuchini',
2269 ]
2270
2271for shortName in duckComics:
2272 globals()[shortName] = drunkDuck(shortName)
02273
=== modified file 'dosage/plugins/k.py'
--- dosage/plugins/k.py 2010-01-12 04:38:29 +0000
+++ dosage/plugins/k.py 2010-01-17 19:41:09 +0000
@@ -33,6 +33,13 @@
33 help = 'Index format: yyyymmdd'33 help = 'Index format: yyyymmdd'
3434
3535
36class Kukuburi(BasicScraper):
37 latestUrl = 'http://www.kukuburi.com/current/'
38 imageUrl = 'http://thaumic.net/%s'
39 imageSearch = compile(r'img src="(http://www.kukuburi.com/../comics/.+?)"')
40 prevSearch = compile(r'nav-previous.+?"(http.+?)"')
41 help = 'Index format: non'
42
3643
37class KevinAndKell(BasicScraper):44class KevinAndKell(BasicScraper):
38 latestUrl = 'http://www.kevinandkell.com/'45 latestUrl = 'http://www.kevinandkell.com/'
3946
=== modified file 'dosage/plugins/m.py'
--- dosage/plugins/m.py 2010-01-12 03:55:53 +0000
+++ dosage/plugins/m.py 2010-01-17 19:41:09 +0000
@@ -38,6 +38,13 @@
38 help = 'Index format: good luck !'38 help = 'Index format: good luck !'
3939
4040
41class Meek(BasicScraper):
42 latestUrl = 'http://www.meekcomic.com/'
43 imageUrl = 'http://www.meekcomic.com/%s'
44 imageSearch = compile(r'meekcomic.com(/comics/.+?)"')
45 prevSearch = compile(r'\s.+?(http://www.meekcomic.com/.+?)".+?Previous<')
46 help = 'Index format: yyyy/mm/dd/ch-p/'
47
4148
42class MegaTokyo(BasicScraper):49class MegaTokyo(BasicScraper):
43 latestUrl = 'http://www.megatokyo.com/'50 latestUrl = 'http://www.megatokyo.com/'
4451
=== modified file 'dosage/plugins/p.py'
--- dosage/plugins/p.py 2010-01-12 03:06:22 +0000
+++ dosage/plugins/p.py 2010-01-17 19:41:09 +0000
@@ -86,6 +86,13 @@
86 namer = queryNamer('comicid', usePageUrl=True)86 namer = queryNamer('comicid', usePageUrl=True)
8787
8888
89class Precocious(BasicScraper):
90 latestUrl = 'http://www.precociouscomic.com/'
91 imageUrl = 'http://www.precociouscomic.com/comic.php?page=%s'
92 imageSearch = compile(r'(archive/strips/.+?)"')
93 prevSearch = compile(r'First.+?(comic.php\?page=.+?)">Previous<')
94 help = 'Index format: n (unpadded)'
95
8996
90class PvPonline(BasicScraper):97class PvPonline(BasicScraper):
91 latestUrl = 'http://www.pvponline.com/'98 latestUrl = 'http://www.pvponline.com/'
9299
=== modified file 'dosage/plugins/z.py'
--- dosage/plugins/z.py 2010-01-15 06:17:39 +0000
+++ dosage/plugins/z.py 2010-01-17 19:41:09 +0000
@@ -1,7 +1,6 @@
1import urllib
2from re import compile1from re import compile
32
4from dosage.helpers import BasicScraper, indirectStarter3from dosage.helpers import BasicScraper
54
65
7class Zapiro(BasicScraper):6class Zapiro(BasicScraper):

Subscribers

People subscribed via source and target branches