forked from DandelionSprout/adfilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDeviantARTQualityArtMagnifier.txt
1916 lines (1911 loc) · 161 KB
/
DeviantARTQualityArtMagnifier.txt
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
[Adblock Plus 3.13]
! Title: 🤹♀️ deviantART Quality Art Magnifier
! Version: 04January2023v1-Beta
! Expires: 2 days
! Description: This list makes deviantART focus more on quality custom art, by removing as much as feasible of the horrid leftovers that the site is stuffed with. No more copypaste MS Paint, no more bad takes from the authors' or "characters'" standpoints, no more mega crossovers, no more inflation, no more top 23 rankings, and no more Thomas the Tank Engine. This list could possibly end up saving lives.
! Note: People with weak stomachs are very strongly advised to also add this list's partner list against torture/diaper/liquids/death art at https://raw.githubusercontent.com/DandelionSprout/adfilt/master/AntiAbusePorn.txt
! Homepage: https://github.com/DandelionSprout/adfilt/blob/master/Wiki/General-info.md#-english
! ——— Very childish behaviour ———
!!! This category includes, but is not necessarily limited to: "Artist reacts to", "Character reacts to", rants, character rankings, cheap character creators (Mugen, Goanimate, Gacha), Teletubbies, "art" that is just asking questions to viewers, kindergarden interiors, copypasted MS Paint stuff in general, strange misspellings in titles, Numberjacks, stolen screenshots, stolen drawings, The Wiggles, users who incorrectly claim you're not allowed to block them
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/10-characters-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/anti-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Characters-I-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Chibi-me-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Do-you-think-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Draw-your-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/fav-character-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-d-rather-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/i-don-t-support-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-m-A-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/i-support-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-ve-finally-seen-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-ve-started-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/List-of-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Me-and-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Me-as-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Me-in-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/me-loves-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/me-trying-to-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/me-when-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-1" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-20-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-8" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-experience-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/my-newest-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/my-own-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/my-top-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/question-" i][href*=-from- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/rant-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Shows-with-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Ten-most-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/thoughts-on-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/top-4" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/top-5" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/top-6" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/top-7" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/top-8" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/top-9" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Triggered-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/TV-shows-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/what-do-you-think-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/what-happened-to-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Which-character" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/who-loves-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/why-are-there-so-many-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Would-you-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Your-thoughts-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-and-friends- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-bad-like- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-birthday-dates- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-bonked-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-bracket- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-cringes-over- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-daycare- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-fav i][href*=-hate i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-favorite-couple i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-five-most- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-gets-angry- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-gets-expelled- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-goanimate- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-grounded- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-has-had-it-with- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-home-video- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-in-the-style-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-scared-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-killed-your- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-lineup- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-mad-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-mixed-up- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-mugen- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-naptime- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-nice-list- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-rant- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-ranting- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-react-to- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-reacts-to- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-review- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-s-reaction i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-screencap- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-so-do-i- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-theif- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-this-character- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-tierlist i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-tv-character i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-ungrounded- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-upset-over- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-v-e-diagram i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-vs- i]:not([href*=dan-vs- i]))
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-wikis- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-wishlist- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-worried-about- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-you-hate- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=amazing-alphabet i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=animated-heroines i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=animation-showcase i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=asking-me-about i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=bad-cartoon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=become-canon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=best-character i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=best-favorite i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cartoons-were-good- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=chaingang i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=character-group i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=character-map- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=character-spectrum i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=character-tire- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=characters-response i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=childhood i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=chronices i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=collage i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=charlesws])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=controversy i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cries-over- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=everything-wrong-with i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-cartoon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-character i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-kid i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-show i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-things i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-tv- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=flyscratch])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=gacha i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=goes-to-jail i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=harsh-truth i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=headcanon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=hellfire i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=i-ship-it i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=in-sonic-style i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=jumpscare-reaction i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=kanepony i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=least-favorite i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=most-hated i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=movie-poster i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-favorite i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-favourite i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-first-crossover i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-opinion i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-ship i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-style i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-version i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=naughty-list i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=nazi i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=opinions i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=parody-song i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=popular-opinion i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=post-your-own- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=ranking i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=reactions-to- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=requst i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=scorecard i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=screenshot i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=ship-it-with- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=shows-i-like- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=teletubbies i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=the-shadow-realm i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=this-user-love i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=tier-list i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=title-card i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=title-is-too-long i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=title-too-long- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=top-1 i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=top-2 i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=top-3 i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=top-ten i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=tornado-spin i]:not([href*=taz i]))
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=underrated i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=walmart i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=wants-to-remove i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=wedding-request i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=western-animation i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=worst-animat i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=worst-frame- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=worst-to-best- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=wrong-series i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=rip-off i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=ripoff i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=knockoff i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Me-refuse-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-refuse-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-NOOOO])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-became-naked-in- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Is-" i][href*=-pretty- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/oddonehere/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Peril-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Why-do-we-love-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-into-a-base- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/unicornsmile/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=what-do-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=what-do-you-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-feels-sad-about- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=needs-more-fanart i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-toon-sing i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-favorite-movies- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-tv-y- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/chloedh1001/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-yells-at-the- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-should-I-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/quantuminnovator/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Philosoraptor-on-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-are-sleeps-with- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/breewildcat1997/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-furious-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-reaction-to- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-that-everyone-likes- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-but-I-don-t- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/top-0" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=ways-I-would-fix- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-pefers- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Ive-finally-seen-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-used-to-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-title-limit- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-in-the-nutshell- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/linag2005/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/10-things-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-devaint- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-fictional-characters-to- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Not-opposed-to-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-animated- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=grinds-my-gears i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Favorite-kissing-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-name-in-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-m-currently-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/amychen803/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-TV-show" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/luiforever/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-despise-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-want-the-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-m-an-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-in-awed- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-30" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-50" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/17chaos/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-doesnt-forgive- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-finds- i][href*=adorable i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-any-fans-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-angers-me- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-symphatise-with- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/divasaurus/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-made-me-sad- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=hated-character i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-love-this-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-thoughts-on-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-I-ship- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=shipping-inspiration i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-revange- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-questions-these- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-stands-up-for- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-a-bigger-role-in- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/name-a-ship-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-I-want-to-see-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/cameron33268110/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-your-thoughts-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-I-don-t-ship- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-don-t-ship-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-otp- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=mash-up-song i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-ship-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Why-are-people-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=crying-naked i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/superdavidkart/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-don-t-like-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=shipping-fans i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/superfoxdeer/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-prefer-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Any-thoughts-on-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=can-t-make-sense-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="kurisuwriting"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=what-do-you-like-about-])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/sup-fan/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-shocked-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-are-angry-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-reacts-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-tell-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-crying-about- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-angry-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Me-saving-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-fights-off- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-to-f-off- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-do-you-we-have- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-while-she-is-crying- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=report-card i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/hueylengyong15/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-throws-meatballs-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-prefers-])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/kraucheunas/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/VideoCapture-"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-have-a-crush-on-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=reason-you-suck i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=reasons-you-suck i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-are-not-amused- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/frie-ice/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=numberjacks i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=baby-food i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=counterpants i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-m-glad-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-feel-bad-for-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=need-more-fanart i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-and-you-know-what-for- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-simp-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-look-similar-to-you- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-s-inspirations- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-haters- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-bigger-fanbase- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=understand-the-hate i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Do-you-ship-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Characters-that-I-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-think-these-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-replace i][href*=-scene- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/smurfyunderdog/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-hates- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=teletubby i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-get-angry-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/234rfc/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/What-s-your-opinion-on-"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/mrlorgin/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/cheezitgangsta564/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=trash-show i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-rants-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/logomaxproductions/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-honest-thoughts-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-does-an-epic- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cringe-idiot i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=dumb-stupid i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-Yes-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/jdicarlo/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-television])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/xxxjavierrpfan2003xx/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/If-we-used-a-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-refuses-to-help- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/jazzystar123/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-that-deserve-worse- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-judging-chart- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Best-cartoon-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Best-cartoons-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Best-animated-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Create-your-own-TV-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-good-television- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/mryoshi1996/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/nayira12/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-shows-nowadays- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=tv-show-chart- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Why-I-hate-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/lh1200/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-asks-what-you-think- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/berryinthebigcityfan/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/blakej2009/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/gagetracey02/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/jawsandgumballfan24/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/liikotuari/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/masedog78/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-crossover-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/sailormonfan/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-briefly-has- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-deserve-more-screentime- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-Doesn-t-like-])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-faces-palms- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-traumatized-by- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-wyrh- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=Kisekae- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-i-like-and-recommend- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=judgement-chart i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-characters-I-like- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=next-ident- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/pauliesgirl2018/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Favorite-movie-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-no-list- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-hated-show- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="-1-hated-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/theemperorofhonor/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=celebrat i][href*=cancel i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/ptbf2002/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/touselinza/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=animat i][href*=atroci i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/stick-the-badger/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/sydneypie/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/mega-poneo/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/kirakiradolls/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/tigacc/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=azaleasdoll i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-grossed-out-by- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/animedalek1/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/adamhatson/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-think-both-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-doesnt-ship- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-feels-bad-for-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-awful-moment- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/neon-trainer03/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/deceddiolopez/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/jackskellington416/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/chipmunkraccoonoz/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-sad-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-movie-is-better- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/which-tv-show" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-dislikes-what- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-all-star-crossover- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Reaction-to-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/johnfanart101/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-you-re-opinion- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/jd23hedz/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/megacrystalswiftail/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/upeopilotjumbo/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/stars2017/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/All-Stars-Hero" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-verse-timeline- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/scott910/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/nyro1/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-that-deserve-sequels- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/warriormoonnight/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-confesses-his-love-for- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/roxyloopsy255/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-are-excited-for- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Myself-in-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-crush-list- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/lincolnkailanloud01/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Title-to-long-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/agent4ww2/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/operapf777/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Poorly-made-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-extra-cursed- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Rage-face-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-hate-modern- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-animation-rules- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-hate-Teen-Titans-Go- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-hates-Teen-Titans-Go- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-into-base- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-Life- i][href*=-Vent- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/glittertiara/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/martialartslover99/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/mlb910/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-" i][href*=-universe- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/pandraconian-king90/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=Characters-that-should- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favorite-shipping i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=full-title-in-description i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=shipping-choices i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=Things-that-should-not- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Soles-of-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/kyragthecat1/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/ariavampirerose7/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/darkmagicianmon/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/levecoli/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/matthiamore/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/more-10-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-ideas-for-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/perualonso/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-angered-by- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-cn-city i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-cutest-cartoon- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-facepalms-at-what- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-joins-the-battle- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-needs-more-fan-art- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cartoon-network-city i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cartoon-tv-show i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=thanks-cartoons- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=titles-are-too-long- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=top-twelve- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=worst i][href*=episode i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=year-of-cartoon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-edit-comic- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-episode-ideas- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-film-idea- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-best-anime- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-modified-reboots- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/deecat98/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/masteryubel/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/which-show-do-i-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=a-coincidence-on-something i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=big-lipped-alligator-moment i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=demotivational-poster i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=fandom-timeline i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/aacornsoup/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/bear-2/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/leosasuke2008/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/my-allies-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/pikachu-train/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/shellquake/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/sweetheart1012/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/thecartooniangallery/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/thehypercutter/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/zelrom/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-adaptation-idea i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-and-scold-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-crossverse i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-director-cut- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-drawverse- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-feels-bad-for- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-game-list- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-a-stand-user- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-ost-cover i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-reboot-ideas- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-sad-reaction- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-sequel-idea i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="5-ways-I-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=battle-fight-idea i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=best-movies-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=children-s-BBC- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=drake-disapprove i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=fanmade-deathbattle- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=first-official-poster i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=monsterverse i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-parody-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=nostalgia-starter i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=virgin i][href*=chad i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=nice-list-for- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-prefers- i][href*=-over- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-are-shocked-about- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/peanutslegofriends/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=worst-tv- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=blank-template i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=watch-blank- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-laughs-at-the- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-like-dislike- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=dislikes-ttg i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=dislike-ttg i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cinematic-adventure i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-had-a- i][href*=series i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/fan-poster-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="20-most-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=fandoms-I-m- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/joshuat1306/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/dannythegooddeviant/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/123riley123/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/homersimpson1983/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/maverickhunterofligh/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-me-as-a- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/megatomicbettylover1/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-was-terrible- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=terrfied-of- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-why-she-is-in- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-yells-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/alexlover366/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/rs307980/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/thereedster/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-birthday-picture i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-varriant- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/1200924/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/5francis5/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/danwind/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/alionnamedk/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/catwoman225/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-" i][href*=-fav- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/griffinknightavenger/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-never-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=never-ships- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-develops-a-crush-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/georgiacatcrimson/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Which-" i][href*=-deserves-to-be- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-makes-who-sad- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-beef-with-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-recent-attack-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-sick-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-feels-sad-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=belong-in-the-trash i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=belongs-in-the-trash i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-pacifier- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-dislikes- i][href*=-loves- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-not-amused-by- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-needs-more-popularity- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/darknessawakens13/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=refuses-to-ship- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-plan-on-watching- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-comforts-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-doesn-t-ship- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-ships-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-refuses-to-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/godzilla2137/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/greek1237/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Reasons-I-love- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/guihercharly/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/vokoban1/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=asdventures i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-lista-dei- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=semi-motivational i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=6-liked- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/angryobjects/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-hate-the-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Honest-opinion-on-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/christianmerrill/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/prabowomuhammad23/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-made- i][href*=-facepalm- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-would-you-cross" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/I-love-to-hate-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/candidalva11/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=best-cartoon-network i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=disney-tv-show i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Long-title-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-disgusted-at- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/katiefan200"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-shows-you-the- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-3-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/cartoonsbestever/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=all-time-favorite i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=best-media-ever i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cartoon-shows-ever i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=great-show-i- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=motivation-poster i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=movies-of-all-time i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-best-animated i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=shows-of-all-time i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-says-so-long-to- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-babbu- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/cmnieto/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/nicolefrancesca/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/ti-144/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-is-moved-by-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-likes-watching-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-Rescues-The-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/zmcdonald09/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=everyone-dislikes- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=everyone-loathes- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=full-title-below i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=parody-cover- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=proffesional i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=teletubies i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=the-wiggles- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=title-too-below i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=version-poster- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/javiergd200"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-shows-do-you- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/read-the-description" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/wolwatcher12/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=best-and-worst-movie i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=married-and-impregnate i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=marries-and-impregnate i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=poster-oficial i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=spongebobfan i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=the-sony-characters i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/agent4ww1/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/agustinsepulvedave/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/jorballata/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/My-characters-angry" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/peanutslego" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/tagirovo/" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-angry-is- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-scream-himself- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=amamzon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-best-cartoon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-nickelodeon-show i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-opinian i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=nickelodeon-war i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=worst-video-game i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-efect- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-in-g-major- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-OFICIAL-])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/eddy7454/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/mermaidlovertyler/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/pokemonmike/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/shinjugahan/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/thepenguinmaster1/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/vicksirenixft/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/winxgirl34/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-movie-logos- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-starz-play- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/appleberries22/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/melvin764g/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/muchtastic2008/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=BBFC])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=edutainment-network i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=endcredits i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=how-to-cleaning i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=how-to-fixing i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=networks-from-19 i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=studios-from-19 i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=studios-from-20 i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=title-is-in-the-description i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-fave-cartoon i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-is-not-overrated i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=-was-aired-on- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Bandicam-20" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/darkwinghomer/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/ehrisbrudt/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/mftondeviantart/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/trevorhines/"])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*="/Who-laughs-at-" i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=anime-shows-ever- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cartoon-shows-favorite i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=cartoons-that-deserve i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=favoirte i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=least-fave- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=likes-or-don-t-like i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=little-einsteins i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=movies-ever- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=my-best-shows- i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=tinky-winky i])
deviantart.com#?#div[style^="width:"][style*="display:"]:has(a[href*="/art/"][href*=worst-anime i])
deviantart.com##a[data-hook][href*="/art/"][href*="/10-characters-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/anti-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Characters-I-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Chibi-me-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Do-you-think-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Draw-your-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/fav-character-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-d-rather-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/i-don-t-support-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-A-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/i-support-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-ve-finally-seen-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-ve-started-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/List-of-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-and-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-as-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-in-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/me-loves-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/me-trying-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/me-when-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-1" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-20-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-8" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-experience-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-newest-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-own-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/my-top-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/question-" i][href*=-from- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/rant-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Shows-with-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Ten-most-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/thoughts-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-4" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-5" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-6" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-7" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-8" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-9" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Triggered-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/TV-shows-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/what-do-you-think-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/what-happened-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Which-character" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/who-loves-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/why-are-there-so-many-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Would-you-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Your-thoughts-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-and-friends- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bad-like- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-birthday-dates- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bonked-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bracket- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-cringes-over- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-daycare- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-fav i][href*=-hate i]
deviantart.com##a[data-hook][href*="/art/"][href*=-favorite-couple i]
deviantart.com##a[data-hook][href*="/art/"][href*=-five-most- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-gets-angry- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-gets-expelled- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-goanimate- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-grounded- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-has-had-it-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-home-video- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-the-style-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-scared-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-killed-your- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-lineup- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-mad-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-mixed-up- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-mugen- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-naptime- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-nice-list- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-rant- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-ranting- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-react-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reacts-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-review- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-s-reaction i]
deviantart.com##a[data-hook][href*="/art/"][href*=-screencap- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-so-do-i- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-theif- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-this-character- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tierlist i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tv-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=-ungrounded- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-upset-over- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-v-e-diagram i]
deviantart.com##a[data-hook][href*="/art/"][href*=-vs- i]:not([href*=dan-vs- i])
deviantart.com##a[data-hook][href*="/art/"][href*=-wikis- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-wishlist- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-worried-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-you-hate- i]
deviantart.com##a[data-hook][href*="/art/"][href*=amazing-alphabet i]
deviantart.com##a[data-hook][href*="/art/"][href*=animated-heroines i]
deviantart.com##a[data-hook][href*="/art/"][href*=animation-showcase i]
deviantart.com##a[data-hook][href*="/art/"][href*=asking-me-about i]
deviantart.com##a[data-hook][href*="/art/"][href*=bad-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=become-canon i]
deviantart.com##a[data-hook][href*="/art/"][href*=best-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=best-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=cartoons-were-good- i]
deviantart.com##a[data-hook][href*="/art/"][href*=chaingang i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-group i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-map- i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-spectrum i]
deviantart.com##a[data-hook][href*="/art/"][href*=character-tire- i]
deviantart.com##a[data-hook][href*="/art/"][href*=characters-response i]
deviantart.com##a[data-hook][href*="/art/"][href*=childhood i]
deviantart.com##a[data-hook][href*="/art/"][href*=chronices i]
deviantart.com##a[data-hook][href*="/art/"][href*=collage i]
deviantart.com##a[data-hook][href*="/art/"][href*=charlesws]
deviantart.com##a[data-hook][href*="/art/"][href*=controversy i]
deviantart.com##a[data-hook][href*="/art/"][href*=cries-over- i]
deviantart.com##a[data-hook][href*="/art/"][href*=everything-wrong-with i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-cartoon i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-character i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-kid i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-show i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-things i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-tv- i]
deviantart.com##a[data-hook][href*="/art/"][href*=flyscratch]
deviantart.com##a[data-hook][href*="/art/"][href*=gacha i]
deviantart.com##a[data-hook][href*="/art/"][href*=goes-to-jail i]
deviantart.com##a[data-hook][href*="/art/"][href*=harsh-truth i]
deviantart.com##a[data-hook][href*="/art/"][href*=headcanon i]
deviantart.com##a[data-hook][href*="/art/"][href*=hellfire i]
deviantart.com##a[data-hook][href*="/art/"][href*=i-ship-it i]
deviantart.com##a[data-hook][href*="/art/"][href*=in-sonic-style i]
deviantart.com##a[data-hook][href*="/art/"][href*=jumpscare-reaction i]
deviantart.com##a[data-hook][href*="/art/"][href*=kanepony i]
deviantart.com##a[data-hook][href*="/art/"][href*=least-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=most-hated i]
deviantart.com##a[data-hook][href*="/art/"][href*=movie-poster i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-favorite i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-favourite i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-first-crossover i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-opinion i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-ship i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-style i]
deviantart.com##a[data-hook][href*="/art/"][href*=my-version i]
deviantart.com##a[data-hook][href*="/art/"][href*=naughty-list i]
deviantart.com##a[data-hook][href*="/art/"][href*=nazi i]
deviantart.com##a[data-hook][href*="/art/"][href*=opinions i]
deviantart.com##a[data-hook][href*="/art/"][href*=parody-song i]
deviantart.com##a[data-hook][href*="/art/"][href*=popular-opinion i]
deviantart.com##a[data-hook][href*="/art/"][href*=post-your-own- i]
deviantart.com##a[data-hook][href*="/art/"][href*=ranking i]
deviantart.com##a[data-hook][href*="/art/"][href*=reactions-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=requst i]
deviantart.com##a[data-hook][href*="/art/"][href*=scorecard i]
deviantart.com##a[data-hook][href*="/art/"][href*=screenshot i]
deviantart.com##a[data-hook][href*="/art/"][href*=ship-it-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*=shows-i-like- i]
deviantart.com##a[data-hook][href*="/art/"][href*=teletubbies i]
deviantart.com##a[data-hook][href*="/art/"][href*=the-shadow-realm i]
deviantart.com##a[data-hook][href*="/art/"][href*=this-user-love i]
deviantart.com##a[data-hook][href*="/art/"][href*=tier-list i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-card i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-is-too-long i]
deviantart.com##a[data-hook][href*="/art/"][href*=title-too-long- i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-1 i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-2 i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-3 i]
deviantart.com##a[data-hook][href*="/art/"][href*=top-ten i]
deviantart.com##a[data-hook][href*="/art/"][href*=tornado-spin i]:not([href*=taz i])
deviantart.com##a[data-hook][href*="/art/"][href*=underrated i]
deviantart.com##a[data-hook][href*="/art/"][href*=walmart i]
deviantart.com##a[data-hook][href*="/art/"][href*=wants-to-remove i]
deviantart.com##a[data-hook][href*="/art/"][href*=wedding-request i]
deviantart.com##a[data-hook][href*="/art/"][href*=western-animation i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-animat i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-frame- i]
deviantart.com##a[data-hook][href*="/art/"][href*=worst-to-best- i]
deviantart.com##a[data-hook][href*="/art/"][href*=wrong-series i]
deviantart.com##a[data-hook][href*="/art/"][href*=rip-off i]
deviantart.com##a[data-hook][href*="/art/"][href*=ripoff i]
deviantart.com##a[data-hook][href*="/art/"][href*=knockoff i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-refuse-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-refuse-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-NOOOO]
deviantart.com##a[data-hook][href*="/art/"][href*=-became-naked-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Is-" i][href*=-pretty- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/oddonehere/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Peril-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Why-do-we-love-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-into-a-base- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/unicornsmile/"]
deviantart.com##a[data-hook][href*="/art/"][href*=what-do-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=what-do-you-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-feels-sad-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*=needs-more-fanart i]
deviantart.com##a[data-hook][href*="/art/"][href*=-toon-sing i]
deviantart.com##a[data-hook][href*="/art/"][href*=-favorite-movies- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-tv-y- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/chloedh1001/" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-yells-at-the- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Who-should-I-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/quantuminnovator/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/Philosoraptor-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-sleeps-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/breewildcat1997/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-furious-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reaction-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-that-everyone-likes- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-but-I-don-t- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/top-0" i]
deviantart.com##a[data-hook][href*="/art/"][href*=ways-I-would-fix- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-pefers- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Ive-finally-seen-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-used-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-title-limit- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-the-nutshell- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/linag2005/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/10-things-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-devaint- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-fictional-characters-to- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Not-opposed-to-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=favorite-animated- i]
deviantart.com##a[data-hook][href*="/art/"][href*=grinds-my-gears i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Favorite-kissing-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-name-in-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-currently-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/amychen803/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-TV-show" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/luiforever/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-despise-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-want-the-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-an-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-in-awed- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-30" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-50" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/17chaos/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-doesnt-forgive- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-finds- i][href*=adorable i]
deviantart.com##a[data-hook][href*="/art/"][href*=-any-fans-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-angers-me- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-symphatise-with- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/divasaurus/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-made-me-sad- i]
deviantart.com##a[data-hook][href*="/art/"][href*=hated-character i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-love-this-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-thoughts-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-ship- i]
deviantart.com##a[data-hook][href*="/art/"][href*=shipping-inspiration i]
deviantart.com##a[data-hook][href*="/art/"][href*=-revange- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-questions-these- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-stands-up-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-a-bigger-role-in- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/name-a-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-want-to-see-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/cameron33268110/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-your-thoughts-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-I-don-t-ship- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-don-t-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-otp- i]
deviantart.com##a[data-hook][href*="/art/"][href*=mash-up-song i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-ship-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Why-are-people-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=crying-naked i]
deviantart.com##a[data-hook][href*="/art/"][href*="/superdavidkart/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-don-t-like-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=shipping-fans i]
deviantart.com##a[data-hook][href*="/art/"][href*="/superfoxdeer/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-prefer-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Any-thoughts-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=can-t-make-sense-of- i]
deviantart.com##a[data-hook][href*="/art/"][href*="kurisuwriting"]
deviantart.com##a[data-hook][href*="/art/"][href*=what-do-you-like-about-]
deviantart.com##a[data-hook][href*="/art/"][href*="/sup-fan/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-shocked-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-angry-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-reacts-on- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-tell-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-crying-about- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-is-angry-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Me-saving-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-fights-off- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-to-f-off- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-do-you-we-have- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-while-she-is-crying- i]
deviantart.com##a[data-hook][href*="/art/"][href*=report-card i]
deviantart.com##a[data-hook][href*="/art/"][href*="/hueylengyong15/"]
deviantart.com##a[data-hook][href*="/art/"][href*=-throws-meatballs-at- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-prefers-]
deviantart.com##a[data-hook][href*="/art/"][href*="/kraucheunas/"]
deviantart.com##a[data-hook][href*="/art/"][href*="/VideoCapture-"]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-have-a-crush-on-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=reason-you-suck i]
deviantart.com##a[data-hook][href*="/art/"][href*=reasons-you-suck i]
deviantart.com##a[data-hook][href*="/art/"][href*=-are-not-amused- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/frie-ice/"]
deviantart.com##a[data-hook][href*="/art/"][href*=numberjacks i]
deviantart.com##a[data-hook][href*="/art/"][href*=baby-food i]
deviantart.com##a[data-hook][href*="/art/"][href*=counterpants i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-m-glad-" i]
deviantart.com##a[data-hook][href*="/art/"][href*="/I-feel-bad-for-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=need-more-fanart i]
deviantart.com##a[data-hook][href*="/art/"][href*=-and-you-know-what-for- i]
deviantart.com##a[data-hook][href*="/art/"][href*="/My-simp-" i]
deviantart.com##a[data-hook][href*="/art/"][href*=-look-similar-to-you- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-s-inspirations- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-haters- i]
deviantart.com##a[data-hook][href*="/art/"][href*=-bigger-fanbase- i]
deviantart.com##a[data-hook][href*="/art/"][href*=understand-the-hate i]
deviantart.com##a[data-hook][href*="/art/"][href*="/Do-you-ship-" i]