-
Notifications
You must be signed in to change notification settings - Fork 9
/
test.py
3722 lines (3671 loc) · 182 KB
/
test.py
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
# This has to go first because of monkeypatching in local_entry_point
from autotriever import local_entry_point # noqa
import sys
import logging
import json
import threading
from selenium import webdriver
import selenium.webdriver.chrome.service
import selenium.webdriver.chrome.options
import WebRequest
import autotriever.deps.logSetup
import autotriever.plugin_loader
from autotriever import dispatcher
QIDIAN_TEST_META = {
'https://www.webnovel.com/rssbook/15618689806357905/44660325517149986/Stubborn-Love-of-a-Roguish-Scion/HuntingSYMP, Chapter 90': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Stubborn Love of a Roguish Scion',
'resolved_url': 'https://www.webnovel.com/book/15618689806357905/44660325517149986/Stubborn-Love-of-a-Roguish-Scion/Hunting'
},
'https://www.webnovel.com/rssbook/8041181106002905/40090868723532875/Warlord-of-Chaos/CelebritiesWOC, Chapter 184': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Warlord of Chaos',
'resolved_url': 'https://www.webnovel.com/book/8041181106002905/40090868723532875/Warlord-of-Chaos/Celebrities'
},
'https://www.webnovel.com/rssbook/10442141605034505/41628651162227836/The-Great-Worm-Lich/New-York’s-BelieverTGWL, Chapter 621': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Great Worm Lich',
'resolved_url': 'https://www.webnovel.com/book/10442141605034505/41628651162227836/The-Great-Worm-Lich/New-York%E2%80%99s-Believer'
},
'https://www.webnovel.com/rssbook/13888929406066105/44790002374205489/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Aku-Tidak-Peduli,-Aku-Cinta-KauBP2:STYTB, Chapter 372': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/44790002374205489/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Aku-Tidak-Peduli%2C-Aku-Cinta-Kau'
},
'https://www.webnovel.com/rssbook/16523857005254305/44847670631655521/Cultivation-Taobao-Store/Chapter-190---Xiao-You-adventure-(3), Chapter 190': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Cultivation Taobao Store',
'resolved_url': 'https://www.webnovel.com/book/16523857005254305/44847670631655521/Cultivation-Taobao-Store/Chapter-190---Xiao-You-adventure-(3)'
},
'https://www.webnovel.com/rssbook/16523857005254305/44847580437335724/Cultivation-Taobao-Store/Chapter-188---Xiao-You-adventure-(1), Chapter 188': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Cultivation Taobao Store',
'resolved_url': 'https://www.webnovel.com/book/16523857005254305/44847580437335724/Cultivation-Taobao-Store/Chapter-188---Xiao-You-adventure-(1)'
},
'https://www.webnovel.com/rssbook/16523857005254305/44847623135354101/Cultivation-Taobao-Store/Chapter-189---Xiao-You-adventure-(2), Chapter 189': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Cultivation Taobao Store',
'resolved_url': 'https://www.webnovel.com/book/16523857005254305/44847623135354101/Cultivation-Taobao-Store/Chapter-189---Xiao-You-adventure-(2)'
},
'https://www.webnovel.com/rssbook/16523709605253705/44847448652311346/Kung-Fu-Beyond-the-World/Chapter-378---Kill-without-mercy, Chapter 378': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Kung Fu Beyond the World',
'resolved_url': 'https://www.webnovel.com/book/16523709605253705/44847448652311346/Kung-Fu-Beyond-the-World/Chapter-378---Kill-without-mercy'
},
'https://www.webnovel.com/rssbook/16523709605253705/44847404092025194/Kung-Fu-Beyond-the-World/Chapter-376---The-village-suddenly-became-rich, Chapter 376': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Kung Fu Beyond the World',
'resolved_url': 'https://www.webnovel.com/book/16523709605253705/44847404092025194/Kung-Fu-Beyond-the-World/Chapter-376---The-village-suddenly-became-rich'
},
'https://www.webnovel.com/rssbook/16523709605253705/44847427445910115/Kung-Fu-Beyond-the-World/Chapter-377---Land-Pangolin-God, Chapter 377': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Kung Fu Beyond the World',
'resolved_url': 'https://www.webnovel.com/book/16523709605253705/44847427445910115/Kung-Fu-Beyond-the-World/Chapter-377---Land-Pangolin-God'
},
'https://www.webnovel.com/rssbook/15618689806357905/44660325248714528/Stubborn-Love-of-a-Roguish-Scion/Sister-In-LawSYMP, Chapter 89': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Stubborn Love of a Roguish Scion',
'resolved_url': 'https://www.webnovel.com/book/15618689806357905/44660325248714528/Stubborn-Love-of-a-Roguish-Scion/Sister-In-Law'
},
'https://www.webnovel.com/rssbook/10442141605034505/41628598028782281/The-Great-Worm-Lich/The-InvadersTGWL, Chapter 620': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Great Worm Lich',
'resolved_url': 'https://www.webnovel.com/book/10442141605034505/41628598028782281/The-Great-Worm-Lich/The-Invaders'
},
"https://www.webnovel.com/rssbook/9087070605001805/32970117889452466/Warrior's-Promise/Jade-Cloud-Lake-in-Central-Continent,-I'm-waiting-for-you!AWP, Chapter 967": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "Warrior's Promise",
'resolved_url': 'https://www.webnovel.com/book/9087070605001805/32970117889452466/Warrior's-Promise/Jade-Cloud-Lake-in-Central-Continent%2C-I'm-waiting-for-you!'
},
'https://www.webnovel.com/rssbook/12905356906949105/41078404111463170/The-Bumpy-Road-of-Marriage:-The-Ex-Wife-Is-Expecting/The-Father-Of-My-ChildEWE, Chapter 354': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Bumpy Road of Marriage: The Ex-Wife Is Expecting',
'resolved_url': 'https://www.webnovel.com/book/12905356906949105/41078404111463170/The-Bumpy-Road-of-Marriage%3A-The-Ex-Wife-Is-Expecting/The-Father-Of-My-Child'
},
'https://www.webnovel.com/rssbook/13772664505174105/42534718805172760/Sword-Among-Us/The-Dungeon-of-the-Royal-MansionSAU, Chapter 490': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Sword Among Us',
'resolved_url': 'https://www.webnovel.com/book/13772664505174105/42534718805172760/Sword-Among-Us/The-Dungeon-of-the-Royal-Mansion'
},
'https://www.webnovel.com/rssbook/12905356906949105/41077414675148003/The-Bumpy-Road-of-Marriage:-The-Ex-Wife-Is-Expecting/But-You-Love-HimEWE, Chapter 353': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Bumpy Road of Marriage: The Ex-Wife Is Expecting',
'resolved_url': 'https://www.webnovel.com/book/12905356906949105/41077414675148003/The-Bumpy-Road-of-Marriage%3A-The-Ex-Wife-Is-Expecting/But-You-Love-Him'
},
'https://www.webnovel.com/rssbook/13373465406646405/42235400118401449/Good-Morning,-Mister-Dragon!/Don’t-Look-at-Her,-She’s-Not-a-Good-PersonGMMD, Chapter 506': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Good Morning, Mister Dragon!',
'resolved_url': 'https://www.webnovel.com/book/13373465406646405/42235400118401449/Good-Morning%2C-Mister-Dragon!/Don%E2%80%99t-Look-at-Her%2C-She%E2%80%99s-Not-a-Good-Person'
},
'https://www.webnovel.com/rssbook/14011317605955805/44792692365907869/The-Sweetest-Medicine/A-Threat:-I-Want-You-To-Help-MeTSM, Chapter 439': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Sweetest Medicine',
'resolved_url': 'https://www.webnovel.com/book/14011317605955805/44792692365907869/The-Sweetest-Medicine/A-Threat%3A-I-Want-You-To-Help-Me'
},
'https://www.webnovel.com/rssbook/11660247905469805/40154804143585753/Nano-Machine-(Retranslated-Version)/266-Night-in-the-Inn-(2), Chapter 266': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Nano Machine (Retranslated Version)',
'resolved_url': 'https://www.webnovel.com/book/11660247905469805/40154804143585753/Nano-Machine-(Retranslated-Version)/266-Night-in-the-Inn-(2)'
},
'https://www.webnovel.com/rssbook/14374767306223005/41614469180213818/Descent-of-the-Demon-God/Emergency-Shareholder-Meeting-(5), Chapter 132': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Descent of the Demon God',
'resolved_url': 'https://www.webnovel.com/book/14374767306223005/41614469180213818/Descent-of-the-Demon-God/Emergency-Shareholder-Meeting-(5)'
},
'https://www.webnovel.com/rssbook/13311963706454205/44860504816024723/Story-of-a-Big-Player-from-Gangnam/Expanding-Logistics-Business-into-Overseas-Market-(2)-–-Part-1, Chapter 456': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Story of a Big Player from Gangnam',
'resolved_url': 'https://www.webnovel.com/book/13311963706454205/44860504816024723/Story-of-a-Big-Player-from-Gangnam/Expanding-Logistics-Business-into-Overseas-Market-(2)-%E2%80%93-Part-1'
},
'https://www.webnovel.com/rssbook/11954071206653305/44813471149257023/Empire-of-the-Ring/A-Battle-(2), Chapter 733': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Empire of the Ring',
'resolved_url': 'https://www.webnovel.com/book/11954071206653305/44813471149257023/Empire-of-the-Ring/A-Battle-(2)'
},
'https://www.webnovel.com/rssbook/11954071206653305/44793100136151285/Empire-of-the-Ring/A-Battle-(1), Chapter 732': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Empire of the Ring',
'resolved_url': 'https://www.webnovel.com/book/11954071206653305/44793100136151285/Empire-of-the-Ring/A-Battle-(1)'
},
'https://www.webnovel.com/rssbook/14374767306223005/41614465690552886/Descent-of-the-Demon-God/Emergency-Shareholder-Meeting-(4), Chapter 131': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Descent of the Demon God',
'resolved_url': 'https://www.webnovel.com/book/14374767306223005/41614465690552886/Descent-of-the-Demon-God/Emergency-Shareholder-Meeting-(4)'
},
'https://www.webnovel.com/rssbook/13311963706454205/44820370208903625/Story-of-a-Big-Player-from-Gangnam/Expanding-Logistics-Business-into-Overseas-Market-(1)-–-Part-2, Chapter 455': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Story of a Big Player from Gangnam',
'resolved_url': 'https://www.webnovel.com/book/13311963706454205/44820370208903625/Story-of-a-Big-Player-from-Gangnam/Expanding-Logistics-Business-into-Overseas-Market-(1)-%E2%80%93-Part-2'
},
'https://www.webnovel.com/rssbook/14591197806945805/44849066496016529/Emperor-of-Steel/Gigant-Development-4, Chapter 315': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Emperor of Steel',
'resolved_url': 'https://www.webnovel.com/book/14591197806945805/44849066496016529/Emperor-of-Steel/Gigant-Development-4'
},
'https://www.webnovel.com/rssbook/14591197806945805/44849031599423317/Emperor-of-Steel/Gigant-Development-3, Chapter 314': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Emperor of Steel',
'resolved_url': 'https://www.webnovel.com/book/14591197806945805/44849031599423317/Emperor-of-Steel/Gigant-Development-3'
},
'https://www.webnovel.com/rssbook/11022733006234505/43764545646281681/Lord-of-the-Mysteries/Traveling-NotebookLoM, Chapter 1112': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Lord of the Mysteries',
'resolved_url': 'https://www.webnovel.com/book/11022733006234505/43764545646281681/Lord-of-the-Mysteries/Traveling-Notebook'
},
'https://www.webnovel.com/rssbook/14009364006015205/44853216524953736/The-Law-of-Webnovels/Chapter-253, Chapter 253': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Law of Webnovels',
'resolved_url': 'https://www.webnovel.com/book/14009364006015205/44853216524953736/The-Law-of-Webnovels/Chapter-253'
},
'https://www.webnovel.com/rssbook/14009364006015205/44853204445358079/The-Law-of-Webnovels/Chapter-252, Chapter 252': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Law of Webnovels',
'resolved_url': 'https://www.webnovel.com/book/14009364006015205/44853204445358079/The-Law-of-Webnovels/Chapter-252'
},
'https://www.webnovel.com/rssbook/14009364006015205/44853192617415043/The-Law-of-Webnovels/Chapter-251, Chapter 251': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'The Law of Webnovels',
'resolved_url': 'https://www.webnovel.com/book/14009364006015205/44853192617415043/The-Law-of-Webnovels/Chapter-251'
},
'https://www.webnovel.com/rssbook/14107168305361805/44844423636372247/Soul-Land-IV-(Douluo-Dalu)-:-Ultimate-Fighting/Bing-TianliangSLIV, Chapter 189': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Soul Land IV (Douluo Dalu) : Ultimate Fighting',
'resolved_url': 'https://www.webnovel.com/book/14107168305361805/44844423636372247/Soul-Land-IV-(Douluo-Dalu)-%3A-Ultimate-Fighting/Bing-Tianliang'
},
'https://www.webnovel.com/rssbook/7853880705001905/36153955956345992/Pursuit-of-the-Truth/Beyond-Ancient-Zang-SkiesPoT, Chapter 1477': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Pursuit of the Truth',
'resolved_url': 'https://www.webnovel.com/book/7853880705001905/36153955956345992/Pursuit-of-the-Truth/Beyond-Ancient-Zang-Skies'
},
'https://www.webnovel.com/rssbook/7853880705001905/36153950033989557/Pursuit-of-the-Truth/My-Thirty-SkiesPoT, Chapter 1476': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Pursuit of the Truth',
'resolved_url': 'https://www.webnovel.com/book/7853880705001905/36153950033989557/Pursuit-of-the-Truth/My-Thirty-Skies'
},
'https://www.webnovel.com/rssbook/13769162806201605/42640561026429482/Game-thủ-mang-tên-Thành-phố-dưới-lòng-đất/Chương-475:-Đội-ngũ-cứu-việnGNUG, Chapter 473': {
'type': 'translated',
'ad_free': True,
'language': 'vi',
'series_name': 'Game thủ mang tên Thành phố dưới lòng đất',
'resolved_url': 'https://www.webnovel.com/book/13769162806201605/42640561026429482/Game-th%E1%BB%A7-mang-t%C3%AAn-Th%C3%A0nh-ph%E1%BB%91-d%C6%B0%E1%BB%9Bi-l%C3%B2ng-%C4%91%E1%BA%A5t/Ch%C6%B0%C6%A1ng-475%3A-%C4%90%E1%BB%99i-ng%C5%A9-c%E1%BB%A9u-vi%E1%BB%87n'
},
'https://www.webnovel.com/rssbook/13769162806201605/42640560221123105/Game-thủ-mang-tên-Thành-phố-dưới-lòng-đất/Chương-474:-Những-người-này-bị-bệnh-tâm-thần-à!-GNUG, Chapter 472': {
'type': 'translated',
'ad_free': True,
'language': 'vi',
'series_name': 'Game thủ mang tên Thành phố dưới lòng đất',
'resolved_url': 'https://www.webnovel.com/book/13769162806201605/42640560221123105/Game-th%E1%BB%A7-mang-t%C3%AAn-Th%C3%A0nh-ph%E1%BB%91-d%C6%B0%E1%BB%9Bi-l%C3%B2ng-%C4%91%E1%BA%A5t/Ch%C6%B0%C6%A1ng-474%3A-Nh%E1%BB%AFng-ng%C6%B0%E1%BB%9Di-n%C3%A0y-b%E1%BB%8B-b%E1%BB%87nh-t%C3%A2m-th%E1%BA%A7n-%C3%A0!-'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205847430757151/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Permaisuri-Es-TerbangunBP2:STYTB, Chapter 98': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205847430757151/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Permaisuri-Es-Terbangun'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205826492786477/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Menerobos-Penjara,-Penguasa-Es-AbadiBP2:STYTB, Chapter 97': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205826492786477/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Menerobos-Penjara%2C-Penguasa-Es-Abadi'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205805017949906/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Pertempuran-Penentuan-3-Lawan-3!BP2:STYTB, Chapter 96': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205805017949906/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Pertempuran-Penentuan-3-Lawan-3!'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205780858758672/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Kemuliaan-Shrek!BP2:STYTB, Chapter 95': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205780858758672/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Kemuliaan-Shrek!'
},
'https://www.webnovel.com/rssbook/13769162806201605/42640551094317487/Game-thủ-mang-tên-Thành-phố-dưới-lòng-đất/Chương-473:-Chạy-trốn-GNUG, Chapter 471': {
'type': 'translated',
'ad_free': True,
'language': 'vi',
'series_name': 'Game thủ mang tên Thành phố dưới lòng đất',
'resolved_url': 'https://www.webnovel.com/book/13769162806201605/42640551094317487/Game-th%E1%BB%A7-mang-t%C3%AAn-Th%C3%A0nh-ph%E1%BB%91-d%C6%B0%E1%BB%9Bi-l%C3%B2ng-%C4%91%E1%BA%A5t/Ch%C6%B0%C6%A1ng-473%3A-Ch%E1%BA%A1y-tr%E1%BB%91n-'
},
"https://www.webnovel.com/rssbook/8335483105000205/43802851385857243/The-Evil-Consort-Above-An-Evil-King/Aren't-You-Going-To-Blame-Me?-(3)VVC, Chapter 2895": {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'The Evil Consort Above An Evil King',
'resolved_url': 'https://www.webnovel.com/book/8335483105000205/43802851385857243/The-Evil-Consort-Above-An-Evil-King/Aren't-You-Going-To-Blame-Me%3F-(3)'
},
"https://www.webnovel.com/rssbook/8335483105000205/43802820247351428/The-Evil-Consort-Above-An-Evil-King/Aren't-You-Going-To-Blame-Me?-(2)VVC, Chapter 2894": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Evil Consort Above An Evil King',
'resolved_url': 'https://www.webnovel.com/book/8335483105000205/43802820247351428/The-Evil-Consort-Above-An-Evil-King/Aren't-You-Going-To-Blame-Me%3F-(2)'
},
'https://www.webnovel.com/rssbook/7853880705001905/36013950491490052/Pursuit-of-the-Truth/Planting-a-PromisePoT, Chapter 1461': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Pursuit of the Truth',
'resolved_url': 'https://www.webnovel.com/book/7853880705001905/36013950491490052/Pursuit-of-the-Truth/Planting-a-Promise'
},
'https://www.webnovel.com/rssbook/7853880705001905/36013900294058560/Pursuit-of-the-Truth/I’ll-Help-You!PoT, Chapter 1454': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Pursuit of the Truth',
'resolved_url': 'https://www.webnovel.com/book/7853880705001905/36013900294058560/Pursuit-of-the-Truth/I%E2%80%99ll-Help-You!'
},
'https://www.webnovel.com/rssbook/11263692606307605/44551304734884289/The-Lord’s-Empire/Hu-XieTLE, Chapter 1593': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'The Lord’s Empire',
'resolved_url': 'https://www.webnovel.com/book/11263692606307605/44551304734884289/The-Lord%E2%80%99s-Empire/Hu-Xie'
},
"https://www.webnovel.com/rssbook/8335483105000205/43802811925852175/The-Evil-Consort-Above-An-Evil-King/Aren't-You-Going-To-Blame-Me?VVC, Chapter 2893": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Evil Consort Above An Evil King',
'resolved_url': 'https://www.webnovel.com/book/8335483105000205/43802811925852175/The-Evil-Consort-Above-An-Evil-King/Aren't-You-Going-To-Blame-Me%3F'
},
'https://www.webnovel.com/rssbook/8335483105000205/43802799863029449/The-Evil-Consort-Above-An-Evil-King/Getting-Drunk-(3)VVC, Chapter 2892': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Evil Consort Above An Evil King',
'resolved_url': 'https://www.webnovel.com/book/8335483105000205/43802799863029449/The-Evil-Consort-Above-An-Evil-King/Getting-Drunk-(3)'
},
"https://www.webnovel.com/rssbook/12905356906949105/41050641459639274/The-Bumpy-Road-of-Marriage:-The-Ex-Wife-Is-Expecting/The-Little-Darling's-DaddyEWE, Chapter 352": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Bumpy Road of Marriage: The Ex-Wife Is Expecting',
'resolved_url': 'https://www.webnovel.com/book/12905356906949105/41050641459639274/The-Bumpy-Road-of-Marriage%3A-The-Ex-Wife-Is-Expecting/The-Little-Darling's-Daddy'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205758024966026/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Meriam-Perpaduan-Super-Yang-Putus-AsaBP2:STYTB, Chapter 94': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205758024966026/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Meriam-Perpaduan-Super-Yang-Putus-Asa'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205738177516042/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Kemuliaan-Shrek!BP2:STYTB, Chapter 93': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205738177516042/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Kemuliaan-Shrek!'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205713481453928/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Kebangunan-Dunia-BawahBP2:STYTB, Chapter 92': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205713481453928/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Kebangunan-Dunia-Bawah'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205696033149167/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Pertempuran-PenentuanBP2:STYTB, Chapter 91': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205696033149167/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Pertempuran-Penentuan'
},
'https://www.webnovel.com/rssbook/15532164606886805/44475026400934653/Evil-Awe-Inspiring/Despise-a-hundred-times, Chapter 92': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Evil Awe-Inspiring',
'resolved_url': 'https://www.webnovel.com/book/15532164606886805/44475026400934653/Evil-Awe-Inspiring/Despise-a-hundred-times'
},
'https://www.webnovel.com/rssbook/11022730305240505/41617417960488616/Ninth-In-the-World/Need-To-Learn-How-To-Be-an-Eloquent-Speaker-FirstNITW, Chapter 444': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Ninth In the World',
'resolved_url': 'https://www.webnovel.com/book/11022730305240505/41617417960488616/Ninth-In-the-World/Need-To-Learn-How-To-Be-an-Eloquent-Speaker-First'
},
"https://www.webnovel.com/rssbook/13976997305757105/39467379075367926/Invincible-Divine-Dragon's-Cultivation-System/The-Female-Light-Divine-DragonIDDCS, Chapter 222": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "Invincible Divine Dragon's Cultivation System",
'resolved_url': 'https://www.webnovel.com/book/13976997305757105/39467379075367926/Invincible-Divine-Dragon's-Cultivation-System/The-Female-Light-Divine-Dragon'
},
"https://www.webnovel.com/rssbook/13976997305757105/39467390618092622/Invincible-Divine-Dragon's-Cultivation-System/Progenitor-Tree-IDDCS, Chapter 223": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "Invincible Divine Dragon's Cultivation System",
'resolved_url': 'https://www.webnovel.com/book/13976997305757105/39467390618092622/Invincible-Divine-Dragon's-Cultivation-System/Progenitor-Tree-'
},
"https://www.webnovel.com/rssbook/13976997305757105/39467376391013349/Invincible-Divine-Dragon's-Cultivation-System/Glowing-Like-a-Goddess-IDDCS, Chapter 221": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "Invincible Divine Dragon's Cultivation System",
'resolved_url': 'https://www.webnovel.com/book/13976997305757105/39467376391013349/Invincible-Divine-Dragon's-Cultivation-System/Glowing-Like-a-Goddess-'
},
'https://www.webnovel.com/rssbook/14045471906194905/44007897167878872/League-of-Legends:-League-of-Unknowns/The-Incredible-Middle-lanerLOU, Chapter 401': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'League of Legends: League of Unknowns',
'resolved_url': 'https://www.webnovel.com/book/14045471906194905/44007897167878872/League-of-Legends%3A-League-of-Unknowns/The-Incredible-Middle-laner'
},
'https://www.webnovel.com/rssbook/14045471906194905/44007899583798007/League-of-Legends:-League-of-Unknowns/Battle-of-the-RichesLOU, Chapter 402': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'League of Legends: League of Unknowns',
'resolved_url': 'https://www.webnovel.com/book/14045471906194905/44007899583798007/League-of-Legends%3A-League-of-Unknowns/Battle-of-the-Riches'
},
'https://www.webnovel.com/rssbook/14045471906194905/44007902788250794/League-of-Legends:-League-of-Unknowns/Vayne-is-BannedLOU, Chapter 403': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'League of Legends: League of Unknowns',
'resolved_url': 'https://www.webnovel.com/book/14045471906194905/44007902788250794/League-of-Legends%3A-League-of-Unknowns/Vayne-is-Banned'
},
"https://www.webnovel.com/rssbook/6838665602002105/44065300731195667/A-Sorcerer's-Journey/Myna-the-TutorASJ, Chapter 546": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "A Sorcerer's Journey",
'resolved_url': 'https://www.webnovel.com/book/6838665602002105/44065300731195667/A-Sorcerer's-Journey/Myna-the-Tutor'
},
"https://www.webnovel.com/rssbook/6838665602002105/44065304237629736/A-Sorcerer's-Journey/Muyi-the-Greatsword-SlayerASJ, Chapter 547": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "A Sorcerer's Journey",
'resolved_url': 'https://www.webnovel.com/book/6838665602002105/44065304237629736/A-Sorcerer's-Journey/Muyi-the-Greatsword-Slayer'
},
"https://www.webnovel.com/rssbook/6838665602002105/44077220355955329/A-Sorcerer's-Journey/The-Workshop-FactoryASJ, Chapter 548": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "A Sorcerer's Journey",
'resolved_url': 'https://www.webnovel.com/book/6838665602002105/44077220355955329/A-Sorcerer's-Journey/The-Workshop-Factory'
},
'https://www.webnovel.com/rssbook/12266174706182005/44406596280829060/Top-Sexy-Girl-Group/Chapter-125:-The-Battle-on-the-Tubes, Chapter 125': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Top Sexy Girl Group',
'resolved_url': 'https://www.webnovel.com/book/12266174706182005/44406596280829060/Top-Sexy-Girl-Group/Chapter-125%3A-The-Battle-on-the-Tubes'
},
'https://www.webnovel.com/rssbook/13888929406066105/40205661136551076/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Gila-akan-ShrekBP2:STYTB, Chapter 90': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/40205661136551076/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Gila-akan-Shrek'
},
'https://www.webnovel.com/rssbook/11022730305240505/41617417675262075/Ninth-In-the-World/Yin-Wushang-Retreats,-The-Killing-Array-Is-ActivatedNITW, Chapter 442': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Ninth In the World',
'resolved_url': 'https://www.webnovel.com/book/11022730305240505/41617417675262075/Ninth-In-the-World/Yin-Wushang-Retreats%2C-The-Killing-Array-Is-Activated'
},
'https://www.webnovel.com/rssbook/11022730305240505/41617417943697533/Ninth-In-the-World/A-Fleeting-MomentNITW, Chapter 443': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Ninth In the World',
'resolved_url': 'https://www.webnovel.com/book/11022730305240505/41617417943697533/Ninth-In-the-World/A-Fleeting-Moment'
},
"https://www.webnovel.com/rssbook/6838665602002105/44064456233244474/A-Sorcerer's-Journey/RejectedASJ, Chapter 544": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "A Sorcerer's Journey",
'resolved_url': 'https://www.webnovel.com/book/6838665602002105/44064456233244474/A-Sorcerer's-Journey/Rejected'
},
"https://www.webnovel.com/rssbook/6838665602002105/44064466165356439/A-Sorcerer's-Journey/The-Origins-of-SorcerersASJ, Chapter 545": {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': "A Sorcerer's Journey",
'resolved_url': 'https://www.webnovel.com/book/6838665602002105/44064466165356439/A-Sorcerer's-Journey/The-Origins-of-Sorcerers'
},
"https://www.webnovel.com/rssbook/13976997305757105/39467367247433013/Invincible-Divine-Dragon's-Cultivation-System/Can't-Afford-To-Offend,-Can't-Afford-To-OffendIDDCS, Chapter 220": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "Invincible Divine Dragon's Cultivation System",
'resolved_url': 'https://www.webnovel.com/book/13976997305757105/39467367247433013/Invincible-Divine-Dragon's-Cultivation-System/Can't-Afford-To-Offend%2C-Can't-Afford-To-Offend'
},
'https://www.webnovel.com/rssbook/14045471906194905/44007893409782454/League-of-Legends:-League-of-Unknowns/A-Challenge-from-NoxusLOU, Chapter 400': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'League of Legends: League of Unknowns',
'resolved_url': 'https://www.webnovel.com/book/14045471906194905/44007893409782454/League-of-Legends%3A-League-of-Unknowns/A-Challenge-from-Noxus'
},
'https://www.webnovel.com/rssbook/14045471906194905/44007874350864842/League-of-Legends:-League-of-Unknowns/Number-OneLOU, Chapter 399': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'League of Legends: League of Unknowns',
'resolved_url': 'https://www.webnovel.com/book/14045471906194905/44007874350864842/League-of-Legends%3A-League-of-Unknowns/Number-One'
},
'https://www.webnovel.com/rssbook/11022730305240505/41617417692053158/Ninth-In-the-World/The-Peace-HotelNITW, Chapter 441': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Ninth In the World',
'resolved_url': 'https://www.webnovel.com/book/11022730305240505/41617417692053158/Ninth-In-the-World/The-Peace-Hotel'
},
'https://www.webnovel.com/rssbook/11022730305240505/41617417423617701/Ninth-In-the-World/We-Can-Only-Go-Somewhere-ElseNITW, Chapter 440': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Ninth In the World',
'resolved_url': 'https://www.webnovel.com/book/11022730305240505/41617417423617701/Ninth-In-the-World/We-Can-Only-Go-Somewhere-Else'
},
"https://www.webnovel.com/rssbook/13976997305757105/39467364848303491/Invincible-Divine-Dragon's-Cultivation-System/Miracle-Doctor-Wang,-Please-Give-Me-Your-OrderIDDCS, Chapter 219": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': "Invincible Divine Dragon's Cultivation System",
'resolved_url': 'https://www.webnovel.com/book/13976997305757105/39467364848303491/Invincible-Divine-Dragon's-Cultivation-System/Miracle-Doctor-Wang%2C-Please-Give-Me-Your-Order'
},
'https://www.webnovel.com/rssbook/14045471906194905/44007870575995654/League-of-Legends:-League-of-Unknowns/Living-In-a-Hard-DriveLOU, Chapter 398': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'League of Legends: League of Unknowns',
'resolved_url': 'https://www.webnovel.com/book/14045471906194905/44007870575995654/League-of-Legends%3A-League-of-Unknowns/Living-In-a-Hard-Drive'
},
'https://www.webnovel.com/rssbook/14045471906194905/44007865492503318/League-of-Legends:-League-of-Unknowns/Qi-Qiao’s-MentorLOU, Chapter 397': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'League of Legends: League of Unknowns',
'resolved_url': 'https://www.webnovel.com/book/14045471906194905/44007865492503318/League-of-Legends%3A-League-of-Unknowns/Qi-Qiao%E2%80%99s-Mentor'
},
'https://www.webnovel.com/rssbook/13888929406066105/39508510634998498/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Asal-Mula-Kehancuran,-He-CaitouBP2:STYTB, Chapter 89': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/39508510634998498/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Asal-Mula-Kehancuran%2C-He-Caitou'
},
'https://www.webnovel.com/rssbook/13587410505358405/44847179394772596/The-Emperor’s-Daughter/The-Emperor’s-Daughter-Chapter.-278, Chapter 278': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Emperor’s Daughter',
'resolved_url': 'https://www.webnovel.com/book/13587410505358405/44847179394772596/The-Emperor%E2%80%99s-Daughter/The-Emperor%E2%80%99s-Daughter-Chapter.-278'
},
'https://www.webnovel.com/rssbook/13587410505358405/44847172147015222/The-Emperor’s-Daughter/The-Emperor’s-Daughter-Chapter.-277, Chapter 277': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Emperor’s Daughter',
'resolved_url': 'https://www.webnovel.com/book/13587410505358405/44847172147015222/The-Emperor%E2%80%99s-Daughter/The-Emperor%E2%80%99s-Daughter-Chapter.-277'
},
'https://www.webnovel.com/rssbook/13888929406066105/39508492633032520/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Nyonya-Kembar-Api-dan-Es,-Tombak-Seribu-SeranganBP2:STYTB, Chapter 88': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/39508492633032520/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Nyonya-Kembar-Api-dan-Es%2C-Tombak-Seribu-Serangan'
},
'https://www.webnovel.com/rssbook/13888929406066105/39508473305679561/Benua-Pertarungan-2:-Sekte-Tang-Yang-Tiada-Bandingannya/Emas-KehidupanBP2:STYTB, Chapter 87': {
'type': 'translated',
'ad_free': False,
'language': 'in',
'series_name': 'Benua Pertarungan 2: Sekte Tang Yang Tiada Bandingannya',
'resolved_url': 'https://www.webnovel.com/book/13888929406066105/39508473305679561/Benua-Pertarungan-2%3A-Sekte-Tang-Yang-Tiada-Bandingannya/Emas-Kehidupan'
},
'https://www.webnovel.com/rssbook/8099443605005505/22860037890300944/The-Unrivaled-Tang-Sect/Perfect-Fusion,-The-Red-Soul-RingUTS, Chapter 44': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/22860037890300944/The-Unrivaled-Tang-Sect/Perfect-Fusion%2C-The-Red-Soul-Ring'
},
'https://www.webnovel.com/rssbook/8099443605005505/22860095603923985/The-Unrivaled-Tang-Sect/You’re-Still-Alive?UTS, Chapter 45': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/22860095603923985/The-Unrivaled-Tang-Sect/You%E2%80%99re-Still-Alive%3F'
},
'https://www.webnovel.com/rssbook/8099443605005505/22860122447469586/The-Unrivaled-Tang-Sect/The-Spirit-Eyes’-Second-Soul-SkillUTS, Chapter 46': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/22860122447469586/The-Unrivaled-Tang-Sect/The-Spirit-Eyes%E2%80%99-Second-Soul-Skill'
},
'https://www.webnovel.com/rssbook/8099443605005505/22860227405732883/The-Unrivaled-Tang-Sect/The-Badge-of-a-Class-2-Soul-EngineerUTS, Chapter 47': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/22860227405732883/The-Unrivaled-Tang-Sect/The-Badge-of-a-Class-2-Soul-Engineer'
},
'https://www.webnovel.com/rssbook/8099443605005505/28376011489999911/The-Unrivaled-Tang-Sect/A-Terrifying-Deterrence!UTS, Chapter 48': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28376011489999911/The-Unrivaled-Tang-Sect/A-Terrifying-Deterrence!'
},
'https://www.webnovel.com/rssbook/8099443605005505/28376161562182331/The-Unrivaled-Tang-Sect/The-Claw-of-the-Ice-Empress-UTS, Chapter 49': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28376161562182331/The-Unrivaled-Tang-Sect/The-Claw-of-the-Ice-Empress-'
},
'https://www.webnovel.com/rssbook/8099443605005505/28376312674581550/The-Unrivaled-Tang-Sect/Ancestor-Tang-San...UTS, Chapter 50': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28376312674581550/The-Unrivaled-Tang-Sect/Ancestor-Tang-San...'
},
'https://www.webnovel.com/rssbook/8099443605005505/28376344349965359/The-Unrivaled-Tang-Sect/The-Butterfly-Goddess-Slash-and-the-Berserk-White-TigerUTS, Chapter 51': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28376344349965359/The-Unrivaled-Tang-Sect/The-Butterfly-Goddess-Slash-and-the-Berserk-White-Tiger'
},
"https://www.webnovel.com/rssbook/8099443605005505/28427691489281729/The-Unrivaled-Tang-Sect/The-Ice-Empress'-ArmorUTS, Chapter 52": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28427691489281729/The-Unrivaled-Tang-Sect/The-Ice-Empress'-Armor'
},
'https://www.webnovel.com/rssbook/8099443605005505/28427747340635509/The-Unrivaled-Tang-Sect/-Irrefutable-Benefits?UTS, Chapter 53': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28427747340635509/The-Unrivaled-Tang-Sect/-Irrefutable-Benefits%3F'
},
"https://www.webnovel.com/rssbook/8099443605005505/28427849597765315/The-Unrivaled-Tang-Sect/Meeting-at-the-Sea-God's-PavilionUTS, Chapter 54": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28427849597765315/The-Unrivaled-Tang-Sect/Meeting-at-the-Sea-God's-Pavilion'
},
"https://www.webnovel.com/rssbook/8099443605005505/28427881021492603/The-Unrivaled-Tang-Sect/A-Soul-Engineer!-Huo-Yuhao's-True-Strong-PointUTS, Chapter 55": {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28427881021492603/The-Unrivaled-Tang-Sect/A-Soul-Engineer!-Huo-Yuhao's-True-Strong-Point'
},
'https://www.webnovel.com/rssbook/8099443605005505/28427945177566588/The-Unrivaled-Tang-Sect/The-Treasure-Appreciation-AuctionUTS, Chapter 56': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28427945177566588/The-Unrivaled-Tang-Sect/The-Treasure-Appreciation-Auction'
},
'https://www.webnovel.com/rssbook/8099443605005505/28427966904059588/The-Unrivaled-Tang-Sect/The-Golden-Left-Arm-BoneUTS, Chapter 57': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28427966904059588/The-Unrivaled-Tang-Sect/The-Golden-Left-Arm-Bone'
},
'https://www.webnovel.com/rssbook/8099443605005505/28427993210734277/The-Unrivaled-Tang-Sect/The-Boundary-Between-Life-and-DeathUTS, Chapter 58': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28427993210734277/The-Unrivaled-Tang-Sect/The-Boundary-Between-Life-and-Death'
},
'https://www.webnovel.com/rssbook/8099443605005505/28428017906796230/The-Unrivaled-Tang-Sect/The-Berserk-Flamedevil-Ma-Xiaotao!UTS, Chapter 59': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'The Unrivaled Tang Sect',
'resolved_url': 'https://www.webnovel.com/book/8099443605005505/28428017906796230/The-Unrivaled-Tang-Sect/The-Berserk-Flamedevil-Ma-Xiaotao!'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870366247/Coiling-Dragon/The-Yulan-Empire’s-Special-EnvoyCD, Chapter 255': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870366247/Coiling-Dragon/The-Yulan-Empire%E2%80%99s-Special-Envoy'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395142766621/Coiling-Dragon/Blessing,-CurseCD, Chapter 511': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395142766621/Coiling-Dragon/Blessing%2C-Curse'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395683602452/Coiling-Dragon/Magic-Compilation,-Fusion-Sovereign!CD, Chapter 767': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395683602452/Coiling-Dragon/Magic-Compilation%2C-Fusion-Sovereign!'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870906917/Coiling-Dragon/DeliaCD, Chapter 256': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870906917/Coiling-Dragon/Delia'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412267036/Coiling-Dragon/Violet-Light-Rising-to-the-HeavensCD, Chapter 512': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412267036/Coiling-Dragon/Violet-Light-Rising-to-the-Heavens'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953217556/Coiling-Dragon/EntrustedCD, Chapter 768': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953217556/Coiling-Dragon/Entrusted'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870923301/Coiling-Dragon/Meeting-Ten-Years-LaterCD, Chapter 257': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870923301/Coiling-Dragon/Meeting-Ten-Years-Later'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412283420/Coiling-Dragon/The-Strange-Fog-SeaCD, Chapter 513': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412283420/Coiling-Dragon/The-Strange-Fog-Sea'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953233940/Coiling-Dragon/Dragonblood-ContinentCD, Chapter 769': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953233940/Coiling-Dragon/Dragonblood-Continent'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870874149/Coiling-Dragon/Delia’s-ProtectorCD, Chapter 258': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870874149/Coiling-Dragon/Delia%E2%80%99s-Protector'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412299804/Coiling-Dragon/HighgodCD, Chapter 514': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412299804/Coiling-Dragon/Highgod'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953184788/Coiling-Dragon/EntreatyCD, Chapter 770': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953184788/Coiling-Dragon/Entreaty'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870890533/Coiling-Dragon/The-Anticipation-of-the-CrowdCD, Chapter 259': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870890533/Coiling-Dragon/The-Anticipation-of-the-Crowd'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412316188/Coiling-Dragon/Amethyst-BeastsCD, Chapter 515': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412316188/Coiling-Dragon/Amethyst-Beasts'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953201172/Coiling-Dragon/The-Next-Five-Thousand-YearsCD, Chapter 771': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953201172/Coiling-Dragon/The-Next-Five-Thousand-Years'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870972453/Coiling-Dragon/DesperateCD, Chapter 260': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870972453/Coiling-Dragon/Desperate'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412201500/Coiling-Dragon/The-Storm-CavesCD, Chapter 516': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412201500/Coiling-Dragon/The-Storm-Caves'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953152020/Coiling-Dragon/Sword-IntentCD, Chapter 772': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953152020/Coiling-Dragon/Sword-Intent'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870988837/Coiling-Dragon/AstonishmentCD, Chapter 261': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870988837/Coiling-Dragon/Astonishment'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412217884/Coiling-Dragon/The-RescueCD, Chapter 517': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412217884/Coiling-Dragon/The-Rescue'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953168404/Coiling-Dragon/Hunt-and-Kill,-A-Storm-Brews!CD, Chapter 773': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953168404/Coiling-Dragon/Hunt-and-Kill%2C-A-Storm-Brews!'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870939685/Coiling-Dragon/Fame-Spreading-FarCD, Chapter 262': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870939685/Coiling-Dragon/Fame-Spreading-Far'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412234268/Coiling-Dragon/Juvenile-BeastCD, Chapter 518': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412234268/Coiling-Dragon/Juvenile-Beast'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953119252/Coiling-Dragon/The-First-Display-of-PowerCD, Chapter 774': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953119252/Coiling-Dragon/The-First-Display-of-Power'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394870956069/Coiling-Dragon/Anarchic-Lands!CD, Chapter 263': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394870956069/Coiling-Dragon/Anarchic-Lands!'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412250652/Coiling-Dragon/Fleeing-For-Their-LivesCD, Chapter 519': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412250652/Coiling-Dragon/Fleeing-For-Their-Lives'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953135636/Coiling-Dragon/PunishmentCD, Chapter 775': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953135636/Coiling-Dragon/Punishment'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394871037989/Coiling-Dragon/Reynolds’-CrisisCD, Chapter 264': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394871037989/Coiling-Dragon/Reynolds%E2%80%99-Crisis'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412398108/Coiling-Dragon/Life-in-the-Amethyst-MountainsCD, Chapter 520': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412398108/Coiling-Dragon/Life-in-the-Amethyst-Mountains'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953348628/Coiling-Dragon/The-Gathering-of-the-SovereignsCD, Chapter 776': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953348628/Coiling-Dragon/The-Gathering-of-the-Sovereigns'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394871054373/Coiling-Dragon/Grievous-News-on-the-Wedding-DayCD, Chapter 265': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394871054373/Coiling-Dragon/Grievous-News-on-the-Wedding-Day'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412414492/Coiling-Dragon/Trapped-Five-Hundred-YearsCD, Chapter 521': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412414492/Coiling-Dragon/Trapped-Five-Hundred-Years'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953365012/Coiling-Dragon/Covetous-IntentCD, Chapter 777': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953365012/Coiling-Dragon/Covetous-Intent'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394871005221/Coiling-Dragon/Is-it-True?CD, Chapter 266': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394871005221/Coiling-Dragon/Is-it-True%3F'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412430876/Coiling-Dragon/108CD, Chapter 522': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412430876/Coiling-Dragon/108'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953315860/Coiling-Dragon/The-VerdictCD, Chapter 778': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953315860/Coiling-Dragon/The-Verdict'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394871021605/Coiling-Dragon/Up-and-the-TruthCD, Chapter 267': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394871021605/Coiling-Dragon/Up-and-the-Truth'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412447260/Coiling-Dragon/Black-StoneCD, Chapter 523': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412447260/Coiling-Dragon/Black-Stone'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953332244/Coiling-Dragon/Tenfold-Victor’s-RewardCD, Chapter 779': {
'type': 'translated',
'ad_free': False,
'language': 'unknown',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395953332244/Coiling-Dragon/Tenfold-Victor%E2%80%99s-Reward'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727394871103525/Coiling-Dragon/The-Secrets-of-the-Yulan-ContinentCD, Chapter 268': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727394871103525/Coiling-Dragon/The-Secrets-of-the-Yulan-Continent'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395412332572/Coiling-Dragon/Ten-Years-of-HarvestingCD, Chapter 524': {
'type': 'translated',
'ad_free': False,
'language': 'en',
'series_name': 'Coiling Dragon',
'resolved_url': 'https://www.webnovel.com/book/8094085105004705/21727395412332572/Coiling-Dragon/Ten-Years-of-Harvesting'
},
'https://www.webnovel.com/rssbook/8094085105004705/21727395953283092/Coiling-Dragon/Divine-Beast,-Sable-LeviathanCD, Chapter 780': {