rsshub 1.0.0-master.ffe7305 → 1.0.0-master.ffff545

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rsshub might be problematic. Click here for more details.

Files changed (10243) hide show
  1. package/README.md +26 -40
  2. package/lib/api/index.ts +31 -0
  3. package/lib/api/namespace/all.ts +17 -0
  4. package/lib/api/namespace/one.ts +33 -0
  5. package/lib/api/radar/rules/all.ts +59 -0
  6. package/lib/api/radar/rules/one.ts +75 -0
  7. package/lib/app.test.ts +11 -0
  8. package/lib/app.tsx +55 -0
  9. package/lib/assets/logo.png +0 -0
  10. package/lib/config.test.ts +99 -0
  11. package/lib/config.ts +708 -0
  12. package/lib/errors/index.test.ts +88 -0
  13. package/lib/errors/index.tsx +74 -0
  14. package/lib/errors/types/config-not-found.ts +5 -0
  15. package/lib/errors/types/invalid-parameter.ts +5 -0
  16. package/lib/errors/types/not-found.ts +5 -0
  17. package/lib/errors/types/reject.ts +5 -0
  18. package/lib/errors/types/request-in-progress.ts +5 -0
  19. package/lib/index.ts +25 -0
  20. package/lib/middleware/access-control.test.ts +47 -0
  21. package/lib/middleware/access-control.ts +25 -0
  22. package/lib/middleware/anti-hotlink.test.ts +255 -0
  23. package/lib/middleware/anti-hotlink.ts +139 -0
  24. package/lib/middleware/cache.test.ts +189 -0
  25. package/lib/middleware/cache.ts +76 -0
  26. package/lib/middleware/debug.test.ts +40 -0
  27. package/lib/middleware/debug.ts +37 -0
  28. package/lib/middleware/filter-engine.test.ts +39 -0
  29. package/lib/middleware/header.test.ts +39 -0
  30. package/lib/middleware/header.ts +48 -0
  31. package/lib/middleware/logger.ts +40 -0
  32. package/lib/middleware/parameter.test.ts +445 -0
  33. package/lib/middleware/parameter.ts +393 -0
  34. package/lib/middleware/sentry.ts +27 -0
  35. package/lib/middleware/template.test.ts +111 -0
  36. package/lib/middleware/template.tsx +112 -0
  37. package/lib/pkg.test.ts +68 -0
  38. package/lib/pkg.ts +21 -0
  39. package/lib/registry.test.ts +32 -0
  40. package/lib/registry.ts +110 -0
  41. package/lib/router.js +125 -2382
  42. package/lib/routes/005/index.ts +156 -0
  43. package/lib/routes/005/namespace.ts +8 -0
  44. package/lib/routes/005/templates/description.art +27 -0
  45. package/lib/routes/0818tuan/index.ts +70 -0
  46. package/lib/routes/0818tuan/namespace.ts +6 -0
  47. package/lib/routes/0x80/index.ts +87 -0
  48. package/lib/routes/0x80/namespace.ts +7 -0
  49. package/lib/routes/12306/index.ts +132 -0
  50. package/lib/routes/12306/namespace.ts +6 -0
  51. package/lib/routes/12306/zxdt.ts +85 -0
  52. package/lib/routes/12371/namespace.ts +7 -0
  53. package/lib/routes/12371/zxfb.ts +64 -0
  54. package/lib/routes/141jav/index.ts +117 -0
  55. package/lib/routes/141jav/namespace.ts +9 -0
  56. package/lib/routes/141jav/templates/description.art +47 -0
  57. package/lib/routes/141ppv/index.ts +120 -0
  58. package/lib/routes/141ppv/namespace.ts +9 -0
  59. package/lib/routes/141ppv/templates/description.art +47 -0
  60. package/lib/routes/163/ds.ts +60 -0
  61. package/lib/routes/163/dy.ts +51 -0
  62. package/lib/routes/163/dy2.ts +60 -0
  63. package/lib/routes/163/exclusive.ts +194 -0
  64. package/lib/routes/163/music/artist-songs.ts +61 -0
  65. package/lib/routes/163/music/artist.ts +61 -0
  66. package/lib/routes/163/music/djradio.ts +100 -0
  67. package/lib/routes/163/music/playlist.ts +76 -0
  68. package/lib/routes/163/music/userevents.ts +64 -0
  69. package/lib/routes/163/music/userplaylist.ts +78 -0
  70. package/lib/routes/163/music/userplayrecords.ts +83 -0
  71. package/lib/routes/163/namespace.ts +9 -0
  72. package/lib/routes/163/news/rank.ts +193 -0
  73. package/lib/routes/163/news/special.ts +138 -0
  74. package/lib/routes/163/open/vip.ts +92 -0
  75. package/lib/routes/163/renjian.ts +105 -0
  76. package/lib/routes/163/today.ts +85 -0
  77. package/lib/routes/163/utils.ts +40 -0
  78. package/lib/routes/18comic/album.ts +107 -0
  79. package/lib/routes/18comic/blogs.ts +97 -0
  80. package/lib/routes/18comic/index.ts +61 -0
  81. package/lib/routes/18comic/namespace.ts +9 -0
  82. package/lib/routes/18comic/search.ts +50 -0
  83. package/lib/routes/18comic/templates/description.art +12 -0
  84. package/lib/routes/18comic/utils.ts +88 -0
  85. package/lib/routes/19lou/index.ts +114 -0
  86. package/lib/routes/19lou/namespace.ts +6 -0
  87. package/lib/routes/1lou/index.ts +147 -0
  88. package/lib/routes/1lou/namespace.ts +8 -0
  89. package/lib/routes/1point3acres/blog.ts +94 -0
  90. package/lib/routes/1point3acres/category.ts +57 -0
  91. package/lib/routes/1point3acres/namespace.ts +6 -0
  92. package/lib/routes/1point3acres/offer.ts +106 -0
  93. package/lib/routes/1point3acres/section.ts +77 -0
  94. package/lib/routes/1point3acres/thread.ts +37 -0
  95. package/lib/routes/1point3acres/user/post.ts +45 -0
  96. package/lib/routes/1point3acres/user/thread.ts +45 -0
  97. package/lib/routes/1point3acres/utils.ts +79 -0
  98. package/lib/routes/1x/index.ts +121 -0
  99. package/lib/routes/1x/namespace.ts +8 -0
  100. package/lib/routes/1x/templates/description.art +17 -0
  101. package/lib/routes/2023game/index.ts +69 -0
  102. package/lib/routes/2023game/namespace.ts +6 -0
  103. package/lib/routes/2048/index.ts +173 -0
  104. package/lib/routes/2048/namespace.ts +6 -0
  105. package/lib/routes/2cycd/index.ts +66 -0
  106. package/lib/routes/2cycd/namespace.ts +6 -0
  107. package/lib/routes/36kr/hot-list.ts +88 -0
  108. package/lib/routes/36kr/index.ts +75 -0
  109. package/lib/routes/36kr/namespace.ts +6 -0
  110. package/lib/routes/36kr/utils.ts +35 -0
  111. package/lib/routes/3dmgame/game.ts +49 -0
  112. package/lib/routes/3dmgame/namespace.ts +6 -0
  113. package/lib/routes/3dmgame/news-center.ts +70 -0
  114. package/lib/routes/3dmgame/utils.ts +28 -0
  115. package/lib/routes/3kns/index.ts +121 -0
  116. package/lib/routes/3kns/namespace.ts +6 -0
  117. package/lib/routes/3kns/templates/description.art +9 -0
  118. package/lib/routes/423down/index.ts +280 -0
  119. package/lib/routes/423down/namespace.ts +8 -0
  120. package/lib/routes/423down/templates/description.art +21 -0
  121. package/lib/routes/4gamers/category.ts +47 -0
  122. package/lib/routes/4gamers/namespace.ts +6 -0
  123. package/lib/routes/4gamers/tag.ts +49 -0
  124. package/lib/routes/4gamers/templates/description.art +3 -0
  125. package/lib/routes/4gamers/templates/image.art +3 -0
  126. package/lib/routes/4gamers/topic.ts +48 -0
  127. package/lib/routes/4gamers/utils.ts +71 -0
  128. package/lib/routes/4ksj/forum.ts +196 -0
  129. package/lib/routes/4ksj/namespace.ts +6 -0
  130. package/lib/routes/4ksj/templates/description.art +59 -0
  131. package/lib/routes/500px/namespace.ts +6 -0
  132. package/lib/routes/500px/tribe-set.ts +43 -0
  133. package/lib/routes/500px/utils.ts +116 -0
  134. package/lib/routes/50forum/namespace.ts +6 -0
  135. package/lib/routes/50forum/zhuanjia.ts +67 -0
  136. package/lib/routes/51cto/namespace.ts +6 -0
  137. package/lib/routes/51cto/recommend.ts +52 -0
  138. package/lib/routes/51cto/utils.ts +21 -0
  139. package/lib/routes/52hrtt/index.ts +79 -0
  140. package/lib/routes/52hrtt/namespace.ts +6 -0
  141. package/lib/routes/52hrtt/symposium.ts +89 -0
  142. package/lib/routes/56kog/class.ts +37 -0
  143. package/lib/routes/56kog/namespace.ts +6 -0
  144. package/lib/routes/56kog/templates/description.art +32 -0
  145. package/lib/routes/56kog/top.ts +33 -0
  146. package/lib/routes/56kog/util.ts +111 -0
  147. package/lib/routes/591/list.ts +170 -0
  148. package/lib/routes/591/namespace.ts +6 -0
  149. package/lib/routes/5eplay/index.ts +126 -0
  150. package/lib/routes/5eplay/namespace.ts +6 -0
  151. package/lib/routes/5eplay/utils.ts +32 -0
  152. package/lib/routes/69shu/article.ts +96 -0
  153. package/lib/routes/69shu/namespace.ts +6 -0
  154. package/lib/routes/6park/index.ts +80 -0
  155. package/lib/routes/6park/namespace.ts +6 -0
  156. package/lib/routes/6park/news.ts +89 -0
  157. package/lib/routes/6v123/latest-movies.ts +39 -0
  158. package/lib/routes/6v123/latest-tvseries.ts +39 -0
  159. package/lib/routes/6v123/namespace.ts +6 -0
  160. package/lib/routes/6v123/utils.ts +86 -0
  161. package/lib/routes/78dm/index.ts +87 -0
  162. package/lib/routes/78dm/namespace.ts +6 -0
  163. package/lib/routes/7mmtv/index.ts +122 -0
  164. package/lib/routes/7mmtv/namespace.ts +6 -0
  165. package/lib/routes/81/81rc/index.ts +108 -0
  166. package/lib/routes/81/namespace.ts +8 -0
  167. package/lib/routes/8264/list.ts +172 -0
  168. package/lib/routes/8264/namespace.ts +6 -0
  169. package/lib/routes/8264/templates/description.art +5 -0
  170. package/lib/routes/8kcos/article.ts +24 -0
  171. package/lib/routes/8kcos/cat.ts +38 -0
  172. package/lib/routes/8kcos/const.ts +4 -0
  173. package/lib/routes/8kcos/latest.ts +50 -0
  174. package/lib/routes/8kcos/namespace.ts +6 -0
  175. package/lib/routes/8kcos/tag.ts +49 -0
  176. package/lib/routes/8world/index.ts +67 -0
  177. package/lib/routes/8world/namespace.ts +6 -0
  178. package/lib/routes/91porn/author.ts +90 -0
  179. package/lib/routes/91porn/index.ts +93 -0
  180. package/lib/routes/91porn/namespace.ts +9 -0
  181. package/lib/routes/91porn/utils.ts +11 -0
  182. package/lib/routes/95mm/category.ts +48 -0
  183. package/lib/routes/95mm/namespace.ts +6 -0
  184. package/lib/routes/95mm/tab.ts +36 -0
  185. package/lib/routes/95mm/tag.ts +34 -0
  186. package/lib/routes/95mm/utils.ts +63 -0
  187. package/lib/routes/9to5/namespace.ts +6 -0
  188. package/lib/routes/9to5/subsite.ts +79 -0
  189. package/lib/routes/9to5/utils.ts +34 -0
  190. package/lib/routes/a9vg/a9vg.ts +45 -0
  191. package/lib/routes/a9vg/namespace.ts +6 -0
  192. package/lib/routes/aamacau/index.ts +93 -0
  193. package/lib/routes/aamacau/namespace.ts +6 -0
  194. package/lib/routes/abc/index.ts +191 -0
  195. package/lib/routes/abc/namespace.ts +6 -0
  196. package/lib/routes/abc/templates/description.art +21 -0
  197. package/lib/routes/abmedia/category.ts +58 -0
  198. package/lib/routes/abmedia/index.ts +51 -0
  199. package/lib/routes/abmedia/namespace.ts +6 -0
  200. package/lib/routes/abskoop/index.ts +63 -0
  201. package/lib/routes/abskoop/namespace.ts +6 -0
  202. package/lib/routes/abskoop/nsfw.ts +46 -0
  203. package/lib/routes/academia/namespace.ts +6 -0
  204. package/lib/routes/academia/topics.ts +49 -0
  205. package/lib/routes/accessbriefing/index.ts +217 -0
  206. package/lib/routes/accessbriefing/namespace.ts +8 -0
  207. package/lib/routes/accessbriefing/templates/description.art +27 -0
  208. package/lib/routes/acfun/article.ts +132 -0
  209. package/lib/routes/acfun/bangumi.ts +51 -0
  210. package/lib/routes/acfun/namespace.ts +6 -0
  211. package/lib/routes/acfun/video.ts +63 -0
  212. package/lib/routes/acg17/namespace.ts +6 -0
  213. package/lib/routes/acg17/post.ts +45 -0
  214. package/lib/routes/acpaa/index.ts +77 -0
  215. package/lib/routes/acpaa/namespace.ts +6 -0
  216. package/lib/routes/acs/journal.ts +91 -0
  217. package/lib/routes/acs/namespace.ts +6 -0
  218. package/lib/routes/aeaweb/index.ts +115 -0
  219. package/lib/routes/aeaweb/namespace.ts +6 -0
  220. package/lib/routes/aeon/category.ts +51 -0
  221. package/lib/routes/aeon/namespace.ts +6 -0
  222. package/lib/routes/aeon/templates/essay.art +3 -0
  223. package/lib/routes/aeon/templates/video.art +10 -0
  224. package/lib/routes/aeon/type.ts +57 -0
  225. package/lib/routes/aeon/utils.ts +55 -0
  226. package/lib/routes/afdian/dynamic.ts +47 -0
  227. package/lib/routes/afdian/explore.ts +78 -0
  228. package/lib/routes/afdian/namespace.ts +6 -0
  229. package/lib/routes/agefans/detail.ts +55 -0
  230. package/lib/routes/agefans/namespace.ts +6 -0
  231. package/lib/routes/agefans/update.ts +75 -0
  232. package/lib/routes/agefans/utils.ts +3 -0
  233. package/lib/routes/agirls/index.ts +60 -0
  234. package/lib/routes/agirls/namespace.ts +6 -0
  235. package/lib/routes/agirls/topic-list.ts +56 -0
  236. package/lib/routes/agirls/topic.ts +56 -0
  237. package/lib/routes/agirls/utils.ts +28 -0
  238. package/lib/routes/agora0/index.ts +83 -0
  239. package/lib/routes/agora0/namespace.ts +6 -0
  240. package/lib/routes/agora0/pen0.ts +69 -0
  241. package/lib/routes/ahjzu/namespace.ts +6 -0
  242. package/lib/routes/ahjzu/news.ts +83 -0
  243. package/lib/routes/aicaijing/index.ts +84 -0
  244. package/lib/routes/aicaijing/namespace.ts +6 -0
  245. package/lib/routes/aiea/index.ts +63 -0
  246. package/lib/routes/aiea/namespace.ts +6 -0
  247. package/lib/routes/aijishu/index.ts +50 -0
  248. package/lib/routes/aijishu/namespace.ts +6 -0
  249. package/lib/routes/aijishu/utils.ts +35 -0
  250. package/lib/routes/ainvest/article.ts +67 -0
  251. package/lib/routes/ainvest/namespace.ts +6 -0
  252. package/lib/routes/ainvest/news.ts +64 -0
  253. package/lib/routes/ainvest/utils.ts +68 -0
  254. package/lib/routes/aip/journal-pupp.ts +62 -0
  255. package/lib/routes/aip/journal.ts +84 -0
  256. package/lib/routes/aip/namespace.ts +6 -0
  257. package/lib/routes/aip/utils.ts +29 -0
  258. package/lib/routes/airchina/index.ts +64 -0
  259. package/lib/routes/airchina/namespace.ts +6 -0
  260. package/lib/routes/aisixiang/column.ts +65 -0
  261. package/lib/routes/aisixiang/namespace.ts +6 -0
  262. package/lib/routes/aisixiang/thinktank.ts +72 -0
  263. package/lib/routes/aisixiang/toplist.ts +55 -0
  264. package/lib/routes/aisixiang/utils.ts +39 -0
  265. package/lib/routes/aisixiang/zhuanti.ts +68 -0
  266. package/lib/routes/ajmide/index.ts +48 -0
  267. package/lib/routes/ajmide/namespace.ts +6 -0
  268. package/lib/routes/alipan/files.ts +80 -0
  269. package/lib/routes/alipan/namespace.ts +7 -0
  270. package/lib/routes/alipan/types.ts +62 -0
  271. package/lib/routes/aliresearch/information.ts +86 -0
  272. package/lib/routes/aliresearch/namespace.ts +6 -0
  273. package/lib/routes/alistapart/index.ts +34 -0
  274. package/lib/routes/alistapart/namespace.ts +6 -0
  275. package/lib/routes/alistapart/topic.ts +93 -0
  276. package/lib/routes/alistapart/utils.ts +22 -0
  277. package/lib/routes/aliyun/database-month.ts +66 -0
  278. package/lib/routes/aliyun/developer/group.ts +73 -0
  279. package/lib/routes/aliyun/namespace.ts +6 -0
  280. package/lib/routes/aliyun/notice.ts +83 -0
  281. package/lib/routes/aljazeera/index.ts +103 -0
  282. package/lib/routes/aljazeera/namespace.ts +6 -0
  283. package/lib/routes/ally/namespace.ts +6 -0
  284. package/lib/routes/ally/rail.ts +137 -0
  285. package/lib/routes/alternativeto/namespace.ts +6 -0
  286. package/lib/routes/alternativeto/platform.ts +59 -0
  287. package/lib/routes/alternativeto/software.ts +59 -0
  288. package/lib/routes/alternativeto/utils.ts +21 -0
  289. package/lib/routes/amazon/awsblogs.ts +35 -0
  290. package/lib/routes/amazon/kindle-software-updates.ts +70 -0
  291. package/lib/routes/amazon/namespace.ts +6 -0
  292. package/lib/routes/android/namespace.ts +6 -0
  293. package/lib/routes/android/platform-tools-releases.ts +72 -0
  294. package/lib/routes/annualreviews/index.ts +99 -0
  295. package/lib/routes/annualreviews/namespace.ts +6 -0
  296. package/lib/routes/anquanke/category.ts +62 -0
  297. package/lib/routes/anquanke/namespace.ts +9 -0
  298. package/lib/routes/anquanke/vul.ts +36 -0
  299. package/lib/routes/apache/apisix/blog.ts +51 -0
  300. package/lib/routes/apache/namespace.ts +6 -0
  301. package/lib/routes/apiseven/blog.ts +68 -0
  302. package/lib/routes/apiseven/namespace.ts +6 -0
  303. package/lib/routes/apkpure/namespace.ts +6 -0
  304. package/lib/routes/apkpure/versions.ts +68 -0
  305. package/lib/routes/apnews/namespace.ts +6 -0
  306. package/lib/routes/apnews/rss.ts +41 -0
  307. package/lib/routes/apnews/topics.ts +56 -0
  308. package/lib/routes/apnews/utils.ts +42 -0
  309. package/lib/routes/app-center/namespace.ts +6 -0
  310. package/lib/routes/app-center/release.ts +151 -0
  311. package/lib/routes/apple/apps.ts +137 -0
  312. package/lib/routes/apple/exchange-repair.ts +73 -0
  313. package/lib/routes/apple/namespace.ts +6 -0
  314. package/lib/routes/apple/podcast.ts +64 -0
  315. package/lib/routes/appleinsider/index.ts +88 -0
  316. package/lib/routes/appleinsider/namespace.ts +6 -0
  317. package/lib/routes/appstore/in-app-purchase.ts +80 -0
  318. package/lib/routes/appstore/namespace.ts +6 -0
  319. package/lib/routes/appstore/price.ts +82 -0
  320. package/lib/routes/appstore/xianmian.ts +53 -0
  321. package/lib/routes/appstorrent/namespace.ts +6 -0
  322. package/lib/routes/appstorrent/programs.ts +91 -0
  323. package/lib/routes/appstorrent/templates/description.art +22 -0
  324. package/lib/routes/aqara/community.ts +51 -0
  325. package/lib/routes/aqara/namespace.ts +6 -0
  326. package/lib/routes/aqara/news.ts +62 -0
  327. package/lib/routes/aqara/post.ts +104 -0
  328. package/lib/routes/aqara/region.ts +18 -0
  329. package/lib/routes/aqara/templates/figure.art +3 -0
  330. package/lib/routes/aqicn/aqi.ts +82 -0
  331. package/lib/routes/aqicn/namespace.ts +6 -0
  332. package/lib/routes/arcteryx/namespace.ts +6 -0
  333. package/lib/routes/arcteryx/new-arrivals.ts +77 -0
  334. package/lib/routes/arcteryx/outlet.ts +79 -0
  335. package/lib/routes/arcteryx/regear-new-arrivals.ts +77 -0
  336. package/lib/routes/arcteryx/utils.ts +21 -0
  337. package/lib/routes/artstation/namespace.ts +6 -0
  338. package/lib/routes/artstation/templates/description.art +17 -0
  339. package/lib/routes/artstation/user.ts +126 -0
  340. package/lib/routes/asiantolick/index.ts +132 -0
  341. package/lib/routes/asiantolick/namespace.ts +6 -0
  342. package/lib/routes/asiantolick/templates/description.art +9 -0
  343. package/lib/routes/asus/bios.ts +67 -0
  344. package/lib/routes/asus/gpu-tweak.ts +56 -0
  345. package/lib/routes/asus/namespace.ts +6 -0
  346. package/lib/routes/atcoder/contest.ts +103 -0
  347. package/lib/routes/atcoder/namespace.ts +6 -0
  348. package/lib/routes/atcoder/post.ts +57 -0
  349. package/lib/routes/atptour/namespace.ts +7 -0
  350. package/lib/routes/atptour/news.ts +52 -0
  351. package/lib/routes/auto-stats/index.ts +88 -0
  352. package/lib/routes/auto-stats/namespace.ts +6 -0
  353. package/lib/routes/baai/events.ts +47 -0
  354. package/lib/routes/baai/hub.ts +98 -0
  355. package/lib/routes/baai/namespace.ts +6 -0
  356. package/lib/routes/baai/utils.ts +42 -0
  357. package/lib/routes/backlinko/blog.ts +70 -0
  358. package/lib/routes/backlinko/namespace.ts +6 -0
  359. package/lib/routes/bad/index.ts +67 -0
  360. package/lib/routes/bad/namespace.ts +6 -0
  361. package/lib/routes/baidu/gushitong/index.ts +56 -0
  362. package/lib/routes/baidu/namespace.ts +6 -0
  363. package/lib/routes/baidu/search.ts +77 -0
  364. package/lib/routes/baidu/templates/description.art +6 -0
  365. package/lib/routes/baidu/templates/tieba_search.art +1 -0
  366. package/lib/routes/baidu/tieba/forum.ts +86 -0
  367. package/lib/routes/baidu/tieba/post.ts +107 -0
  368. package/lib/routes/baidu/tieba/search.ts +93 -0
  369. package/lib/routes/baidu/tieba/user.ts +53 -0
  370. package/lib/routes/baidu/top.ts +59 -0
  371. package/lib/routes/bandcamp/live.ts +66 -0
  372. package/lib/routes/bandcamp/namespace.ts +6 -0
  373. package/lib/routes/bandcamp/tag.ts +72 -0
  374. package/lib/routes/bandcamp/weekly.ts +57 -0
  375. package/lib/routes/bangumi/moe/index.ts +109 -0
  376. package/lib/routes/bangumi/namespace.ts +6 -0
  377. package/lib/routes/bangumi/online/online.ts +56 -0
  378. package/lib/routes/bangumi/tv/calendar/_base.ts +38 -0
  379. package/lib/routes/bangumi/tv/calendar/today.ts +92 -0
  380. package/lib/routes/bangumi/tv/group/reply.ts +83 -0
  381. package/lib/routes/bangumi/tv/group/topic.ts +64 -0
  382. package/lib/routes/bangumi/tv/other/followrank.ts +80 -0
  383. package/lib/routes/bangumi/tv/person/index.ts +62 -0
  384. package/lib/routes/bangumi/tv/subject/comments.ts +48 -0
  385. package/lib/routes/bangumi/tv/subject/ep.ts +36 -0
  386. package/lib/routes/bangumi/tv/subject/index.ts +57 -0
  387. package/lib/routes/bangumi/tv/subject/offcial-subject-api.ts +34 -0
  388. package/lib/routes/bangumi/tv/subject/utils.ts +3 -0
  389. package/lib/routes/bangumi/tv/user/blog.ts +68 -0
  390. package/lib/routes/bangumi/tv/user/wish.ts +62 -0
  391. package/lib/routes/baozimh/index.ts +80 -0
  392. package/lib/routes/baozimh/namespace.ts +6 -0
  393. package/lib/routes/barronschina/index.ts +100 -0
  394. package/lib/routes/barronschina/namespace.ts +6 -0
  395. package/lib/routes/bast/index.ts +84 -0
  396. package/lib/routes/bast/namespace.ts +6 -0
  397. package/lib/routes/bbc/index.ts +108 -0
  398. package/lib/routes/bbc/namespace.ts +6 -0
  399. package/lib/routes/bbc/utils.ts +35 -0
  400. package/lib/routes/bbcnewslabs/namespace.ts +6 -0
  401. package/lib/routes/bbcnewslabs/news.ts +56 -0
  402. package/lib/routes/bdys/index.ts +187 -0
  403. package/lib/routes/bdys/namespace.ts +9 -0
  404. package/lib/routes/behance/namespace.ts +6 -0
  405. package/lib/routes/behance/user.ts +88 -0
  406. package/lib/routes/beijingprice/index.ts +193 -0
  407. package/lib/routes/beijingprice/namespace.ts +8 -0
  408. package/lib/routes/bellroy/namespace.ts +6 -0
  409. package/lib/routes/bellroy/new-releases.ts +51 -0
  410. package/lib/routes/bendibao/namespace.ts +6 -0
  411. package/lib/routes/bendibao/news.ts +146 -0
  412. package/lib/routes/bgmlist/namespace.ts +6 -0
  413. package/lib/routes/bgmlist/onair.ts +54 -0
  414. package/lib/routes/bigquant/collections.ts +61 -0
  415. package/lib/routes/bigquant/namespace.ts +6 -0
  416. package/lib/routes/bilibili/api-interface.d.ts +492 -0
  417. package/lib/routes/bilibili/app.ts +55 -0
  418. package/lib/routes/bilibili/article.ts +62 -0
  419. package/lib/routes/bilibili/audio.ts +61 -0
  420. package/lib/routes/bilibili/bangumi.ts +65 -0
  421. package/lib/routes/bilibili/cache.ts +263 -0
  422. package/lib/routes/bilibili/coin.ts +60 -0
  423. package/lib/routes/bilibili/danmaku.ts +78 -0
  424. package/lib/routes/bilibili/dynamic.ts +384 -0
  425. package/lib/routes/bilibili/fav.ts +60 -0
  426. package/lib/routes/bilibili/followers.ts +87 -0
  427. package/lib/routes/bilibili/followings-article.ts +80 -0
  428. package/lib/routes/bilibili/followings-dynamic.ts +186 -0
  429. package/lib/routes/bilibili/followings-video.ts +78 -0
  430. package/lib/routes/bilibili/followings.ts +91 -0
  431. package/lib/routes/bilibili/hot-search.ts +54 -0
  432. package/lib/routes/bilibili/like.ts +60 -0
  433. package/lib/routes/bilibili/link-news.ts +61 -0
  434. package/lib/routes/bilibili/live-area.ts +86 -0
  435. package/lib/routes/bilibili/live-room.ts +65 -0
  436. package/lib/routes/bilibili/live-search.ts +67 -0
  437. package/lib/routes/bilibili/mall-ip.ts +53 -0
  438. package/lib/routes/bilibili/mall-new.ts +53 -0
  439. package/lib/routes/bilibili/manga-followings.ts +71 -0
  440. package/lib/routes/bilibili/manga-update.ts +57 -0
  441. package/lib/routes/bilibili/namespace.ts +6 -0
  442. package/lib/routes/bilibili/page.ts +55 -0
  443. package/lib/routes/bilibili/partion-ranking.ts +76 -0
  444. package/lib/routes/bilibili/partion.ts +168 -0
  445. package/lib/routes/bilibili/platform.ts +77 -0
  446. package/lib/routes/bilibili/popular.ts +48 -0
  447. package/lib/routes/bilibili/ranking.ts +62 -0
  448. package/lib/routes/bilibili/readlist.ts +50 -0
  449. package/lib/routes/bilibili/reply.ts +57 -0
  450. package/lib/routes/bilibili/user-bangumi.ts +61 -0
  451. package/lib/routes/bilibili/user-channel.ts +88 -0
  452. package/lib/routes/bilibili/user-collection.ts +80 -0
  453. package/lib/routes/bilibili/user-fav.ts +62 -0
  454. package/lib/routes/bilibili/utils.ts +125 -0
  455. package/lib/routes/bilibili/video-all.ts +84 -0
  456. package/lib/routes/bilibili/video.ts +80 -0
  457. package/lib/routes/bilibili/vsearch.ts +94 -0
  458. package/lib/routes/bilibili/watchlater.ts +76 -0
  459. package/lib/routes/bilibili/weekly-recommend.ts +60 -0
  460. package/lib/routes/binance/launchpool.ts +46 -0
  461. package/lib/routes/binance/namespace.ts +6 -0
  462. package/lib/routes/bing/daily-wallpaper.ts +80 -0
  463. package/lib/routes/bing/namespace.ts +6 -0
  464. package/lib/routes/bing/search.ts +54 -0
  465. package/lib/routes/biodiscover/index.ts +59 -0
  466. package/lib/routes/biodiscover/namespace.ts +6 -0
  467. package/lib/routes/bioone/featured.ts +78 -0
  468. package/lib/routes/bioone/journal.ts +86 -0
  469. package/lib/routes/bioone/namespace.ts +6 -0
  470. package/lib/routes/biquge/index.ts +110 -0
  471. package/lib/routes/biquge/namespace.ts +27 -0
  472. package/lib/routes/bit/cs/cs.ts +50 -0
  473. package/lib/routes/bit/cs/utils.ts +51 -0
  474. package/lib/routes/bit/jwc/jwc.ts +50 -0
  475. package/lib/routes/bit/jwc/utils.ts +47 -0
  476. package/lib/routes/bit/namespace.ts +6 -0
  477. package/lib/routes/bit/rszhaopin.ts +55 -0
  478. package/lib/routes/bit/yjs.ts +52 -0
  479. package/lib/routes/bitbucket/commits.ts +64 -0
  480. package/lib/routes/bitbucket/namespace.ts +6 -0
  481. package/lib/routes/bitbucket/tags.ts +59 -0
  482. package/lib/routes/bitmovin/blog.ts +52 -0
  483. package/lib/routes/bitmovin/namespace.ts +6 -0
  484. package/lib/routes/bjfu/grs.ts +77 -0
  485. package/lib/routes/bjfu/it/index.ts +79 -0
  486. package/lib/routes/bjfu/it/utils.ts +71 -0
  487. package/lib/routes/bjfu/jwc/index.ts +78 -0
  488. package/lib/routes/bjfu/jwc/utils.ts +58 -0
  489. package/lib/routes/bjfu/kjc.ts +78 -0
  490. package/lib/routes/bjfu/namespace.ts +6 -0
  491. package/lib/routes/bjfu/news/index.ts +86 -0
  492. package/lib/routes/bjfu/news/utils.ts +59 -0
  493. package/lib/routes/bjp/apod.ts +69 -0
  494. package/lib/routes/bjp/namespace.ts +6 -0
  495. package/lib/routes/bjsk/index.ts +77 -0
  496. package/lib/routes/bjsk/keti.ts +84 -0
  497. package/lib/routes/bjsk/namespace.ts +6 -0
  498. package/lib/routes/bjtu/gs.ts +224 -0
  499. package/lib/routes/bjtu/namespace.ts +8 -0
  500. package/lib/routes/bjwxdxh/index.ts +75 -0
  501. package/lib/routes/bjwxdxh/namespace.ts +6 -0
  502. package/lib/routes/bjx/huanbao.ts +104 -0
  503. package/lib/routes/bjx/namespace.ts +6 -0
  504. package/lib/routes/bjx/types.ts +57 -0
  505. package/lib/routes/blizzard/namespace.ts +6 -0
  506. package/lib/routes/blizzard/news.ts +108 -0
  507. package/lib/routes/blogread/index.ts +45 -0
  508. package/lib/routes/blogread/namespace.ts +6 -0
  509. package/lib/routes/bloomberg/authors.ts +77 -0
  510. package/lib/routes/bloomberg/index.ts +65 -0
  511. package/lib/routes/bloomberg/namespace.ts +6 -0
  512. package/lib/routes/bloomberg/templates/chart_media.art +21 -0
  513. package/lib/routes/bloomberg/templates/image_figure.art +9 -0
  514. package/lib/routes/bloomberg/utils.ts +618 -0
  515. package/lib/routes/bluestacks/namespace.ts +6 -0
  516. package/lib/routes/bluestacks/release.ts +90 -0
  517. package/lib/routes/bmkg/earthquake.ts +54 -0
  518. package/lib/routes/bmkg/namespace.ts +6 -0
  519. package/lib/routes/bmkg/news.ts +68 -0
  520. package/lib/routes/bnu/bs.ts +81 -0
  521. package/lib/routes/bnu/dwxgb.ts +78 -0
  522. package/lib/routes/bnu/fdy.ts +50 -0
  523. package/lib/routes/bnu/jwb.ts +56 -0
  524. package/lib/routes/bnu/lib.ts +55 -0
  525. package/lib/routes/bnu/mba.ts +202 -0
  526. package/lib/routes/bnu/namespace.ts +6 -0
  527. package/lib/routes/boc/namespace.ts +6 -0
  528. package/lib/routes/boc/whpj.ts +129 -0
  529. package/lib/routes/bookfere/category.ts +58 -0
  530. package/lib/routes/bookfere/namespace.ts +6 -0
  531. package/lib/routes/booru/mmda.ts +134 -0
  532. package/lib/routes/booru/namespace.ts +6 -0
  533. package/lib/routes/booru/templates/description.art +25 -0
  534. package/lib/routes/bossdesign/index.ts +64 -0
  535. package/lib/routes/bossdesign/namespace.ts +6 -0
  536. package/lib/routes/brave/latest.ts +65 -0
  537. package/lib/routes/brave/namespace.ts +6 -0
  538. package/lib/routes/brooklynmuseum/exhibitions.ts +46 -0
  539. package/lib/routes/brooklynmuseum/namespace.ts +6 -0
  540. package/lib/routes/bse/index.ts +216 -0
  541. package/lib/routes/bse/namespace.ts +6 -0
  542. package/lib/routes/bsky/keyword.ts +41 -0
  543. package/lib/routes/bsky/namespace.ts +6 -0
  544. package/lib/routes/bsky/posts.ts +70 -0
  545. package/lib/routes/bsky/templates/post.art +15 -0
  546. package/lib/routes/bsky/utils.ts +48 -0
  547. package/lib/routes/btzj/index.ts +164 -0
  548. package/lib/routes/btzj/namespace.ts +6 -0
  549. package/lib/routes/buaa/namespace.ts +6 -0
  550. package/lib/routes/buaa/news/index.ts +69 -0
  551. package/lib/routes/buaa/sme.ts +99 -0
  552. package/lib/routes/bugzilla/bug.ts +59 -0
  553. package/lib/routes/bugzilla/namespace.ts +11 -0
  554. package/lib/routes/bulianglin/namespace.ts +6 -0
  555. package/lib/routes/bulianglin/rss.ts +48 -0
  556. package/lib/routes/bupt/namespace.ts +6 -0
  557. package/lib/routes/bupt/rczp.ts +77 -0
  558. package/lib/routes/byau/namespace.ts +6 -0
  559. package/lib/routes/byau/xinwen/index.ts +72 -0
  560. package/lib/routes/byteclicks/index.ts +37 -0
  561. package/lib/routes/byteclicks/namespace.ts +6 -0
  562. package/lib/routes/byteclicks/tag.ts +55 -0
  563. package/lib/routes/byteclicks/utils.ts +11 -0
  564. package/lib/routes/bytes/bytes.ts +40 -0
  565. package/lib/routes/bytes/namespace.ts +6 -0
  566. package/lib/routes/c114/namespace.ts +6 -0
  567. package/lib/routes/c114/roll.ts +83 -0
  568. package/lib/routes/caai/index.ts +42 -0
  569. package/lib/routes/caai/namespace.ts +6 -0
  570. package/lib/routes/caai/utils.ts +49 -0
  571. package/lib/routes/caam/index.ts +73 -0
  572. package/lib/routes/caam/namespace.ts +6 -0
  573. package/lib/routes/caareviews/book.ts +39 -0
  574. package/lib/routes/caareviews/essay.ts +39 -0
  575. package/lib/routes/caareviews/exhibition.ts +39 -0
  576. package/lib/routes/caareviews/namespace.ts +6 -0
  577. package/lib/routes/caareviews/utils.ts +49 -0
  578. package/lib/routes/cahkms/index.ts +105 -0
  579. package/lib/routes/cahkms/namespace.ts +6 -0
  580. package/lib/routes/caijing/namespace.ts +6 -0
  581. package/lib/routes/caijing/roll.ts +72 -0
  582. package/lib/routes/caixin/article.ts +53 -0
  583. package/lib/routes/caixin/blog.ts +103 -0
  584. package/lib/routes/caixin/category.ts +94 -0
  585. package/lib/routes/caixin/database.ts +77 -0
  586. package/lib/routes/caixin/k.ts +59 -0
  587. package/lib/routes/caixin/latest.ts +75 -0
  588. package/lib/routes/caixin/namespace.ts +7 -0
  589. package/lib/routes/caixin/templates/article.art +38 -0
  590. package/lib/routes/caixin/utils.ts +49 -0
  591. package/lib/routes/caixin/weekly.ts +77 -0
  592. package/lib/routes/caixinglobal/latest.ts +90 -0
  593. package/lib/routes/caixinglobal/namespace.ts +6 -0
  594. package/lib/routes/camchina/index.ts +80 -0
  595. package/lib/routes/camchina/namespace.ts +6 -0
  596. package/lib/routes/cankaoxiaoxi/index.ts +112 -0
  597. package/lib/routes/cankaoxiaoxi/namespace.ts +6 -0
  598. package/lib/routes/cartoonmad/comic.ts +98 -0
  599. package/lib/routes/cartoonmad/namespace.ts +6 -0
  600. package/lib/routes/cas/cg/index.ts +80 -0
  601. package/lib/routes/cas/genetics/index.ts +71 -0
  602. package/lib/routes/cas/ia/yjs.ts +50 -0
  603. package/lib/routes/cas/iee/kydt.ts +74 -0
  604. package/lib/routes/cas/is/index.ts +53 -0
  605. package/lib/routes/cas/mesalab/kb.ts +67 -0
  606. package/lib/routes/cas/namespace.ts +6 -0
  607. package/lib/routes/cas/sim/kyjz.ts +73 -0
  608. package/lib/routes/casssp/namespace.ts +6 -0
  609. package/lib/routes/casssp/news.ts +82 -0
  610. package/lib/routes/cast/index.ts +115 -0
  611. package/lib/routes/cast/namespace.ts +6 -0
  612. package/lib/routes/cau/ele.ts +68 -0
  613. package/lib/routes/cau/namespace.ts +6 -0
  614. package/lib/routes/cau/yjs.ts +67 -0
  615. package/lib/routes/caus/index.ts +111 -0
  616. package/lib/routes/caus/namespace.ts +6 -0
  617. package/lib/routes/cbaigui/index.ts +112 -0
  618. package/lib/routes/cbaigui/namespace.ts +6 -0
  619. package/lib/routes/cbaigui/templates/figure.art +3 -0
  620. package/lib/routes/cbaigui/utils.ts +14 -0
  621. package/lib/routes/cbc/namespace.ts +6 -0
  622. package/lib/routes/cbc/topics.ts +85 -0
  623. package/lib/routes/cbirc/index.ts +133 -0
  624. package/lib/routes/cbirc/namespace.ts +6 -0
  625. package/lib/routes/cbnweek/index.ts +62 -0
  626. package/lib/routes/cbnweek/namespace.ts +6 -0
  627. package/lib/routes/ccac/namespace.ts +6 -0
  628. package/lib/routes/ccac/news.ts +82 -0
  629. package/lib/routes/ccac/utils.ts +26 -0
  630. package/lib/routes/ccf/ccfcv/index.ts +94 -0
  631. package/lib/routes/ccf/namespace.ts +6 -0
  632. package/lib/routes/ccf/news.ts +74 -0
  633. package/lib/routes/ccf/tfbd/index.ts +47 -0
  634. package/lib/routes/ccf/tfbd/utils.ts +50 -0
  635. package/lib/routes/ccnu/career.ts +56 -0
  636. package/lib/routes/ccnu/cs.ts +53 -0
  637. package/lib/routes/ccnu/namespace.ts +6 -0
  638. package/lib/routes/ccnu/wu.ts +52 -0
  639. package/lib/routes/ccnu/yjs.ts +52 -0
  640. package/lib/routes/ccreports/index.ts +67 -0
  641. package/lib/routes/ccreports/namespace.ts +6 -0
  642. package/lib/routes/cctv/category.ts +48 -0
  643. package/lib/routes/cctv/jx.ts +77 -0
  644. package/lib/routes/cctv/lm.ts +114 -0
  645. package/lib/routes/cctv/namespace.ts +6 -0
  646. package/lib/routes/cctv/utils/mzzlbg.ts +42 -0
  647. package/lib/routes/cctv/utils/news.ts +109 -0
  648. package/lib/routes/cctv/utils/xinwen1j1.ts +83 -0
  649. package/lib/routes/cctv/xwlb.ts +77 -0
  650. package/lib/routes/cde/index.ts +167 -0
  651. package/lib/routes/cde/namespace.ts +6 -0
  652. package/lib/routes/cde/utils.ts +17 -0
  653. package/lib/routes/cde/xxgk.ts +98 -0
  654. package/lib/routes/cde/zdyz.ts +100 -0
  655. package/lib/routes/cdi/index.ts +84 -0
  656. package/lib/routes/cdi/namespace.ts +6 -0
  657. package/lib/routes/cdzjryb/namespace.ts +6 -0
  658. package/lib/routes/cdzjryb/project-list.ts +78 -0
  659. package/lib/routes/cebbank/all.ts +78 -0
  660. package/lib/routes/cebbank/history.ts +77 -0
  661. package/lib/routes/cebbank/namespace.ts +6 -0
  662. package/lib/routes/cebbank/utils.ts +68 -0
  663. package/lib/routes/cfachina/analygarden.ts +87 -0
  664. package/lib/routes/cfachina/namespace.ts +6 -0
  665. package/lib/routes/cfmmc/index.ts +81 -0
  666. package/lib/routes/cfmmc/namespace.ts +6 -0
  667. package/lib/routes/cfr/index.ts +58 -0
  668. package/lib/routes/cfr/namespace.ts +6 -0
  669. package/lib/routes/cfr/types.ts +30 -0
  670. package/lib/routes/cfr/utils.ts +284 -0
  671. package/lib/routes/cgtn/namespace.ts +6 -0
  672. package/lib/routes/cgtn/podcast.ts +61 -0
  673. package/lib/routes/chaincatcher/home.ts +69 -0
  674. package/lib/routes/chaincatcher/namespace.ts +6 -0
  675. package/lib/routes/chaincatcher/news.ts +65 -0
  676. package/lib/routes/changba/namespace.ts +6 -0
  677. package/lib/routes/changba/user.ts +112 -0
  678. package/lib/routes/chaoxing/namespace.ts +6 -0
  679. package/lib/routes/chaoxing/qk.ts +95 -0
  680. package/lib/routes/chaping/banner.ts +66 -0
  681. package/lib/routes/chaping/namespace.ts +6 -0
  682. package/lib/routes/chaping/news.ts +83 -0
  683. package/lib/routes/chaping/newsflash.ts +48 -0
  684. package/lib/routes/chiculture/namespace.ts +6 -0
  685. package/lib/routes/chiculture/topic.ts +84 -0
  686. package/lib/routes/china/finance/finance.ts +93 -0
  687. package/lib/routes/china/namespace.ts +6 -0
  688. package/lib/routes/china/news/highlights/news.ts +69 -0
  689. package/lib/routes/china/news/military/news.ts +55 -0
  690. package/lib/routes/chinadegrees/namespace.ts +6 -0
  691. package/lib/routes/chinadegrees/province.ts +124 -0
  692. package/lib/routes/chinafactcheck/index.ts +53 -0
  693. package/lib/routes/chinafactcheck/namespace.ts +6 -0
  694. package/lib/routes/chinafactcheck/utils.ts +60 -0
  695. package/lib/routes/chinaisa/index.ts +251 -0
  696. package/lib/routes/chinaisa/namespace.ts +6 -0
  697. package/lib/routes/chinamoney/channels.ts +55 -0
  698. package/lib/routes/chinamoney/namespace.ts +6 -0
  699. package/lib/routes/chinamoney/notice.ts +112 -0
  700. package/lib/routes/chinanews/index.ts +82 -0
  701. package/lib/routes/chinanews/namespace.ts +6 -0
  702. package/lib/routes/chinathinktanks/namespace.ts +6 -0
  703. package/lib/routes/chinathinktanks/viewpoint.ts +119 -0
  704. package/lib/routes/chinaventure/index.ts +93 -0
  705. package/lib/routes/chinaventure/namespace.ts +6 -0
  706. package/lib/routes/chinawriter/index.ts +97 -0
  707. package/lib/routes/chinawriter/namespace.ts +6 -0
  708. package/lib/routes/chsi/hotnews.ts +74 -0
  709. package/lib/routes/chsi/kydt.ts +72 -0
  710. package/lib/routes/chsi/kyzx.ts +79 -0
  711. package/lib/routes/chsi/namespace.ts +6 -0
  712. package/lib/routes/chuanliu/namespace.ts +6 -0
  713. package/lib/routes/chuanliu/nice.ts +105 -0
  714. package/lib/routes/chuanliu/templates/description.art +23 -0
  715. package/lib/routes/chub/characters.ts +64 -0
  716. package/lib/routes/chub/namespace.ts +6 -0
  717. package/lib/routes/cib/namespace.ts +6 -0
  718. package/lib/routes/cib/whpj.ts +115 -0
  719. package/lib/routes/ciidbnu/index.ts +80 -0
  720. package/lib/routes/ciidbnu/namespace.ts +6 -0
  721. package/lib/routes/civitai/discussions.ts +74 -0
  722. package/lib/routes/civitai/models.ts +51 -0
  723. package/lib/routes/civitai/namespace.ts +6 -0
  724. package/lib/routes/ciweimao/chapter.ts +86 -0
  725. package/lib/routes/ciweimao/namespace.ts +6 -0
  726. package/lib/routes/clickme/index.ts +76 -0
  727. package/lib/routes/clickme/namespace.ts +6 -0
  728. package/lib/routes/cloudnative/blog.ts +53 -0
  729. package/lib/routes/cloudnative/namespace.ts +6 -0
  730. package/lib/routes/cls/depth.ts +108 -0
  731. package/lib/routes/cls/hot.ts +83 -0
  732. package/lib/routes/cls/namespace.ts +6 -0
  733. package/lib/routes/cls/telegraph.ts +86 -0
  734. package/lib/routes/cls/templates/depth.art +10 -0
  735. package/lib/routes/cls/templates/telegraph.art +10 -0
  736. package/lib/routes/cls/utils.ts +18 -0
  737. package/lib/routes/cma/channel.ts +135 -0
  738. package/lib/routes/cma/namespace.ts +6 -0
  739. package/lib/routes/cma/templates/description.art +13 -0
  740. package/lib/routes/cmde/index.ts +82 -0
  741. package/lib/routes/cmde/namespace.ts +6 -0
  742. package/lib/routes/cmpxchg8b/articles.ts +69 -0
  743. package/lib/routes/cmpxchg8b/namespace.ts +6 -0
  744. package/lib/routes/cn-healthcare/index.ts +56 -0
  745. package/lib/routes/cn-healthcare/namespace.ts +6 -0
  746. package/lib/routes/cna/index.ts +87 -0
  747. package/lib/routes/cna/namespace.ts +6 -0
  748. package/lib/routes/cna/web/index.ts +76 -0
  749. package/lib/routes/cnbc/namespace.ts +6 -0
  750. package/lib/routes/cnbc/rss.ts +83 -0
  751. package/lib/routes/cnbeta/category.ts +23 -0
  752. package/lib/routes/cnbeta/common.ts +43 -0
  753. package/lib/routes/cnbeta/index.ts +16 -0
  754. package/lib/routes/cnbeta/namespace.ts +7 -0
  755. package/lib/routes/cnbeta/topics.ts +23 -0
  756. package/lib/routes/cnbeta/utils.ts +27 -0
  757. package/lib/routes/cnblogs/common.ts +58 -0
  758. package/lib/routes/cnblogs/namespace.ts +6 -0
  759. package/lib/routes/cncf/index.ts +66 -0
  760. package/lib/routes/cncf/namespace.ts +6 -0
  761. package/lib/routes/cncf/reports.ts +53 -0
  762. package/lib/routes/cneb/namespace.ts +6 -0
  763. package/lib/routes/cneb/yjxw.ts +100 -0
  764. package/lib/routes/cneb/yjxx.ts +66 -0
  765. package/lib/routes/cngal/entry.ts +52 -0
  766. package/lib/routes/cngal/namespace.ts +6 -0
  767. package/lib/routes/cngal/weekly.ts +48 -0
  768. package/lib/routes/cnjxol/index.ts +110 -0
  769. package/lib/routes/cnjxol/namespace.ts +6 -0
  770. package/lib/routes/cnki/author.ts +80 -0
  771. package/lib/routes/cnki/debut.ts +90 -0
  772. package/lib/routes/cnki/journals.ts +74 -0
  773. package/lib/routes/cnki/namespace.ts +6 -0
  774. package/lib/routes/cnki/utils.ts +27 -0
  775. package/lib/routes/cnljxh/index.ts +80 -0
  776. package/lib/routes/cnljxh/namespace.ts +6 -0
  777. package/lib/routes/cntheory/namespace.ts +6 -0
  778. package/lib/routes/cntheory/paper.ts +111 -0
  779. package/lib/routes/cntheory/templates/description.art +2 -0
  780. package/lib/routes/cntv/column.ts +67 -0
  781. package/lib/routes/cntv/namespace.ts +6 -0
  782. package/lib/routes/codeforces/contests.ts +77 -0
  783. package/lib/routes/codeforces/namespace.ts +6 -0
  784. package/lib/routes/codeforces/recent-actions.ts +73 -0
  785. package/lib/routes/coindesk/index.ts +59 -0
  786. package/lib/routes/coindesk/namespace.ts +6 -0
  787. package/lib/routes/colamanga/manga.ts +88 -0
  788. package/lib/routes/colamanga/namespace.ts +9 -0
  789. package/lib/routes/comicat/namespace.ts +6 -0
  790. package/lib/routes/comicat/search.ts +62 -0
  791. package/lib/routes/comicskingdom/index.ts +89 -0
  792. package/lib/routes/comicskingdom/namespace.ts +6 -0
  793. package/lib/routes/consumer/index.ts +92 -0
  794. package/lib/routes/consumer/namespace.ts +6 -0
  795. package/lib/routes/consumer/shopping-guide.ts +89 -0
  796. package/lib/routes/cool18/index.ts +76 -0
  797. package/lib/routes/cool18/namespace.ts +6 -0
  798. package/lib/routes/coolapk/dyh.ts +60 -0
  799. package/lib/routes/coolapk/hot.ts +127 -0
  800. package/lib/routes/coolapk/huati.ts +44 -0
  801. package/lib/routes/coolapk/namespace.ts +6 -0
  802. package/lib/routes/coolapk/toutiao.ts +51 -0
  803. package/lib/routes/coolapk/tuwen.ts +59 -0
  804. package/lib/routes/coolapk/user-dynamic.ts +55 -0
  805. package/lib/routes/coolapk/utils.ts +144 -0
  806. package/lib/routes/coomer/artist.ts +33 -0
  807. package/lib/routes/coomer/namespace.ts +6 -0
  808. package/lib/routes/coomer/posts.ts +32 -0
  809. package/lib/routes/coomer/utils.ts +57 -0
  810. package/lib/routes/copernicium/index.ts +67 -0
  811. package/lib/routes/copernicium/namespace.ts +6 -0
  812. package/lib/routes/copymanga/comic.ts +146 -0
  813. package/lib/routes/copymanga/namespace.ts +6 -0
  814. package/lib/routes/copymanga/templates/comic.art +4 -0
  815. package/lib/routes/cpcaauto/index.ts +255 -0
  816. package/lib/routes/cpcaauto/namespace.ts +8 -0
  817. package/lib/routes/cpcey/index.ts +83 -0
  818. package/lib/routes/cpcey/namespace.ts +6 -0
  819. package/lib/routes/cpuid/namespace.ts +6 -0
  820. package/lib/routes/cpuid/news.ts +55 -0
  821. package/lib/routes/cqgas/namespace.ts +6 -0
  822. package/lib/routes/cqgas/tqtz.ts +62 -0
  823. package/lib/routes/cqwu/index.ts +72 -0
  824. package/lib/routes/cqwu/namespace.ts +6 -0
  825. package/lib/routes/crac/index.ts +69 -0
  826. package/lib/routes/crac/namespace.ts +6 -0
  827. package/lib/routes/creative-comic/book.ts +95 -0
  828. package/lib/routes/creative-comic/namespace.ts +6 -0
  829. package/lib/routes/creative-comic/utils.ts +85 -0
  830. package/lib/routes/crossbell/feeds/following.ts +50 -0
  831. package/lib/routes/crossbell/namespace.ts +6 -0
  832. package/lib/routes/crossbell/notes/character.ts +48 -0
  833. package/lib/routes/crossbell/notes/index.ts +41 -0
  834. package/lib/routes/crossbell/notes/source.ts +45 -0
  835. package/lib/routes/crossbell/notes/utils.ts +16 -0
  836. package/lib/routes/cs/index.ts +140 -0
  837. package/lib/routes/cs/namespace.ts +7 -0
  838. package/lib/routes/cs/video.ts +91 -0
  839. package/lib/routes/cs/zzkx.ts +14 -0
  840. package/lib/routes/csdn/blog.ts +64 -0
  841. package/lib/routes/csdn/namespace.ts +6 -0
  842. package/lib/routes/cssn/iolaw.ts +57 -0
  843. package/lib/routes/cssn/namespace.ts +6 -0
  844. package/lib/routes/cste/index.ts +79 -0
  845. package/lib/routes/cste/namespace.ts +6 -0
  846. package/lib/routes/csu/career.ts +77 -0
  847. package/lib/routes/csu/cse.ts +64 -0
  848. package/lib/routes/csu/mail.ts +70 -0
  849. package/lib/routes/csu/namespace.ts +6 -0
  850. package/lib/routes/csu/utils.ts +15 -0
  851. package/lib/routes/cts/namespace.ts +6 -0
  852. package/lib/routes/cts/news.ts +68 -0
  853. package/lib/routes/cuc/namespace.ts +6 -0
  854. package/lib/routes/cuc/yz.ts +58 -0
  855. package/lib/routes/cuilingmag/index.ts +211 -0
  856. package/lib/routes/cuilingmag/namespace.ts +8 -0
  857. package/lib/routes/cuilingmag/templates/description.art +17 -0
  858. package/lib/routes/curiouscat/namespace.ts +6 -0
  859. package/lib/routes/curiouscat/user.ts +53 -0
  860. package/lib/routes/curius/links.ts +70 -0
  861. package/lib/routes/curius/namespace.ts +6 -0
  862. package/lib/routes/curius/templates/description.art +16 -0
  863. package/lib/routes/cw/author.ts +43 -0
  864. package/lib/routes/cw/master.ts +53 -0
  865. package/lib/routes/cw/namespace.ts +6 -0
  866. package/lib/routes/cw/sub.ts +38 -0
  867. package/lib/routes/cw/today.ts +44 -0
  868. package/lib/routes/cw/utils.ts +128 -0
  869. package/lib/routes/cyzone/author.ts +43 -0
  870. package/lib/routes/cyzone/index.ts +51 -0
  871. package/lib/routes/cyzone/label.ts +43 -0
  872. package/lib/routes/cyzone/namespace.ts +6 -0
  873. package/lib/routes/cyzone/util.ts +119 -0
  874. package/lib/routes/cztv/daily.ts +69 -0
  875. package/lib/routes/cztv/namespace.ts +6 -0
  876. package/lib/routes/cztv/zjxwlb.ts +66 -0
  877. package/lib/routes/dahecube/index.ts +85 -0
  878. package/lib/routes/dahecube/namespace.ts +6 -0
  879. package/lib/routes/dahecube/utils.ts +44 -0
  880. package/lib/routes/daily/discussed.ts +88 -0
  881. package/lib/routes/daily/index.ts +98 -0
  882. package/lib/routes/daily/namespace.ts +7 -0
  883. package/lib/routes/daily/templates/posts.art +7 -0
  884. package/lib/routes/daily/upvoted.ts +92 -0
  885. package/lib/routes/daily/user.ts +227 -0
  886. package/lib/routes/daily/utils.ts +56 -0
  887. package/lib/routes/damai/activity.ts +67 -0
  888. package/lib/routes/damai/namespace.ts +6 -0
  889. package/lib/routes/damai/templates/activity.art +5 -0
  890. package/lib/routes/dangdang/namespace.ts +6 -0
  891. package/lib/routes/dangdang/notice.ts +69 -0
  892. package/lib/routes/dapenti/namespace.ts +6 -0
  893. package/lib/routes/dapenti/subject.ts +24 -0
  894. package/lib/routes/dapenti/tugua.ts +24 -0
  895. package/lib/routes/dapenti/utils.ts +76 -0
  896. package/lib/routes/darwinawards/index.ts +72 -0
  897. package/lib/routes/darwinawards/namespace.ts +7 -0
  898. package/lib/routes/dataguidance/index.ts +66 -0
  899. package/lib/routes/dataguidance/namespace.ts +7 -0
  900. package/lib/routes/dayanzai/index.ts +85 -0
  901. package/lib/routes/dayanzai/namespace.ts +6 -0
  902. package/lib/routes/dbaplus/namespace.ts +6 -0
  903. package/lib/routes/dbaplus/rss.ts +48 -0
  904. package/lib/routes/dblp/namespace.ts +6 -0
  905. package/lib/routes/dblp/publication.ts +87 -0
  906. package/lib/routes/dcard/namespace.ts +9 -0
  907. package/lib/routes/dcard/section.ts +87 -0
  908. package/lib/routes/dcard/utils.ts +48 -0
  909. package/lib/routes/dcfever/namespace.ts +6 -0
  910. package/lib/routes/dcfever/news.ts +54 -0
  911. package/lib/routes/dcfever/reviews.ts +50 -0
  912. package/lib/routes/dcfever/trading-search.ts +48 -0
  913. package/lib/routes/dcfever/trading.ts +53 -0
  914. package/lib/routes/dcfever/utils.ts +85 -0
  915. package/lib/routes/ddosi/category.ts +68 -0
  916. package/lib/routes/ddosi/index.ts +56 -0
  917. package/lib/routes/ddosi/namespace.ts +6 -0
  918. package/lib/routes/deadline/namespace.ts +6 -0
  919. package/lib/routes/deadline/posts.ts +71 -0
  920. package/lib/routes/deadline/templates/desc.art +10 -0
  921. package/lib/routes/dedao/index.ts +55 -0
  922. package/lib/routes/dedao/knowledge.ts +91 -0
  923. package/lib/routes/dedao/list.ts +92 -0
  924. package/lib/routes/dedao/namespace.ts +6 -0
  925. package/lib/routes/dedao/user.ts +104 -0
  926. package/lib/routes/deepin/homepage.ts +43 -0
  927. package/lib/routes/deepin/namespace.ts +9 -0
  928. package/lib/routes/deeplearning/namespace.ts +6 -0
  929. package/lib/routes/deeplearning/thebatch.ts +62 -0
  930. package/lib/routes/deepmind/blog.ts +58 -0
  931. package/lib/routes/deepmind/namespace.ts +6 -0
  932. package/lib/routes/dehenglaw/index.ts +128 -0
  933. package/lib/routes/dehenglaw/namespace.ts +8 -0
  934. package/lib/routes/dehenglaw/templates/description.art +7 -0
  935. package/lib/routes/deltaio/blog.ts +59 -0
  936. package/lib/routes/deltaio/namespace.ts +6 -0
  937. package/lib/routes/devolverdigital/blog.ts +76 -0
  938. package/lib/routes/devolverdigital/namespace.ts +6 -0
  939. package/lib/routes/dgjyw/index.ts +77 -0
  940. package/lib/routes/dgjyw/namespace.ts +6 -0
  941. package/lib/routes/dhu/jiaowu/news.ts +86 -0
  942. package/lib/routes/dhu/namespace.ts +6 -0
  943. package/lib/routes/dhu/news/xsxx.ts +68 -0
  944. package/lib/routes/dhu/xxgk/news.ts +77 -0
  945. package/lib/routes/dhu/yjs/news.ts +70 -0
  946. package/lib/routes/dhu/yjs/zs.ts +69 -0
  947. package/lib/routes/diandong/namespace.ts +6 -0
  948. package/lib/routes/diandong/news.ts +82 -0
  949. package/lib/routes/diershoubing/namespace.ts +6 -0
  950. package/lib/routes/diershoubing/news.ts +78 -0
  951. package/lib/routes/digitalcameraworld/namespace.ts +6 -0
  952. package/lib/routes/digitalcameraworld/news.ts +61 -0
  953. package/lib/routes/discord/channel.ts +72 -0
  954. package/lib/routes/discord/discord-api.ts +55 -0
  955. package/lib/routes/discord/namespace.ts +6 -0
  956. package/lib/routes/discourse/namespace.ts +8 -0
  957. package/lib/routes/discourse/notifications.ts +67 -0
  958. package/lib/routes/discourse/posts.ts +49 -0
  959. package/lib/routes/discourse/utils.ts +11 -0
  960. package/lib/routes/discuz/discuz.ts +163 -0
  961. package/lib/routes/discuz/namespace.ts +5 -0
  962. package/lib/routes/disinfo/namespace.ts +6 -0
  963. package/lib/routes/disinfo/publications.ts +82 -0
  964. package/lib/routes/diskanalyzer/namespace.ts +6 -0
  965. package/lib/routes/diskanalyzer/whats-new.ts +74 -0
  966. package/lib/routes/distill/index.ts +80 -0
  967. package/lib/routes/distill/namespace.ts +6 -0
  968. package/lib/routes/dlnews/category.ts +109 -0
  969. package/lib/routes/dlnews/namespace.ts +6 -0
  970. package/lib/routes/dlnews/templates/description.art +24 -0
  971. package/lib/routes/dlnews/utils.ts +22 -0
  972. package/lib/routes/dlsite/campaign.ts +194 -0
  973. package/lib/routes/dlsite/ci-en/article.ts +89 -0
  974. package/lib/routes/dlsite/index.ts +13 -0
  975. package/lib/routes/dlsite/namespace.ts +6 -0
  976. package/lib/routes/dlsite/new.ts +131 -0
  977. package/lib/routes/dlsite/utils.ts +178 -0
  978. package/lib/routes/dmzj/namespace.ts +6 -0
  979. package/lib/routes/dmzj/news.ts +55 -0
  980. package/lib/routes/dn/namespace.ts +6 -0
  981. package/lib/routes/dn/news.ts +127 -0
  982. package/lib/routes/dn/templates/description.art +15 -0
  983. package/lib/routes/dnaindia/category.ts +0 -0
  984. package/lib/routes/dnaindia/common.ts +68 -0
  985. package/lib/routes/dnaindia/namespace.ts +7 -0
  986. package/lib/routes/dnaindia/news.ts +24 -0
  987. package/lib/routes/dnaindia/topic.ts +28 -0
  988. package/lib/routes/dockerhub/build.ts +53 -0
  989. package/lib/routes/dockerhub/namespace.ts +6 -0
  990. package/lib/routes/dockerhub/tag.ts +55 -0
  991. package/lib/routes/dockerhub/utils.ts +10 -0
  992. package/lib/routes/docschina/namespace.ts +6 -0
  993. package/lib/routes/docschina/weekly.ts +66 -0
  994. package/lib/routes/dol/announce.ts +109 -0
  995. package/lib/routes/dol/namespace.ts +6 -0
  996. package/lib/routes/domp4/detail.ts +128 -0
  997. package/lib/routes/domp4/latest-movie-bt.ts +71 -0
  998. package/lib/routes/domp4/latest.ts +60 -0
  999. package/lib/routes/domp4/namespace.ts +15 -0
  1000. package/lib/routes/domp4/utils.ts +96 -0
  1001. package/lib/routes/dongqiudi/daily.ts +22 -0
  1002. package/lib/routes/dongqiudi/namespace.ts +9 -0
  1003. package/lib/routes/dongqiudi/player-news.ts +24 -0
  1004. package/lib/routes/dongqiudi/result.ts +47 -0
  1005. package/lib/routes/dongqiudi/special.ts +54 -0
  1006. package/lib/routes/dongqiudi/team-news.ts +24 -0
  1007. package/lib/routes/dongqiudi/top-news.ts +62 -0
  1008. package/lib/routes/dongqiudi/utils.ts +165 -0
  1009. package/lib/routes/dora-world/article.ts +87 -0
  1010. package/lib/routes/dora-world/namespace.ts +6 -0
  1011. package/lib/routes/dorohedoro/namespace.ts +6 -0
  1012. package/lib/routes/dorohedoro/news.ts +97 -0
  1013. package/lib/routes/douban/book/latest.ts +65 -0
  1014. package/lib/routes/douban/book/rank.ts +56 -0
  1015. package/lib/routes/douban/channel/subject.ts +82 -0
  1016. package/lib/routes/douban/channel/topic.ts +85 -0
  1017. package/lib/routes/douban/commercialpress/latest.ts +74 -0
  1018. package/lib/routes/douban/event/hot.ts +49 -0
  1019. package/lib/routes/douban/namespace.ts +6 -0
  1020. package/lib/routes/douban/other/bookstore.ts +49 -0
  1021. package/lib/routes/douban/other/celebrity.ts +60 -0
  1022. package/lib/routes/douban/other/classification.ts +61 -0
  1023. package/lib/routes/douban/other/discussion.ts +83 -0
  1024. package/lib/routes/douban/other/doulist.ts +84 -0
  1025. package/lib/routes/douban/other/explore-column.ts +64 -0
  1026. package/lib/routes/douban/other/explore.ts +72 -0
  1027. package/lib/routes/douban/other/group.ts +74 -0
  1028. package/lib/routes/douban/other/jobs.ts +55 -0
  1029. package/lib/routes/douban/other/later.ts +51 -0
  1030. package/lib/routes/douban/other/latest-music.ts +96 -0
  1031. package/lib/routes/douban/other/list.ts +125 -0
  1032. package/lib/routes/douban/other/playing.ts +52 -0
  1033. package/lib/routes/douban/other/recommended.ts +102 -0
  1034. package/lib/routes/douban/other/replied.ts +106 -0
  1035. package/lib/routes/douban/other/replies.ts +81 -0
  1036. package/lib/routes/douban/other/topic.ts +100 -0
  1037. package/lib/routes/douban/other/ustop.ts +41 -0
  1038. package/lib/routes/douban/other/weekly-best.ts +78 -0
  1039. package/lib/routes/douban/people/status.ts +488 -0
  1040. package/lib/routes/douban/people/wish.ts +96 -0
  1041. package/lib/routes/douyin/hashtag.ts +122 -0
  1042. package/lib/routes/douyin/live.ts +106 -0
  1043. package/lib/routes/douyin/namespace.ts +20 -0
  1044. package/lib/routes/douyin/templates/embed.art +13 -0
  1045. package/lib/routes/douyin/user.ts +104 -0
  1046. package/lib/routes/douyin/utils.ts +134 -0
  1047. package/lib/routes/douyu/group.ts +76 -0
  1048. package/lib/routes/douyu/namespace.ts +6 -0
  1049. package/lib/routes/douyu/post.ts +85 -0
  1050. package/lib/routes/douyu/room.ts +98 -0
  1051. package/lib/routes/dribbble/keyword.ts +29 -0
  1052. package/lib/routes/dribbble/namespace.ts +6 -0
  1053. package/lib/routes/dribbble/popular.ts +36 -0
  1054. package/lib/routes/dribbble/templates/description.art +15 -0
  1055. package/lib/routes/dribbble/user.ts +34 -0
  1056. package/lib/routes/dribbble/utils.ts +158 -0
  1057. package/lib/routes/dtcj/datahero.ts +73 -0
  1058. package/lib/routes/dtcj/datainsight.ts +82 -0
  1059. package/lib/routes/dtcj/namespace.ts +6 -0
  1060. package/lib/routes/duozhuayu/namespace.ts +6 -0
  1061. package/lib/routes/duozhuayu/search.ts +94 -0
  1062. package/lib/routes/duozhuayu/templates/book.art +10 -0
  1063. package/lib/routes/dushu/fuzhou/index.ts +69 -0
  1064. package/lib/routes/dushu/namespace.ts +6 -0
  1065. package/lib/routes/dut/defaults.ts +57 -0
  1066. package/lib/routes/dut/index.ts +104 -0
  1067. package/lib/routes/dut/namespace.ts +6 -0
  1068. package/lib/routes/dut/shortcuts.ts +82 -0
  1069. package/lib/routes/dx2025/index.ts +93 -0
  1070. package/lib/routes/dx2025/namespace.ts +6 -0
  1071. package/lib/routes/dxy/namespace.ts +6 -0
  1072. package/lib/routes/dxy/profile/thread.ts +107 -0
  1073. package/lib/routes/dxy/special.ts +99 -0
  1074. package/lib/routes/dxy/utils.ts +66 -0
  1075. package/lib/routes/e-hentai/index.ts +127 -0
  1076. package/lib/routes/e-hentai/namespace.ts +6 -0
  1077. package/lib/routes/eagle/blog.ts +79 -0
  1078. package/lib/routes/eagle/changelog.ts +101 -0
  1079. package/lib/routes/eagle/namespace.ts +6 -0
  1080. package/lib/routes/earthquake/ceic.ts +105 -0
  1081. package/lib/routes/earthquake/index.ts +67 -0
  1082. package/lib/routes/earthquake/namespace.ts +6 -0
  1083. package/lib/routes/eastday/24.ts +124 -0
  1084. package/lib/routes/eastday/namespace.ts +6 -0
  1085. package/lib/routes/eastday/portrait.ts +73 -0
  1086. package/lib/routes/eastday/sh.ts +75 -0
  1087. package/lib/routes/eastmoney/namespace.ts +6 -0
  1088. package/lib/routes/eastmoney/report/index.ts +87 -0
  1089. package/lib/routes/eastmoney/search/index.ts +74 -0
  1090. package/lib/routes/eastmoney/ttjj/user.ts +85 -0
  1091. package/lib/routes/ecnu/contest.ts +70 -0
  1092. package/lib/routes/ecnu/jwc.ts +67 -0
  1093. package/lib/routes/ecnu/namespace.ts +6 -0
  1094. package/lib/routes/ecnu/yjs.ts +63 -0
  1095. package/lib/routes/economist/espresso.ts +106 -0
  1096. package/lib/routes/economist/full.ts +71 -0
  1097. package/lib/routes/economist/global-business-review.ts +123 -0
  1098. package/lib/routes/economist/namespace.ts +6 -0
  1099. package/lib/routes/ecust/e/news.ts +70 -0
  1100. package/lib/routes/ecust/gschool/yjs.ts +52 -0
  1101. package/lib/routes/ecust/jwc/notice.ts +89 -0
  1102. package/lib/routes/ecust/namespace.ts +6 -0
  1103. package/lib/routes/egsea/flash.ts +55 -0
  1104. package/lib/routes/egsea/namespace.ts +6 -0
  1105. package/lib/routes/ehentai/ehapi.ts +211 -0
  1106. package/lib/routes/ehentai/favorites.ts +47 -0
  1107. package/lib/routes/ehentai/namespace.ts +11 -0
  1108. package/lib/routes/ehentai/search.ts +54 -0
  1109. package/lib/routes/ehentai/tag.ts +42 -0
  1110. package/lib/routes/ekantipur/issue.ts +95 -0
  1111. package/lib/routes/ekantipur/namespace.ts +6 -0
  1112. package/lib/routes/elasticsearch-cn/index.ts +86 -0
  1113. package/lib/routes/elasticsearch-cn/namespace.ts +6 -0
  1114. package/lib/routes/eleduck/jobs.ts +64 -0
  1115. package/lib/routes/eleduck/namespace.ts +6 -0
  1116. package/lib/routes/eleduck/posts.ts +79 -0
  1117. package/lib/routes/elsevier/issue.ts +80 -0
  1118. package/lib/routes/elsevier/journal.ts +90 -0
  1119. package/lib/routes/elsevier/namespace.ts +6 -0
  1120. package/lib/routes/embassy/index.ts +69 -0
  1121. package/lib/routes/embassy/namespace.ts +114 -0
  1122. package/lib/routes/embassy/supported-list.ts +257 -0
  1123. package/lib/routes/epicgames/index.ts +115 -0
  1124. package/lib/routes/epicgames/namespace.ts +6 -0
  1125. package/lib/routes/epicgames/templates/description.art +3 -0
  1126. package/lib/routes/eprice/namespace.ts +6 -0
  1127. package/lib/routes/eprice/rss.ts +122 -0
  1128. package/lib/routes/esquirehk/namespace.ts +6 -0
  1129. package/lib/routes/esquirehk/tag.ts +104 -0
  1130. package/lib/routes/esquirehk/templates/subpages.art +30 -0
  1131. package/lib/routes/europechinese/latest.ts +66 -0
  1132. package/lib/routes/europechinese/namespace.ts +6 -0
  1133. package/lib/routes/eventernote/actors.ts +125 -0
  1134. package/lib/routes/eventernote/namespace.ts +6 -0
  1135. package/lib/routes/f-droid/apprelease.ts +57 -0
  1136. package/lib/routes/f-droid/namespace.ts +6 -0
  1137. package/lib/routes/famitsu/category.ts +152 -0
  1138. package/lib/routes/famitsu/namespace.ts +6 -0
  1139. package/lib/routes/famitsu/templates/description.art +7 -0
  1140. package/lib/routes/famitsu/types.ts +117 -0
  1141. package/lib/routes/fanbox/index.ts +62 -0
  1142. package/lib/routes/fanbox/namespace.ts +6 -0
  1143. package/lib/routes/fanbox/templates/fanbox-post.art +7 -0
  1144. package/lib/routes/fanbox/types.ts +239 -0
  1145. package/lib/routes/fanbox/utils.ts +188 -0
  1146. package/lib/routes/fanqienovel/namespace.ts +7 -0
  1147. package/lib/routes/fanqienovel/page.ts +100 -0
  1148. package/lib/routes/fansly/namespace.ts +6 -0
  1149. package/lib/routes/fansly/post.ts +54 -0
  1150. package/lib/routes/fansly/tag.ts +55 -0
  1151. package/lib/routes/fansly/templates/media.art +8 -0
  1152. package/lib/routes/fansly/templates/poll.art +4 -0
  1153. package/lib/routes/fansly/templates/tip-goal.art +2 -0
  1154. package/lib/routes/fansly/utils.ts +166 -0
  1155. package/lib/routes/fantia/namespace.ts +6 -0
  1156. package/lib/routes/fantia/search.ts +145 -0
  1157. package/lib/routes/fantia/user.ts +85 -0
  1158. package/lib/routes/fanxinzhui/index.ts +127 -0
  1159. package/lib/routes/fanxinzhui/namespace.ts +6 -0
  1160. package/lib/routes/fanxinzhui/templates/description.art +13 -0
  1161. package/lib/routes/farmatters/index.ts +115 -0
  1162. package/lib/routes/farmatters/namespace.ts +7 -0
  1163. package/lib/routes/farmatters/templates/description.art +9 -0
  1164. package/lib/routes/fastbull/express-news.ts +58 -0
  1165. package/lib/routes/fastbull/namespace.ts +6 -0
  1166. package/lib/routes/fastbull/news.ts +86 -0
  1167. package/lib/routes/fda/cdrh.ts +78 -0
  1168. package/lib/routes/fda/namespace.ts +6 -0
  1169. package/lib/routes/feng/forum.ts +73 -0
  1170. package/lib/routes/feng/namespace.ts +6 -0
  1171. package/lib/routes/feng/utils.ts +76 -0
  1172. package/lib/routes/ff14/ff14-global.ts +77 -0
  1173. package/lib/routes/ff14/ff14-zh.ts +75 -0
  1174. package/lib/routes/ff14/namespace.ts +6 -0
  1175. package/lib/routes/fffdm/manhua/manhua.ts +79 -0
  1176. package/lib/routes/fffdm/namespace.ts +6 -0
  1177. package/lib/routes/finology/bullets.ts +51 -0
  1178. package/lib/routes/finology/category.ts +60 -0
  1179. package/lib/routes/finology/most-viewed.ts +50 -0
  1180. package/lib/routes/finology/namespace.ts +6 -0
  1181. package/lib/routes/finology/tag.ts +55 -0
  1182. package/lib/routes/finology/utils.ts +60 -0
  1183. package/lib/routes/finviz/namespace.ts +6 -0
  1184. package/lib/routes/finviz/news.ts +98 -0
  1185. package/lib/routes/finviz/quote.ts +59 -0
  1186. package/lib/routes/firecore/index.ts +56 -0
  1187. package/lib/routes/firecore/namespace.ts +6 -0
  1188. package/lib/routes/firefox/addons.ts +59 -0
  1189. package/lib/routes/firefox/breaches.ts +63 -0
  1190. package/lib/routes/firefox/namespace.ts +6 -0
  1191. package/lib/routes/firefox/release.ts +44 -0
  1192. package/lib/routes/fisher-spb/namespace.ts +6 -0
  1193. package/lib/routes/fisher-spb/news.ts +76 -0
  1194. package/lib/routes/fishshell/index.ts +43 -0
  1195. package/lib/routes/fishshell/namespace.ts +6 -0
  1196. package/lib/routes/fjksbm/index.ts +81 -0
  1197. package/lib/routes/fjksbm/namespace.ts +6 -0
  1198. package/lib/routes/flyert/creditcard.ts +136 -0
  1199. package/lib/routes/flyert/namespace.ts +6 -0
  1200. package/lib/routes/flyert/preferential.ts +74 -0
  1201. package/lib/routes/flyert/utils.ts +72 -0
  1202. package/lib/routes/focustaiwan/index.ts +102 -0
  1203. package/lib/routes/focustaiwan/namespace.ts +6 -0
  1204. package/lib/routes/followin/index.ts +66 -0
  1205. package/lib/routes/followin/kol.ts +50 -0
  1206. package/lib/routes/followin/namespace.ts +6 -0
  1207. package/lib/routes/followin/news.ts +46 -0
  1208. package/lib/routes/followin/tag.ts +69 -0
  1209. package/lib/routes/followin/templates/thread.art +15 -0
  1210. package/lib/routes/followin/topic.ts +50 -0
  1211. package/lib/routes/followin/utils.ts +76 -0
  1212. package/lib/routes/foresightnews/article.ts +47 -0
  1213. package/lib/routes/foresightnews/column.ts +53 -0
  1214. package/lib/routes/foresightnews/index.ts +37 -0
  1215. package/lib/routes/foresightnews/namespace.ts +6 -0
  1216. package/lib/routes/foresightnews/news.ts +48 -0
  1217. package/lib/routes/foresightnews/templates/description.art +13 -0
  1218. package/lib/routes/foresightnews/util.ts +90 -0
  1219. package/lib/routes/foreverblog/feeds.ts +61 -0
  1220. package/lib/routes/foreverblog/namespace.ts +6 -0
  1221. package/lib/routes/fortnite/namespace.ts +6 -0
  1222. package/lib/routes/fortnite/news.ts +87 -0
  1223. package/lib/routes/fortunechina/index.ts +98 -0
  1224. package/lib/routes/fortunechina/namespace.ts +6 -0
  1225. package/lib/routes/fosshub/index.ts +71 -0
  1226. package/lib/routes/fosshub/namespace.ts +6 -0
  1227. package/lib/routes/free/namespace.ts +6 -0
  1228. package/lib/routes/free/rss.ts +35 -0
  1229. package/lib/routes/freebuf/index.ts +68 -0
  1230. package/lib/routes/freebuf/namespace.ts +6 -0
  1231. package/lib/routes/freecomputerbooks/index.ts +127 -0
  1232. package/lib/routes/freecomputerbooks/namespace.ts +6 -0
  1233. package/lib/routes/freecomputerbooks/templates/desc.art +3 -0
  1234. package/lib/routes/freewechat/namespace.ts +6 -0
  1235. package/lib/routes/freewechat/profile.ts +88 -0
  1236. package/lib/routes/freexcomic/book.ts +84 -0
  1237. package/lib/routes/freexcomic/namespace.ts +7 -0
  1238. package/lib/routes/ft/myft.ts +76 -0
  1239. package/lib/routes/ft/namespace.ts +6 -0
  1240. package/lib/routes/ftchinese/channel.ts +38 -0
  1241. package/lib/routes/ftchinese/namespace.ts +6 -0
  1242. package/lib/routes/ftchinese/utils.ts +90 -0
  1243. package/lib/routes/fuliba/latest.ts +50 -0
  1244. package/lib/routes/fuliba/namespace.ts +6 -0
  1245. package/lib/routes/furstar/archive.ts +53 -0
  1246. package/lib/routes/furstar/artists.ts +58 -0
  1247. package/lib/routes/furstar/index.ts +59 -0
  1248. package/lib/routes/furstar/namespace.ts +6 -0
  1249. package/lib/routes/furstar/utils.ts +99 -0
  1250. package/lib/routes/futunn/main.ts +80 -0
  1251. package/lib/routes/futunn/namespace.ts +6 -0
  1252. package/lib/routes/futunn/templates/description.art +6 -0
  1253. package/lib/routes/fx-markets/channel.ts +79 -0
  1254. package/lib/routes/fx-markets/namespace.ts +6 -0
  1255. package/lib/routes/fx678/kx.ts +70 -0
  1256. package/lib/routes/fx678/namespace.ts +6 -0
  1257. package/lib/routes/fxiaoke/crm.ts +86 -0
  1258. package/lib/routes/fxiaoke/namespace.ts +6 -0
  1259. package/lib/routes/fzmtr/announcements.ts +57 -0
  1260. package/lib/routes/fzmtr/namespace.ts +6 -0
  1261. package/lib/routes/gameapps/index.ts +94 -0
  1262. package/lib/routes/gameapps/namespace.ts +6 -0
  1263. package/lib/routes/gamebase/namespace.ts +6 -0
  1264. package/lib/routes/gamebase/news.ts +98 -0
  1265. package/lib/routes/gamegene/namespace.ts +6 -0
  1266. package/lib/routes/gamegene/news.ts +76 -0
  1267. package/lib/routes/gamer/ani/anime.ts +52 -0
  1268. package/lib/routes/gamer/ani/new-anime.ts +47 -0
  1269. package/lib/routes/gamer/gnn-index.ts +154 -0
  1270. package/lib/routes/gamer/hot.ts +76 -0
  1271. package/lib/routes/gamer/namespace.ts +6 -0
  1272. package/lib/routes/gamer520/index.ts +85 -0
  1273. package/lib/routes/gamer520/namespace.ts +6 -0
  1274. package/lib/routes/gamersecret/index.ts +106 -0
  1275. package/lib/routes/gamersecret/namespace.ts +6 -0
  1276. package/lib/routes/gamme/category.ts +60 -0
  1277. package/lib/routes/gamme/namespace.ts +6 -0
  1278. package/lib/routes/gamme/tag.ts +71 -0
  1279. package/lib/routes/gcores/category.ts +171 -0
  1280. package/lib/routes/gcores/collection.ts +161 -0
  1281. package/lib/routes/gcores/namespace.ts +6 -0
  1282. package/lib/routes/gcores/radio.ts +108 -0
  1283. package/lib/routes/gcores/tag.ts +158 -0
  1284. package/lib/routes/gdsrx/index.ts +101 -0
  1285. package/lib/routes/gdsrx/namespace.ts +6 -0
  1286. package/lib/routes/gdut/namespace.ts +6 -0
  1287. package/lib/routes/gdut/news.ts +168 -0
  1288. package/lib/routes/gdut/oa-news.ts +226 -0
  1289. package/lib/routes/gelonghui/home.ts +54 -0
  1290. package/lib/routes/gelonghui/hot-article.ts +60 -0
  1291. package/lib/routes/gelonghui/keyword.ts +54 -0
  1292. package/lib/routes/gelonghui/live.ts +59 -0
  1293. package/lib/routes/gelonghui/namespace.ts +6 -0
  1294. package/lib/routes/gelonghui/subject.ts +61 -0
  1295. package/lib/routes/gelonghui/user.ts +58 -0
  1296. package/lib/routes/gelonghui/utils.ts +25 -0
  1297. package/lib/routes/geocaching/blogs.ts +55 -0
  1298. package/lib/routes/geocaching/namespace.ts +6 -0
  1299. package/lib/routes/getdr/index.ts +63 -0
  1300. package/lib/routes/getdr/namespace.ts +6 -0
  1301. package/lib/routes/getitfree/index.ts +59 -0
  1302. package/lib/routes/getitfree/namespace.ts +6 -0
  1303. package/lib/routes/getitfree/util.ts +315 -0
  1304. package/lib/routes/gettr/namespace.ts +6 -0
  1305. package/lib/routes/gettr/user.ts +83 -0
  1306. package/lib/routes/gf-cn/namespace.ts +6 -0
  1307. package/lib/routes/gf-cn/news.ts +78 -0
  1308. package/lib/routes/gihyo/group.ts +72 -0
  1309. package/lib/routes/gihyo/namespace.ts +6 -0
  1310. package/lib/routes/gitee/namespace.ts +6 -0
  1311. package/lib/routes/gitee/repos/commits.ts +66 -0
  1312. package/lib/routes/gitee/repos/events.ts +92 -0
  1313. package/lib/routes/gitee/repos/releases.ts +58 -0
  1314. package/lib/routes/gitee/users/events.ts +110 -0
  1315. package/lib/routes/github/branches.ts +55 -0
  1316. package/lib/routes/github/comments.ts +206 -0
  1317. package/lib/routes/github/contributors.ts +104 -0
  1318. package/lib/routes/github/file.ts +66 -0
  1319. package/lib/routes/github/follower.ts +75 -0
  1320. package/lib/routes/github/gist.ts +59 -0
  1321. package/lib/routes/github/issue.ts +70 -0
  1322. package/lib/routes/github/namespace.ts +15 -0
  1323. package/lib/routes/github/notifications.ts +78 -0
  1324. package/lib/routes/github/pulls.ts +72 -0
  1325. package/lib/routes/github/pulse.ts +118 -0
  1326. package/lib/routes/github/repos.ts +58 -0
  1327. package/lib/routes/github/search.ts +66 -0
  1328. package/lib/routes/github/star.ts +76 -0
  1329. package/lib/routes/github/starred-repos.ts +62 -0
  1330. package/lib/routes/github/templates/pulse-description.art +24 -0
  1331. package/lib/routes/github/topic.ts +73 -0
  1332. package/lib/routes/github/trending.ts +128 -0
  1333. package/lib/routes/github/wiki.ts +65 -0
  1334. package/lib/routes/gitpod/blog.ts +84 -0
  1335. package/lib/routes/gitpod/changelog.ts +60 -0
  1336. package/lib/routes/gitpod/namespace.ts +6 -0
  1337. package/lib/routes/gitpod/utils.ts +3 -0
  1338. package/lib/routes/globallawreview/index.ts +70 -0
  1339. package/lib/routes/globallawreview/namespace.ts +6 -0
  1340. package/lib/routes/gocn/jobs.ts +53 -0
  1341. package/lib/routes/gocn/namespace.ts +6 -0
  1342. package/lib/routes/gocn/news.ts +40 -0
  1343. package/lib/routes/gocn/topics.ts +56 -0
  1344. package/lib/routes/gocn/utils.ts +36 -0
  1345. package/lib/routes/gofans/index.ts +63 -0
  1346. package/lib/routes/gofans/namespace.ts +6 -0
  1347. package/lib/routes/gofans/templates/description.art +7 -0
  1348. package/lib/routes/gogoanimehd/namespace.ts +6 -0
  1349. package/lib/routes/gogoanimehd/recent-releases.ts +62 -0
  1350. package/lib/routes/google/album.ts +55 -0
  1351. package/lib/routes/google/alerts.ts +52 -0
  1352. package/lib/routes/google/citations.ts +66 -0
  1353. package/lib/routes/google/doodles.ts +54 -0
  1354. package/lib/routes/google/extension.ts +53 -0
  1355. package/lib/routes/google/fonts.ts +78 -0
  1356. package/lib/routes/google/namespace.ts +6 -0
  1357. package/lib/routes/google/news.ts +89 -0
  1358. package/lib/routes/google/scholar.ts +71 -0
  1359. package/lib/routes/google/search.ts +85 -0
  1360. package/lib/routes/google/templates/description.art +6 -0
  1361. package/lib/routes/gov/ah/kjt.ts +229 -0
  1362. package/lib/routes/gov/ah/namespace.ts +8 -0
  1363. package/lib/routes/gov/beijing/bjedu/gh.ts +79 -0
  1364. package/lib/routes/gov/beijing/bphc/index.ts +64 -0
  1365. package/lib/routes/gov/beijing/jw/tzgg.ts +84 -0
  1366. package/lib/routes/gov/beijing/kw/index.ts +53 -0
  1367. package/lib/routes/gov/caac/cjwt.ts +87 -0
  1368. package/lib/routes/gov/caac/templates/description.art +25 -0
  1369. package/lib/routes/gov/cac/index.ts +73 -0
  1370. package/lib/routes/gov/ccdi/index.ts +27 -0
  1371. package/lib/routes/gov/ccdi/utils.ts +91 -0
  1372. package/lib/routes/gov/chinamine-safety/util.ts +72 -0
  1373. package/lib/routes/gov/chinamine-safety/xw.ts +46 -0
  1374. package/lib/routes/gov/chinamine-safety/zfxxgk.ts +45 -0
  1375. package/lib/routes/gov/chinatax/latest.ts +74 -0
  1376. package/lib/routes/gov/chongqing/gzw.ts +87 -0
  1377. package/lib/routes/gov/chongqing/rsks.ts +55 -0
  1378. package/lib/routes/gov/chongqing/sydwgkzp.ts +75 -0
  1379. package/lib/routes/gov/cmse/fxrw.ts +68 -0
  1380. package/lib/routes/gov/cmse/index.ts +79 -0
  1381. package/lib/routes/gov/cnnic/index.ts +64 -0
  1382. package/lib/routes/gov/csrc/auditstatus.ts +73 -0
  1383. package/lib/routes/gov/csrc/news.ts +81 -0
  1384. package/lib/routes/gov/customs/list.ts +111 -0
  1385. package/lib/routes/gov/customs/utils.ts +18 -0
  1386. package/lib/routes/gov/dianbai/dianbai.ts +26 -0
  1387. package/lib/routes/gov/forestry/gjlckjdjt.ts +127 -0
  1388. package/lib/routes/gov/forestry/templates/description.art +15 -0
  1389. package/lib/routes/gov/gaozhou/gaozhou.ts +27 -0
  1390. package/lib/routes/gov/general/general.ts +240 -0
  1391. package/lib/routes/gov/guangdong/tqyb/sncsyjxh.ts +65 -0
  1392. package/lib/routes/gov/guangdong/tqyb/tfxtq.ts +58 -0
  1393. package/lib/routes/gov/gz/index.ts +46 -0
  1394. package/lib/routes/gov/hebei/czt.ts +76 -0
  1395. package/lib/routes/gov/huazhou/huazhou.ts +27 -0
  1396. package/lib/routes/gov/huizhou/zwgk/index.ts +79 -0
  1397. package/lib/routes/gov/hunan/changsha/major-email.ts +82 -0
  1398. package/lib/routes/gov/immiau/news.ts +62 -0
  1399. package/lib/routes/gov/jgjcndrc/index.ts +96 -0
  1400. package/lib/routes/gov/jiangsu/wlt/index.ts +99 -0
  1401. package/lib/routes/gov/jiangsu/wlt/templates/wlt.art +9 -0
  1402. package/lib/routes/gov/jinan/healthcommission/medical-exam-notice.ts +74 -0
  1403. package/lib/routes/gov/maoming/maoming.ts +382 -0
  1404. package/lib/routes/gov/maonan/maonan.ts +123 -0
  1405. package/lib/routes/gov/mee/ywdt.ts +109 -0
  1406. package/lib/routes/gov/mem/sgcc.ts +93 -0
  1407. package/lib/routes/gov/mfa/wjdt.ts +87 -0
  1408. package/lib/routes/gov/mgs/mgs.ts +27 -0
  1409. package/lib/routes/gov/miit/wjfb.ts +86 -0
  1410. package/lib/routes/gov/miit/wjgs.ts +82 -0
  1411. package/lib/routes/gov/miit/yjzj.ts +85 -0
  1412. package/lib/routes/gov/miit/zcjd.ts +82 -0
  1413. package/lib/routes/gov/miit/zcwj.ts +73 -0
  1414. package/lib/routes/gov/mmht/mmht.ts +27 -0
  1415. package/lib/routes/gov/moa/moa.ts +257 -0
  1416. package/lib/routes/gov/moa/zdscxx.ts +111 -0
  1417. package/lib/routes/gov/moe/moe.ts +108 -0
  1418. package/lib/routes/gov/moe/s78.ts +69 -0
  1419. package/lib/routes/gov/mof/bond.ts +76 -0
  1420. package/lib/routes/gov/mofcom/article.ts +77 -0
  1421. package/lib/routes/gov/moj/aac/news.ts +72 -0
  1422. package/lib/routes/gov/moj/lfyjzj.ts +79 -0
  1423. package/lib/routes/gov/mot/index.ts +75 -0
  1424. package/lib/routes/gov/ndrc/fggz.ts +71 -0
  1425. package/lib/routes/gov/ndrc/xwdt.ts +63 -0
  1426. package/lib/routes/gov/nea/ghs.ts +84 -0
  1427. package/lib/routes/gov/news/index.ts +128 -0
  1428. package/lib/routes/gov/nifdc/index.ts +87 -0
  1429. package/lib/routes/gov/nmpa/generic.ts +70 -0
  1430. package/lib/routes/gov/nopss/index.ts +67 -0
  1431. package/lib/routes/gov/npc/index.ts +75 -0
  1432. package/lib/routes/gov/nrta/dsj.ts +82 -0
  1433. package/lib/routes/gov/nrta/news.ts +85 -0
  1434. package/lib/routes/gov/nsfc/index.ts +95 -0
  1435. package/lib/routes/gov/nsfc/shortcuts.ts +52 -0
  1436. package/lib/routes/gov/pbc/goutongjiaoliu.ts +85 -0
  1437. package/lib/routes/gov/pbc/gzlw.ts +52 -0
  1438. package/lib/routes/gov/pbc/namespace.ts +45 -0
  1439. package/lib/routes/gov/pbc/trade-announcement.ts +78 -0
  1440. package/lib/routes/gov/pbc/utils.ts +19 -0
  1441. package/lib/routes/gov/pbc/zcyj.ts +43 -0
  1442. package/lib/routes/gov/safe/business.ts +27 -0
  1443. package/lib/routes/gov/safe/complaint.ts +27 -0
  1444. package/lib/routes/gov/safe/templates/message.art +25 -0
  1445. package/lib/routes/gov/safe/util.ts +88 -0
  1446. package/lib/routes/gov/samr/templates/description.art +26 -0
  1447. package/lib/routes/gov/samr/xgzlyhd.ts +221 -0
  1448. package/lib/routes/gov/sasac/generic.ts +51 -0
  1449. package/lib/routes/gov/sdb/sdb.ts +27 -0
  1450. package/lib/routes/gov/sh/fgw/index.ts +155 -0
  1451. package/lib/routes/gov/sh/fgw/templates/description.art +17 -0
  1452. package/lib/routes/gov/sh/namespace.ts +8 -0
  1453. package/lib/routes/gov/sh/rsj/ksxm.ts +67 -0
  1454. package/lib/routes/gov/sh/wgj/templates/wgj.art +15 -0
  1455. package/lib/routes/gov/sh/wgj/wgj.ts +102 -0
  1456. package/lib/routes/gov/sh/wsjkw/yqtb/index.ts +58 -0
  1457. package/lib/routes/gov/sh/yjj/index.ts +72 -0
  1458. package/lib/routes/gov/shaanxi/kjt.ts +78 -0
  1459. package/lib/routes/gov/shenzhen/hrss/szksy/index.ts +69 -0
  1460. package/lib/routes/gov/shenzhen/xxgk/zfxxgj.ts +96 -0
  1461. package/lib/routes/gov/shenzhen/zjj/index.ts +73 -0
  1462. package/lib/routes/gov/shenzhen/zzb/index.ts +68 -0
  1463. package/lib/routes/gov/sichuan/deyang/govpublicinfo.ts +118 -0
  1464. package/lib/routes/gov/sichuan/deyang/mztoday.ts +167 -0
  1465. package/lib/routes/gov/stats/index.ts +144 -0
  1466. package/lib/routes/gov/suzhou/doc.ts +72 -0
  1467. package/lib/routes/gov/suzhou/fg.ts +71 -0
  1468. package/lib/routes/gov/suzhou/news.ts +167 -0
  1469. package/lib/routes/gov/taiyuan/rsj.ts +69 -0
  1470. package/lib/routes/gov/wuhan/whyw.ts +70 -0
  1471. package/lib/routes/gov/xinyi/xinyi.ts +27 -0
  1472. package/lib/routes/gov/xuzhou/hrss.ts +77 -0
  1473. package/lib/routes/gov/zhejiang/gwy.ts +134 -0
  1474. package/lib/routes/gov/zhengce/govall.ts +92 -0
  1475. package/lib/routes/gov/zhengce/index.ts +125 -0
  1476. package/lib/routes/gov/zhengce/wenjian.ts +74 -0
  1477. package/lib/routes/gov/zhengce/zhengceku.ts +41 -0
  1478. package/lib/routes/gov/zj/search.ts +80 -0
  1479. package/lib/routes/gq/namespace.ts +6 -0
  1480. package/lib/routes/gq/news.ts +59 -0
  1481. package/lib/routes/greasyfork/feedback.ts +55 -0
  1482. package/lib/routes/greasyfork/namespace.ts +6 -0
  1483. package/lib/routes/greasyfork/scripts.ts +76 -0
  1484. package/lib/routes/greasyfork/versions.ts +53 -0
  1485. package/lib/routes/grist/featured.ts +57 -0
  1486. package/lib/routes/grist/index.ts +33 -0
  1487. package/lib/routes/grist/namespace.ts +6 -0
  1488. package/lib/routes/grist/series.ts +46 -0
  1489. package/lib/routes/grist/topic.ts +91 -0
  1490. package/lib/routes/grist/utils.ts +24 -0
  1491. package/lib/routes/grubstreet/index.ts +24 -0
  1492. package/lib/routes/grubstreet/namespace.ts +6 -0
  1493. package/lib/routes/grubstreet/utils.ts +83 -0
  1494. package/lib/routes/guancha/headline.ts +77 -0
  1495. package/lib/routes/guancha/index.ts +189 -0
  1496. package/lib/routes/guancha/member.ts +115 -0
  1497. package/lib/routes/guancha/namespace.ts +6 -0
  1498. package/lib/routes/guancha/personalpage.ts +91 -0
  1499. package/lib/routes/guancha/topic.ts +72 -0
  1500. package/lib/routes/guangdiu/cheaps.ts +47 -0
  1501. package/lib/routes/guangdiu/index.ts +62 -0
  1502. package/lib/routes/guangdiu/namespace.ts +6 -0
  1503. package/lib/routes/guangdiu/rank.ts +64 -0
  1504. package/lib/routes/guangdiu/search.ts +60 -0
  1505. package/lib/routes/guangzhoumetro/namespace.ts +6 -0
  1506. package/lib/routes/guangzhoumetro/news.ts +56 -0
  1507. package/lib/routes/guanhai/index.ts +70 -0
  1508. package/lib/routes/guanhai/namespace.ts +6 -0
  1509. package/lib/routes/guduodata/daily.ts +92 -0
  1510. package/lib/routes/guduodata/namespace.ts +6 -0
  1511. package/lib/routes/gumroad/index.ts +63 -0
  1512. package/lib/routes/gumroad/namespace.ts +6 -0
  1513. package/lib/routes/guokr/channel.ts +59 -0
  1514. package/lib/routes/guokr/namespace.ts +6 -0
  1515. package/lib/routes/guokr/scientific.ts +38 -0
  1516. package/lib/routes/guokr/utils.ts +37 -0
  1517. package/lib/routes/gxmzu/ai.ts +43 -0
  1518. package/lib/routes/gxmzu/lib.ts +79 -0
  1519. package/lib/routes/gxmzu/namespace.ts +6 -0
  1520. package/lib/routes/gxmzu/utils/index.ts +68 -0
  1521. package/lib/routes/gxmzu/yjs.ts +43 -0
  1522. package/lib/routes/gzdaily/app.ts +89 -0
  1523. package/lib/routes/gzdaily/namespace.ts +6 -0
  1524. package/lib/routes/gzhu/namespace.ts +6 -0
  1525. package/lib/routes/gzhu/yjs.ts +56 -0
  1526. package/lib/routes/hackernews/index.ts +138 -0
  1527. package/lib/routes/hackernews/namespace.ts +6 -0
  1528. package/lib/routes/hackertalk/index.ts +39 -0
  1529. package/lib/routes/hackertalk/namespace.ts +6 -0
  1530. package/lib/routes/hacking8/index.ts +72 -0
  1531. package/lib/routes/hacking8/namespace.ts +6 -0
  1532. package/lib/routes/hacking8/search.ts +73 -0
  1533. package/lib/routes/hackmd/namespace.ts +6 -0
  1534. package/lib/routes/hackmd/profile.ts +43 -0
  1535. package/lib/routes/hackyournews/index.ts +65 -0
  1536. package/lib/routes/hackyournews/namespace.ts +6 -0
  1537. package/lib/routes/hafu/namespace.ts +6 -0
  1538. package/lib/routes/hafu/news.ts +37 -0
  1539. package/lib/routes/hafu/utils.ts +210 -0
  1540. package/lib/routes/hakkatv/namespace.ts +6 -0
  1541. package/lib/routes/hakkatv/type.ts +94 -0
  1542. package/lib/routes/hameln/chapter.ts +85 -0
  1543. package/lib/routes/hameln/namespace.ts +6 -0
  1544. package/lib/routes/harvard/health/blog.ts +78 -0
  1545. package/lib/routes/harvard/namespace.ts +6 -0
  1546. package/lib/routes/hashnode/blog.ts +93 -0
  1547. package/lib/routes/hashnode/namespace.ts +6 -0
  1548. package/lib/routes/hbooker/chapter.ts +71 -0
  1549. package/lib/routes/hbooker/namespace.ts +6 -0
  1550. package/lib/routes/hbr/namespace.ts +6 -0
  1551. package/lib/routes/hbr/topic.ts +88 -0
  1552. package/lib/routes/hdu/cs/notice.ts +80 -0
  1553. package/lib/routes/hdu/cs/pg.ts +80 -0
  1554. package/lib/routes/hdu/namespace.ts +6 -0
  1555. package/lib/routes/hebtv/namespace.ts +6 -0
  1556. package/lib/routes/hebtv/nong-bo-shi-zai-xing-dong.ts +138 -0
  1557. package/lib/routes/hebtv/templates/description.art +24 -0
  1558. package/lib/routes/hellobtc/information.ts +71 -0
  1559. package/lib/routes/hellobtc/kepu.ts +87 -0
  1560. package/lib/routes/hellobtc/namespace.ts +6 -0
  1561. package/lib/routes/hellobtc/news.ts +54 -0
  1562. package/lib/routes/hellogithub/index.ts +128 -0
  1563. package/lib/routes/hellogithub/namespace.ts +6 -0
  1564. package/lib/routes/hellogithub/report.ts +71 -0
  1565. package/lib/routes/hellogithub/volume.ts +77 -0
  1566. package/lib/routes/hex-rays/index.ts +73 -0
  1567. package/lib/routes/hex-rays/namespace.ts +6 -0
  1568. package/lib/routes/hicairo/namespace.ts +6 -0
  1569. package/lib/routes/hicairo/rss.ts +48 -0
  1570. package/lib/routes/hinatazaka46/blog.ts +96 -0
  1571. package/lib/routes/hinatazaka46/namespace.ts +6 -0
  1572. package/lib/routes/hinatazaka46/news.ts +77 -0
  1573. package/lib/routes/hit/hitgs.ts +72 -0
  1574. package/lib/routes/hit/jwc.ts +86 -0
  1575. package/lib/routes/hit/namespace.ts +9 -0
  1576. package/lib/routes/hit/today.ts +92 -0
  1577. package/lib/routes/hitcon/namespace.ts +6 -0
  1578. package/lib/routes/hitcon/templates/zeroday.art +8 -0
  1579. package/lib/routes/hitcon/zeroday.ts +109 -0
  1580. package/lib/routes/hitsz/article.ts +64 -0
  1581. package/lib/routes/hitsz/namespace.ts +6 -0
  1582. package/lib/routes/hitwh/namespace.ts +6 -0
  1583. package/lib/routes/hitwh/today.ts +80 -0
  1584. package/lib/routes/hizu/index.ts +128 -0
  1585. package/lib/routes/hizu/namespace.ts +6 -0
  1586. package/lib/routes/hk01/channel.ts +37 -0
  1587. package/lib/routes/hk01/hot.ts +46 -0
  1588. package/lib/routes/hk01/issue.ts +36 -0
  1589. package/lib/routes/hk01/latest.ts +46 -0
  1590. package/lib/routes/hk01/namespace.ts +6 -0
  1591. package/lib/routes/hk01/tag.ts +36 -0
  1592. package/lib/routes/hk01/utils.ts +44 -0
  1593. package/lib/routes/hk01/zone.ts +37 -0
  1594. package/lib/routes/hkej/index.ts +183 -0
  1595. package/lib/routes/hkej/namespace.ts +6 -0
  1596. package/lib/routes/hkepc/data.ts +60 -0
  1597. package/lib/routes/hkepc/index.ts +127 -0
  1598. package/lib/routes/hkepc/namespace.ts +6 -0
  1599. package/lib/routes/hket/index.ts +221 -0
  1600. package/lib/routes/hket/namespace.ts +6 -0
  1601. package/lib/routes/hket/templates/image.art +4 -0
  1602. package/lib/routes/hkjunkcall/index.ts +69 -0
  1603. package/lib/routes/hkjunkcall/namespace.ts +6 -0
  1604. package/lib/routes/hljucm/namespace.ts +6 -0
  1605. package/lib/routes/hljucm/yjsy.ts +79 -0
  1606. package/lib/routes/hnrb/index.ts +124 -0
  1607. package/lib/routes/hnrb/namespace.ts +6 -0
  1608. package/lib/routes/hnu/careers.ts +58 -0
  1609. package/lib/routes/hnu/namespace.ts +6 -0
  1610. package/lib/routes/hongkong/chp.ts +118 -0
  1611. package/lib/routes/hongkong/dh.ts +84 -0
  1612. package/lib/routes/hongkong/namespace.ts +6 -0
  1613. package/lib/routes/hostmonit/cloudflareyes.ts +116 -0
  1614. package/lib/routes/hostmonit/cloudflareyesv6.ts +11 -0
  1615. package/lib/routes/hostmonit/namespace.ts +6 -0
  1616. package/lib/routes/hostmonit/templates/description.art +28 -0
  1617. package/lib/routes/hostmonit/templates/title.art +1 -0
  1618. package/lib/routes/hotukdeals/hottest.ts +50 -0
  1619. package/lib/routes/hotukdeals/index.ts +53 -0
  1620. package/lib/routes/hotukdeals/namespace.ts +6 -0
  1621. package/lib/routes/houxu/events.ts +56 -0
  1622. package/lib/routes/houxu/index.ts +55 -0
  1623. package/lib/routes/houxu/lives.ts +60 -0
  1624. package/lib/routes/houxu/memory.ts +56 -0
  1625. package/lib/routes/houxu/namespace.ts +6 -0
  1626. package/lib/routes/howtoforge/namespace.ts +6 -0
  1627. package/lib/routes/howtoforge/rss.ts +48 -0
  1628. package/lib/routes/hoyolab/constant.ts +28 -0
  1629. package/lib/routes/hoyolab/namespace.ts +6 -0
  1630. package/lib/routes/hoyolab/news.ts +143 -0
  1631. package/lib/routes/hoyolab/templates/post.art +7 -0
  1632. package/lib/routes/hoyolab/utils.ts +29 -0
  1633. package/lib/routes/hpoi/all.ts +34 -0
  1634. package/lib/routes/hpoi/banner-item.ts +51 -0
  1635. package/lib/routes/hpoi/character.ts +27 -0
  1636. package/lib/routes/hpoi/info.ts +75 -0
  1637. package/lib/routes/hpoi/namespace.ts +6 -0
  1638. package/lib/routes/hpoi/user.ts +65 -0
  1639. package/lib/routes/hpoi/utils.ts +47 -0
  1640. package/lib/routes/hpoi/work.ts +27 -0
  1641. package/lib/routes/hrbeu/gx/card.ts +45 -0
  1642. package/lib/routes/hrbeu/gx/list.ts +69 -0
  1643. package/lib/routes/hrbeu/job/bigemploy.ts +50 -0
  1644. package/lib/routes/hrbeu/job/calendar.ts +81 -0
  1645. package/lib/routes/hrbeu/job/list.ts +88 -0
  1646. package/lib/routes/hrbeu/namespace.ts +6 -0
  1647. package/lib/routes/hrbeu/uae/news.ts +94 -0
  1648. package/lib/routes/hrbeu/ugs/news.ts +173 -0
  1649. package/lib/routes/hrbeu/yjsy/list.ts +85 -0
  1650. package/lib/routes/hrbust/jwzx.ts +59 -0
  1651. package/lib/routes/hrbust/namespace.ts +6 -0
  1652. package/lib/routes/hrbust/utils.ts +65 -0
  1653. package/lib/routes/huanqiu/index.ts +103 -0
  1654. package/lib/routes/huanqiu/namespace.ts +6 -0
  1655. package/lib/routes/hubu/index.ts +124 -0
  1656. package/lib/routes/hubu/namespace.ts +8 -0
  1657. package/lib/routes/hubu/zhxy.ts +228 -0
  1658. package/lib/routes/huggingface/blog-zh.ts +59 -0
  1659. package/lib/routes/huggingface/daily-papers.ts +51 -0
  1660. package/lib/routes/huggingface/namespace.ts +6 -0
  1661. package/lib/routes/hunanpea/namespace.ts +6 -0
  1662. package/lib/routes/hunanpea/rsks.ts +67 -0
  1663. package/lib/routes/hunau/gfxy/index.ts +40 -0
  1664. package/lib/routes/hunau/ied.ts +42 -0
  1665. package/lib/routes/hunau/jwc.ts +39 -0
  1666. package/lib/routes/hunau/namespace.ts +6 -0
  1667. package/lib/routes/hunau/utils/category-title.ts +31 -0
  1668. package/lib/routes/hunau/utils/common.ts +62 -0
  1669. package/lib/routes/hunau/utils/index-page.ts +10 -0
  1670. package/lib/routes/hunau/utils/news-content.ts +47 -0
  1671. package/lib/routes/hunau/xky/index.ts +41 -0
  1672. package/lib/routes/huoxian/namespace.ts +6 -0
  1673. package/lib/routes/huoxian/zone.ts +38 -0
  1674. package/lib/routes/hupu/all.ts +105 -0
  1675. package/lib/routes/hupu/bbs.ts +117 -0
  1676. package/lib/routes/hupu/index.ts +102 -0
  1677. package/lib/routes/hupu/namespace.ts +6 -0
  1678. package/lib/routes/hust/aia/news.ts +51 -0
  1679. package/lib/routes/hust/aia/notice.ts +51 -0
  1680. package/lib/routes/hust/namespace.ts +6 -0
  1681. package/lib/routes/hust/yjs.ts +52 -0
  1682. package/lib/routes/huxiu/brief-column.ts +49 -0
  1683. package/lib/routes/huxiu/channel.ts +65 -0
  1684. package/lib/routes/huxiu/club.ts +39 -0
  1685. package/lib/routes/huxiu/collection.ts +48 -0
  1686. package/lib/routes/huxiu/member.ts +39 -0
  1687. package/lib/routes/huxiu/moment.ts +51 -0
  1688. package/lib/routes/huxiu/namespace.ts +6 -0
  1689. package/lib/routes/huxiu/search.ts +61 -0
  1690. package/lib/routes/huxiu/tag.ts +47 -0
  1691. package/lib/routes/huxiu/templates/description.art +46 -0
  1692. package/lib/routes/huxiu/util.ts +446 -0
  1693. package/lib/routes/hypergryph/announce.ts +89 -0
  1694. package/lib/routes/hypergryph/japan.ts +78 -0
  1695. package/lib/routes/hypergryph/namespace.ts +7 -0
  1696. package/lib/routes/hypergryph/news.ts +118 -0
  1697. package/lib/routes/ianspriggs/index.ts +116 -0
  1698. package/lib/routes/ianspriggs/namespace.ts +6 -0
  1699. package/lib/routes/ianspriggs/templates/description.art +13 -0
  1700. package/lib/routes/icac/namespace.ts +6 -0
  1701. package/lib/routes/icac/news.ts +72 -0
  1702. package/lib/routes/icac/utils.ts +13 -0
  1703. package/lib/routes/icbc/namespace.ts +6 -0
  1704. package/lib/routes/icbc/whpj.ts +86 -0
  1705. package/lib/routes/idaily/index.ts +85 -0
  1706. package/lib/routes/idaily/namespace.ts +6 -0
  1707. package/lib/routes/idaily/templates/description.art +17 -0
  1708. package/lib/routes/idolypride/namespace.ts +6 -0
  1709. package/lib/routes/idolypride/news.ts +54 -0
  1710. package/lib/routes/ieee/journal.ts +73 -0
  1711. package/lib/routes/ieee/namespace.ts +6 -0
  1712. package/lib/routes/ieee/templates/description.art +11 -0
  1713. package/lib/routes/ieee-security/namespace.ts +6 -0
  1714. package/lib/routes/ieee-security/sp.ts +53 -0
  1715. package/lib/routes/iehou/index.ts +125 -0
  1716. package/lib/routes/iehou/namespace.ts +8 -0
  1717. package/lib/routes/ielts/index.ts +81 -0
  1718. package/lib/routes/ielts/namespace.ts +6 -0
  1719. package/lib/routes/ifeng/feng.ts +92 -0
  1720. package/lib/routes/ifeng/namespace.ts +6 -0
  1721. package/lib/routes/ifeng/news.ts +67 -0
  1722. package/lib/routes/ifeng/templates/video.art +5 -0
  1723. package/lib/routes/ifeng/utils.ts +26 -0
  1724. package/lib/routes/ifi-audio/download.ts +58 -0
  1725. package/lib/routes/ifi-audio/namespace.ts +6 -0
  1726. package/lib/routes/iguoguo/index.ts +95 -0
  1727. package/lib/routes/iguoguo/namespace.ts +6 -0
  1728. package/lib/routes/iiilab/index.ts +39 -0
  1729. package/lib/routes/iiilab/namespace.ts +6 -0
  1730. package/lib/routes/ikea/cn/family-offers.ts +95 -0
  1731. package/lib/routes/ikea/cn/low-price.ts +47 -0
  1732. package/lib/routes/ikea/cn/new.ts +64 -0
  1733. package/lib/routes/ikea/cn/utils.ts +42 -0
  1734. package/lib/routes/ikea/gb/new.ts +82 -0
  1735. package/lib/routes/ikea/gb/offer.ts +97 -0
  1736. package/lib/routes/ikea/namespace.ts +6 -0
  1737. package/lib/routes/imagemagick/changelog.ts +72 -0
  1738. package/lib/routes/imagemagick/namespace.ts +6 -0
  1739. package/lib/routes/imdb/chart.ts +61 -0
  1740. package/lib/routes/imdb/namespace.ts +6 -0
  1741. package/lib/routes/imdb/templates/chart.art +15 -0
  1742. package/lib/routes/imdb/types.ts +103 -0
  1743. package/lib/routes/imiker/jinghua.ts +116 -0
  1744. package/lib/routes/imiker/namespace.ts +6 -0
  1745. package/lib/routes/imiker/templates/description.art +32 -0
  1746. package/lib/routes/index.tsx +10 -0
  1747. package/lib/routes/indiansinkuwait/latest.ts +69 -0
  1748. package/lib/routes/indiansinkuwait/namespace.ts +6 -0
  1749. package/lib/routes/indienova/article.ts +44 -0
  1750. package/lib/routes/indienova/column.ts +84 -0
  1751. package/lib/routes/indienova/gamedb.ts +64 -0
  1752. package/lib/routes/indienova/namespace.ts +6 -0
  1753. package/lib/routes/indienova/usergames.ts +68 -0
  1754. package/lib/routes/indienova/utils.ts +39 -0
  1755. package/lib/routes/inewsweek/index.ts +83 -0
  1756. package/lib/routes/inewsweek/namespace.ts +6 -0
  1757. package/lib/routes/infoq/namespace.ts +6 -0
  1758. package/lib/routes/infoq/recommend.ts +51 -0
  1759. package/lib/routes/infoq/topic.ts +67 -0
  1760. package/lib/routes/infoq/utils.ts +109 -0
  1761. package/lib/routes/informs/index.ts +97 -0
  1762. package/lib/routes/informs/namespace.ts +6 -0
  1763. package/lib/routes/infzm/index.ts +75 -0
  1764. package/lib/routes/infzm/types.ts +17 -0
  1765. package/lib/routes/inoreader/index.ts +53 -0
  1766. package/lib/routes/inoreader/namespace.ts +6 -0
  1767. package/lib/routes/inoreader/rss.ts +66 -0
  1768. package/lib/routes/instagram/common-utils.ts +63 -0
  1769. package/lib/routes/instagram/namespace.ts +9 -0
  1770. package/lib/routes/instagram/private-api/index.ts +124 -0
  1771. package/lib/routes/instagram/private-api/utils.ts +38 -0
  1772. package/lib/routes/instagram/templates/images.art +12 -0
  1773. package/lib/routes/instagram/templates/video.art +8 -0
  1774. package/lib/routes/instagram/web-api/index.ts +118 -0
  1775. package/lib/routes/instagram/web-api/utils.ts +218 -0
  1776. package/lib/routes/instructables/namespace.ts +6 -0
  1777. package/lib/routes/instructables/projects.ts +85 -0
  1778. package/lib/routes/ippa/namespace.ts +6 -0
  1779. package/lib/routes/ippa/rss.ts +35 -0
  1780. package/lib/routes/ipsw/index.ts +109 -0
  1781. package/lib/routes/ipsw/namespace.ts +6 -0
  1782. package/lib/routes/iqilu/namespace.ts +6 -0
  1783. package/lib/routes/iqilu/program.ts +110 -0
  1784. package/lib/routes/iqilu/templates/description.art +24 -0
  1785. package/lib/routes/iqiyi/album.ts +88 -0
  1786. package/lib/routes/iqiyi/namespace.ts +6 -0
  1787. package/lib/routes/iqiyi/video.ts +79 -0
  1788. package/lib/routes/iqnew/latest.ts +83 -0
  1789. package/lib/routes/iqnew/namespace.ts +6 -0
  1790. package/lib/routes/iresearch/namespace.ts +6 -0
  1791. package/lib/routes/iresearch/report.ts +89 -0
  1792. package/lib/routes/iresearch/weekly.ts +63 -0
  1793. package/lib/routes/issuehunt/funded.ts +47 -0
  1794. package/lib/routes/issuehunt/namespace.ts +6 -0
  1795. package/lib/routes/itc/collection.ts +66 -0
  1796. package/lib/routes/itc/namespace.ts +6 -0
  1797. package/lib/routes/itch/devlog.ts +95 -0
  1798. package/lib/routes/itch/index.ts +69 -0
  1799. package/lib/routes/itch/namespace.ts +6 -0
  1800. package/lib/routes/itch/posts.ts +65 -0
  1801. package/lib/routes/ithome/index.ts +109 -0
  1802. package/lib/routes/ithome/namespace.ts +6 -0
  1803. package/lib/routes/ithome/ranking.ts +93 -0
  1804. package/lib/routes/ithome/tag.ts +84 -0
  1805. package/lib/routes/ithome/templates/description.art +13 -0
  1806. package/lib/routes/ithome/tw/feeds.ts +66 -0
  1807. package/lib/routes/ithome/zt.ts +150 -0
  1808. package/lib/routes/iwara/index.ts +64 -0
  1809. package/lib/routes/iwara/namespace.ts +6 -0
  1810. package/lib/routes/iwara/subscriptions.ts +186 -0
  1811. package/lib/routes/iwara/templates/subscriptions.art +1 -0
  1812. package/lib/routes/ixigua/namespace.ts +6 -0
  1813. package/lib/routes/ixigua/user-video.ts +65 -0
  1814. package/lib/routes/jandan/index.ts +46 -0
  1815. package/lib/routes/jandan/namespace.ts +6 -0
  1816. package/lib/routes/jandan/section.ts +59 -0
  1817. package/lib/routes/japanpost/namespace.ts +6 -0
  1818. package/lib/routes/japanpost/templates/track_item_desc.art +14 -0
  1819. package/lib/routes/japanpost/track.ts +137 -0
  1820. package/lib/routes/japanpost/utils.ts +89 -0
  1821. package/lib/routes/javbus/index.ts +202 -0
  1822. package/lib/routes/javbus/namespace.ts +23 -0
  1823. package/lib/routes/javdb/actors.ts +56 -0
  1824. package/lib/routes/javdb/index.ts +65 -0
  1825. package/lib/routes/javdb/lists.ts +43 -0
  1826. package/lib/routes/javdb/makers.ts +58 -0
  1827. package/lib/routes/javdb/namespace.ts +19 -0
  1828. package/lib/routes/javdb/rankings.ts +55 -0
  1829. package/lib/routes/javdb/search.ts +76 -0
  1830. package/lib/routes/javdb/series.ts +58 -0
  1831. package/lib/routes/javdb/tags.ts +55 -0
  1832. package/lib/routes/javdb/utils.ts +104 -0
  1833. package/lib/routes/javdb/videocodes.ts +56 -0
  1834. package/lib/routes/javlibrary/bestrated.ts +21 -0
  1835. package/lib/routes/javlibrary/bestreviews.ts +32 -0
  1836. package/lib/routes/javlibrary/genre.ts +26 -0
  1837. package/lib/routes/javlibrary/maker.ts +33 -0
  1838. package/lib/routes/javlibrary/mostwanted.ts +21 -0
  1839. package/lib/routes/javlibrary/namespace.ts +6 -0
  1840. package/lib/routes/javlibrary/newentries.ts +17 -0
  1841. package/lib/routes/javlibrary/newrelease.ts +21 -0
  1842. package/lib/routes/javlibrary/star.ts +39 -0
  1843. package/lib/routes/javlibrary/update.ts +17 -0
  1844. package/lib/routes/javlibrary/user.ts +22 -0
  1845. package/lib/routes/javlibrary/utils.ts +97 -0
  1846. package/lib/routes/jd/namespace.ts +6 -0
  1847. package/lib/routes/jd/price.ts +67 -0
  1848. package/lib/routes/jewishmuseum/exhibitions.ts +35 -0
  1849. package/lib/routes/jewishmuseum/namespace.ts +6 -0
  1850. package/lib/routes/jianshu/collection.ts +54 -0
  1851. package/lib/routes/jianshu/home.ts +53 -0
  1852. package/lib/routes/jianshu/namespace.ts +6 -0
  1853. package/lib/routes/jianshu/user.ts +54 -0
  1854. package/lib/routes/jianshu/utils.ts +56 -0
  1855. package/lib/routes/jiaoliudao/index.ts +41 -0
  1856. package/lib/routes/jiaoliudao/namespace.ts +6 -0
  1857. package/lib/routes/jiemian/list.ts +14 -0
  1858. package/lib/routes/jiemian/lists.ts +112 -0
  1859. package/lib/routes/jiemian/namespace.ts +6 -0
  1860. package/lib/routes/jiemian/templates/description.art +39 -0
  1861. package/lib/routes/jike/namespace.ts +6 -0
  1862. package/lib/routes/jike/topic-text.ts +47 -0
  1863. package/lib/routes/jike/topic.ts +72 -0
  1864. package/lib/routes/jike/user.ts +183 -0
  1865. package/lib/routes/jike/utils.ts +197 -0
  1866. package/lib/routes/jin10/index.ts +88 -0
  1867. package/lib/routes/jin10/namespace.ts +6 -0
  1868. package/lib/routes/jin10/topic.ts +76 -0
  1869. package/lib/routes/jingzhengu/namespace.ts +6 -0
  1870. package/lib/routes/jingzhengu/news.ts +77 -0
  1871. package/lib/routes/jingzhengu/types.ts +39 -0
  1872. package/lib/routes/jingzhengu/utils.ts +35 -0
  1873. package/lib/routes/jinse/catalogue.ts +131 -0
  1874. package/lib/routes/jinse/lives.ts +112 -0
  1875. package/lib/routes/jinse/namespace.ts +6 -0
  1876. package/lib/routes/jinse/templates/description.art +34 -0
  1877. package/lib/routes/jinse/timeline.ts +123 -0
  1878. package/lib/routes/jisilu/index.ts +133 -0
  1879. package/lib/routes/jisilu/namespace.ts +6 -0
  1880. package/lib/routes/jiuyangongshe/community.ts +147 -0
  1881. package/lib/routes/jiuyangongshe/namespace.ts +7 -0
  1882. package/lib/routes/jiuyangongshe/templates/community-description.art +4 -0
  1883. package/lib/routes/jjwxc/author.ts +90 -0
  1884. package/lib/routes/jjwxc/book.ts +129 -0
  1885. package/lib/routes/jjwxc/namespace.ts +6 -0
  1886. package/lib/routes/jjwxc/templates/author.art +28 -0
  1887. package/lib/routes/jjwxc/templates/book.art +44 -0
  1888. package/lib/routes/jlu/ccst/xwzx/index.ts +63 -0
  1889. package/lib/routes/jlu/jwc.ts +55 -0
  1890. package/lib/routes/jlu/namespace.ts +6 -0
  1891. package/lib/routes/jornada/index.ts +93 -0
  1892. package/lib/routes/jornada/namespace.ts +6 -0
  1893. package/lib/routes/jou/home.ts +43 -0
  1894. package/lib/routes/jou/namespace.ts +6 -0
  1895. package/lib/routes/jou/utils/index.ts +69 -0
  1896. package/lib/routes/jou/yz.ts +43 -0
  1897. package/lib/routes/jpxgmn/namespace.ts +6 -0
  1898. package/lib/routes/jpxgmn/search.ts +45 -0
  1899. package/lib/routes/jpxgmn/tab.ts +57 -0
  1900. package/lib/routes/jpxgmn/templates/description.art +3 -0
  1901. package/lib/routes/jpxgmn/utils.ts +36 -0
  1902. package/lib/routes/jpxgmn/weekly.ts +54 -0
  1903. package/lib/routes/jseea/namespace.ts +6 -0
  1904. package/lib/routes/jseea/news.ts +79 -0
  1905. package/lib/routes/jsu/cxzx.ts +84 -0
  1906. package/lib/routes/jsu/jwc.ts +82 -0
  1907. package/lib/routes/jsu/math.ts +61 -0
  1908. package/lib/routes/jsu/namespace.ts +6 -0
  1909. package/lib/routes/jsu/rjxy.ts +63 -0
  1910. package/lib/routes/jsu/universityindex.ts +68 -0
  1911. package/lib/routes/jsu/utils/index.ts +50 -0
  1912. package/lib/routes/juejin/books.ts +56 -0
  1913. package/lib/routes/juejin/category.ts +62 -0
  1914. package/lib/routes/juejin/collection.ts +51 -0
  1915. package/lib/routes/juejin/column.ts +56 -0
  1916. package/lib/routes/juejin/favorites.ts +65 -0
  1917. package/lib/routes/juejin/namespace.ts +6 -0
  1918. package/lib/routes/juejin/pins.ts +89 -0
  1919. package/lib/routes/juejin/posts.ts +50 -0
  1920. package/lib/routes/juejin/tag.ts +65 -0
  1921. package/lib/routes/juejin/trending.ts +118 -0
  1922. package/lib/routes/juejin/utils.ts +55 -0
  1923. package/lib/routes/jump/discount.ts +157 -0
  1924. package/lib/routes/jump/namespace.ts +6 -0
  1925. package/lib/routes/junhe/legal-updates.ts +98 -0
  1926. package/lib/routes/junhe/namespace.ts +8 -0
  1927. package/lib/routes/kadokawa/blog.ts +134 -0
  1928. package/lib/routes/kadokawa/namespace.ts +8 -0
  1929. package/lib/routes/kadokawa/templates/description.art +21 -0
  1930. package/lib/routes/kamen-rider-official/namespace.ts +6 -0
  1931. package/lib/routes/kamen-rider-official/news.ts +165 -0
  1932. package/lib/routes/kamen-rider-official/templates/description.art +10 -0
  1933. package/lib/routes/kantarworldpanel/index.ts +108 -0
  1934. package/lib/routes/kantarworldpanel/namespace.ts +6 -0
  1935. package/lib/routes/kantarworldpanel/templates/description.art +9 -0
  1936. package/lib/routes/kanxue/namespace.ts +6 -0
  1937. package/lib/routes/kanxue/topic.ts +153 -0
  1938. package/lib/routes/kaopu/namespace.ts +6 -0
  1939. package/lib/routes/kaopu/news.ts +51 -0
  1940. package/lib/routes/kbs/namespace.ts +6 -0
  1941. package/lib/routes/kbs/news.ts +97 -0
  1942. package/lib/routes/kbs/today.ts +86 -0
  1943. package/lib/routes/kcna/namespace.ts +6 -0
  1944. package/lib/routes/kcna/news.ts +124 -0
  1945. package/lib/routes/kcna/utils.ts +60 -0
  1946. package/lib/routes/ke/namespace.ts +6 -0
  1947. package/lib/routes/ke/results.ts +61 -0
  1948. package/lib/routes/keep/namespace.ts +6 -0
  1949. package/lib/routes/keep/user.ts +84 -0
  1950. package/lib/routes/keepass/namespace.ts +6 -0
  1951. package/lib/routes/keepass/news.ts +55 -0
  1952. package/lib/routes/kemono/index.ts +169 -0
  1953. package/lib/routes/kemono/namespace.ts +6 -0
  1954. package/lib/routes/kemono/templates/source.art +24 -0
  1955. package/lib/routes/kepu/live.ts +118 -0
  1956. package/lib/routes/kepu/namespace.ts +6 -0
  1957. package/lib/routes/kepu/templates/description.art +33 -0
  1958. package/lib/routes/keylol/index.ts +168 -0
  1959. package/lib/routes/keylol/namespace.ts +6 -0
  1960. package/lib/routes/kimlaw/namespace.ts +6 -0
  1961. package/lib/routes/kimlaw/thesis.ts +70 -0
  1962. package/lib/routes/konghq/blog-posts.ts +78 -0
  1963. package/lib/routes/konghq/namespace.ts +7 -0
  1964. package/lib/routes/kpmg/insights.ts +143 -0
  1965. package/lib/routes/kpmg/namespace.ts +10 -0
  1966. package/lib/routes/kpmg/templates/description.art +11 -0
  1967. package/lib/routes/kuaidi100/index.ts +72 -0
  1968. package/lib/routes/kuaidi100/namespace.ts +6 -0
  1969. package/lib/routes/kuaidi100/supported-company.ts +41 -0
  1970. package/lib/routes/kuaidi100/utils.ts +260 -0
  1971. package/lib/routes/kunchengblog/essay.ts +91 -0
  1972. package/lib/routes/kunchengblog/namespace.ts +6 -0
  1973. package/lib/routes/kuwaitlocal/index.ts +75 -0
  1974. package/lib/routes/kuwaitlocal/namespace.ts +6 -0
  1975. package/lib/routes/kyodonews/index.ts +149 -0
  1976. package/lib/routes/kyodonews/namespace.ts +6 -0
  1977. package/lib/routes/laimanhua/index.ts +65 -0
  1978. package/lib/routes/laimanhua/namespace.ts +6 -0
  1979. package/lib/routes/lala/namespace.ts +6 -0
  1980. package/lib/routes/lala/rss.ts +48 -0
  1981. package/lib/routes/lang/namespace.ts +6 -0
  1982. package/lib/routes/lang/room.ts +67 -0
  1983. package/lib/routes/lanqiao/author.ts +86 -0
  1984. package/lib/routes/lanqiao/courses.ts +82 -0
  1985. package/lib/routes/lanqiao/namespace.ts +6 -0
  1986. package/lib/routes/lanqiao/questions.ts +80 -0
  1987. package/lib/routes/lanqiao/utils.ts +13 -0
  1988. package/lib/routes/laohu8/namespace.ts +6 -0
  1989. package/lib/routes/laohu8/personal.ts +57 -0
  1990. package/lib/routes/latepost/index.ts +132 -0
  1991. package/lib/routes/latepost/namespace.ts +6 -0
  1992. package/lib/routes/layoffs/index.ts +150 -0
  1993. package/lib/routes/layoffs/namespace.ts +6 -0
  1994. package/lib/routes/learnblockchain/namespace.ts +6 -0
  1995. package/lib/routes/learnblockchain/posts.ts +81 -0
  1996. package/lib/routes/learnku/namespace.ts +6 -0
  1997. package/lib/routes/learnku/topic.ts +104 -0
  1998. package/lib/routes/leetcode/articles.ts +109 -0
  1999. package/lib/routes/leetcode/dailyquestion-cn.ts +132 -0
  2000. package/lib/routes/leetcode/dailyquestion-en.ts +133 -0
  2001. package/lib/routes/leetcode/dailyquestion-solution-cn.ts +201 -0
  2002. package/lib/routes/leetcode/dailyquestion-solution-en.ts +231 -0
  2003. package/lib/routes/leetcode/namespace.ts +6 -0
  2004. package/lib/routes/leiphone/index.ts +41 -0
  2005. package/lib/routes/leiphone/namespace.ts +6 -0
  2006. package/lib/routes/leiphone/newsflash.ts +45 -0
  2007. package/lib/routes/leiphone/utils.ts +39 -0
  2008. package/lib/routes/lemmy/index.ts +89 -0
  2009. package/lib/routes/lemmy/namespace.ts +5 -0
  2010. package/lib/routes/lfsyd/home.ts +68 -0
  2011. package/lib/routes/lfsyd/namespace.ts +6 -0
  2012. package/lib/routes/lfsyd/old-home.ts +55 -0
  2013. package/lib/routes/lfsyd/tag.ts +79 -0
  2014. package/lib/routes/lfsyd/user.ts +63 -0
  2015. package/lib/routes/lfsyd/utils.ts +103 -0
  2016. package/lib/routes/lianxh/index.ts +116 -0
  2017. package/lib/routes/lianxh/namespace.ts +7 -0
  2018. package/lib/routes/lifeweek/channel.ts +40 -0
  2019. package/lib/routes/lifeweek/namespace.ts +6 -0
  2020. package/lib/routes/lifeweek/tag.ts +39 -0
  2021. package/lib/routes/lifeweek/utils.ts +18 -0
  2022. package/lib/routes/lightnovel/light-novel.ts +78 -0
  2023. package/lib/routes/lightnovel/namespace.ts +6 -0
  2024. package/lib/routes/line/namespace.ts +6 -0
  2025. package/lib/routes/line/publisher.ts +68 -0
  2026. package/lib/routes/line/today.ts +66 -0
  2027. package/lib/routes/line/utils.ts +56 -0
  2028. package/lib/routes/linkedin/cn/index.ts +46 -0
  2029. package/lib/routes/linkedin/cn/renderer.ts +177 -0
  2030. package/lib/routes/linkedin/cn/utils.ts +123 -0
  2031. package/lib/routes/linkedin/jobs.ts +139 -0
  2032. package/lib/routes/linkedin/models.ts +13 -0
  2033. package/lib/routes/linkedin/namespace.ts +6 -0
  2034. package/lib/routes/linkedin/utils.ts +126 -0
  2035. package/lib/routes/linkresearcher/index.ts +76 -0
  2036. package/lib/routes/linkresearcher/namespace.ts +6 -0
  2037. package/lib/routes/linovelib/namespace.ts +6 -0
  2038. package/lib/routes/linovelib/novel.ts +52 -0
  2039. package/lib/routes/linovelib/volume.ts +36 -0
  2040. package/lib/routes/liquipedia/cs-matches.ts +60 -0
  2041. package/lib/routes/liquipedia/dota2-matches.ts +71 -0
  2042. package/lib/routes/liquipedia/namespace.ts +6 -0
  2043. package/lib/routes/literotica/category.ts +69 -0
  2044. package/lib/routes/literotica/namespace.ts +6 -0
  2045. package/lib/routes/literotica/new.ts +85 -0
  2046. package/lib/routes/liulinblog/index.ts +107 -0
  2047. package/lib/routes/liulinblog/itnews.ts +13 -0
  2048. package/lib/routes/liulinblog/namespace.ts +6 -0
  2049. package/lib/routes/liveuamap/index.ts +63 -0
  2050. package/lib/routes/liveuamap/namespace.ts +6 -0
  2051. package/lib/routes/lkong/forum.ts +72 -0
  2052. package/lib/routes/lkong/namespace.ts +6 -0
  2053. package/lib/routes/lkong/query.ts +83 -0
  2054. package/lib/routes/lkong/thread.ts +73 -0
  2055. package/lib/routes/lofter/namespace.ts +6 -0
  2056. package/lib/routes/lofter/tag.ts +116 -0
  2057. package/lib/routes/lofter/user.ts +81 -0
  2058. package/lib/routes/logclub/index.ts +145 -0
  2059. package/lib/routes/logclub/namespace.ts +6 -0
  2060. package/lib/routes/logclub/report.ts +124 -0
  2061. package/lib/routes/logclub/templates/description.art +33 -0
  2062. package/lib/routes/logonews/index.ts +96 -0
  2063. package/lib/routes/logonews/namespace.ts +6 -0
  2064. package/lib/routes/loltw/namespace.ts +6 -0
  2065. package/lib/routes/loltw/news.ts +62 -0
  2066. package/lib/routes/loongarch/namespace.ts +6 -0
  2067. package/lib/routes/loongarch/post.ts +59 -0
  2068. package/lib/routes/lovelive-anime/namespace.ts +6 -0
  2069. package/lib/routes/lovelive-anime/news.ts +86 -0
  2070. package/lib/routes/lovelive-anime/schedules.ts +67 -0
  2071. package/lib/routes/lovelive-anime/topics.ts +113 -0
  2072. package/lib/routes/lrepacks/index.ts +201 -0
  2073. package/lib/routes/lrepacks/namespace.ts +8 -0
  2074. package/lib/routes/lrepacks/templates/description.art +21 -0
  2075. package/lib/routes/lsnu/jiaowc/tzgg.ts +82 -0
  2076. package/lib/routes/lsnu/namespace.ts +6 -0
  2077. package/lib/routes/luogu/contest.ts +99 -0
  2078. package/lib/routes/luogu/daily.ts +64 -0
  2079. package/lib/routes/luogu/namespace.ts +6 -0
  2080. package/lib/routes/luogu/user-blog.ts +73 -0
  2081. package/lib/routes/luogu/user-feed.ts +57 -0
  2082. package/lib/routes/luolei/index.ts +150 -0
  2083. package/lib/routes/luolei/namespace.ts +8 -0
  2084. package/lib/routes/luolei/templates/description.art +19 -0
  2085. package/lib/routes/luxiangdong/archive.ts +53 -0
  2086. package/lib/routes/luxiangdong/namespace.ts +6 -0
  2087. package/lib/routes/lvv2/namespace.ts +6 -0
  2088. package/lib/routes/lvv2/news.ts +104 -0
  2089. package/lib/routes/lvv2/top.ts +106 -0
  2090. package/lib/routes/lxixsxa/discography.ts +82 -0
  2091. package/lib/routes/lxixsxa/information.ts +76 -0
  2092. package/lib/routes/lxixsxa/jsonp-helper.ts +17 -0
  2093. package/lib/routes/lxixsxa/namespace.ts +6 -0
  2094. package/lib/routes/m4/index.ts +99 -0
  2095. package/lib/routes/m4/namespace.ts +6 -0
  2096. package/lib/routes/m4/templates/description.art +21 -0
  2097. package/lib/routes/macfilos/blog.ts +87 -0
  2098. package/lib/routes/macfilos/namespace.ts +6 -0
  2099. package/lib/routes/macmenubar/namespace.ts +6 -0
  2100. package/lib/routes/macmenubar/recently.ts +66 -0
  2101. package/lib/routes/macupdate/app.ts +67 -0
  2102. package/lib/routes/macupdate/namespace.ts +6 -0
  2103. package/lib/routes/magazinelib/latest-magazine.ts +78 -0
  2104. package/lib/routes/magazinelib/namespace.ts +6 -0
  2105. package/lib/routes/magnumphotos/magazine.ts +63 -0
  2106. package/lib/routes/magnumphotos/namespace.ts +6 -0
  2107. package/lib/routes/mail/imap.ts +109 -0
  2108. package/lib/routes/mail/namespace.ts +5 -0
  2109. package/lib/routes/mangadex/index.ts +84 -0
  2110. package/lib/routes/mangadex/namespace.ts +6 -0
  2111. package/lib/routes/manhuagui/comic.ts +139 -0
  2112. package/lib/routes/manhuagui/namespace.ts +6 -0
  2113. package/lib/routes/manhuagui/subscribe.ts +92 -0
  2114. package/lib/routes/manyvids/namespace.ts +7 -0
  2115. package/lib/routes/manyvids/templates/video.art +3 -0
  2116. package/lib/routes/manyvids/types.ts +89 -0
  2117. package/lib/routes/manyvids/video.ts +51 -0
  2118. package/lib/routes/mastodon/account-id.ts +30 -0
  2119. package/lib/routes/mastodon/acct.ts +40 -0
  2120. package/lib/routes/mastodon/namespace.ts +14 -0
  2121. package/lib/routes/mastodon/timeline-local.ts +43 -0
  2122. package/lib/routes/mastodon/timeline-remote.ts +43 -0
  2123. package/lib/routes/mastodon/utils.ts +135 -0
  2124. package/lib/routes/matters/author.ts +63 -0
  2125. package/lib/routes/matters/latest.ts +74 -0
  2126. package/lib/routes/matters/namespace.ts +7 -0
  2127. package/lib/routes/matters/tags.ts +85 -0
  2128. package/lib/routes/matters/utils.ts +30 -0
  2129. package/lib/routes/mckinsey/cn/category-map.ts +77 -0
  2130. package/lib/routes/mckinsey/cn/index.ts +73 -0
  2131. package/lib/routes/mckinsey/namespace.ts +6 -0
  2132. package/lib/routes/mdpi/journal.ts +92 -0
  2133. package/lib/routes/mdpi/namespace.ts +6 -0
  2134. package/lib/{v2 → routes}/mdpi/templates/description.art +0 -0
  2135. package/lib/routes/medieval-china/namespace.ts +6 -0
  2136. package/lib/routes/medieval-china/post.ts +60 -0
  2137. package/lib/routes/medium/following.ts +59 -0
  2138. package/lib/routes/medium/for-you.ts +59 -0
  2139. package/lib/routes/medium/graphql.ts +185 -0
  2140. package/lib/routes/medium/list.ts +58 -0
  2141. package/lib/routes/medium/namespace.ts +6 -0
  2142. package/lib/routes/medium/parse-article.ts +61 -0
  2143. package/lib/routes/medium/tag.ts +62 -0
  2144. package/lib/routes/medsci/index.ts +128 -0
  2145. package/lib/routes/medsci/namespace.ts +6 -0
  2146. package/lib/routes/metacritic/index.ts +132 -0
  2147. package/lib/routes/metacritic/namespace.ts +6 -0
  2148. package/lib/routes/metacritic/release.ts +54 -0
  2149. package/lib/routes/metacritic/templates/description.art +19 -0
  2150. package/lib/routes/metacritic/util.ts +39 -0
  2151. package/lib/routes/meteor/boards.ts +37 -0
  2152. package/lib/routes/meteor/index.ts +65 -0
  2153. package/lib/routes/meteor/namespace.ts +6 -0
  2154. package/lib/routes/meteor/utils.ts +89 -0
  2155. package/lib/routes/metmuseum/exhibitions.ts +39 -0
  2156. package/lib/routes/metmuseum/namespace.ts +6 -0
  2157. package/lib/routes/mi/crowdfunding.ts +37 -0
  2158. package/lib/routes/mi/golden.ts +32 -0
  2159. package/lib/routes/mi/namespace.ts +6 -0
  2160. package/lib/routes/microsoft/addon.ts +56 -0
  2161. package/lib/routes/microsoft/namespace.ts +6 -0
  2162. package/lib/routes/mihoyo/bbs/cache.ts +42 -0
  2163. package/lib/routes/mihoyo/bbs/follow-list.ts +72 -0
  2164. package/lib/routes/mihoyo/bbs/img-ranking.ts +144 -0
  2165. package/lib/routes/mihoyo/bbs/official.ts +166 -0
  2166. package/lib/routes/mihoyo/bbs/static-data.ts +134 -0
  2167. package/lib/routes/mihoyo/bbs/timeline.ts +74 -0
  2168. package/lib/routes/mihoyo/bbs/user-post.ts +51 -0
  2169. package/lib/routes/mihoyo/bbs/utils.ts +37 -0
  2170. package/lib/routes/mihoyo/namespace.ts +6 -0
  2171. package/lib/routes/mihoyo/sr/news.ts +100 -0
  2172. package/lib/routes/mihoyo/templates/official.art +7 -0
  2173. package/lib/routes/mihoyo/ys/news.ts +195 -0
  2174. package/lib/routes/mindmeister/example.ts +95 -0
  2175. package/lib/routes/mindmeister/namespace.ts +6 -0
  2176. package/lib/routes/minecraft/blockedservers.ts +52 -0
  2177. package/lib/routes/minecraft/java-runtime.ts +127 -0
  2178. package/lib/routes/minecraft/namespace.ts +6 -0
  2179. package/lib/routes/minecraft/version.ts +137 -0
  2180. package/lib/routes/mingpao/index.ts +111 -0
  2181. package/lib/routes/mingpao/namespace.ts +6 -0
  2182. package/lib/routes/mingpao/templates/fancybox.art +7 -0
  2183. package/lib/routes/miniflux/entry.ts +315 -0
  2184. package/lib/routes/miniflux/namespace.ts +6 -0
  2185. package/lib/routes/miniflux/subscription.ts +129 -0
  2186. package/lib/routes/mirror/index.ts +62 -0
  2187. package/lib/routes/mirror/namespace.ts +6 -0
  2188. package/lib/routes/missav/namespace.ts +6 -0
  2189. package/lib/routes/missav/new.ts +64 -0
  2190. package/lib/routes/missav/templates/preview.art +3 -0
  2191. package/lib/routes/misskey/featured-notes.ts +49 -0
  2192. package/lib/routes/misskey/namespace.ts +6 -0
  2193. package/lib/routes/misskey/utils.ts +31 -0
  2194. package/lib/routes/mittrchina/index.ts +125 -0
  2195. package/lib/routes/mittrchina/namespace.ts +6 -0
  2196. package/lib/routes/mittrchina/templates/movie.art +5 -0
  2197. package/lib/routes/miui/community/user.ts +69 -0
  2198. package/lib/routes/miui/firmware/index.ts +55 -0
  2199. package/lib/routes/miui/namespace.ts +6 -0
  2200. package/lib/routes/mixcloud/index.ts +156 -0
  2201. package/lib/routes/mixcloud/namespace.ts +6 -0
  2202. package/lib/routes/mixcloud/queries.ts +2274 -0
  2203. package/lib/routes/modb/namespace.ts +6 -0
  2204. package/lib/routes/modb/topic.ts +78 -0
  2205. package/lib/routes/modelscope/community.ts +84 -0
  2206. package/lib/routes/modelscope/datasets.ts +85 -0
  2207. package/lib/routes/modelscope/models.ts +72 -0
  2208. package/lib/routes/modelscope/namespace.ts +6 -0
  2209. package/lib/routes/modelscope/studios.ts +87 -0
  2210. package/lib/routes/modian/namespace.ts +6 -0
  2211. package/lib/routes/modian/zhongchou.ts +101 -0
  2212. package/lib/routes/modrinth/api.d.ts +101 -0
  2213. package/lib/routes/modrinth/namespace.ts +6 -0
  2214. package/lib/routes/modrinth/templates/version.art +8 -0
  2215. package/lib/routes/modrinth/versions.ts +127 -0
  2216. package/lib/routes/mohw/clarification.ts +76 -0
  2217. package/lib/routes/mohw/namespace.ts +6 -0
  2218. package/lib/routes/mox/index.ts +117 -0
  2219. package/lib/routes/mox/namespace.ts +6 -0
  2220. package/lib/routes/mpaypass/main.ts +79 -0
  2221. package/lib/routes/mpaypass/namespace.ts +6 -0
  2222. package/lib/routes/mpaypass/news.ts +65 -0
  2223. package/lib/routes/mrdx/daily.ts +105 -0
  2224. package/lib/routes/mrdx/namespace.ts +6 -0
  2225. package/lib/routes/mrdx/utils.ts +15 -0
  2226. package/lib/routes/mrm/index.ts +65 -0
  2227. package/lib/routes/mrm/namespace.ts +6 -0
  2228. package/lib/routes/mvm/index.ts +86 -0
  2229. package/lib/routes/mvm/namespace.ts +6 -0
  2230. package/lib/routes/my-formosa/index.ts +78 -0
  2231. package/lib/routes/my-formosa/namespace.ts +6 -0
  2232. package/lib/routes/mydrivers/cid.ts +47 -0
  2233. package/lib/routes/mydrivers/index.ts +73 -0
  2234. package/lib/routes/mydrivers/namespace.ts +6 -0
  2235. package/lib/routes/mydrivers/rank.ts +70 -0
  2236. package/lib/routes/mydrivers/templates/description.art +5 -0
  2237. package/lib/routes/mydrivers/util.ts +116 -0
  2238. package/lib/routes/myfigurecollection/activity.ts +124 -0
  2239. package/lib/routes/myfigurecollection/index.ts +115 -0
  2240. package/lib/routes/myfigurecollection/namespace.ts +6 -0
  2241. package/lib/routes/mygopen/index.ts +55 -0
  2242. package/lib/routes/mygopen/namespace.ts +6 -0
  2243. package/lib/routes/mymusicsheet/namespace.ts +6 -0
  2244. package/lib/routes/mymusicsheet/templates/description.art +41 -0
  2245. package/lib/routes/mymusicsheet/usersheets.ts +149 -0
  2246. package/lib/routes/mysql/namespace.ts +6 -0
  2247. package/lib/routes/mysql/release.ts +84 -0
  2248. package/lib/routes/nasa/apod-cn.ts +52 -0
  2249. package/lib/routes/nasa/apod-ncku.ts +77 -0
  2250. package/lib/routes/nasa/apod.ts +77 -0
  2251. package/lib/routes/nasa/namespace.ts +6 -0
  2252. package/lib/routes/natgeo/dailyphoto.ts +61 -0
  2253. package/lib/routes/natgeo/dailyselection.ts +49 -0
  2254. package/lib/routes/natgeo/namespace.ts +6 -0
  2255. package/lib/routes/natgeo/natgeo.ts +82 -0
  2256. package/lib/routes/nationalgeographic/latest-stories.ts +85 -0
  2257. package/lib/routes/nationalgeographic/namespace.ts +6 -0
  2258. package/lib/routes/nationalgeographic/templates/stories.art +44 -0
  2259. package/lib/routes/nature/cover.ts +94 -0
  2260. package/lib/routes/nature/highlight.ts +50 -0
  2261. package/lib/routes/nature/namespace.ts +9 -0
  2262. package/lib/routes/nature/news-and-comment.ts +52 -0
  2263. package/lib/routes/nature/news.ts +56 -0
  2264. package/lib/routes/nature/research.ts +80 -0
  2265. package/lib/routes/nature/siteindex.ts +68 -0
  2266. package/lib/routes/nature/utils.ts +1093 -0
  2267. package/lib/routes/nautil/namespace.ts +6 -0
  2268. package/lib/routes/nautil/topics.ts +86 -0
  2269. package/lib/routes/nbd/daily.ts +28 -0
  2270. package/lib/routes/nbd/index.ts +84 -0
  2271. package/lib/routes/nbd/namespace.ts +6 -0
  2272. package/lib/routes/nber/all.ts +19 -0
  2273. package/lib/routes/nber/common.ts +52 -0
  2274. package/lib/routes/nber/namespace.ts +7 -0
  2275. package/lib/routes/nber/new.ts +20 -0
  2276. package/lib/routes/ncc-cma/cmdp.ts +349 -0
  2277. package/lib/routes/ncc-cma/namespace.ts +8 -0
  2278. package/lib/routes/ncc-cma/templates/description.art +9 -0
  2279. package/lib/routes/ncepu/master/masterinfo.ts +96 -0
  2280. package/lib/routes/ncepu/namespace.ts +6 -0
  2281. package/lib/routes/ncpssd/namespace.ts +6 -0
  2282. package/lib/routes/ncpssd/newlist.ts +98 -0
  2283. package/lib/routes/ncu/jwc.ts +69 -0
  2284. package/lib/routes/ncu/namespace.ts +6 -0
  2285. package/lib/routes/ncwu/namespace.ts +6 -0
  2286. package/lib/routes/ncwu/notice.ts +52 -0
  2287. package/lib/routes/ndss-symposium/namespace.ts +6 -0
  2288. package/lib/routes/ndss-symposium/ndss.ts +107 -0
  2289. package/lib/routes/neatdownloadmanager/download.ts +71 -0
  2290. package/lib/routes/neatdownloadmanager/namespace.ts +6 -0
  2291. package/lib/routes/neea/index.ts +119 -0
  2292. package/lib/routes/neea/jlpt.ts +78 -0
  2293. package/lib/routes/neea/namespace.ts +6 -0
  2294. package/lib/routes/nenu/namespace.ts +6 -0
  2295. package/lib/routes/nenu/sohac.ts +70 -0
  2296. package/lib/routes/nenu/yjsy.ts +74 -0
  2297. package/lib/routes/netflav/index.ts +57 -0
  2298. package/lib/routes/netflav/namespace.ts +6 -0
  2299. package/lib/routes/netflav/templates/description.art +8 -0
  2300. package/lib/routes/neu/bmie.ts +131 -0
  2301. package/lib/routes/neu/namespace.ts +6 -0
  2302. package/lib/routes/neu/news.ts +86 -0
  2303. package/lib/routes/newmuseum/exhibitions.ts +46 -0
  2304. package/lib/routes/newmuseum/namespace.ts +6 -0
  2305. package/lib/routes/newrank/douyin.ts +91 -0
  2306. package/lib/routes/newrank/namespace.ts +10 -0
  2307. package/lib/routes/newrank/utils.ts +106 -0
  2308. package/lib/routes/newrank/wechat.ts +90 -0
  2309. package/lib/routes/news/namespace.ts +6 -0
  2310. package/lib/routes/news/templates/description.art +21 -0
  2311. package/lib/routes/news/xhsxw.ts +110 -0
  2312. package/lib/routes/newsmarket/index.ts +95 -0
  2313. package/lib/routes/newsmarket/namespace.ts +6 -0
  2314. package/lib/routes/newyorker/namespace.ts +6 -0
  2315. package/lib/routes/newyorker/news.ts +62 -0
  2316. package/lib/routes/newzmz/index.ts +96 -0
  2317. package/lib/routes/newzmz/namespace.ts +6 -0
  2318. package/lib/routes/newzmz/templates/description.art +59 -0
  2319. package/lib/routes/newzmz/util.ts +163 -0
  2320. package/lib/routes/nextapple/namespace.ts +6 -0
  2321. package/lib/routes/nextapple/realtime.ts +77 -0
  2322. package/lib/routes/nga/forum.ts +91 -0
  2323. package/lib/routes/nga/namespace.ts +6 -0
  2324. package/lib/routes/nga/post.ts +141 -0
  2325. package/lib/routes/ngocn2/index.ts +85 -0
  2326. package/lib/routes/ngocn2/namespace.ts +6 -0
  2327. package/lib/routes/nhentai/index.ts +56 -0
  2328. package/lib/routes/nhentai/namespace.ts +7 -0
  2329. package/lib/routes/nhentai/search.ts +47 -0
  2330. package/lib/routes/nhentai/util.ts +146 -0
  2331. package/lib/routes/nhk/namespace.ts +6 -0
  2332. package/lib/routes/nhk/news-web-easy.ts +78 -0
  2333. package/lib/routes/nhk/news.ts +81 -0
  2334. package/lib/routes/nhk/templates/news_web_easy.art +7 -0
  2335. package/lib/routes/niaogebiji/cat.ts +79 -0
  2336. package/lib/routes/niaogebiji/index.ts +57 -0
  2337. package/lib/routes/niaogebiji/namespace.ts +6 -0
  2338. package/lib/routes/niaogebiji/today.ts +60 -0
  2339. package/lib/routes/nifd/namespace.ts +6 -0
  2340. package/lib/routes/nifd/research.ts +75 -0
  2341. package/lib/routes/nikkei/asia/index.ts +70 -0
  2342. package/lib/routes/nikkei/cn/index.ts +137 -0
  2343. package/lib/routes/nikkei/index.ts +46 -0
  2344. package/lib/routes/nikkei/namespace.ts +6 -0
  2345. package/lib/routes/nikkei/news.ts +111 -0
  2346. package/lib/routes/nintendo/direct.ts +59 -0
  2347. package/lib/routes/nintendo/eshop-cn.ts +60 -0
  2348. package/lib/routes/nintendo/eshop-hk.ts +97 -0
  2349. package/lib/routes/nintendo/eshop-jp.ts +51 -0
  2350. package/lib/routes/nintendo/eshop-us.ts +49 -0
  2351. package/lib/routes/nintendo/namespace.ts +6 -0
  2352. package/lib/routes/nintendo/news-china.ts +62 -0
  2353. package/lib/routes/nintendo/news.ts +49 -0
  2354. package/lib/routes/nintendo/system-update.ts +63 -0
  2355. package/lib/routes/nintendo/utils.ts +166 -0
  2356. package/lib/routes/nippon/index.ts +59 -0
  2357. package/lib/routes/nippon/namespace.ts +6 -0
  2358. package/lib/routes/njglyy/namespace.ts +6 -0
  2359. package/lib/routes/njglyy/utils/index.ts +49 -0
  2360. package/lib/routes/njglyy/ygbjypx.ts +43 -0
  2361. package/lib/routes/njit/jwc.ts +129 -0
  2362. package/lib/routes/njit/namespace.ts +6 -0
  2363. package/lib/routes/njit/tzgg.ts +100 -0
  2364. package/lib/routes/njnu/ceai/ceai.ts +67 -0
  2365. package/lib/routes/njnu/ceai/utils.ts +53 -0
  2366. package/lib/routes/njnu/jwc/jwc.ts +66 -0
  2367. package/lib/routes/njnu/jwc/utils.ts +57 -0
  2368. package/lib/routes/njnu/namespace.ts +6 -0
  2369. package/lib/routes/nju/admission.ts +64 -0
  2370. package/lib/routes/nju/dafls.ts +62 -0
  2371. package/lib/routes/nju/exchangesys.ts +68 -0
  2372. package/lib/routes/nju/gra.ts +64 -0
  2373. package/lib/routes/nju/hosptial.ts +64 -0
  2374. package/lib/routes/nju/hqjt.ts +62 -0
  2375. package/lib/routes/nju/itsc.ts +69 -0
  2376. package/lib/routes/nju/jjc.ts +65 -0
  2377. package/lib/routes/nju/jw.ts +88 -0
  2378. package/lib/routes/nju/namespace.ts +6 -0
  2379. package/lib/routes/nju/rczp.ts +76 -0
  2380. package/lib/routes/nju/scit.ts +58 -0
  2381. package/lib/routes/nju/zbb.ts +101 -0
  2382. package/lib/routes/nju/zcc.ts +63 -0
  2383. package/lib/routes/njucm/grabs.ts +43 -0
  2384. package/lib/routes/njucm/namespace.ts +6 -0
  2385. package/lib/routes/njucm/utils/index.ts +46 -0
  2386. package/lib/routes/njuferret/blog.ts +41 -0
  2387. package/lib/routes/njuferret/namespace.ts +10 -0
  2388. package/lib/routes/njupt/jwc.ts +113 -0
  2389. package/lib/routes/njupt/namespace.ts +6 -0
  2390. package/lib/routes/njust/cwc.ts +62 -0
  2391. package/lib/routes/njust/dgxg.ts +63 -0
  2392. package/lib/routes/njust/eo.ts +83 -0
  2393. package/lib/routes/njust/eoe.ts +62 -0
  2394. package/lib/routes/njust/gs.ts +69 -0
  2395. package/lib/routes/njust/jwc.ts +64 -0
  2396. package/lib/routes/njust/namespace.ts +6 -0
  2397. package/lib/routes/njust/utils.ts +35 -0
  2398. package/lib/routes/njxzc/home.ts +51 -0
  2399. package/lib/routes/njxzc/lib.ts +51 -0
  2400. package/lib/routes/njxzc/namespace.ts +6 -0
  2401. package/lib/routes/njxzc/utils/index.ts +65 -0
  2402. package/lib/routes/nlc/namespace.ts +6 -0
  2403. package/lib/routes/nlc/read.ts +95 -0
  2404. package/lib/routes/nlc/templates/description.art +17 -0
  2405. package/lib/routes/nltimes/namespace.ts +6 -0
  2406. package/lib/routes/nltimes/news.ts +118 -0
  2407. package/lib/routes/nmc/namespace.ts +6 -0
  2408. package/lib/routes/nmc/weatheralarm.ts +74 -0
  2409. package/lib/routes/nmtv/column.ts +78 -0
  2410. package/lib/routes/nmtv/namespace.ts +6 -0
  2411. package/lib/routes/nodejs/blog.ts +100 -0
  2412. package/lib/routes/nodejs/namespace.ts +6 -0
  2413. package/lib/routes/nogizaka46/blog.ts +103 -0
  2414. package/lib/routes/nogizaka46/namespace.ts +6 -0
  2415. package/lib/routes/nogizaka46/news.ts +58 -0
  2416. package/lib/routes/nosec/index.ts +100 -0
  2417. package/lib/routes/nosec/namespace.ts +6 -0
  2418. package/lib/routes/notateslaapp/namespace.ts +6 -0
  2419. package/lib/routes/notateslaapp/update.ts +61 -0
  2420. package/lib/routes/notefolio/namespace.ts +6 -0
  2421. package/lib/routes/notefolio/search.ts +192 -0
  2422. package/lib/routes/notefolio/templates/search.art +9 -0
  2423. package/lib/routes/notion/database.ts +206 -0
  2424. package/lib/routes/notion/namespace.ts +13 -0
  2425. package/lib/routes/now/namespace.ts +6 -0
  2426. package/lib/routes/now/news.ts +104 -0
  2427. package/lib/routes/nowcoder/discuss.ts +80 -0
  2428. package/lib/routes/nowcoder/experience.ts +80 -0
  2429. package/lib/routes/nowcoder/jobcenter.ts +103 -0
  2430. package/lib/routes/nowcoder/namespace.ts +6 -0
  2431. package/lib/routes/nowcoder/recommend.ts +45 -0
  2432. package/lib/routes/nowcoder/schedule.ts +58 -0
  2433. package/lib/routes/npm/namespace.ts +6 -0
  2434. package/lib/routes/npm/package.ts +61 -0
  2435. package/lib/routes/npr/full.ts +108 -0
  2436. package/lib/routes/npr/namespace.ts +6 -0
  2437. package/lib/routes/ntdm/namespace.ts +6 -0
  2438. package/lib/routes/ntdm/utils.ts +3 -0
  2439. package/lib/routes/ntdm/video.ts +57 -0
  2440. package/lib/routes/ntdtv/channel.ts +72 -0
  2441. package/lib/routes/ntdtv/namespace.ts +6 -0
  2442. package/lib/routes/nua/dc.ts +96 -0
  2443. package/lib/routes/nua/gra.ts +50 -0
  2444. package/lib/routes/nua/index.ts +50 -0
  2445. package/lib/routes/nua/lib.ts +70 -0
  2446. package/lib/routes/nua/namespace.ts +6 -0
  2447. package/lib/routes/nua/sxw.ts +53 -0
  2448. package/lib/routes/nua/utils.ts +73 -0
  2449. package/lib/routes/nuaa/college/cae.ts +88 -0
  2450. package/lib/routes/nuaa/college/cs.ts +101 -0
  2451. package/lib/routes/nuaa/jwc/jwc.ts +99 -0
  2452. package/lib/routes/nuaa/namespace.ts +6 -0
  2453. package/lib/routes/nuaa/utils/pypasswaf.ts +23 -0
  2454. package/lib/routes/nuaa/yjsy/yjsy.ts +97 -0
  2455. package/lib/routes/nudt/namespace.ts +6 -0
  2456. package/lib/routes/nudt/yjszs.ts +68 -0
  2457. package/lib/routes/nuist/bulletin.ts +97 -0
  2458. package/lib/routes/nuist/cas.ts +94 -0
  2459. package/lib/routes/nuist/jwc.ts +66 -0
  2460. package/lib/routes/nuist/library/lib.ts +58 -0
  2461. package/lib/routes/nuist/namespace.ts +19 -0
  2462. package/lib/routes/nuist/scs.ts +78 -0
  2463. package/lib/routes/nuist/sese.ts +68 -0
  2464. package/lib/routes/nuist/xgc.ts +75 -0
  2465. package/lib/routes/nuist/yjs.ts +70 -0
  2466. package/lib/routes/nwafu/all.ts +68 -0
  2467. package/lib/routes/nwafu/namespace.ts +6 -0
  2468. package/lib/routes/nwafu/utils.ts +33 -0
  2469. package/lib/routes/nyaa/main.ts +64 -0
  2470. package/lib/routes/nyaa/namespace.ts +6 -0
  2471. package/lib/routes/nymity/censorbib.ts +51 -0
  2472. package/lib/routes/nymity/namespace.ts +6 -0
  2473. package/lib/routes/nytimes/book.ts +110 -0
  2474. package/lib/routes/nytimes/daily-briefing-chinese.ts +98 -0
  2475. package/lib/routes/nytimes/index.ts +155 -0
  2476. package/lib/routes/nytimes/namespace.ts +6 -0
  2477. package/lib/routes/nytimes/utils.ts +111 -0
  2478. package/lib/routes/oceanengine/arithmetic-index.ts +159 -0
  2479. package/lib/routes/oceanengine/namespace.ts +6 -0
  2480. package/lib/routes/odaily/activity.ts +78 -0
  2481. package/lib/routes/odaily/namespace.ts +6 -0
  2482. package/lib/routes/odaily/newsflash.ts +51 -0
  2483. package/lib/routes/odaily/post.ts +92 -0
  2484. package/lib/routes/odaily/search-news.ts +50 -0
  2485. package/lib/routes/odaily/user.ts +83 -0
  2486. package/lib/routes/odaily/utils.ts +3 -0
  2487. package/lib/routes/oeeee/app/channel.ts +48 -0
  2488. package/lib/routes/oeeee/app/reporter.ts +54 -0
  2489. package/lib/routes/oeeee/namespace.ts +6 -0
  2490. package/lib/routes/oeeee/utils.ts +39 -0
  2491. package/lib/routes/oeeee/web.ts +61 -0
  2492. package/lib/routes/oilchem/index.ts +93 -0
  2493. package/lib/routes/oilchem/namespace.ts +6 -0
  2494. package/lib/routes/oilchem/routes.ts +671 -0
  2495. package/lib/routes/olevod/namespace.ts +6 -0
  2496. package/lib/routes/olevod/vod.ts +49 -0
  2497. package/lib/routes/olevod/vodlist.ts +48 -0
  2498. package/lib/routes/ollama/models.ts +39 -0
  2499. package/lib/routes/ollama/namespace.ts +6 -0
  2500. package/lib/routes/oncc/index.ts +111 -0
  2501. package/lib/routes/oncc/money18.ts +141 -0
  2502. package/lib/routes/oncc/namespace.ts +6 -0
  2503. package/lib/routes/onehu/common.ts +36 -0
  2504. package/lib/routes/onehu/namespace.ts +6 -0
  2505. package/lib/routes/onet/namespace.ts +6 -0
  2506. package/lib/routes/onet/news.ts +86 -0
  2507. package/lib/routes/onet/templates/article.art +5 -0
  2508. package/lib/routes/onet/templates/image.art +9 -0
  2509. package/lib/routes/onet/utils.ts +51 -0
  2510. package/lib/routes/oo-software/changelog.ts +65 -0
  2511. package/lib/routes/oo-software/namespace.ts +6 -0
  2512. package/lib/routes/openai/blog.ts +66 -0
  2513. package/lib/routes/openai/chatgpt.ts +119 -0
  2514. package/lib/routes/openai/common.ts +73 -0
  2515. package/lib/routes/openai/namespace.ts +6 -0
  2516. package/lib/routes/openai/research.ts +51 -0
  2517. package/lib/routes/openwrt/namespace.ts +6 -0
  2518. package/lib/routes/openwrt/releases.ts +39 -0
  2519. package/lib/routes/orcid/index.ts +74 -0
  2520. package/lib/routes/orcid/namespace.ts +6 -0
  2521. package/lib/routes/oreno3d/get-sec-page-data.ts +75 -0
  2522. package/lib/routes/oreno3d/main.ts +183 -0
  2523. package/lib/routes/oreno3d/namespace.ts +9 -0
  2524. package/lib/routes/oschina/namespace.ts +6 -0
  2525. package/lib/routes/oschina/news.ts +137 -0
  2526. package/lib/routes/oschina/topic.ts +78 -0
  2527. package/lib/routes/oschina/user.ts +75 -0
  2528. package/lib/routes/oshwhub/explore.ts +145 -0
  2529. package/lib/routes/oshwhub/namespace.ts +6 -0
  2530. package/lib/routes/osu/beatmaps/packs.ts +54 -0
  2531. package/lib/routes/osu/namespace.ts +6 -0
  2532. package/lib/routes/otobanana/cast.ts +54 -0
  2533. package/lib/routes/otobanana/livestream.ts +54 -0
  2534. package/lib/routes/otobanana/namespace.ts +6 -0
  2535. package/lib/routes/otobanana/templates/description.art +11 -0
  2536. package/lib/routes/otobanana/timeline.ts +54 -0
  2537. package/lib/routes/otobanana/utils.ts +63 -0
  2538. package/lib/routes/ouc/hqsz.ts +90 -0
  2539. package/lib/routes/ouc/it-postgraduate.ts +52 -0
  2540. package/lib/routes/ouc/it-tx.ts +74 -0
  2541. package/lib/routes/ouc/it.ts +73 -0
  2542. package/lib/routes/ouc/jwc.ts +65 -0
  2543. package/lib/routes/ouc/jwgl.ts +71 -0
  2544. package/lib/routes/ouc/namespace.ts +6 -0
  2545. package/lib/routes/ouc/yjs.ts +52 -0
  2546. package/lib/routes/oup/index.ts +84 -0
  2547. package/lib/routes/oup/namespace.ts +6 -0
  2548. package/lib/routes/outagereport/index.ts +71 -0
  2549. package/lib/routes/outagereport/namespace.ts +6 -0
  2550. package/lib/routes/p-articles/contributors.ts +53 -0
  2551. package/lib/routes/p-articles/namespace.ts +13 -0
  2552. package/lib/routes/p-articles/section.ts +60 -0
  2553. package/lib/routes/p-articles/utils.ts +21 -0
  2554. package/lib/routes/panewslab/author.ts +74 -0
  2555. package/lib/routes/panewslab/namespace.ts +6 -0
  2556. package/lib/routes/panewslab/news.ts +44 -0
  2557. package/lib/routes/panewslab/profundity.ts +83 -0
  2558. package/lib/routes/panewslab/topic.ts +74 -0
  2559. package/lib/routes/papers/index.ts +128 -0
  2560. package/lib/routes/papers/namespace.ts +8 -0
  2561. package/lib/routes/papers/templates/description.art +15 -0
  2562. package/lib/routes/paradigm/namespace.ts +6 -0
  2563. package/lib/routes/paradigm/writing.ts +70 -0
  2564. package/lib/routes/parliament/namespace.ts +6 -0
  2565. package/lib/routes/parliament/section77.ts +190 -0
  2566. package/lib/routes/patagonia/namespace.ts +6 -0
  2567. package/lib/routes/patagonia/new-arrivals.ts +86 -0
  2568. package/lib/routes/paulgraham/article.ts +88 -0
  2569. package/lib/routes/paulgraham/namespace.ts +6 -0
  2570. package/lib/routes/penguin-random-house/articles.ts +52 -0
  2571. package/lib/routes/penguin-random-house/namespace.ts +6 -0
  2572. package/lib/routes/penguin-random-house/thereaddown.ts +52 -0
  2573. package/lib/routes/penguin-random-house/utils.ts +119 -0
  2574. package/lib/routes/people/index.ts +88 -0
  2575. package/lib/routes/people/liuyan.ts +83 -0
  2576. package/lib/routes/people/namespace.ts +6 -0
  2577. package/lib/routes/people/xjpjh.ts +95 -0
  2578. package/lib/routes/peopo/namespace.ts +6 -0
  2579. package/lib/routes/peopo/topic.ts +91 -0
  2580. package/lib/routes/phoronix/index.ts +264 -0
  2581. package/lib/routes/phoronix/namespace.ts +6 -0
  2582. package/lib/routes/pianyivps/namespace.ts +6 -0
  2583. package/lib/routes/pianyivps/rss.ts +35 -0
  2584. package/lib/routes/pianyuan/app.ts +69 -0
  2585. package/lib/routes/pianyuan/namespace.ts +6 -0
  2586. package/lib/routes/pianyuan/search.ts +61 -0
  2587. package/lib/routes/pianyuan/utils.ts +86 -0
  2588. package/lib/routes/picnob/namespace.ts +9 -0
  2589. package/lib/routes/picnob/templates/desc.art +13 -0
  2590. package/lib/routes/picnob/user.ts +129 -0
  2591. package/lib/routes/picnob/utils.ts +18 -0
  2592. package/lib/routes/picuki/namespace.ts +9 -0
  2593. package/lib/routes/picuki/profile.ts +211 -0
  2594. package/lib/routes/picuki/templates/video.art +5 -0
  2595. package/lib/routes/picuki/utils.ts +24 -0
  2596. package/lib/routes/pikabu/community.ts +45 -0
  2597. package/lib/routes/pikabu/namespace.ts +6 -0
  2598. package/lib/routes/pikabu/templates/video.art +8 -0
  2599. package/lib/routes/pikabu/user.ts +70 -0
  2600. package/lib/routes/pikabu/utils.ts +42 -0
  2601. package/lib/routes/pincong/hot.ts +48 -0
  2602. package/lib/routes/pincong/index.ts +57 -0
  2603. package/lib/routes/pincong/namespace.ts +6 -0
  2604. package/lib/routes/pincong/topic.ts +39 -0
  2605. package/lib/routes/pincong/utils.ts +21 -0
  2606. package/lib/routes/pingwest/namespace.ts +6 -0
  2607. package/lib/routes/pingwest/status.ts +72 -0
  2608. package/lib/routes/pingwest/tag.ts +76 -0
  2609. package/lib/routes/pingwest/user.ts +94 -0
  2610. package/lib/routes/pingwest/utils.ts +89 -0
  2611. package/lib/routes/pixabay/namespace.ts +6 -0
  2612. package/lib/routes/pixabay/search.ts +85 -0
  2613. package/lib/routes/pixiv/api/get-bookmarks.ts +23 -0
  2614. package/lib/routes/pixiv/api/get-illust-follows.ts +20 -0
  2615. package/lib/routes/pixiv/api/get-illusts.ts +22 -0
  2616. package/lib/routes/pixiv/api/get-ranking.ts +30 -0
  2617. package/lib/routes/pixiv/api/get-user-detail.ts +27 -0
  2618. package/lib/routes/pixiv/api/search-illust.ts +24 -0
  2619. package/lib/routes/pixiv/api/search-popular-illust.ts +23 -0
  2620. package/lib/routes/pixiv/bookmarks.ts +66 -0
  2621. package/lib/routes/pixiv/constants.ts +8 -0
  2622. package/lib/routes/pixiv/illustfollow.ts +70 -0
  2623. package/lib/routes/pixiv/namespace.ts +6 -0
  2624. package/lib/routes/pixiv/novels.ts +71 -0
  2625. package/lib/routes/pixiv/pixiv-got.ts +65 -0
  2626. package/lib/routes/pixiv/ranking.ts +127 -0
  2627. package/lib/routes/pixiv/search.ts +70 -0
  2628. package/lib/routes/pixiv/token.ts +77 -0
  2629. package/lib/routes/pixiv/user.ts +66 -0
  2630. package/lib/routes/pixiv/utils.ts +17 -0
  2631. package/lib/routes/piyao/jrpy.ts +65 -0
  2632. package/lib/routes/piyao/namespace.ts +6 -0
  2633. package/lib/routes/pkmer/namespace.ts +6 -0
  2634. package/lib/routes/pkmer/recent.ts +61 -0
  2635. package/lib/routes/pku/bbs/hot.ts +85 -0
  2636. package/lib/routes/pku/cls/announcement.ts +68 -0
  2637. package/lib/routes/pku/cls/lecture.ts +50 -0
  2638. package/lib/routes/pku/eecs.ts +73 -0
  2639. package/lib/routes/pku/hr.ts +85 -0
  2640. package/lib/routes/pku/namespace.ts +6 -0
  2641. package/lib/routes/pku/nsd.ts +95 -0
  2642. package/lib/routes/pku/pkuyjs.ts +54 -0
  2643. package/lib/routes/pku/rccp/mzyt.ts +48 -0
  2644. package/lib/routes/pku/scc/recruit.ts +80 -0
  2645. package/lib/routes/pku/ss/admission.ts +41 -0
  2646. package/lib/routes/pku/ss/common.ts +33 -0
  2647. package/lib/routes/pku/ss/notice.ts +30 -0
  2648. package/lib/routes/pku/ss/pg-admin.ts +41 -0
  2649. package/lib/routes/pku/utils.ts +13 -0
  2650. package/lib/routes/playno1/av.ts +68 -0
  2651. package/lib/routes/playno1/namespace.ts +6 -0
  2652. package/lib/routes/playno1/st.ts +65 -0
  2653. package/lib/routes/playno1/utils.ts +29 -0
  2654. package/lib/routes/playpcesor/namespace.ts +6 -0
  2655. package/lib/routes/playpcesor/rss.ts +48 -0
  2656. package/lib/routes/plurk/anonymous.ts +49 -0
  2657. package/lib/routes/plurk/hotlinks.ts +46 -0
  2658. package/lib/routes/plurk/namespace.ts +6 -0
  2659. package/lib/routes/plurk/news.ts +50 -0
  2660. package/lib/routes/plurk/search.ts +47 -0
  2661. package/lib/routes/plurk/top.ts +57 -0
  2662. package/lib/routes/plurk/topic.ts +58 -0
  2663. package/lib/routes/plurk/user.ts +51 -0
  2664. package/lib/routes/plurk/utils.ts +52 -0
  2665. package/lib/routes/pnas/index.ts +121 -0
  2666. package/lib/routes/pnas/namespace.ts +6 -0
  2667. package/lib/routes/podwise/collections.ts +46 -0
  2668. package/lib/routes/podwise/episodes.ts +119 -0
  2669. package/lib/routes/podwise/namespace.ts +9 -0
  2670. package/lib/routes/pornhub/category-url.ts +52 -0
  2671. package/lib/routes/pornhub/category.ts +64 -0
  2672. package/lib/routes/pornhub/model.ts +55 -0
  2673. package/lib/routes/pornhub/namespace.ts +6 -0
  2674. package/lib/routes/pornhub/pornstar.ts +60 -0
  2675. package/lib/routes/pornhub/search.ts +42 -0
  2676. package/lib/routes/pornhub/templates/description.art +11 -0
  2677. package/lib/routes/pornhub/users.ts +56 -0
  2678. package/lib/routes/pornhub/utils.ts +33 -0
  2679. package/lib/routes/postman/namespace.ts +6 -0
  2680. package/lib/routes/postman/release-notes.ts +53 -0
  2681. package/lib/routes/priconne-redive/namespace.ts +6 -0
  2682. package/lib/routes/priconne-redive/news.ts +181 -0
  2683. package/lib/routes/producthunt/namespace.ts +7 -0
  2684. package/lib/routes/producthunt/today.ts +73 -0
  2685. package/lib/routes/ps/monthly-games.ts +59 -0
  2686. package/lib/routes/ps/namespace.ts +6 -0
  2687. package/lib/routes/ps/templates/monthly-games.art +1 -0
  2688. package/lib/routes/ps/trophy.ts +105 -0
  2689. package/lib/routes/psyche/namespace.ts +6 -0
  2690. package/lib/routes/psyche/templates/essay.art +3 -0
  2691. package/lib/routes/psyche/templates/video.art +10 -0
  2692. package/lib/routes/psyche/topic.ts +46 -0
  2693. package/lib/routes/psyche/type.ts +53 -0
  2694. package/lib/routes/psyche/utils.ts +107 -0
  2695. package/lib/routes/pts/curations.ts +72 -0
  2696. package/lib/routes/pts/index.ts +81 -0
  2697. package/lib/routes/pts/live.ts +77 -0
  2698. package/lib/routes/pts/namespace.ts +6 -0
  2699. package/lib/routes/pts/projects.ts +72 -0
  2700. package/lib/routes/pubmed/namespace.ts +6 -0
  2701. package/lib/routes/pubmed/trending.ts +70 -0
  2702. package/lib/routes/pubscholar/explore.ts +62 -0
  2703. package/lib/routes/pubscholar/namespace.ts +7 -0
  2704. package/lib/routes/pubscholar/types.ts +41 -0
  2705. package/lib/routes/pubscholar/utils.ts +44 -0
  2706. package/lib/routes/pumc/mdadmission.ts +88 -0
  2707. package/lib/routes/pumc/namespace.ts +6 -0
  2708. package/lib/routes/putty/changes.ts +61 -0
  2709. package/lib/routes/putty/namespace.ts +6 -0
  2710. package/lib/routes/pwc/namespace.ts +6 -0
  2711. package/lib/routes/pwc/sustainability.ts +88 -0
  2712. package/lib/routes/qbitai/category.ts +54 -0
  2713. package/lib/routes/qbitai/namespace.ts +6 -0
  2714. package/lib/routes/qbitai/tag.ts +51 -0
  2715. package/lib/routes/qbittorrent/namespace.ts +6 -0
  2716. package/lib/routes/qbittorrent/news.ts +82 -0
  2717. package/lib/routes/qdu/houqin.ts +89 -0
  2718. package/lib/routes/qdu/jwc.ts +78 -0
  2719. package/lib/routes/qdu/namespace.ts +6 -0
  2720. package/lib/routes/qianp/namespace.ts +6 -0
  2721. package/lib/routes/qianp/news.ts +66 -0
  2722. package/lib/routes/qianp/utils.ts +17 -0
  2723. package/lib/routes/qianzhan/column.ts +73 -0
  2724. package/lib/routes/qianzhan/namespace.ts +6 -0
  2725. package/lib/routes/qianzhan/rank.ts +70 -0
  2726. package/lib/routes/qidian/author.ts +68 -0
  2727. package/lib/routes/qidian/chapter.ts +57 -0
  2728. package/lib/routes/qidian/forum.ts +62 -0
  2729. package/lib/routes/qidian/free-next.ts +68 -0
  2730. package/lib/routes/qidian/free.ts +71 -0
  2731. package/lib/routes/qidian/namespace.ts +6 -0
  2732. package/lib/routes/qingting/channel.ts +52 -0
  2733. package/lib/routes/qingting/namespace.ts +6 -0
  2734. package/lib/routes/qingting/podcast.ts +125 -0
  2735. package/lib/routes/qipamaijia/index.ts +58 -0
  2736. package/lib/routes/qipamaijia/namespace.ts +6 -0
  2737. package/lib/routes/qiyoujiage/namespace.ts +6 -0
  2738. package/lib/routes/qiyoujiage/price.ts +36 -0
  2739. package/lib/routes/qlu/namespace.ts +6 -0
  2740. package/lib/routes/qlu/notice.ts +75 -0
  2741. package/lib/routes/qm120/namespace.ts +6 -0
  2742. package/lib/routes/qm120/news.ts +87 -0
  2743. package/lib/routes/qoo-app/apps/card.ts +57 -0
  2744. package/lib/routes/qoo-app/apps/comment.ts +68 -0
  2745. package/lib/routes/qoo-app/apps/note.ts +67 -0
  2746. package/lib/routes/qoo-app/apps/post.ts +71 -0
  2747. package/lib/routes/qoo-app/namespace.ts +6 -0
  2748. package/lib/routes/qoo-app/news.ts +63 -0
  2749. package/lib/routes/qoo-app/notes/note.ts +65 -0
  2750. package/lib/routes/qoo-app/notes/topic.ts +28 -0
  2751. package/lib/routes/qoo-app/notes/user.ts +39 -0
  2752. package/lib/routes/qoo-app/user/app-comment.ts +63 -0
  2753. package/lib/routes/qoo-app/utils.ts +48 -0
  2754. package/lib/routes/qq/ac/comic.ts +57 -0
  2755. package/lib/routes/qq/ac/rank.ts +51 -0
  2756. package/lib/routes/qq/ac/utils.ts +72 -0
  2757. package/lib/routes/qq/cfhd/index.ts +140 -0
  2758. package/lib/routes/qq/fact/index.ts +90 -0
  2759. package/lib/routes/qq/kg/cache.ts +29 -0
  2760. package/lib/routes/qq/kg/reply.ts +40 -0
  2761. package/lib/routes/qq/kg/user.ts +69 -0
  2762. package/lib/routes/qq/namespace.ts +8 -0
  2763. package/lib/routes/qq88/index.ts +83 -0
  2764. package/lib/routes/qq88/namespace.ts +6 -0
  2765. package/lib/routes/qqorw/index.ts +105 -0
  2766. package/lib/routes/qqorw/namespace.ts +6 -0
  2767. package/lib/routes/questmobile/namespace.ts +6 -0
  2768. package/lib/routes/questmobile/report.ts +260 -0
  2769. package/lib/routes/questmobile/templates/description.art +17 -0
  2770. package/lib/routes/quicker/namespace.ts +6 -0
  2771. package/lib/routes/quicker/qa.ts +104 -0
  2772. package/lib/routes/quicker/share.ts +93 -0
  2773. package/lib/routes/quicker/user.ts +85 -0
  2774. package/lib/routes/quicker/versions.ts +45 -0
  2775. package/lib/routes/qust/jw.ts +55 -0
  2776. package/lib/routes/qust/namespace.ts +6 -0
  2777. package/lib/routes/qweather/3days.ts +103 -0
  2778. package/lib/routes/qweather/namespace.ts +6 -0
  2779. package/lib/routes/qweather/now.ts +74 -0
  2780. package/lib/routes/qweather/templates/3days.art +22 -0
  2781. package/lib/routes/radio/album.ts +119 -0
  2782. package/lib/routes/radio/index.ts +86 -0
  2783. package/lib/routes/radio/namespace.ts +6 -0
  2784. package/lib/routes/radio/zhibo.ts +109 -0
  2785. package/lib/routes/radio-canada/latest.ts +78 -0
  2786. package/lib/routes/radio-canada/namespace.ts +6 -0
  2787. package/lib/routes/rarehistoricalphotos/index.ts +43 -0
  2788. package/lib/routes/rarehistoricalphotos/namespace.ts +6 -0
  2789. package/lib/routes/rattibha/namespace.ts +6 -0
  2790. package/lib/routes/rattibha/user.ts +70 -0
  2791. package/lib/routes/rawkuma/manga.ts +109 -0
  2792. package/lib/routes/rawkuma/namespace.ts +6 -0
  2793. package/lib/routes/rawkuma/templates/description.art +3 -0
  2794. package/lib/routes/reactiflux/namespace.ts +7 -0
  2795. package/lib/routes/reactiflux/transcripts.ts +103 -0
  2796. package/lib/routes/reactnewsletter/namespace.ts +6 -0
  2797. package/lib/routes/reactnewsletter/reactnewsletter.ts +40 -0
  2798. package/lib/routes/readhub/daily.ts +72 -0
  2799. package/lib/routes/readhub/index.ts +88 -0
  2800. package/lib/routes/readhub/namespace.ts +6 -0
  2801. package/lib/routes/readhub/templates/description.art +40 -0
  2802. package/lib/routes/readhub/util.ts +67 -0
  2803. package/lib/routes/remnote/changelog.ts +57 -0
  2804. package/lib/routes/remnote/namespace.ts +6 -0
  2805. package/lib/routes/researchgate/namespace.ts +6 -0
  2806. package/lib/routes/researchgate/publications.ts +86 -0
  2807. package/lib/routes/reuters/common.ts +200 -0
  2808. package/lib/routes/reuters/investigates.ts +59 -0
  2809. package/lib/routes/reuters/namespace.ts +9 -0
  2810. package/lib/routes/reuters/templates/description.art +44 -0
  2811. package/lib/routes/rfa/index.ts +78 -0
  2812. package/lib/routes/rfa/namespace.ts +6 -0
  2813. package/lib/routes/rfi/namespace.ts +6 -0
  2814. package/lib/routes/rfi/news.ts +85 -0
  2815. package/lib/routes/right/forum.ts +85 -0
  2816. package/lib/routes/right/namespace.ts +6 -0
  2817. package/lib/routes/robots.txt.ts +13 -0
  2818. package/lib/routes/rodong/namespace.ts +6 -0
  2819. package/lib/routes/rodong/news.ts +75 -0
  2820. package/lib/routes/routledge/book-series.ts +95 -0
  2821. package/lib/routes/routledge/namespace.ts +6 -0
  2822. package/lib/routes/routledge/templates/description.art +7 -0
  2823. package/lib/routes/rsc/journal.ts +136 -0
  2824. package/lib/routes/rsc/namespace.ts +6 -0
  2825. package/lib/routes/rsc/templates/image.art +5 -0
  2826. package/lib/routes/rsshub/namespace.ts +6 -0
  2827. package/lib/routes/rsshub/referer-map.ts +14 -0
  2828. package/lib/routes/rsshub/routes.ts +83 -0
  2829. package/lib/routes/rsshub/transform/html.ts +119 -0
  2830. package/lib/routes/rsshub/transform/json.ts +113 -0
  2831. package/lib/routes/rsshub/transform/sitemap.ts +59 -0
  2832. package/lib/routes/ruancan/category.ts +34 -0
  2833. package/lib/routes/ruancan/index.ts +22 -0
  2834. package/lib/routes/ruancan/namespace.ts +6 -0
  2835. package/lib/routes/ruancan/search.ts +34 -0
  2836. package/lib/routes/ruancan/user.ts +22 -0
  2837. package/lib/routes/ruancan/utils.ts +68 -0
  2838. package/lib/routes/ruc/ai.ts +87 -0
  2839. package/lib/routes/ruc/hr.ts +89 -0
  2840. package/lib/routes/ruc/namespace.ts +9 -0
  2841. package/lib/routes/runtrail/namespace.ts +6 -0
  2842. package/lib/routes/runtrail/posts.ts +49 -0
  2843. package/lib/routes/rustcc/jobs.ts +64 -0
  2844. package/lib/routes/rustcc/namespace.ts +6 -0
  2845. package/lib/routes/rustcc/news.ts +55 -0
  2846. package/lib/routes/sakurazaka46/blog.ts +114 -0
  2847. package/lib/routes/sakurazaka46/namespace.ts +6 -0
  2848. package/lib/routes/sakurazaka46/news.ts +77 -0
  2849. package/lib/routes/samsung/namespace.ts +6 -0
  2850. package/lib/routes/samsung/research/blog.ts +75 -0
  2851. package/lib/routes/sara/index.ts +66 -0
  2852. package/lib/routes/sara/namespace.ts +6 -0
  2853. package/lib/routes/saraba1st/digest.ts +115 -0
  2854. package/lib/routes/saraba1st/namespace.ts +6 -0
  2855. package/lib/routes/saraba1st/thread.ts +83 -0
  2856. package/lib/routes/sass/gs/index.ts +74 -0
  2857. package/lib/routes/sass/namespace.ts +6 -0
  2858. package/lib/routes/scau/namespace.ts +6 -0
  2859. package/lib/routes/scau/yjs.ts +52 -0
  2860. package/lib/routes/scau/yjsy.ts +52 -0
  2861. package/lib/routes/science/blogs.ts +96 -0
  2862. package/lib/routes/science/cover.ts +100 -0
  2863. package/lib/routes/science/current.ts +80 -0
  2864. package/lib/routes/science/early.ts +61 -0
  2865. package/lib/routes/science/namespace.ts +6 -0
  2866. package/lib/routes/science/utils.ts +63 -0
  2867. package/lib/routes/sciencedirect/cf-email.ts +40 -0
  2868. package/lib/routes/sciencedirect/journal.ts +94 -0
  2869. package/lib/routes/sciencedirect/namespace.ts +6 -0
  2870. package/lib/routes/sciencenet/blog.ts +98 -0
  2871. package/lib/routes/sciencenet/namespace.ts +6 -0
  2872. package/lib/routes/sciencenet/user.ts +90 -0
  2873. package/lib/routes/scmp/coronavirus.ts +22 -0
  2874. package/lib/routes/scmp/index.ts +87 -0
  2875. package/lib/routes/scmp/namespace.ts +6 -0
  2876. package/lib/routes/scmp/topic.ts +91 -0
  2877. package/lib/routes/scmp/utils.ts +87 -0
  2878. package/lib/routes/scnu/announcements-router.ts +1 -0
  2879. package/lib/routes/scnu/cs/match.ts +61 -0
  2880. package/lib/routes/scnu/jw.ts +58 -0
  2881. package/lib/routes/scnu/library.ts +58 -0
  2882. package/lib/routes/scnu/namespace.ts +6 -0
  2883. package/lib/routes/scnu/news-router.ts +1 -0
  2884. package/lib/routes/scnu/physics-school-announcements-and-news.ts +95 -0
  2885. package/lib/routes/scnu/research-news-router.ts +1 -0
  2886. package/lib/routes/scnu/ss.ts +53 -0
  2887. package/lib/routes/scnu/yjs.ts +49 -0
  2888. package/lib/routes/sctv/namespace.ts +6 -0
  2889. package/lib/routes/sctv/programme.ts +156 -0
  2890. package/lib/routes/scut/jwc/news.ts +131 -0
  2891. package/lib/routes/scut/jwc/notice.ts +146 -0
  2892. package/lib/routes/scut/jwc/school.ts +144 -0
  2893. package/lib/routes/scut/namespace.ts +6 -0
  2894. package/lib/routes/scut/scet/notice.ts +50 -0
  2895. package/lib/routes/scut/seie/news-ccenter.ts +81 -0
  2896. package/lib/routes/scut/smae/notice.ts +77 -0
  2897. package/lib/routes/scut/yjs.ts +55 -0
  2898. package/lib/routes/scvtc/namespace.ts +6 -0
  2899. package/lib/routes/scvtc/xygg.ts +66 -0
  2900. package/lib/routes/sdu/cmse.ts +82 -0
  2901. package/lib/routes/sdu/cs.ts +80 -0
  2902. package/lib/routes/sdu/data.ts +110 -0
  2903. package/lib/routes/sdu/epe.ts +78 -0
  2904. package/lib/routes/sdu/extractor/index.ts +21 -0
  2905. package/lib/routes/sdu/extractor/sdrj.ts +23 -0
  2906. package/lib/routes/sdu/extractor/view.ts +23 -0
  2907. package/lib/routes/sdu/extractor/wh/jwc.ts +26 -0
  2908. package/lib/routes/sdu/extractor/wh/news.ts +23 -0
  2909. package/lib/routes/sdu/mech.ts +83 -0
  2910. package/lib/routes/sdu/namespace.ts +6 -0
  2911. package/lib/routes/sdu/sc.ts +84 -0
  2912. package/lib/routes/sdu/wh/jwc.ts +65 -0
  2913. package/lib/routes/sdu/wh/news.ts +61 -0
  2914. package/lib/routes/sdust/namespace.ts +6 -0
  2915. package/lib/routes/sdust/yjsy/zhaosheng.ts +81 -0
  2916. package/lib/routes/sdzk/index.ts +80 -0
  2917. package/lib/routes/sdzk/namespace.ts +6 -0
  2918. package/lib/routes/sec-in/index.ts +27 -0
  2919. package/lib/routes/sec-in/namespace.ts +6 -0
  2920. package/lib/routes/sec-wiki/namespace.ts +6 -0
  2921. package/lib/routes/sec-wiki/weekly.ts +35 -0
  2922. package/lib/routes/secrss/author.ts +55 -0
  2923. package/lib/routes/secrss/category.ts +57 -0
  2924. package/lib/routes/secrss/namespace.ts +6 -0
  2925. package/lib/routes/seekingalpha/index.ts +120 -0
  2926. package/lib/routes/seekingalpha/namespace.ts +6 -0
  2927. package/lib/routes/seekingalpha/templates/summary.art +4 -0
  2928. package/lib/routes/sega/maimaidx.ts +64 -0
  2929. package/lib/routes/sega/namespace.ts +6 -0
  2930. package/lib/routes/sega/pjsekai.ts +75 -0
  2931. package/lib/routes/segmentfault/blogs.ts +46 -0
  2932. package/lib/routes/segmentfault/channel.ts +59 -0
  2933. package/lib/routes/segmentfault/namespace.ts +6 -0
  2934. package/lib/routes/segmentfault/user.ts +48 -0
  2935. package/lib/routes/segmentfault/utils.ts +61 -0
  2936. package/lib/routes/sehuatang/index.ts +145 -0
  2937. package/lib/routes/sehuatang/namespace.ts +6 -0
  2938. package/lib/routes/sehuatang/user.ts +138 -0
  2939. package/lib/routes/sensortower/blog.ts +102 -0
  2940. package/lib/routes/sensortower/namespace.ts +6 -0
  2941. package/lib/routes/setn/index.ts +138 -0
  2942. package/lib/routes/setn/namespace.ts +6 -0
  2943. package/lib/routes/seu/cse/index.ts +91 -0
  2944. package/lib/routes/seu/namespace.ts +6 -0
  2945. package/lib/routes/seu/radio/academic.ts +69 -0
  2946. package/lib/routes/seu/yjs.ts +63 -0
  2947. package/lib/routes/seu/yzb/index.ts +79 -0
  2948. package/lib/routes/sfacg/namespace.ts +6 -0
  2949. package/lib/routes/sfacg/novel-chapter.ts +76 -0
  2950. package/lib/routes/shcstheatre/namespace.ts +6 -0
  2951. package/lib/routes/shcstheatre/programs.ts +68 -0
  2952. package/lib/routes/shcstheatre/templates/description.art +65 -0
  2953. package/lib/routes/shiep/config.ts +67 -0
  2954. package/lib/routes/shiep/index.ts +121 -0
  2955. package/lib/routes/shiep/namespace.ts +6 -0
  2956. package/lib/routes/shiep/radar.ts +317 -0
  2957. package/lib/routes/shisu/en.ts +75 -0
  2958. package/lib/routes/shisu/namespace.ts +6 -0
  2959. package/lib/routes/shisu/news.ts +92 -0
  2960. package/lib/routes/shmeea/index.ts +80 -0
  2961. package/lib/routes/shmeea/namespace.ts +7 -0
  2962. package/lib/routes/shmeea/self-study.ts +87 -0
  2963. package/lib/routes/shmtu/jwc.ts +85 -0
  2964. package/lib/routes/shmtu/namespace.ts +6 -0
  2965. package/lib/routes/shmtu/portal.ts +112 -0
  2966. package/lib/routes/shmtu/www.ts +86 -0
  2967. package/lib/routes/shoac/namespace.ts +6 -0
  2968. package/lib/routes/shoac/recent-show.ts +101 -0
  2969. package/lib/routes/shoac/templates/detail.art +25 -0
  2970. package/lib/routes/shopback/namespace.ts +6 -0
  2971. package/lib/routes/shopback/store.ts +61 -0
  2972. package/lib/routes/shopify/apps/[handle].reviews.ts +78 -0
  2973. package/lib/routes/shopify/apps/const.ts +1 -0
  2974. package/lib/routes/shopify/apps/search.ts +82 -0
  2975. package/lib/routes/shopify/namespace.ts +6 -0
  2976. package/lib/routes/shoppingdesign/namespace.ts +6 -0
  2977. package/lib/routes/shoppingdesign/posts.ts +69 -0
  2978. package/lib/routes/showstart/artist.ts +42 -0
  2979. package/lib/routes/showstart/brand.ts +42 -0
  2980. package/lib/routes/showstart/const.ts +4 -0
  2981. package/lib/routes/showstart/event.ts +42 -0
  2982. package/lib/routes/showstart/namespace.ts +6 -0
  2983. package/lib/routes/showstart/search.ts +70 -0
  2984. package/lib/routes/showstart/service.ts +158 -0
  2985. package/lib/routes/showstart/utils.ts +86 -0
  2986. package/lib/routes/shu/index.ts +77 -0
  2987. package/lib/routes/shu/jwb.ts +63 -0
  2988. package/lib/routes/shu/namespace.ts +6 -0
  2989. package/lib/routes/shuiguopai/index.ts +105 -0
  2990. package/lib/routes/shuiguopai/namespace.ts +6 -0
  2991. package/lib/routes/shuiguopai/templates/description.art +8 -0
  2992. package/lib/routes/sicau/dky.ts +81 -0
  2993. package/lib/routes/sicau/namespace.ts +6 -0
  2994. package/lib/routes/sicau/yan.ts +81 -0
  2995. package/lib/routes/sicau/zsjy.ts +82 -0
  2996. package/lib/routes/sigsac/ccs.ts +77 -0
  2997. package/lib/routes/sigsac/namespace.ts +6 -0
  2998. package/lib/routes/simpleinfo/index.ts +90 -0
  2999. package/lib/routes/simpleinfo/namespace.ts +6 -0
  3000. package/lib/routes/sina/chuangshiji.ts +43 -0
  3001. package/lib/routes/sina/discovery.ts +55 -0
  3002. package/lib/routes/sina/finance/china.ts +55 -0
  3003. package/lib/routes/sina/finance/stock/usstock.ts +67 -0
  3004. package/lib/routes/sina/namespace.ts +6 -0
  3005. package/lib/routes/sina/rollnews.ts +54 -0
  3006. package/lib/routes/sina/sports.ts +52 -0
  3007. package/lib/routes/sina/templates/slide.art +3 -0
  3008. package/lib/routes/sina/templates/video.art +5 -0
  3009. package/lib/routes/sina/utils.ts +103 -0
  3010. package/lib/routes/sinchew/index.ts +88 -0
  3011. package/lib/routes/sinchew/namespace.ts +6 -0
  3012. package/lib/routes/sis001/forum.ts +82 -0
  3013. package/lib/routes/sis001/namespace.ts +6 -0
  3014. package/lib/routes/sjtu/gs.ts +101 -0
  3015. package/lib/routes/sjtu/jwc.ts +139 -0
  3016. package/lib/routes/sjtu/namespace.ts +6 -0
  3017. package/lib/routes/sjtu/seiee/academic.ts +17 -0
  3018. package/lib/routes/sjtu/seiee/bjwb.ts +44 -0
  3019. package/lib/routes/sjtu/seiee/utils.ts +41 -0
  3020. package/lib/routes/sjtu/seiee/xsb.ts +52 -0
  3021. package/lib/routes/sjtu/templates/activity.art +6 -0
  3022. package/lib/routes/sjtu/tongqu/activity.ts +69 -0
  3023. package/lib/routes/sjtu/yzb/zkxx.ts +54 -0
  3024. package/lib/routes/sketis/isabelle-dev/blog/index.ts +77 -0
  3025. package/lib/routes/sketis/namespace.ts +6 -0
  3026. package/lib/routes/skysports/namespace.ts +6 -0
  3027. package/lib/routes/skysports/news.ts +75 -0
  3028. package/lib/routes/slowmist/namespace.ts +6 -0
  3029. package/lib/routes/slowmist/slowmist.ts +77 -0
  3030. package/lib/routes/smashingmagazine/category.ts +125 -0
  3031. package/lib/routes/smashingmagazine/namespace.ts +6 -0
  3032. package/lib/routes/smzdm/article.ts +68 -0
  3033. package/lib/routes/smzdm/baoliao.ts +68 -0
  3034. package/lib/routes/smzdm/haowen-fenlei.ts +80 -0
  3035. package/lib/routes/smzdm/haowen.ts +68 -0
  3036. package/lib/routes/smzdm/keyword.ts +61 -0
  3037. package/lib/routes/smzdm/namespace.ts +9 -0
  3038. package/lib/routes/smzdm/ranking.ts +118 -0
  3039. package/lib/routes/snowpeak/namespace.ts +6 -0
  3040. package/lib/routes/snowpeak/us-new-arrivals.ts +73 -0
  3041. package/lib/routes/sobooks/date.ts +32 -0
  3042. package/lib/routes/sobooks/index.ts +42 -0
  3043. package/lib/routes/sobooks/namespace.ts +6 -0
  3044. package/lib/routes/sobooks/tag.ts +41 -0
  3045. package/lib/routes/sobooks/utils.ts +52 -0
  3046. package/lib/routes/sogou/doodles.ts +45 -0
  3047. package/lib/routes/sogou/namespace.ts +6 -0
  3048. package/lib/routes/sogou/search.ts +77 -0
  3049. package/lib/routes/sogou/templates/description.art +6 -0
  3050. package/lib/routes/sohu/mp.ts +210 -0
  3051. package/lib/routes/sohu/namespace.ts +6 -0
  3052. package/lib/routes/sohu/templates/video.art +7 -0
  3053. package/lib/routes/solidot/_article.ts +50 -0
  3054. package/lib/routes/solidot/main.ts +71 -0
  3055. package/lib/routes/solidot/namespace.ts +6 -0
  3056. package/lib/routes/sony/downloads.ts +75 -0
  3057. package/lib/routes/sony/namespace.ts +6 -0
  3058. package/lib/routes/soundofhope/channel.ts +70 -0
  3059. package/lib/routes/soundofhope/namespace.ts +6 -0
  3060. package/lib/routes/sourceforge/index.ts +55 -0
  3061. package/lib/routes/sourceforge/namespace.ts +6 -0
  3062. package/lib/routes/southcn/namespace.ts +6 -0
  3063. package/lib/routes/southcn/nfapp/column.ts +75 -0
  3064. package/lib/routes/southcn/nfapp/reporter.ts +57 -0
  3065. package/lib/routes/southcn/nfapp/utils.ts +21 -0
  3066. package/lib/routes/spotify/artist.ts +68 -0
  3067. package/lib/routes/spotify/artists-top.ts +57 -0
  3068. package/lib/routes/spotify/namespace.ts +6 -0
  3069. package/lib/routes/spotify/playlist.ts +60 -0
  3070. package/lib/routes/spotify/saved.ts +68 -0
  3071. package/lib/routes/spotify/show.ts +72 -0
  3072. package/lib/routes/spotify/tracks-top.ts +57 -0
  3073. package/lib/routes/spotify/utils.ts +58 -0
  3074. package/lib/routes/springer/journal.ts +100 -0
  3075. package/lib/routes/springer/namespace.ts +6 -0
  3076. package/lib/{v2 → routes}/springer/templates/description.art +0 -0
  3077. package/lib/routes/sputniknews/index.ts +160 -0
  3078. package/lib/routes/sputniknews/namespace.ts +6 -0
  3079. package/lib/routes/sqmc/namespace.ts +6 -0
  3080. package/lib/routes/sqmc/www.ts +77 -0
  3081. package/lib/routes/sse/convert.ts +58 -0
  3082. package/lib/routes/sse/disclosure.ts +66 -0
  3083. package/lib/routes/sse/inquire.ts +73 -0
  3084. package/lib/routes/sse/lawandrules.ts +68 -0
  3085. package/lib/routes/sse/namespace.ts +6 -0
  3086. package/lib/routes/sse/renewal.ts +85 -0
  3087. package/lib/routes/ssm/namespace.ts +6 -0
  3088. package/lib/routes/ssm/news.ts +66 -0
  3089. package/lib/routes/sspai/activity.ts +108 -0
  3090. package/lib/routes/sspai/author.ts +89 -0
  3091. package/lib/routes/sspai/bookmarks.ts +65 -0
  3092. package/lib/routes/sspai/column.ts +87 -0
  3093. package/lib/routes/sspai/index.ts +68 -0
  3094. package/lib/routes/sspai/matrix.ts +70 -0
  3095. package/lib/routes/sspai/namespace.ts +6 -0
  3096. package/lib/routes/sspai/prime-community.ts +83 -0
  3097. package/lib/routes/sspai/series-update.ts +61 -0
  3098. package/lib/routes/sspai/series.ts +73 -0
  3099. package/lib/routes/sspai/shortcuts-gallery.ts +54 -0
  3100. package/lib/routes/sspai/tag.ts +73 -0
  3101. package/lib/routes/sspai/topic.ts +81 -0
  3102. package/lib/routes/sspai/topics.ts +64 -0
  3103. package/lib/routes/sspu/jwc.ts +58 -0
  3104. package/lib/routes/sspu/namespace.ts +6 -0
  3105. package/lib/routes/sspu/pe.ts +80 -0
  3106. package/lib/routes/startuplatte/index.ts +84 -0
  3107. package/lib/routes/startuplatte/namespace.ts +6 -0
  3108. package/lib/routes/stbu/jsjxy.ts +80 -0
  3109. package/lib/routes/stbu/namespace.ts +6 -0
  3110. package/lib/routes/stbu/xyxw.ts +78 -0
  3111. package/lib/routes/stcn/index.ts +119 -0
  3112. package/lib/routes/stcn/namespace.ts +6 -0
  3113. package/lib/routes/stdaily/digitalpaper.ts +148 -0
  3114. package/lib/routes/stdaily/namespace.ts +6 -0
  3115. package/lib/routes/steam/appcommunityfeed.ts +92 -0
  3116. package/lib/routes/steam/namespace.ts +6 -0
  3117. package/lib/routes/steam/search.ts +64 -0
  3118. package/lib/routes/steam/templates/appcommunityfeed-description.art +4 -0
  3119. package/lib/routes/steam/templates/workshop-search-description.art +5 -0
  3120. package/lib/routes/steam/workshop-search.ts +109 -0
  3121. package/lib/routes/stheadline/namespace.ts +6 -0
  3122. package/lib/routes/stheadline/std/realtime.ts +57 -0
  3123. package/lib/routes/stockedge/daily-news.ts +55 -0
  3124. package/lib/routes/stockedge/namespace.ts +6 -0
  3125. package/lib/routes/stockedge/utils.ts +30 -0
  3126. package/lib/routes/storm/index.ts +91 -0
  3127. package/lib/routes/storm/namespace.ts +6 -0
  3128. package/lib/routes/storyfm/episodes.ts +92 -0
  3129. package/lib/routes/storyfm/index.ts +69 -0
  3130. package/lib/routes/storyfm/namespace.ts +6 -0
  3131. package/lib/routes/storyfm/templates/description.art +6 -0
  3132. package/lib/routes/stratechery/index.ts +28 -0
  3133. package/lib/routes/stratechery/namespace.ts +6 -0
  3134. package/lib/routes/stream-capital/namespace.ts +6 -0
  3135. package/lib/routes/stream-capital/search.ts +79 -0
  3136. package/lib/routes/stream-capital/types.ts +44 -0
  3137. package/lib/routes/stream-capital/utils.ts +18 -0
  3138. package/lib/routes/studygolang/go.ts +29 -0
  3139. package/lib/routes/studygolang/jobs.ts +24 -0
  3140. package/lib/routes/studygolang/namespace.ts +6 -0
  3141. package/lib/routes/studygolang/utils.ts +76 -0
  3142. package/lib/routes/studygolang/weekly.ts +24 -0
  3143. package/lib/routes/subhd/index.ts +88 -0
  3144. package/lib/routes/subhd/namespace.ts +6 -0
  3145. package/lib/routes/supchina/index.ts +83 -0
  3146. package/lib/routes/supchina/namespace.ts +6 -0
  3147. package/lib/routes/supchina/podcasts.ts +94 -0
  3148. package/lib/routes/surfshark/blog.ts +103 -0
  3149. package/lib/routes/surfshark/namespace.ts +6 -0
  3150. package/lib/routes/surfshark/templates/description.art +5 -0
  3151. package/lib/routes/sustainabilitymag/articles.ts +144 -0
  3152. package/lib/routes/sustainabilitymag/namespace.ts +6 -0
  3153. package/lib/routes/sustech/bidding.ts +59 -0
  3154. package/lib/routes/sustech/namespace.ts +6 -0
  3155. package/lib/routes/sustech/newshub-zh.ts +64 -0
  3156. package/lib/routes/sustech/yjs.ts +54 -0
  3157. package/lib/routes/swissinfo/index.ts +98 -0
  3158. package/lib/routes/swissinfo/namespace.ts +6 -0
  3159. package/lib/routes/swjtu/gsee/yjs.ts +76 -0
  3160. package/lib/routes/swjtu/jtys/yjs.ts +76 -0
  3161. package/lib/routes/swjtu/jwc.ts +93 -0
  3162. package/lib/routes/swjtu/jyzpxx.ts +54 -0
  3163. package/lib/routes/swjtu/namespace.ts +6 -0
  3164. package/lib/routes/swjtu/utils.ts +32 -0
  3165. package/lib/routes/swjtu/xg.ts +112 -0
  3166. package/lib/routes/swpu/bgw.ts +86 -0
  3167. package/lib/routes/swpu/cjxy.ts +83 -0
  3168. package/lib/routes/swpu/dean.ts +87 -0
  3169. package/lib/routes/swpu/dxy.ts +89 -0
  3170. package/lib/routes/swpu/is.ts +83 -0
  3171. package/lib/routes/swpu/namespace.ts +6 -0
  3172. package/lib/routes/swpu/scs.ts +86 -0
  3173. package/lib/routes/swpu/utils.ts +20 -0
  3174. package/lib/routes/syosetu/chapter.ts +87 -0
  3175. package/lib/routes/syosetu/namespace.ts +6 -0
  3176. package/lib/routes/sysu/cse.ts +128 -0
  3177. package/lib/routes/sysu/namespace.ts +6 -0
  3178. package/lib/routes/sysu/ygafz.ts +102 -0
  3179. package/lib/routes/szse/inquire.ts +80 -0
  3180. package/lib/routes/szse/namespace.ts +6 -0
  3181. package/lib/routes/szse/notice.ts +97 -0
  3182. package/lib/routes/szse/projectdynamic.ts +152 -0
  3183. package/lib/routes/szse/rule.ts +77 -0
  3184. package/lib/routes/szu/namespace.ts +6 -0
  3185. package/lib/routes/szu/yz/index.ts +74 -0
  3186. package/lib/routes/szu/yz/utils.ts +72 -0
  3187. package/lib/routes/t66y/index.ts +87 -0
  3188. package/lib/routes/t66y/namespace.ts +6 -0
  3189. package/lib/routes/t66y/post.ts +99 -0
  3190. package/lib/routes/t66y/utils.ts +57 -0
  3191. package/lib/routes/tableau/namespace.ts +6 -0
  3192. package/lib/routes/tableau/viz-of-the-day.ts +45 -0
  3193. package/lib/routes/taiwannews/hot.ts +79 -0
  3194. package/lib/routes/taiwannews/namespace.ts +6 -0
  3195. package/lib/routes/tangshufang/index.ts +95 -0
  3196. package/lib/routes/tangshufang/namespace.ts +6 -0
  3197. package/lib/routes/taobao/namespace.ts +6 -0
  3198. package/lib/routes/taobao/zhongchou.ts +71 -0
  3199. package/lib/routes/taoguba/blog.ts +109 -0
  3200. package/lib/routes/taoguba/index.ts +94 -0
  3201. package/lib/routes/taoguba/namespace.ts +6 -0
  3202. package/lib/routes/taptap/changelog.ts +71 -0
  3203. package/lib/routes/taptap/namespace.ts +10 -0
  3204. package/lib/routes/taptap/review.ts +166 -0
  3205. package/lib/routes/taptap/topic.ts +116 -0
  3206. package/lib/routes/taptap/utils.ts +50 -0
  3207. package/lib/routes/tass/namespace.ts +6 -0
  3208. package/lib/routes/tass/news.ts +87 -0
  3209. package/lib/routes/techcrunch/namespace.ts +6 -0
  3210. package/lib/routes/techcrunch/news.ts +66 -0
  3211. package/lib/routes/techflowpost/express.ts +47 -0
  3212. package/lib/routes/techflowpost/index.ts +45 -0
  3213. package/lib/routes/techflowpost/namespace.ts +6 -0
  3214. package/lib/routes/techpowerup/index.ts +85 -0
  3215. package/lib/routes/techpowerup/namespace.ts +6 -0
  3216. package/lib/routes/techpowerup/review.ts +96 -0
  3217. package/lib/routes/techpowerup/utils.ts +76 -0
  3218. package/lib/routes/telecompaper/namespace.ts +6 -0
  3219. package/lib/routes/telecompaper/news.ts +137 -0
  3220. package/lib/routes/telecompaper/search.ts +107 -0
  3221. package/lib/routes/telegram/blog.ts +61 -0
  3222. package/lib/routes/telegram/channel.ts +689 -0
  3223. package/lib/routes/telegram/namespace.ts +6 -0
  3224. package/lib/routes/telegram/stickerpack.ts +46 -0
  3225. package/lib/routes/telegram/tglib/channel.ts +159 -0
  3226. package/lib/routes/telegram/tglib/client.ts +189 -0
  3227. package/lib/routes/tencent/cloud/developer/column.ts +81 -0
  3228. package/lib/routes/tencent/namespace.ts +6 -0
  3229. package/lib/routes/tencent/news/author.ts +102 -0
  3230. package/lib/routes/tencent/news/coronavirus/data.ts +83 -0
  3231. package/lib/routes/tencent/news/coronavirus/total.ts +51 -0
  3232. package/lib/routes/tencent/news/coronavirus/utils.ts +15 -0
  3233. package/lib/routes/tencent/pvp/newsindex.ts +88 -0
  3234. package/lib/routes/tencent/qq/sdk/changelog.ts +76 -0
  3235. package/lib/routes/tencent/templates/news/image.art +4 -0
  3236. package/lib/routes/tesla/cx.ts +218 -0
  3237. package/lib/routes/tesla/namespace.ts +6 -0
  3238. package/lib/routes/tesla/price/get-price.ts +23 -0
  3239. package/lib/routes/tesla/price/index.ts +66 -0
  3240. package/lib/routes/tesla/templates/description.art +140 -0
  3241. package/lib/routes/test/index.ts +410 -0
  3242. package/lib/routes/test/namespace.ts +5 -0
  3243. package/lib/routes/tfc-taiwan/common.ts +38 -0
  3244. package/lib/routes/tfc-taiwan/index.ts +17 -0
  3245. package/lib/routes/tfc-taiwan/namespace.ts +6 -0
  3246. package/lib/routes/tfc-taiwan/templates/article.art +7 -0
  3247. package/lib/routes/tfc-taiwan/topic.ts +17 -0
  3248. package/lib/routes/tfc-taiwan/utils.ts +55 -0
  3249. package/lib/routes/tgbus/list.ts +67 -0
  3250. package/lib/routes/tgbus/namespace.ts +6 -0
  3251. package/lib/routes/tgbus/utils.ts +19 -0
  3252. package/lib/routes/theatlantic/namespace.ts +6 -0
  3253. package/lib/routes/theatlantic/news.ts +61 -0
  3254. package/lib/routes/theatlantic/utils.ts +58 -0
  3255. package/lib/routes/theblockbeats/index.ts +107 -0
  3256. package/lib/routes/theblockbeats/namespace.ts +6 -0
  3257. package/lib/routes/theblockbeats/templates/description.art +5 -0
  3258. package/lib/routes/thecover/channel.ts +89 -0
  3259. package/lib/routes/thecover/namespace.ts +6 -0
  3260. package/lib/routes/thehindu/namespace.ts +6 -0
  3261. package/lib/routes/thehindu/topic.ts +82 -0
  3262. package/lib/routes/theinitium/author.ts +23 -0
  3263. package/lib/routes/theinitium/channel.ts +28 -0
  3264. package/lib/routes/theinitium/follow.ts +43 -0
  3265. package/lib/routes/theinitium/namespace.ts +11 -0
  3266. package/lib/routes/theinitium/tags.ts +23 -0
  3267. package/lib/routes/theinitium/utils.ts +167 -0
  3268. package/lib/routes/themoviedb/api-key.ts +24 -0
  3269. package/lib/routes/themoviedb/collection.ts +40 -0
  3270. package/lib/routes/themoviedb/episodes.ts +46 -0
  3271. package/lib/routes/themoviedb/namespace.ts +9 -0
  3272. package/lib/routes/themoviedb/seasons.ts +50 -0
  3273. package/lib/routes/themoviedb/sheet.ts +75 -0
  3274. package/lib/routes/themoviedb/trending.ts +43 -0
  3275. package/lib/routes/themoviedb/utils.ts +37 -0
  3276. package/lib/routes/thenewslens/index.ts +92 -0
  3277. package/lib/routes/thenewslens/namespace.ts +6 -0
  3278. package/lib/routes/thepaper/839studio/category.ts +54 -0
  3279. package/lib/routes/thepaper/839studio/studio.ts +41 -0
  3280. package/lib/routes/thepaper/channel.ts +60 -0
  3281. package/lib/routes/thepaper/factpaper.ts +91 -0
  3282. package/lib/routes/thepaper/featured.ts +43 -0
  3283. package/lib/routes/thepaper/list.ts +145 -0
  3284. package/lib/routes/thepaper/namespace.ts +7 -0
  3285. package/lib/routes/thepaper/sidebar.ts +39 -0
  3286. package/lib/routes/thepaper/utils.ts +88 -0
  3287. package/lib/routes/thepetcity/index.ts +69 -0
  3288. package/lib/routes/thepetcity/namespace.ts +6 -0
  3289. package/lib/routes/thepetcity/terms-map.ts +28 -0
  3290. package/lib/routes/theverge/index.ts +133 -0
  3291. package/lib/routes/theverge/namespace.ts +6 -0
  3292. package/lib/routes/thoughtco/index.ts +413 -0
  3293. package/lib/routes/thoughtco/namespace.ts +6 -0
  3294. package/lib/routes/thoughtco/templates/description.art +16 -0
  3295. package/lib/routes/threads/index.ts +110 -0
  3296. package/lib/routes/threads/namespace.ts +6 -0
  3297. package/lib/routes/threads/utils.ts +166 -0
  3298. package/lib/routes/thwiki/index.ts +58 -0
  3299. package/lib/routes/thwiki/namespace.ts +6 -0
  3300. package/lib/routes/tiktok/namespace.ts +6 -0
  3301. package/lib/routes/tiktok/templates/user.art +7 -0
  3302. package/lib/routes/tiktok/user.ts +90 -0
  3303. package/lib/routes/timednews/namespace.ts +6 -0
  3304. package/lib/routes/timednews/news.ts +127 -0
  3305. package/lib/routes/tingshuitz/changsha.ts +68 -0
  3306. package/lib/routes/tingshuitz/dalian.ts +54 -0
  3307. package/lib/routes/tingshuitz/dongguan.ts +53 -0
  3308. package/lib/routes/tingshuitz/guangzhou.ts +42 -0
  3309. package/lib/routes/tingshuitz/hangzhou.ts +59 -0
  3310. package/lib/routes/tingshuitz/namespace.ts +7 -0
  3311. package/lib/routes/tingshuitz/nanjing.ts +58 -0
  3312. package/lib/routes/tingshuitz/shenzhen.ts +58 -0
  3313. package/lib/routes/tingshuitz/templates/shenzhen.art +8 -0
  3314. package/lib/routes/tingshuitz/wuhan.ts +47 -0
  3315. package/lib/routes/tingshuitz/xian.ts +50 -0
  3316. package/lib/routes/tingshuitz/xiaoshan.ts +59 -0
  3317. package/lib/routes/tingshuitz/yangjiang.ts +54 -0
  3318. package/lib/routes/tingtingfm/namespace.ts +6 -0
  3319. package/lib/routes/tingtingfm/program.ts +132 -0
  3320. package/lib/routes/tingtingfm/templates/audio.art +5 -0
  3321. package/lib/routes/tingtingfm/utils.ts +29 -0
  3322. package/lib/routes/tisi/index.ts +58 -0
  3323. package/lib/routes/tisi/namespace.ts +6 -0
  3324. package/lib/routes/tju/cic/index.ts +132 -0
  3325. package/lib/routes/tju/namespace.ts +6 -0
  3326. package/lib/routes/tju/news/index.ts +150 -0
  3327. package/lib/routes/tju/oaa/index.ts +135 -0
  3328. package/lib/routes/tju/yzb/index.ts +140 -0
  3329. package/lib/routes/tokeninsight/blog.ts +78 -0
  3330. package/lib/routes/tokeninsight/bulletin.ts +70 -0
  3331. package/lib/routes/tokeninsight/namespace.ts +9 -0
  3332. package/lib/routes/tokeninsight/report.ts +83 -0
  3333. package/lib/routes/tongji/bks.ts +55 -0
  3334. package/lib/routes/tongji/namespace.ts +6 -0
  3335. package/lib/routes/tongji/sse/_article.ts +25 -0
  3336. package/lib/routes/tongji/sse/notice.ts +71 -0
  3337. package/lib/routes/tongji/yjs.ts +52 -0
  3338. package/lib/routes/tongli/namespace.ts +6 -0
  3339. package/lib/routes/tongli/news.ts +75 -0
  3340. package/lib/routes/toodaylab/index.ts +108 -0
  3341. package/lib/routes/toodaylab/namespace.ts +6 -0
  3342. package/lib/routes/tophub/index.ts +64 -0
  3343. package/lib/routes/tophub/list.ts +76 -0
  3344. package/lib/routes/tophub/namespace.ts +9 -0
  3345. package/lib/routes/tophub/templates/rank.art +22 -0
  3346. package/lib/routes/topys/index.ts +93 -0
  3347. package/lib/routes/topys/namespace.ts +6 -0
  3348. package/lib/routes/tradingview/blog.ts +115 -0
  3349. package/lib/routes/tradingview/desktop.ts +86 -0
  3350. package/lib/routes/tradingview/namespace.ts +6 -0
  3351. package/lib/routes/tradingview/pine.ts +68 -0
  3352. package/lib/routes/tradingview/templates/description.art +13 -0
  3353. package/lib/routes/transcriptforest/index.ts +135 -0
  3354. package/lib/routes/transcriptforest/namespace.ts +6 -0
  3355. package/lib/routes/transcriptforest/templates/description.art +23 -0
  3356. package/lib/routes/trending/all-trending.ts +228 -0
  3357. package/lib/routes/trending/namespace.ts +6 -0
  3358. package/lib/routes/trendingpapers/namespace.ts +6 -0
  3359. package/lib/routes/trendingpapers/papers.ts +59 -0
  3360. package/lib/routes/tribalfootball/latest.ts +87 -0
  3361. package/lib/routes/tribalfootball/namespace.ts +6 -0
  3362. package/lib/routes/trow/namespace.ts +6 -0
  3363. package/lib/routes/trow/portal.ts +71 -0
  3364. package/lib/routes/tsinghua/lib/zydt.ts +129 -0
  3365. package/lib/routes/tsinghua/namespace.ts +8 -0
  3366. package/lib/routes/ttv/index.ts +78 -0
  3367. package/lib/routes/ttv/namespace.ts +6 -0
  3368. package/lib/routes/tvb/namespace.ts +6 -0
  3369. package/lib/routes/tvb/news.ts +118 -0
  3370. package/lib/routes/tvtropes/featured.ts +98 -0
  3371. package/lib/routes/tvtropes/namespace.ts +6 -0
  3372. package/lib/routes/tvtropes/templates/description.art +23 -0
  3373. package/lib/routes/twitch/live.ts +107 -0
  3374. package/lib/routes/twitch/namespace.ts +6 -0
  3375. package/lib/routes/twitch/schedule.ts +101 -0
  3376. package/lib/routes/twitch/video.ts +100 -0
  3377. package/lib/routes/twitter/api/developer-api/search.ts +23 -0
  3378. package/lib/routes/twitter/api/developer-api/user.ts +38 -0
  3379. package/lib/routes/twitter/api/index.ts +42 -0
  3380. package/lib/routes/twitter/api/mobile-api/api.ts +283 -0
  3381. package/lib/routes/twitter/api/mobile-api/constants.ts +86 -0
  3382. package/lib/routes/twitter/api/mobile-api/login.ts +185 -0
  3383. package/lib/routes/twitter/api/mobile-api/token.ts +42 -0
  3384. package/lib/routes/twitter/api/web-api/api.ts +197 -0
  3385. package/lib/routes/twitter/api/web-api/constants.ts +112 -0
  3386. package/lib/routes/twitter/api/web-api/utils.ts +129 -0
  3387. package/lib/routes/twitter/home.ts +60 -0
  3388. package/lib/routes/twitter/keyword.ts +54 -0
  3389. package/lib/routes/twitter/likes.ts +46 -0
  3390. package/lib/routes/twitter/list.ts +57 -0
  3391. package/lib/routes/twitter/media.ts +61 -0
  3392. package/lib/routes/twitter/namespace.ts +47 -0
  3393. package/lib/routes/twitter/trends.ts +44 -0
  3394. package/lib/routes/twitter/tweet.ts +65 -0
  3395. package/lib/routes/twitter/user.ts +76 -0
  3396. package/lib/routes/twitter/utils.ts +495 -0
  3397. package/lib/routes/twreporter/category.ts +71 -0
  3398. package/lib/routes/twreporter/fetch-article.ts +110 -0
  3399. package/lib/routes/twreporter/namespace.ts +6 -0
  3400. package/lib/routes/twreporter/newest.ts +52 -0
  3401. package/lib/routes/twreporter/templates/image.art +3 -0
  3402. package/lib/routes/twreporter/templates/youtube.art +1 -0
  3403. package/lib/routes/txrjy/fornumtopic.ts +98 -0
  3404. package/lib/routes/txrjy/namespace.ts +6 -0
  3405. package/lib/routes/tynu/namespace.ts +6 -0
  3406. package/lib/routes/tynu/tynu.ts +55 -0
  3407. package/lib/routes/typora/changelog-dev.ts +57 -0
  3408. package/lib/routes/typora/changelog.ts +66 -0
  3409. package/lib/routes/typora/namespace.ts +6 -0
  3410. package/lib/routes/typst/namespace.ts +13 -0
  3411. package/lib/routes/typst/universe.ts +108 -0
  3412. package/lib/routes/u3c3/index.ts +93 -0
  3413. package/lib/routes/u3c3/namespace.ts +6 -0
  3414. package/lib/routes/u9a9/index.ts +83 -0
  3415. package/lib/routes/u9a9/namespace.ts +6 -0
  3416. package/lib/routes/uber/blog.ts +85 -0
  3417. package/lib/routes/uber/namespace.ts +6 -0
  3418. package/lib/routes/ucas/ai.ts +53 -0
  3419. package/lib/routes/ucas/index.ts +82 -0
  3420. package/lib/routes/ucas/namespace.ts +6 -0
  3421. package/lib/routes/ucas/rader.ts +47 -0
  3422. package/lib/routes/uchicago/current.ts +107 -0
  3423. package/lib/routes/uchicago/namespace.ts +6 -0
  3424. package/lib/routes/udn/breaking-news.ts +125 -0
  3425. package/lib/routes/udn/global/index.ts +91 -0
  3426. package/lib/routes/udn/global/tag.ts +78 -0
  3427. package/lib/routes/udn/namespace.ts +6 -0
  3428. package/lib/routes/uestc/auto.ts +71 -0
  3429. package/lib/routes/uestc/cqe.ts +91 -0
  3430. package/lib/routes/uestc/gr.ts +74 -0
  3431. package/lib/routes/uestc/jwc.ts +82 -0
  3432. package/lib/routes/uestc/namespace.ts +6 -0
  3433. package/lib/routes/uestc/news.ts +81 -0
  3434. package/lib/routes/uestc/scse.ts +116 -0
  3435. package/lib/routes/uestc/sice.ts +72 -0
  3436. package/lib/routes/uestc/sise.ts +111 -0
  3437. package/lib/routes/uibe/hr.ts +88 -0
  3438. package/lib/routes/uibe/namespace.ts +6 -0
  3439. package/lib/routes/ulapia/index.ts +69 -0
  3440. package/lib/routes/ulapia/namespace.ts +6 -0
  3441. package/lib/routes/ulapia/research.ts +64 -0
  3442. package/lib/routes/uniqlo/namespace.ts +6 -0
  3443. package/lib/routes/uniqlo/new.ts +81 -0
  3444. package/lib/routes/unraid/community-apps.ts +60 -0
  3445. package/lib/routes/unraid/namespace.ts +6 -0
  3446. package/lib/routes/unusualwhales/namespace.ts +6 -0
  3447. package/lib/routes/unusualwhales/news.ts +49 -0
  3448. package/lib/routes/upc/jsj.ts +100 -0
  3449. package/lib/routes/upc/jwc.ts +121 -0
  3450. package/lib/routes/upc/main.ts +95 -0
  3451. package/lib/routes/upc/namespace.ts +6 -0
  3452. package/lib/routes/upc/yjs.ts +53 -0
  3453. package/lib/routes/uptimerobot/namespace.ts +6 -0
  3454. package/lib/routes/uptimerobot/rss.ts +161 -0
  3455. package/lib/routes/uraaka-joshi/namespace.ts +6 -0
  3456. package/lib/routes/uraaka-joshi/uraaka-joshi-user.ts +132 -0
  3457. package/lib/routes/uraaka-joshi/uraaka-joshi.ts +105 -0
  3458. package/lib/routes/urbandictionary/namespace.ts +6 -0
  3459. package/lib/routes/urbandictionary/random.ts +52 -0
  3460. package/lib/routes/usenix/loginonline.ts +63 -0
  3461. package/lib/routes/usenix/namespace.ts +6 -0
  3462. package/lib/routes/usenix/usenix.ts +78 -0
  3463. package/lib/routes/usepanda/index.ts +48 -0
  3464. package/lib/routes/usepanda/namespace.ts +6 -0
  3465. package/lib/routes/ustb/namespace.ts +6 -0
  3466. package/lib/routes/ustb/tj/news.ts +83 -0
  3467. package/lib/routes/ustb/yjsy/news.ts +484 -0
  3468. package/lib/routes/ustb/yzxc/tzgg.ts +75 -0
  3469. package/lib/routes/ustc/eeis.ts +91 -0
  3470. package/lib/routes/ustc/gs.ts +90 -0
  3471. package/lib/routes/ustc/index.ts +108 -0
  3472. package/lib/routes/ustc/job.ts +223 -0
  3473. package/lib/routes/ustc/jwc.ts +86 -0
  3474. package/lib/routes/ustc/math.ts +94 -0
  3475. package/lib/routes/ustc/namespace.ts +6 -0
  3476. package/lib/routes/ustc/sist.ts +91 -0
  3477. package/lib/routes/usts/jwch.ts +76 -0
  3478. package/lib/routes/usts/namespace.ts +6 -0
  3479. package/lib/routes/utgd/category.ts +102 -0
  3480. package/lib/routes/utgd/namespace.ts +6 -0
  3481. package/lib/routes/utgd/templates/description.art +11 -0
  3482. package/lib/routes/utgd/timeline.ts +85 -0
  3483. package/lib/routes/utgd/topic.ts +107 -0
  3484. package/lib/routes/uw/gix/news.ts +95 -0
  3485. package/lib/routes/uw/namespace.ts +6 -0
  3486. package/lib/routes/v1tx/index.ts +71 -0
  3487. package/lib/routes/v1tx/namespace.ts +6 -0
  3488. package/lib/routes/v2ex/namespace.ts +6 -0
  3489. package/lib/routes/v2ex/post.ts +59 -0
  3490. package/lib/routes/v2ex/tab.ts +76 -0
  3491. package/lib/routes/v2ex/topics.ts +49 -0
  3492. package/lib/routes/v2rayshare/index.ts +37 -0
  3493. package/lib/routes/v2rayshare/namespace.ts +6 -0
  3494. package/lib/routes/vcb-s/category.ts +83 -0
  3495. package/lib/routes/vcb-s/index.ts +57 -0
  3496. package/lib/routes/vcb-s/namespace.ts +6 -0
  3497. package/lib/routes/verfghbw/namespace.ts +6 -0
  3498. package/lib/routes/verfghbw/press.ts +84 -0
  3499. package/lib/routes/vice/namespace.ts +6 -0
  3500. package/lib/routes/vice/templates/article.art +19 -0
  3501. package/lib/routes/vice/topic.ts +103 -0
  3502. package/lib/routes/vimeo/category.ts +90 -0
  3503. package/lib/routes/vimeo/channel.ts +100 -0
  3504. package/lib/routes/vimeo/namespace.ts +6 -0
  3505. package/lib/routes/vimeo/usr-videos.ts +104 -0
  3506. package/lib/routes/vocus/namespace.ts +6 -0
  3507. package/lib/routes/vocus/publication.ts +67 -0
  3508. package/lib/routes/vocus/user.ts +63 -0
  3509. package/lib/routes/vocus/utils.ts +46 -0
  3510. package/lib/routes/vom/featured.ts +79 -0
  3511. package/lib/routes/vom/namespace.ts +6 -0
  3512. package/lib/routes/wallhaven/index.ts +86 -0
  3513. package/lib/routes/wallhaven/namespace.ts +13 -0
  3514. package/lib/routes/wallpaperhub/index.ts +46 -0
  3515. package/lib/routes/wallpaperhub/namespace.ts +6 -0
  3516. package/lib/routes/wallstreetcn/hot.ts +82 -0
  3517. package/lib/routes/wallstreetcn/live.ts +80 -0
  3518. package/lib/routes/wallstreetcn/namespace.ts +6 -0
  3519. package/lib/routes/wallstreetcn/news.ts +103 -0
  3520. package/lib/routes/wanqu/namespace.ts +6 -0
  3521. package/lib/routes/wanqu/news.ts +52 -0
  3522. package/lib/routes/warthunder/namespace.ts +6 -0
  3523. package/lib/routes/warthunder/news.ts +79 -0
  3524. package/lib/routes/watasuke/blog.ts +42 -0
  3525. package/lib/routes/watasuke/namespace.ts +7 -0
  3526. package/lib/routes/wdc/download.ts +56 -0
  3527. package/lib/routes/wdc/namespace.ts +6 -0
  3528. package/lib/routes/web/articles.ts +25 -0
  3529. package/lib/routes/web/blog.ts +25 -0
  3530. package/lib/routes/web/namespace.ts +6 -0
  3531. package/lib/routes/web/series.ts +32 -0
  3532. package/lib/routes/web/utils.ts +68 -0
  3533. package/lib/routes/web3caff/index.ts +73 -0
  3534. package/lib/routes/web3caff/namespace.ts +6 -0
  3535. package/lib/routes/wechat/announce.ts +58 -0
  3536. package/lib/routes/wechat/ce.ts +94 -0
  3537. package/lib/routes/wechat/data258.ts +148 -0
  3538. package/lib/routes/wechat/ershcimi.ts +52 -0
  3539. package/lib/routes/wechat/feeddd.ts +43 -0
  3540. package/lib/routes/wechat/mp.ts +81 -0
  3541. package/lib/routes/wechat/msgalbum.ts +61 -0
  3542. package/lib/routes/wechat/namespace.ts +9 -0
  3543. package/lib/routes/wechat/sogou.ts +77 -0
  3544. package/lib/routes/wechat/tgchannel.ts +185 -0
  3545. package/lib/routes/wechat/uread.ts +71 -0
  3546. package/lib/routes/wechat/wechat2rss.ts +47 -0
  3547. package/lib/routes/weekendhk/namespace.ts +6 -0
  3548. package/lib/routes/weekendhk/posts.ts +44 -0
  3549. package/lib/routes/weibo/friends.ts +162 -0
  3550. package/lib/routes/weibo/group.ts +118 -0
  3551. package/lib/routes/weibo/keyword.ts +69 -0
  3552. package/lib/routes/weibo/namespace.ts +41 -0
  3553. package/lib/routes/weibo/oasis/user.ts +46 -0
  3554. package/lib/routes/weibo/search/hot.ts +173 -0
  3555. package/lib/routes/weibo/search/template/digest.art +17 -0
  3556. package/lib/routes/weibo/super-index.ts +87 -0
  3557. package/lib/routes/weibo/timeline.ts +188 -0
  3558. package/lib/routes/weibo/user-bookmarks.ts +190 -0
  3559. package/lib/routes/weibo/user.ts +181 -0
  3560. package/lib/routes/weibo/utils.ts +478 -0
  3561. package/lib/routes/wellcee/namespace.ts +7 -0
  3562. package/lib/routes/wellcee/rent.ts +81 -0
  3563. package/lib/routes/wellcee/support-city.ts +46 -0
  3564. package/lib/routes/wellcee/templates/house.art +18 -0
  3565. package/lib/routes/wellcee/types.ts +58 -0
  3566. package/lib/routes/wellcee/utils.ts +45 -0
  3567. package/lib/routes/wenku8/chapter.ts +54 -0
  3568. package/lib/routes/wenku8/index.ts +60 -0
  3569. package/lib/routes/wenku8/namespace.ts +6 -0
  3570. package/lib/routes/wenku8/volume.ts +60 -0
  3571. package/lib/routes/wfdf/namespace.ts +6 -0
  3572. package/lib/routes/wfdf/news.ts +54 -0
  3573. package/lib/routes/wfu/jwc.ts +79 -0
  3574. package/lib/routes/wfu/namespace.ts +6 -0
  3575. package/lib/routes/wfu/news.ts +128 -0
  3576. package/lib/routes/whitehouse/briefing-room.ts +79 -0
  3577. package/lib/routes/whitehouse/namespace.ts +6 -0
  3578. package/lib/routes/whitehouse/ostp.ts +76 -0
  3579. package/lib/routes/who/namespace.ts +6 -0
  3580. package/lib/routes/who/news-room.ts +113 -0
  3581. package/lib/routes/who/news.ts +74 -0
  3582. package/lib/routes/who/speeches.ts +77 -0
  3583. package/lib/routes/whu/cs.ts +109 -0
  3584. package/lib/routes/whu/gs/index.ts +115 -0
  3585. package/lib/routes/whu/hyxt.ts +59 -0
  3586. package/lib/routes/whu/namespace.ts +6 -0
  3587. package/lib/routes/whu/news.ts +82 -0
  3588. package/lib/routes/whu/rsgis.ts +277 -0
  3589. package/lib/routes/whu/templates/description.art +39 -0
  3590. package/lib/routes/whu/util.ts +143 -0
  3591. package/lib/routes/wikinews/index.ts +68 -0
  3592. package/lib/routes/wikinews/namespace.ts +6 -0
  3593. package/lib/routes/winstall/namespace.ts +6 -0
  3594. package/lib/routes/winstall/templates/desc.art +5 -0
  3595. package/lib/routes/winstall/update.ts +71 -0
  3596. package/lib/routes/wired/namespace.ts +7 -0
  3597. package/lib/routes/wired/tag.ts +97 -0
  3598. package/lib/routes/wired/types.ts +81 -0
  3599. package/lib/routes/wise/namespace.ts +6 -0
  3600. package/lib/routes/wise/pair.ts +89 -0
  3601. package/lib/routes/wizfile/index.ts +66 -0
  3602. package/lib/routes/wizfile/namespace.ts +6 -0
  3603. package/lib/routes/wmc-bj/namespace.ts +6 -0
  3604. package/lib/routes/wmc-bj/publish.ts +69 -0
  3605. package/lib/routes/wmc-bj/templates/description.art +5 -0
  3606. package/lib/routes/wmpvp/index.ts +69 -0
  3607. package/lib/routes/wmpvp/namespace.ts +6 -0
  3608. package/lib/routes/wnacg/category.ts +17 -0
  3609. package/lib/routes/wnacg/common.ts +111 -0
  3610. package/lib/routes/wnacg/index.ts +16 -0
  3611. package/lib/routes/wnacg/namespace.ts +6 -0
  3612. package/lib/routes/wnacg/tag.ts +17 -0
  3613. package/lib/routes/wnacg/templates/manga.art +9 -0
  3614. package/lib/routes/wordpress/index.ts +172 -0
  3615. package/lib/routes/wordpress/namespace.ts +8 -0
  3616. package/lib/routes/wordpress/util.ts +307 -0
  3617. package/lib/routes/worldjournal/index.ts +76 -0
  3618. package/lib/routes/worldjournal/namespace.ts +6 -0
  3619. package/lib/routes/worldofwarships/devblog.ts +76 -0
  3620. package/lib/routes/worldofwarships/namespace.ts +13 -0
  3621. package/lib/routes/woshipm/namespace.ts +6 -0
  3622. package/lib/routes/woshipm/popular.ts +63 -0
  3623. package/lib/routes/woshipm/user-article.ts +62 -0
  3624. package/lib/routes/woshipm/utils.ts +18 -0
  3625. package/lib/routes/woshipm/wen.ts +62 -0
  3626. package/lib/routes/wsj/namespace.ts +6 -0
  3627. package/lib/routes/wsj/news.ts +83 -0
  3628. package/lib/routes/wsj/utils.ts +124 -0
  3629. package/lib/routes/wsyu/namespace.ts +6 -0
  3630. package/lib/routes/wsyu/news.ts +108 -0
  3631. package/lib/routes/wtu/index.ts +59 -0
  3632. package/lib/routes/wtu/job.ts +108 -0
  3633. package/lib/routes/wtu/namespace.ts +6 -0
  3634. package/lib/routes/wyzxwk/article.ts +130 -0
  3635. package/lib/routes/wyzxwk/namespace.ts +6 -0
  3636. package/lib/routes/wzu/namespace.ts +6 -0
  3637. package/lib/routes/wzu/news.ts +93 -0
  3638. package/lib/routes/x-mol/namespace.ts +6 -0
  3639. package/lib/routes/x-mol/news.ts +93 -0
  3640. package/lib/routes/x-mol/paper.ts +93 -0
  3641. package/lib/routes/x-mol/templates/description.art +6 -0
  3642. package/lib/routes/x-mol/utils.ts +3 -0
  3643. package/lib/routes/x6d/index.ts +141 -0
  3644. package/lib/routes/x6d/namespace.ts +6 -0
  3645. package/lib/routes/xaufe/jiaowu.ts +92 -0
  3646. package/lib/routes/xaufe/namespace.ts +6 -0
  3647. package/lib/routes/xaut/index.ts +95 -0
  3648. package/lib/routes/xaut/jwc.ts +92 -0
  3649. package/lib/routes/xaut/namespace.ts +6 -0
  3650. package/lib/routes/xaut/rsc.ts +94 -0
  3651. package/lib/routes/xboxfan/namespace.ts +6 -0
  3652. package/lib/routes/xboxfan/news.ts +70 -0
  3653. package/lib/routes/xianbao/index.ts +142 -0
  3654. package/lib/routes/xianbao/namespace.ts +6 -0
  3655. package/lib/routes/xiaoheihe/add2cart.ts +63 -0
  3656. package/lib/routes/xiaoheihe/discount.ts +102 -0
  3657. package/lib/routes/xiaoheihe/namespace.ts +6 -0
  3658. package/lib/routes/xiaoheihe/news.ts +61 -0
  3659. package/lib/routes/xiaoheihe/user.ts +69 -0
  3660. package/lib/routes/xiaoheihe/util.ts +75 -0
  3661. package/lib/routes/xiaohongshu/board.ts +55 -0
  3662. package/lib/routes/xiaohongshu/namespace.ts +6 -0
  3663. package/lib/routes/xiaohongshu/notes.ts +31 -0
  3664. package/lib/routes/xiaohongshu/user.ts +64 -0
  3665. package/lib/routes/xiaohongshu/util.ts +197 -0
  3666. package/lib/routes/xiaomiyoupin/crowdfunding.ts +71 -0
  3667. package/lib/routes/xiaomiyoupin/latest.ts +40 -0
  3668. package/lib/routes/xiaomiyoupin/namespace.ts +6 -0
  3669. package/lib/routes/xiaomiyoupin/utils.ts +21 -0
  3670. package/lib/routes/xiaote/index.ts +73 -0
  3671. package/lib/routes/xiaote/namespace.ts +6 -0
  3672. package/lib/routes/xiaoyuzhou/namespace.ts +6 -0
  3673. package/lib/routes/xiaoyuzhou/pickup.ts +112 -0
  3674. package/lib/routes/xiaoyuzhou/podcast.ts +61 -0
  3675. package/lib/routes/xiaozhuanlan/column.ts +78 -0
  3676. package/lib/routes/xiaozhuanlan/namespace.ts +6 -0
  3677. package/lib/routes/xidian/jwc.ts +77 -0
  3678. package/lib/routes/xidian/namespace.ts +6 -0
  3679. package/lib/routes/ximalaya/album.ts +260 -0
  3680. package/lib/routes/ximalaya/namespace.ts +6 -0
  3681. package/lib/routes/ximalaya/types.ts +68 -0
  3682. package/lib/routes/ximalaya/utils.ts +166 -0
  3683. package/lib/routes/xinpianchang/index.ts +44 -0
  3684. package/lib/routes/xinpianchang/namespace.ts +6 -0
  3685. package/lib/routes/xinpianchang/rank.ts +61 -0
  3686. package/lib/routes/xinpianchang/templates/description.art +13 -0
  3687. package/lib/routes/xinpianchang/util.ts +108 -0
  3688. package/lib/routes/xjtu/2yuan/news.ts +93 -0
  3689. package/lib/routes/xjtu/dean.ts +91 -0
  3690. package/lib/routes/xjtu/dyyy/index.ts +53 -0
  3691. package/lib/routes/xjtu/ee.ts +70 -0
  3692. package/lib/routes/xjtu/gs/tzgg.ts +65 -0
  3693. package/lib/routes/xjtu/international.ts +60 -0
  3694. package/lib/routes/xjtu/job.ts +109 -0
  3695. package/lib/routes/xjtu/namespace.ts +6 -0
  3696. package/lib/routes/xjtu/std.ts +84 -0
  3697. package/lib/routes/xkb/index.ts +86 -0
  3698. package/lib/routes/xkb/namespace.ts +6 -0
  3699. package/lib/routes/xmanhua/index.ts +88 -0
  3700. package/lib/routes/xmanhua/namespace.ts +6 -0
  3701. package/lib/routes/xmnn/epaper.ts +114 -0
  3702. package/lib/routes/xmnn/namespace.ts +6 -0
  3703. package/lib/routes/xmnn/news.ts +74 -0
  3704. package/lib/routes/xmut/jwc/bkjw.ts +71 -0
  3705. package/lib/routes/xmut/jwc/yjs.ts +60 -0
  3706. package/lib/routes/xmut/namespace.ts +6 -0
  3707. package/lib/routes/xsijishe/forum.ts +79 -0
  3708. package/lib/routes/xsijishe/namespace.ts +6 -0
  3709. package/lib/routes/xsijishe/rank.ts +81 -0
  3710. package/lib/routes/xueqiu/column.ts +66 -0
  3711. package/lib/routes/xueqiu/cookies.ts +15 -0
  3712. package/lib/routes/xueqiu/favorite.ts +57 -0
  3713. package/lib/routes/xueqiu/fund.ts +69 -0
  3714. package/lib/routes/xueqiu/hots.ts +67 -0
  3715. package/lib/routes/xueqiu/namespace.ts +6 -0
  3716. package/lib/routes/xueqiu/snb.ts +71 -0
  3717. package/lib/routes/xueqiu/stock-comments.ts +73 -0
  3718. package/lib/routes/xueqiu/stock-info.ts +98 -0
  3719. package/lib/routes/xueqiu/timeline.ts +94 -0
  3720. package/lib/routes/xueqiu/today.ts +86 -0
  3721. package/lib/routes/xueqiu/user-stock.ts +78 -0
  3722. package/lib/routes/xueqiu/user.ts +101 -0
  3723. package/lib/routes/xunhupay/index.ts +49 -0
  3724. package/lib/routes/xunhupay/namespace.ts +6 -0
  3725. package/lib/routes/xys/namespace.ts +6 -0
  3726. package/lib/routes/xys/new.ts +103 -0
  3727. package/lib/routes/xyzrank/index.ts +129 -0
  3728. package/lib/routes/xyzrank/namespace.ts +13 -0
  3729. package/lib/routes/yahoo/namespace.ts +6 -0
  3730. package/lib/routes/yahoo/news/tw/index.ts +80 -0
  3731. package/lib/routes/yahoo/news/tw/provider-helper.ts +43 -0
  3732. package/lib/routes/yahoo/news/tw/provider.ts +48 -0
  3733. package/lib/routes/yahoo/news/tw/utils.ts +125 -0
  3734. package/lib/routes/yahoo/news/us/index.ts +55 -0
  3735. package/lib/routes/yahoo/templates/youtube.art +1 -0
  3736. package/lib/routes/yamibo/bbs/forum.ts +116 -0
  3737. package/lib/routes/yamibo/bbs/thread.ts +84 -0
  3738. package/lib/routes/yamibo/namespace.ts +6 -0
  3739. package/lib/routes/yamibo/utils.ts +114 -0
  3740. package/lib/routes/yande/namespace.ts +7 -0
  3741. package/lib/routes/yande/post.ts +84 -0
  3742. package/lib/routes/yangtzeu/dongke.ts +70 -0
  3743. package/lib/routes/yangtzeu/namespace.ts +6 -0
  3744. package/lib/routes/ycwb/index.ts +116 -0
  3745. package/lib/routes/ycwb/namespace.ts +6 -0
  3746. package/lib/routes/ycwb/templates/description.art +7 -0
  3747. package/lib/routes/yenpress/namespace.ts +7 -0
  3748. package/lib/routes/yenpress/series.ts +115 -0
  3749. package/lib/routes/yenpress/templates/series.art +25 -0
  3750. package/lib/routes/ygkkk/namespace.ts +6 -0
  3751. package/lib/routes/ygkkk/rss.ts +48 -0
  3752. package/lib/routes/yicai/author.ts +52 -0
  3753. package/lib/routes/yicai/brief.ts +53 -0
  3754. package/lib/routes/yicai/dt.ts +174 -0
  3755. package/lib/routes/yicai/feed.ts +55 -0
  3756. package/lib/routes/yicai/headline.ts +39 -0
  3757. package/lib/routes/yicai/latest.ts +39 -0
  3758. package/lib/routes/yicai/namespace.ts +6 -0
  3759. package/lib/routes/yicai/news.ts +92 -0
  3760. package/lib/routes/yicai/templates/description.art +39 -0
  3761. package/lib/routes/yicai/utils.ts +59 -0
  3762. package/lib/routes/yicai/video.ts +102 -0
  3763. package/lib/routes/yicai/vip.ts +52 -0
  3764. package/lib/routes/ymgal/article.ts +84 -0
  3765. package/lib/routes/ymgal/game.ts +69 -0
  3766. package/lib/routes/ymgal/namespace.ts +6 -0
  3767. package/lib/routes/yoasobi-music/info.ts +97 -0
  3768. package/lib/routes/yoasobi-music/jsonp-helper.ts +17 -0
  3769. package/lib/routes/yoasobi-music/live.ts +80 -0
  3770. package/lib/routes/yoasobi-music/media.ts +87 -0
  3771. package/lib/routes/yoasobi-music/namespace.ts +6 -0
  3772. package/lib/routes/yomiuri/namespace.ts +6 -0
  3773. package/lib/routes/yomiuri/news.ts +124 -0
  3774. package/lib/routes/yomujp/level.ts +127 -0
  3775. package/lib/routes/yomujp/namespace.ts +6 -0
  3776. package/lib/routes/youku/channel.ts +84 -0
  3777. package/lib/routes/youku/namespace.ts +6 -0
  3778. package/lib/routes/youtube/channel.ts +76 -0
  3779. package/lib/routes/youtube/charts.ts +151 -0
  3780. package/lib/routes/youtube/community.ts +70 -0
  3781. package/lib/routes/youtube/custom.ts +79 -0
  3782. package/lib/routes/youtube/live.ts +76 -0
  3783. package/lib/routes/youtube/namespace.ts +6 -0
  3784. package/lib/routes/youtube/playlist.ts +60 -0
  3785. package/lib/routes/youtube/subscriptions.ts +96 -0
  3786. package/lib/routes/youtube/user.ts +90 -0
  3787. package/lib/routes/youtube/utils.ts +168 -0
  3788. package/lib/routes/youzhiyouxing/materials.ts +86 -0
  3789. package/lib/routes/youzhiyouxing/namespace.ts +6 -0
  3790. package/lib/routes/yuque/book.ts +126 -0
  3791. package/lib/routes/yuque/namespace.ts +6 -0
  3792. package/lib/routes/yuque/utils.ts +79 -0
  3793. package/lib/routes/yxdown/namespace.ts +6 -0
  3794. package/lib/routes/yxdown/news.ts +80 -0
  3795. package/lib/routes/yxdown/recommend.ts +80 -0
  3796. package/lib/routes/yxdown/utils.ts +14 -0
  3797. package/lib/routes/yxdzqb/index.ts +84 -0
  3798. package/lib/routes/yxdzqb/namespace.ts +6 -0
  3799. package/lib/routes/yxrb/home.ts +90 -0
  3800. package/lib/routes/yxrb/namespace.ts +6 -0
  3801. package/lib/routes/yyets/article.ts +68 -0
  3802. package/lib/routes/yyets/namespace.ts +6 -0
  3803. package/lib/routes/yyets/today.ts +62 -0
  3804. package/lib/routes/yystv/category.ts +86 -0
  3805. package/lib/routes/yystv/docs.ts +59 -0
  3806. package/lib/routes/yystv/namespace.ts +6 -0
  3807. package/lib/routes/zagg/namespace.ts +6 -0
  3808. package/lib/routes/zagg/new-arrivals.ts +75 -0
  3809. package/lib/routes/zaker/index.ts +80 -0
  3810. package/lib/routes/zaker/namespace.ts +6 -0
  3811. package/lib/routes/zaobao/interactive.ts +25 -0
  3812. package/lib/routes/zaobao/namespace.ts +9 -0
  3813. package/lib/routes/zaobao/other.ts +29 -0
  3814. package/lib/routes/zaobao/realtime.ts +59 -0
  3815. package/lib/routes/zaobao/util.ts +185 -0
  3816. package/lib/routes/zaobao/znews.ts +71 -0
  3817. package/lib/routes/zaozao/article.ts +64 -0
  3818. package/lib/routes/zaozao/namespace.ts +6 -0
  3819. package/lib/routes/zcmu/jwc/index.ts +63 -0
  3820. package/lib/routes/zcmu/namespace.ts +6 -0
  3821. package/lib/routes/zcmu/yxy/index.ts +64 -0
  3822. package/lib/routes/zcool/discover.ts +301 -0
  3823. package/lib/routes/zcool/locations.ts +6829 -0
  3824. package/lib/routes/zcool/namespace.ts +6 -0
  3825. package/lib/routes/zcool/top.ts +76 -0
  3826. package/lib/routes/zcool/user.ts +84 -0
  3827. package/lib/routes/zcool/utils.ts +14 -0
  3828. package/lib/routes/zhibo8/forum.ts +66 -0
  3829. package/lib/routes/zhibo8/luxiang.ts +52 -0
  3830. package/lib/routes/zhibo8/more.ts +104 -0
  3831. package/lib/routes/zhibo8/namespace.ts +6 -0
  3832. package/lib/routes/zhibo8/post.ts +68 -0
  3833. package/lib/routes/zhihu/activities.ts +155 -0
  3834. package/lib/routes/zhihu/answers.ts +92 -0
  3835. package/lib/routes/zhihu/bookstore/newest.ts +49 -0
  3836. package/lib/routes/zhihu/collection.ts +103 -0
  3837. package/lib/routes/zhihu/daily-section.ts +78 -0
  3838. package/lib/routes/zhihu/daily.ts +106 -0
  3839. package/lib/routes/zhihu/execlib/x-zse-96-v3.ts +125 -0
  3840. package/lib/routes/zhihu/hot.ts +60 -0
  3841. package/lib/routes/zhihu/hotlist.ts +72 -0
  3842. package/lib/routes/zhihu/namespace.ts +6 -0
  3843. package/lib/routes/zhihu/pin/daily.ts +44 -0
  3844. package/lib/routes/zhihu/pin/hotlist.ts +43 -0
  3845. package/lib/routes/zhihu/pin/people.ts +43 -0
  3846. package/lib/routes/zhihu/pin/utils.ts +68 -0
  3847. package/lib/routes/zhihu/posts.ts +87 -0
  3848. package/lib/routes/zhihu/question.ts +78 -0
  3849. package/lib/routes/zhihu/timeline.ts +147 -0
  3850. package/lib/routes/zhihu/topic.ts +117 -0
  3851. package/lib/routes/zhihu/types.ts +104 -0
  3852. package/lib/routes/zhihu/utils.ts +103 -0
  3853. package/lib/routes/zhihu/weekly.ts +56 -0
  3854. package/lib/routes/zhihu/xhu/activities.ts +162 -0
  3855. package/lib/routes/zhihu/xhu/answers.ts +56 -0
  3856. package/lib/routes/zhihu/xhu/auth.ts +31 -0
  3857. package/lib/routes/zhihu/xhu/collection.ts +100 -0
  3858. package/lib/routes/zhihu/xhu/posts.ts +53 -0
  3859. package/lib/routes/zhihu/xhu/question.ts +69 -0
  3860. package/lib/routes/zhihu/xhu/topic.ts +94 -0
  3861. package/lib/routes/zhihu/xhu/zhuanlan.ts +116 -0
  3862. package/lib/routes/zhihu/zhuanlan.ts +124 -0
  3863. package/lib/routes/zhitongcaijing/index.ts +157 -0
  3864. package/lib/routes/zhitongcaijing/namespace.ts +6 -0
  3865. package/lib/routes/zhiy/letter.ts +58 -0
  3866. package/lib/routes/zhiy/namespace.ts +6 -0
  3867. package/lib/routes/zhiy/post.ts +97 -0
  3868. package/lib/routes/zhiy/utils.ts +10 -0
  3869. package/lib/routes/zhonglun/index.ts +135 -0
  3870. package/lib/routes/zhonglun/namespace.ts +8 -0
  3871. package/lib/routes/zhonglun/templates/description.art +7 -0
  3872. package/lib/routes/zhubai/index.ts +56 -0
  3873. package/lib/routes/zhubai/namespace.ts +6 -0
  3874. package/lib/routes/zhubai/templates/description.art +59 -0
  3875. package/lib/routes/zhubai/top20.ts +95 -0
  3876. package/lib/routes/zhujiceping/namespace.ts +6 -0
  3877. package/lib/routes/zhujiceping/rss.ts +48 -0
  3878. package/lib/routes/zhuwang/index.ts +71 -0
  3879. package/lib/routes/zhuwang/namespace.ts +6 -0
  3880. package/lib/routes/zimuxia/index.ts +87 -0
  3881. package/lib/routes/zimuxia/namespace.ts +6 -0
  3882. package/lib/routes/zimuxia/portfolio.ts +79 -0
  3883. package/lib/routes/zjgtjy/index.ts +46 -0
  3884. package/lib/routes/zjgtjy/namespace.ts +6 -0
  3885. package/lib/routes/zjol/namespace.ts +6 -0
  3886. package/lib/routes/zjol/paper.ts +117 -0
  3887. package/lib/routes/zju/career/index.ts +65 -0
  3888. package/lib/routes/zju/cst/custom.ts +71 -0
  3889. package/lib/routes/zju/cst/index.ts +107 -0
  3890. package/lib/routes/zju/grs/index.ts +66 -0
  3891. package/lib/routes/zju/list.ts +82 -0
  3892. package/lib/routes/zju/namespace.ts +6 -0
  3893. package/lib/routes/zju/physics/index.ts +74 -0
  3894. package/lib/routes/zjut/da/index.ts +92 -0
  3895. package/lib/routes/zjut/namespace.ts +6 -0
  3896. package/lib/routes/zjut/news.ts +82 -0
  3897. package/lib/routes/zjuvag/blog.ts +52 -0
  3898. package/lib/routes/zjuvag/namespace.ts +6 -0
  3899. package/lib/routes/zodgame/forum.ts +121 -0
  3900. package/lib/routes/zodgame/namespace.ts +6 -0
  3901. package/lib/routes/zodgame/templates/forum.art +1 -0
  3902. package/lib/routes/zotero/namespace.ts +6 -0
  3903. package/lib/routes/zotero/versions.ts +57 -0
  3904. package/lib/routes/zrblog/namespace.ts +6 -0
  3905. package/lib/routes/zrblog/rss.ts +48 -0
  3906. package/lib/routes/zsxq/group.ts +63 -0
  3907. package/lib/routes/zsxq/namespace.ts +6 -0
  3908. package/lib/routes/zsxq/types.ts +149 -0
  3909. package/lib/routes/zsxq/user.ts +58 -0
  3910. package/lib/routes/zsxq/utils.ts +70 -0
  3911. package/lib/routes/zuel/namespace.ts +6 -0
  3912. package/lib/routes/zuel/notice.ts +78 -0
  3913. package/lib/routes/zuvio/boards.ts +34 -0
  3914. package/lib/routes/zuvio/namespace.ts +6 -0
  3915. package/lib/routes/zuvio/student5.ts +78 -0
  3916. package/lib/routes/zuvio/utils.ts +72 -0
  3917. package/lib/routes/zyshow/index.ts +58 -0
  3918. package/lib/routes/zyshow/namespace.ts +6 -0
  3919. package/lib/routes/zyw/hot.ts +88 -0
  3920. package/lib/routes/zyw/namespace.ts +6 -0
  3921. package/lib/routes-deprecated/10000link/news.js +59 -0
  3922. package/lib/routes-deprecated/12379/index.js +23 -0
  3923. package/lib/routes-deprecated/199it/category.js +10 -0
  3924. package/lib/routes-deprecated/199it/tag.js +10 -0
  3925. package/lib/routes-deprecated/199it/utils.js +44 -0
  3926. package/lib/routes-deprecated/21caijing/channel.js +76 -0
  3927. package/lib/routes-deprecated/60s-science/transcript.js +60 -0
  3928. package/lib/routes-deprecated/755/user.js +71 -0
  3929. package/lib/routes-deprecated/99percentinvisible/transcript.js +46 -0
  3930. package/lib/routes-deprecated/acm/amturingaward.js +68 -0
  3931. package/lib/routes-deprecated/acwifi/index.js +48 -0
  3932. package/lib/routes-deprecated/adquan/index.js +67 -0
  3933. package/lib/routes-deprecated/aiyanxishe/home.js +134 -0
  3934. package/lib/routes-deprecated/amazfitwatchfaces/search.js +7 -0
  3935. package/lib/routes-deprecated/amd/graphicsdrivers.js +114 -0
  3936. package/lib/routes-deprecated/aozora/newbook.js +93 -0
  3937. package/lib/routes-deprecated/appsales/index.js +66 -0
  3938. package/lib/routes-deprecated/archdaily/home.js +47 -0
  3939. package/lib/routes-deprecated/asahi/index.js +90 -0
  3940. package/lib/routes-deprecated/autotrader/index.js +69 -0
  3941. package/lib/routes-deprecated/avgle/videos.js +46 -0
  3942. package/lib/routes-deprecated/axis-studios/work.js +75 -0
  3943. package/lib/routes-deprecated/babykingdom/index.js +64 -0
  3944. package/lib/routes-deprecated/bahamut/creation-index.js +73 -0
  3945. package/lib/routes-deprecated/bahamut/utils.js +65 -0
  3946. package/lib/routes-deprecated/bandisoft/index.js +42 -0
  3947. package/lib/routes-deprecated/banyuetan/index.js +56 -0
  3948. package/lib/routes-deprecated/benedictevans/recent.js +41 -0
  3949. package/lib/routes-deprecated/bibgame/category.js +56 -0
  3950. package/lib/routes-deprecated/bjnews/news.js +44 -0
  3951. package/lib/routes-deprecated/blogs/hedwig.js +42 -0
  3952. package/lib/routes-deprecated/blogs/wangyin.js +50 -0
  3953. package/lib/routes-deprecated/blow-studio/work.js +71 -0
  3954. package/lib/routes-deprecated/blur-studio/index.js +79 -0
  3955. package/lib/routes-deprecated/booth-pm/shop.js +58 -0
  3956. package/lib/routes-deprecated/ccg/index.js +49 -0
  3957. package/lib/routes-deprecated/cell/cell/index.js +113 -0
  3958. package/lib/routes-deprecated/cell/cover.js +106 -0
  3959. package/lib/routes-deprecated/cfan/news.js +49 -0
  3960. package/lib/routes-deprecated/cgtn/most.js +48 -0
  3961. package/lib/routes-deprecated/cgtn/opinions.js +50 -0
  3962. package/lib/routes-deprecated/chaoli/index.js +50 -0
  3963. package/lib/routes-deprecated/checkee/index.js +57 -0
  3964. package/lib/routes-deprecated/chicagotribune/index.js +77 -0
  3965. package/lib/routes-deprecated/chiphell/forum.js +67 -0
  3966. package/lib/routes-deprecated/chocolatey/software.js +55 -0
  3967. package/lib/routes-deprecated/chouti/top.js +28 -0
  3968. package/lib/routes-deprecated/chsi/zszcgd.js +51 -0
  3969. package/lib/routes-deprecated/citavi/index.js +52 -0
  3970. package/lib/routes-deprecated/cnu/discovery.js +59 -0
  3971. package/lib/routes-deprecated/cnu/selected.js +52 -0
  3972. package/lib/routes-deprecated/cnu/utils.js +28 -0
  3973. package/lib/routes-deprecated/cpython/index.js +30 -0
  3974. package/lib/routes-deprecated/csc/notice.js +99 -0
  3975. package/lib/routes-deprecated/daxiaamu/home.js +45 -0
  3976. package/lib/routes-deprecated/ddrk/index.js +32 -0
  3977. package/lib/routes-deprecated/ddrk/list.js +37 -0
  3978. package/lib/routes-deprecated/deepl/blog.js +34 -0
  3979. package/lib/routes-deprecated/dev.to/top.js +40 -0
  3980. package/lib/routes-deprecated/dgtle/index.js +57 -0
  3981. package/lib/routes-deprecated/dgtle/keyword.js +30 -0
  3982. package/lib/routes-deprecated/dgtle/trade.js +42 -0
  3983. package/lib/routes-deprecated/dida365/habit-checkins.js +84 -0
  3984. package/lib/routes-deprecated/digitaling/article.js +71 -0
  3985. package/lib/routes-deprecated/digitaling/index.js +42 -0
  3986. package/lib/routes-deprecated/digitaling/project.js +55 -0
  3987. package/lib/routes-deprecated/discuss/index.js +71 -0
  3988. package/lib/routes-deprecated/disqus/posts.js +53 -0
  3989. package/lib/routes-deprecated/dongmanmanhua/comic.js +45 -0
  3990. package/lib/routes-deprecated/duozhi/index.js +45 -0
  3991. package/lib/routes-deprecated/edrawsoft/mindmap.js +95 -0
  3992. package/lib/routes-deprecated/eeo/index.js +79 -0
  3993. package/lib/routes-deprecated/eleme/open/announce.js +32 -0
  3994. package/lib/routes-deprecated/emi-nitta/home.js +69 -0
  3995. package/lib/routes-deprecated/enclavebooks/category.js +76 -0
  3996. package/lib/routes-deprecated/enclavebooks/collection.js +44 -0
  3997. package/lib/routes-deprecated/enclavebooks/user.js +44 -0
  3998. package/lib/routes-deprecated/engadget/home.js +67 -0
  3999. package/lib/routes-deprecated/etherscan/transactions.js +37 -0
  4000. package/lib/routes-deprecated/everything/changes.js +33 -0
  4001. package/lib/routes-deprecated/fanfou/favorites.js +36 -0
  4002. package/lib/routes-deprecated/fanfou/home-timeline.js +32 -0
  4003. package/lib/routes-deprecated/fanfou/public-timeline.js +34 -0
  4004. package/lib/routes-deprecated/fanfou/user-timeline.js +35 -0
  4005. package/lib/routes-deprecated/fanfou/utils.js +40 -0
  4006. package/lib/routes-deprecated/fashionnetwork/headline.js +56 -0
  4007. package/lib/routes-deprecated/fashionnetwork/news.js +74 -0
  4008. package/lib/routes-deprecated/furaffinity/home.js +72 -0
  4009. package/lib/routes-deprecated/furaffinity/status.js +38 -0
  4010. package/lib/routes-deprecated/furaffinity/user.js +108 -0
  4011. package/lib/routes-deprecated/galaxylab/index.js +35 -0
  4012. package/lib/routes-deprecated/gamersky/ent.js +89 -0
  4013. package/lib/routes-deprecated/gaoqing/utils.js +57 -0
  4014. package/lib/routes-deprecated/gitlab/explore.js +43 -0
  4015. package/lib/routes-deprecated/gitlab/release.js +35 -0
  4016. package/lib/routes-deprecated/gitlab/tag.js +35 -0
  4017. package/lib/routes-deprecated/go.jp/mofa/main.js +94 -0
  4018. package/lib/routes-deprecated/gocomics/index.js +64 -0
  4019. package/lib/routes-deprecated/gov/beijing/eea.js +92 -0
  4020. package/lib/routes-deprecated/gov/beijing/mhc.js +68 -0
  4021. package/lib/routes-deprecated/gov/chongqing/ljxq/zwgk.js +67 -0
  4022. package/lib/routes-deprecated/gov/city/nanjing/get-content.js +69 -0
  4023. package/lib/routes-deprecated/gov/city/nanjing/index.js +32 -0
  4024. package/lib/routes-deprecated/gov/cnca/hydt.js +54 -0
  4025. package/lib/routes-deprecated/gov/cnca/jgdt.js +54 -0
  4026. package/lib/routes-deprecated/gov/cnca/zxtz.js +63 -0
  4027. package/lib/routes-deprecated/gov/cppcc/index.js +48 -0
  4028. package/lib/routes-deprecated/gov/guangdong/edu.js +83 -0
  4029. package/lib/routes-deprecated/gov/guangdong/eea.js +59 -0
  4030. package/lib/routes-deprecated/gov/harbin/kjj.js +39 -0
  4031. package/lib/routes-deprecated/gov/hubei/hbsia.js +101 -0
  4032. package/lib/routes-deprecated/gov/hunan/notice.js +80 -0
  4033. package/lib/routes-deprecated/gov/mohrss/sbjm.js +59 -0
  4034. package/lib/routes-deprecated/gov/mohurd/policy.js +39 -0
  4035. package/lib/routes-deprecated/gov/ngd/index.js +51 -0
  4036. package/lib/routes-deprecated/gov/nppa/channels.js +58 -0
  4037. package/lib/routes-deprecated/gov/nppa/contents.js +38 -0
  4038. package/lib/routes-deprecated/gov/province/jiangsu/get-content.js +77 -0
  4039. package/lib/routes-deprecated/gov/province/jiangsu/index.js +66 -0
  4040. package/lib/routes-deprecated/gov/sapprft/7026.js +98 -0
  4041. package/lib/routes-deprecated/gov/shanghai/sthj.js +26 -0
  4042. package/lib/routes-deprecated/gov/taiwan/mnd.js +63 -0
  4043. package/lib/routes-deprecated/gov/veterans/china.js +76 -0
  4044. package/lib/routes-deprecated/gov/veterans/hebei.js +69 -0
  4045. package/lib/routes-deprecated/gov/wuhan/kjj.js +63 -0
  4046. package/lib/routes-deprecated/gov/wuhan/wehdz.js +63 -0
  4047. package/lib/routes-deprecated/gov/xinwen/tujie.js +75 -0
  4048. package/lib/routes-deprecated/guanggoo/index.js +81 -0
  4049. package/lib/routes-deprecated/guardian/guardian.js +45 -0
  4050. package/lib/routes-deprecated/guat/news.js +68 -0
  4051. package/lib/routes-deprecated/guet/news.js +95 -0
  4052. package/lib/routes-deprecated/gwern/category.js +58 -0
  4053. package/lib/routes-deprecated/hackerone/hacktivity.js +47 -0
  4054. package/lib/routes-deprecated/hackerone/search.js +48 -0
  4055. package/lib/routes-deprecated/haohaozhu/discover.js +42 -0
  4056. package/lib/routes-deprecated/haohaozhu/whole-house.js +75 -0
  4057. package/lib/routes-deprecated/hdx/explore.js +57 -0
  4058. package/lib/routes-deprecated/hentai-cosplays/utils.js +52 -0
  4059. package/lib/routes-deprecated/hexo/fluid.js +49 -0
  4060. package/lib/routes-deprecated/hexo/next.js +49 -0
  4061. package/lib/routes-deprecated/hexo/yilia.js +34 -0
  4062. package/lib/routes-deprecated/hkej/index.js +138 -0
  4063. package/lib/routes-deprecated/huya/live.js +33 -0
  4064. package/lib/routes-deprecated/icourse163/newest.js +77 -0
  4065. package/lib/routes-deprecated/idownloadblog/index.js +51 -0
  4066. package/lib/routes-deprecated/ifanr/index.js +71 -0
  4067. package/lib/routes-deprecated/ifnews/column.js +76 -0
  4068. package/lib/routes-deprecated/im2maker/index.js +60 -0
  4069. package/lib/routes-deprecated/index.js +100 -0
  4070. package/lib/routes-deprecated/iplay/utils.js +57 -0
  4071. package/lib/routes-deprecated/jpmorganchase/research.js +52 -0
  4072. package/lib/routes-deprecated/jx3/news.js +52 -0
  4073. package/lib/routes-deprecated/kaiyan/index.js +53 -0
  4074. package/lib/routes-deprecated/kongfz/shop.js +58 -0
  4075. package/lib/routes-deprecated/kuai/id.js +38 -0
  4076. package/lib/routes-deprecated/kuai/index.js +38 -0
  4077. package/lib/routes-deprecated/laosiji/feed.js +24 -0
  4078. package/lib/routes-deprecated/laosiji/hotshow.js +33 -0
  4079. package/lib/routes-deprecated/lastfm/loved.js +27 -0
  4080. package/lib/routes-deprecated/lastfm/recent.js +27 -0
  4081. package/lib/routes-deprecated/lastfm/top.js +27 -0
  4082. package/lib/routes-deprecated/law/dh.js +39 -0
  4083. package/lib/routes-deprecated/law/gf.js +41 -0
  4084. package/lib/routes-deprecated/law/hq.js +39 -0
  4085. package/lib/routes-deprecated/law/hw.js +39 -0
  4086. package/lib/routes-deprecated/law/jctd.js +41 -0
  4087. package/lib/routes-deprecated/law/jh.js +41 -0
  4088. package/lib/routes-deprecated/law/jtc.js +41 -0
  4089. package/lib/routes-deprecated/law/ts.js +41 -0
  4090. package/lib/routes-deprecated/law/zl.js +40 -0
  4091. package/lib/routes-deprecated/letterboxd/utils.js +140 -0
  4092. package/lib/routes-deprecated/lifetimes/index.js +99 -0
  4093. package/lib/routes-deprecated/liyuan-forums/threads.js +76 -0
  4094. package/lib/routes-deprecated/lol/newsindex.js +87 -0
  4095. package/lib/routes-deprecated/lolapp/article.js +53 -0
  4096. package/lib/routes-deprecated/lwn/alerts.js +57 -0
  4097. package/lib/routes-deprecated/mafengwo/note.js +53 -0
  4098. package/lib/routes-deprecated/magireco/announcements.js +27 -0
  4099. package/lib/routes-deprecated/magireco/event-banner.js +35 -0
  4100. package/lib/routes-deprecated/maoyan/hot-complete.js +83 -0
  4101. package/lib/routes-deprecated/mcdonalds/news.js +53 -0
  4102. package/lib/routes-deprecated/mediadigest/category.js +130 -0
  4103. package/lib/routes-deprecated/meihua/article.js +54 -0
  4104. package/lib/routes-deprecated/meihua/shots.js +58 -0
  4105. package/lib/routes-deprecated/meituan/open/announce.js +45 -0
  4106. package/lib/routes-deprecated/method-studios/index.js +60 -0
  4107. package/lib/routes-deprecated/mhw/news.js +47 -0
  4108. package/lib/routes-deprecated/mhw/update.js +65 -0
  4109. package/lib/routes-deprecated/micmicidol/article.js +28 -0
  4110. package/lib/routes-deprecated/microsoft-store/updates.js +30 -0
  4111. package/lib/routes-deprecated/mihoyo/bh2.js +43 -0
  4112. package/lib/routes-deprecated/mihoyo/bh3.js +60 -0
  4113. package/lib/routes-deprecated/missevan/drama.js +40 -0
  4114. package/lib/routes-deprecated/missevan/latest.js +47 -0
  4115. package/lib/routes-deprecated/moxingfans/index.js +50 -0
  4116. package/lib/routes-deprecated/muchong/journal.js +52 -0
  4117. package/lib/routes-deprecated/netflix/newsroom.js +82 -0
  4118. package/lib/routes-deprecated/nobelprize/index.js +79 -0
  4119. package/lib/routes-deprecated/noi/index.js +40 -0
  4120. package/lib/routes-deprecated/noi/province-news.js +40 -0
  4121. package/lib/routes-deprecated/noi/rg-news.js +47 -0
  4122. package/lib/routes-deprecated/noi/winners-list.js +41 -0
  4123. package/lib/routes-deprecated/novel/biquge.js +66 -0
  4124. package/lib/routes-deprecated/novel/biqugeinfo.js +66 -0
  4125. package/lib/routes-deprecated/novel/uukanshu.js +39 -0
  4126. package/lib/routes-deprecated/one/index.js +48 -0
  4127. package/lib/routes-deprecated/owspace/read.js +141 -0
  4128. package/lib/routes-deprecated/paidai/utils.js +26 -0
  4129. package/lib/routes-deprecated/patchwork.kernel.org/comments.js +33 -0
  4130. package/lib/routes-deprecated/piapro/public.js +54 -0
  4131. package/lib/routes-deprecated/piapro/user.js +47 -0
  4132. package/lib/routes-deprecated/piapro/utils.js +45 -0
  4133. package/lib/routes-deprecated/pmcaff/feed.js +51 -0
  4134. package/lib/routes-deprecated/pmcaff/list.js +67 -0
  4135. package/lib/routes-deprecated/potplayer/update.js +42 -0
  4136. package/lib/routes-deprecated/project-zero-issues/index.js +48 -0
  4137. package/lib/routes-deprecated/psnine/game.js +32 -0
  4138. package/lib/routes-deprecated/psnine/index.js +33 -0
  4139. package/lib/routes-deprecated/psnine/shuzhe.js +33 -0
  4140. package/lib/routes-deprecated/psnine/trade.js +39 -0
  4141. package/lib/routes-deprecated/ptpress/book.js +34 -0
  4142. package/lib/routes-deprecated/qstheory/index.js +122 -0
  4143. package/lib/routes-deprecated/quantamagazine/archive.js +81 -0
  4144. package/lib/routes-deprecated/qutoutiao/category.js +42 -0
  4145. package/lib/routes-deprecated/react/react-native-weekly.js +35 -0
  4146. package/lib/routes-deprecated/remote-work/index.js +88 -0
  4147. package/lib/routes-deprecated/rescuetime/release-notes.js +37 -0
  4148. package/lib/routes-deprecated/rthk-news/index.js +60 -0
  4149. package/lib/routes-deprecated/scboy/thread.js +50 -0
  4150. package/lib/routes-deprecated/sexinsex/index.js +101 -0
  4151. package/lib/routes-deprecated/shanbay/checkin.js +48 -0
  4152. package/lib/routes-deprecated/shanbay/footprints.js +42 -0
  4153. package/lib/routes-deprecated/simonsfoundation/articles.js +48 -0
  4154. package/lib/routes-deprecated/simpread/changelog.js +79 -0
  4155. package/lib/routes-deprecated/sketch/updates.js +40 -0
  4156. package/lib/routes-deprecated/socialbeta/home.js +42 -0
  4157. package/lib/routes-deprecated/socialclub/events.js +28 -0
  4158. package/lib/routes-deprecated/soul/hot.js +86 -0
  4159. package/lib/routes-deprecated/soundcloud/utils.js +47 -0
  4160. package/lib/routes-deprecated/technologyreview/topic.js +35 -0
  4161. package/lib/routes-deprecated/tencent/tucaoqq/post.js +39 -0
  4162. package/lib/routes-deprecated/tencent/wechat/miniprogram/devtools.js +37 -0
  4163. package/lib/routes-deprecated/tencent/wechat/miniprogram/framework.js +35 -0
  4164. package/lib/routes-deprecated/tencent/wechat/miniprogram/wxcloud.js +47 -0
  4165. package/lib/routes-deprecated/tianyancha/hot.js +48 -0
  4166. package/lib/routes-deprecated/tingdiantz/95598.js +41 -0
  4167. package/lib/routes-deprecated/titsguru/model.js +16 -0
  4168. package/lib/routes-deprecated/titsguru/util.js +68 -0
  4169. package/lib/routes-deprecated/totalcommander/whatsnew.js +32 -0
  4170. package/lib/routes-deprecated/touhougarakuta/index.js +68 -0
  4171. package/lib/routes-deprecated/touhougarakuta/json2html.js +113 -0
  4172. package/lib/routes-deprecated/tprtc/cqzr.js +80 -0
  4173. package/lib/routes-deprecated/tprtc/news.js +71 -0
  4174. package/lib/routes-deprecated/tprtc/qyzc.js +84 -0
  4175. package/lib/routes-deprecated/ui-cn/article.js +44 -0
  4176. package/lib/routes-deprecated/unit-image/films.js +141 -0
  4177. package/lib/routes-deprecated/universities/ahau/cs_news/utils.js +50 -0
  4178. package/lib/routes-deprecated/universities/ahau/jwc/utils.js +50 -0
  4179. package/lib/routes-deprecated/universities/ahau/main/utils.js +50 -0
  4180. package/lib/routes-deprecated/universities/ahmu/news.js +51 -0
  4181. package/lib/routes-deprecated/universities/ahut/cstzgg.js +45 -0
  4182. package/lib/routes-deprecated/universities/ahut/jwc.js +43 -0
  4183. package/lib/routes-deprecated/universities/ahut/news.js +44 -0
  4184. package/lib/routes-deprecated/universities/bupt/funbox.js +40 -0
  4185. package/lib/routes-deprecated/universities/bupt/grs.js +64 -0
  4186. package/lib/routes-deprecated/universities/bupt/news.js +34 -0
  4187. package/lib/routes-deprecated/universities/bupt/portal.js +34 -0
  4188. package/lib/routes-deprecated/universities/bupt/utils.js +67 -0
  4189. package/lib/routes-deprecated/universities/bupt/yz.js +154 -0
  4190. package/lib/routes-deprecated/universities/bwu/utils.js +50 -0
  4191. package/lib/routes-deprecated/universities/cpu/home.js +52 -0
  4192. package/lib/routes-deprecated/universities/cpu/jwc.js +52 -0
  4193. package/lib/routes-deprecated/universities/cpu/yjsy.js +52 -0
  4194. package/lib/routes-deprecated/universities/cqu/jwc/announcement.js +53 -0
  4195. package/lib/routes-deprecated/universities/cqu/net/info.js +60 -0
  4196. package/lib/routes-deprecated/universities/cqu/news/tz.js +71 -0
  4197. package/lib/routes-deprecated/universities/cqu/news/utils.js +48 -0
  4198. package/lib/routes-deprecated/universities/cqu/sci/info.js +62 -0
  4199. package/lib/routes-deprecated/universities/cqu/youth/info.js +65 -0
  4200. package/lib/routes-deprecated/universities/cug/gcxy/index.js +114 -0
  4201. package/lib/routes-deprecated/universities/cug/news.js +63 -0
  4202. package/lib/routes-deprecated/universities/cuit/cxxww.js +63 -0
  4203. package/lib/routes-deprecated/universities/dlmu/news.js +42 -0
  4204. package/lib/routes-deprecated/universities/dlu/jiaowu/news.js +36 -0
  4205. package/lib/routes-deprecated/universities/fudan/cce.js +52 -0
  4206. package/lib/routes-deprecated/universities/gdou/jwc/utils.js +72 -0
  4207. package/lib/routes-deprecated/universities/gzmtu/jwc/utils.js +86 -0
  4208. package/lib/routes-deprecated/universities/gzmtu/tsg/utils.js +86 -0
  4209. package/lib/routes-deprecated/universities/hhu/lib-news.js +57 -0
  4210. package/lib/routes-deprecated/universities/hhu/lib-newsc.js +75 -0
  4211. package/lib/routes-deprecated/universities/hnust/graduate/index.js +40 -0
  4212. package/lib/routes-deprecated/universities/jnu/yw/index.js +81 -0
  4213. package/lib/routes-deprecated/universities/kmust/job/careers.js +33 -0
  4214. package/lib/routes-deprecated/universities/kmust/job/jobfairs.js +32 -0
  4215. package/lib/routes-deprecated/universities/kmust/jwc.js +44 -0
  4216. package/lib/routes-deprecated/universities/lit/jwc.js +50 -0
  4217. package/lib/routes-deprecated/universities/lit/tw.js +56 -0
  4218. package/lib/routes-deprecated/universities/lit/xwzx.js +73 -0
  4219. package/lib/routes-deprecated/universities/lntu/jwnews.js +46 -0
  4220. package/lib/routes-deprecated/universities/lyu/news/utils.js +42 -0
  4221. package/lib/routes-deprecated/universities/mit/graduateadmissions.js +63 -0
  4222. package/lib/routes-deprecated/universities/nciae/news.js +58 -0
  4223. package/lib/routes-deprecated/universities/nciae/tzgg.js +58 -0
  4224. package/lib/routes-deprecated/universities/nciae/xsxx.js +58 -0
  4225. package/lib/routes-deprecated/universities/njfu/jwc.js +47 -0
  4226. package/lib/routes-deprecated/universities/njtech/jwc.js +54 -0
  4227. package/lib/routes-deprecated/universities/nuc/index.js +91 -0
  4228. package/lib/routes-deprecated/universities/nudt/yjszs.js +60 -0
  4229. package/lib/routes-deprecated/universities/shanghaitech/activity.js +34 -0
  4230. package/lib/routes-deprecated/universities/shanghaitech/sist/activity.js +51 -0
  4231. package/lib/routes-deprecated/universities/shou/www.js +64 -0
  4232. package/lib/routes-deprecated/universities/slu/utils.js +74 -0
  4233. package/lib/routes-deprecated/universities/swufe/seie/index.js +71 -0
  4234. package/lib/routes-deprecated/universities/swust/cs.js +77 -0
  4235. package/lib/routes-deprecated/universities/swust/helper.js +47 -0
  4236. package/lib/routes-deprecated/universities/swust/jwc-news.js +45 -0
  4237. package/lib/routes-deprecated/universities/swust/jwc-notice.js +51 -0
  4238. package/lib/routes-deprecated/universities/thu/index.js +102 -0
  4239. package/lib/routes-deprecated/universities/usst/jwc.js +62 -0
  4240. package/lib/routes-deprecated/universities/utdallas/isso.js +54 -0
  4241. package/lib/routes-deprecated/universities/ynnu/edu/base64.js +354 -0
  4242. package/lib/routes-deprecated/universities/ynnu/edu/news.js +109 -0
  4243. package/lib/routes-deprecated/universities/ynu/utils.js +64 -0
  4244. package/lib/routes-deprecated/universities/yzu/home.js +83 -0
  4245. package/lib/routes-deprecated/universities/yzu/yjszs.js +81 -0
  4246. package/lib/routes-deprecated/universities/zjgsu/tzgg/utils.js +54 -0
  4247. package/lib/routes-deprecated/universities/zjut/design.js +59 -0
  4248. package/lib/routes-deprecated/universities/zjut/index.js +59 -0
  4249. package/lib/routes-deprecated/universities/zucc/cssearch/index.js +47 -0
  4250. package/lib/routes-deprecated/universities/zucc/news/index.js +66 -0
  4251. package/lib/routes-deprecated/universities/zzu/news.js +80 -0
  4252. package/lib/routes-deprecated/universities/zzu/soft/news.js +68 -0
  4253. package/lib/routes-deprecated/us/supremecourt/argument-audio.js +61 -0
  4254. package/lib/routes-deprecated/uwants/index.js +70 -0
  4255. package/lib/routes-deprecated/voa/index.js +54 -0
  4256. package/lib/routes-deprecated/vol/lastupdate.js +51 -0
  4257. package/lib/routes-deprecated/vulture/utils.js +113 -0
  4258. package/lib/routes-deprecated/watchface/update.js +42 -0
  4259. package/lib/routes-deprecated/webtoons/comic.js +54 -0
  4260. package/lib/routes-deprecated/webtoons/naver.js +50 -0
  4261. package/lib/routes-deprecated/weexcn/index.js +69 -0
  4262. package/lib/routes-deprecated/wegene/column.js +25 -0
  4263. package/lib/routes-deprecated/weidian/goods.js +37 -0
  4264. package/lib/routes-deprecated/whb/zhuzhan.js +76 -0
  4265. package/lib/routes-deprecated/wto/dispute-settlement.js +37 -0
  4266. package/lib/routes-deprecated/xiachufang/utils.js +95 -0
  4267. package/lib/routes-deprecated/xuangubao/subject.js +42 -0
  4268. package/lib/routes-deprecated/xuetangx/course-list.js +54 -0
  4269. package/lib/routes-deprecated/xyplorer/whatsnew.js +32 -0
  4270. package/lib/routes-deprecated/yinxiang/card.js +41 -0
  4271. package/lib/routes-deprecated/yinxiang/category.js +42 -0
  4272. package/lib/routes-deprecated/yinxiang/note.js +37 -0
  4273. package/lib/routes-deprecated/yinxiang/personal.js +43 -0
  4274. package/lib/routes-deprecated/yinxiang/tag.js +42 -0
  4275. package/lib/routes-deprecated/youdao/latest.js +47 -0
  4276. package/lib/routes-deprecated/youdao/xueba.js +64 -0
  4277. package/lib/routes-deprecated/yuzu-emu/entry.js +52 -0
  4278. package/lib/routes-deprecated/zhishifenzi/depth.js +54 -0
  4279. package/lib/routes-deprecated/zhishifenzi/innovation.js +61 -0
  4280. package/lib/routes-deprecated/zhishifenzi/news.js +66 -0
  4281. package/lib/routes-deprecated/zhuixinfan/list.js +51 -0
  4282. package/lib/routes-deprecated/zimuku/index.js +41 -0
  4283. package/lib/routes-deprecated/zreading/home.js +50 -0
  4284. package/lib/routes-deprecated/zsnews/index.js +31 -0
  4285. package/lib/routes.test.ts +78 -0
  4286. package/lib/setup.test.ts +249 -0
  4287. package/lib/types.ts +263 -0
  4288. package/lib/utils/cache/base.ts +17 -0
  4289. package/lib/utils/cache/index.ts +91 -0
  4290. package/lib/utils/cache/memory.ts +42 -0
  4291. package/lib/utils/cache/redis.ts +75 -0
  4292. package/lib/utils/cache.test.ts +91 -0
  4293. package/lib/utils/common-config.test.ts +78 -0
  4294. package/lib/utils/common-config.ts +75 -0
  4295. package/lib/utils/common-utils.test.ts +41 -0
  4296. package/lib/utils/common-utils.ts +45 -0
  4297. package/lib/utils/debug-info.ts +24 -0
  4298. package/lib/utils/git-hash.ts +14 -0
  4299. package/lib/utils/got-deprecated.ts +79 -0
  4300. package/lib/utils/got.test.ts +77 -0
  4301. package/lib/utils/got.ts +86 -0
  4302. package/lib/utils/helpers.test.ts +8 -0
  4303. package/lib/utils/helpers.ts +32 -0
  4304. package/lib/utils/logger.ts +46 -0
  4305. package/lib/utils/md5.test.ts +8 -0
  4306. package/lib/utils/md5.ts +5 -0
  4307. package/lib/utils/ofetch.test.ts +51 -0
  4308. package/lib/utils/ofetch.ts +17 -0
  4309. package/lib/utils/parse-date.test.ts +163 -0
  4310. package/lib/utils/parse-date.ts +207 -0
  4311. package/lib/utils/proxy/index.ts +56 -0
  4312. package/lib/utils/proxy/pac-proxy.test.ts +80 -0
  4313. package/lib/utils/proxy/pac-proxy.ts +72 -0
  4314. package/lib/utils/proxy/unify-proxy.test.ts +141 -0
  4315. package/lib/utils/proxy/unify-proxy.ts +113 -0
  4316. package/lib/utils/puppeteer-utils.test.ts +101 -0
  4317. package/lib/utils/puppeteer-utils.ts +58 -0
  4318. package/lib/utils/puppeteer.test.ts +144 -0
  4319. package/lib/utils/puppeteer.ts +64 -0
  4320. package/lib/utils/rand-user-agent.test.ts +37 -0
  4321. package/lib/utils/rand-user-agent.ts +30 -0
  4322. package/lib/utils/readable-social.ts +42 -0
  4323. package/lib/utils/render.ts +5 -0
  4324. package/lib/utils/request-rewriter/fetch.ts +62 -0
  4325. package/lib/utils/request-rewriter/get.ts +77 -0
  4326. package/lib/utils/request-rewriter/index.ts +19 -0
  4327. package/lib/utils/request-rewriter.test.ts +151 -0
  4328. package/lib/utils/rss-parser.test.ts +9 -0
  4329. package/lib/utils/rss-parser.ts +13 -0
  4330. package/lib/utils/timezone.test.ts +9 -0
  4331. package/lib/utils/timezone.ts +14 -0
  4332. package/lib/utils/valid-host.test.ts +21 -0
  4333. package/lib/utils/valid-host.ts +14 -0
  4334. package/lib/utils/wait.test.ts +14 -0
  4335. package/lib/utils/wait.ts +7 -0
  4336. package/lib/utils/wechat-mp.test.ts +503 -0
  4337. package/lib/utils/wechat-mp.ts +645 -0
  4338. package/lib/views/atom.tsx +49 -0
  4339. package/lib/views/error.tsx +144 -0
  4340. package/lib/views/index.tsx +206 -0
  4341. package/lib/views/json.ts +48 -0
  4342. package/lib/views/layout.tsx +50 -0
  4343. package/lib/views/rss.tsx +55 -0
  4344. package/lib/views/rss3.ts +62 -0
  4345. package/package.json +152 -158
  4346. package/lib/api_router.js +0 -26
  4347. package/lib/app.js +0 -92
  4348. package/lib/config.js +0 -310
  4349. package/lib/core_router.js +0 -17
  4350. package/lib/errors/RequestInProgress.js +0 -3
  4351. package/lib/errors/index.js +0 -3
  4352. package/lib/index.js +0 -35
  4353. package/lib/maintainer.js +0 -52
  4354. package/lib/middleware/access-control.js +0 -55
  4355. package/lib/middleware/anti-hotlink.js +0 -148
  4356. package/lib/middleware/api-response-handler.js +0 -147
  4357. package/lib/middleware/api-template.js +0 -9
  4358. package/lib/middleware/cache/index.js +0 -138
  4359. package/lib/middleware/cache/memory.js +0 -36
  4360. package/lib/middleware/cache/redis.js +0 -68
  4361. package/lib/middleware/debug.js +0 -25
  4362. package/lib/middleware/header.js +0 -45
  4363. package/lib/middleware/load-on-demand.js +0 -36
  4364. package/lib/middleware/onerror.js +0 -113
  4365. package/lib/middleware/parameter.js +0 -323
  4366. package/lib/middleware/template.js +0 -113
  4367. package/lib/middleware/utf8.js +0 -6
  4368. package/lib/pkg.js +0 -39
  4369. package/lib/protected_router.js +0 -11
  4370. package/lib/radar-rules.js +0 -1290
  4371. package/lib/radar.js +0 -82
  4372. package/lib/routes/005tv/zx.js +0 -24
  4373. package/lib/routes/10000link/news.js +0 -59
  4374. package/lib/routes/12379/index.js +0 -23
  4375. package/lib/routes/141jav/141jav.js +0 -37
  4376. package/lib/routes/141ppv/141ppv.js +0 -37
  4377. package/lib/routes/199it/category.js +0 -10
  4378. package/lib/routes/199it/tag.js +0 -10
  4379. package/lib/routes/199it/utils.js +0 -44
  4380. package/lib/routes/1draw/index.js +0 -44
  4381. package/lib/routes/1x/index.js +0 -69
  4382. package/lib/routes/21caijing/channel.js +0 -75
  4383. package/lib/routes/3dm/game.js +0 -42
  4384. package/lib/routes/3dm/news_center.js +0 -54
  4385. package/lib/routes/3ycy/home.js +0 -58
  4386. package/lib/routes/4gamers/category.js +0 -20
  4387. package/lib/routes/4gamers/tag.js +0 -20
  4388. package/lib/routes/4gamers/topic.js +0 -20
  4389. package/lib/routes/51voa/channel.js +0 -158
  4390. package/lib/routes/60s-science/transcript.js +0 -60
  4391. package/lib/routes/755/user.js +0 -71
  4392. package/lib/routes/8btc/author.js +0 -49
  4393. package/lib/routes/8btc/news/flash.js +0 -41
  4394. package/lib/routes/91ddcc/stage.js +0 -48
  4395. package/lib/routes/91ddcc/user.js +0 -45
  4396. package/lib/routes/93/index.js +0 -50
  4397. package/lib/routes/99percentinvisible/transcript.js +0 -46
  4398. package/lib/routes/a9vg/a9vg.js +0 -36
  4399. package/lib/routes/abc/documentId.js +0 -7272
  4400. package/lib/routes/abc/id.js +0 -7272
  4401. package/lib/routes/abc/index.js +0 -74
  4402. package/lib/routes/acm/amturingaward.js +0 -68
  4403. package/lib/routes/acwifi/index.js +0 -48
  4404. package/lib/routes/adquan/index.js +0 -72
  4405. package/lib/routes/aeon/category.js +0 -70
  4406. package/lib/routes/afdian/dynamic.js +0 -36
  4407. package/lib/routes/afdian/explore.js +0 -57
  4408. package/lib/routes/aisixiang/column.js +0 -37
  4409. package/lib/routes/aisixiang/ranking.js +0 -37
  4410. package/lib/routes/aisixiang/thinktank.js +0 -40
  4411. package/lib/routes/aisixiang/utils.js +0 -39
  4412. package/lib/routes/aiyanxishe/home.js +0 -130
  4413. package/lib/routes/aliyun-kernel/index.js +0 -60
  4414. package/lib/routes/allnow/column.js +0 -7
  4415. package/lib/routes/allnow/index.js +0 -5
  4416. package/lib/routes/allnow/tag.js +0 -7
  4417. package/lib/routes/allnow/user.js +0 -7
  4418. package/lib/routes/allnow/utils.js +0 -67
  4419. package/lib/routes/alter-cn/news.js +0 -44
  4420. package/lib/routes/amazfitwatchfaces/search.js +0 -7
  4421. package/lib/routes/amazon/ku.js +0 -57
  4422. package/lib/routes/amd/graphicsdrivers.js +0 -114
  4423. package/lib/routes/andyt/index.js +0 -36
  4424. package/lib/routes/anigamer/anime.js +0 -14
  4425. package/lib/routes/anigamer/new_anime.js +0 -22
  4426. package/lib/routes/animen/news.js +0 -84
  4427. package/lib/routes/anitama/channel.js +0 -64
  4428. package/lib/routes/anki/changes.js +0 -39
  4429. package/lib/routes/aom/journal.js +0 -107
  4430. package/lib/routes/aozora/newbook.js +0 -93
  4431. package/lib/routes/appsales/index.js +0 -66
  4432. package/lib/routes/aptonic/action.js +0 -38
  4433. package/lib/routes/archdaily/home.js +0 -47
  4434. package/lib/routes/asahi/area.js +0 -57
  4435. package/lib/routes/asahi/index.js +0 -94
  4436. package/lib/routes/atfd/index.js +0 -46
  4437. package/lib/routes/autotrader/index.js +0 -69
  4438. package/lib/routes/avgle/videos.js +0 -46
  4439. package/lib/routes/axis-studios/work.js +0 -82
  4440. package/lib/routes/babehub/index.js +0 -30
  4441. package/lib/routes/babehub/search.js +0 -15
  4442. package/lib/routes/babehub/utils.js +0 -71
  4443. package/lib/routes/babykingdom/index.js +0 -46
  4444. package/lib/routes/bahamut/creation_index.js +0 -73
  4445. package/lib/routes/bahamut/utils.js +0 -65
  4446. package/lib/routes/baidu/daily.js +0 -55
  4447. package/lib/routes/baidu/doodles.js +0 -27
  4448. package/lib/routes/bandisoft/index.js +0 -42
  4449. package/lib/routes/banyuetan/index.js +0 -56
  4450. package/lib/routes/bbc/index.js +0 -92
  4451. package/lib/routes/bbc/utils.js +0 -37
  4452. package/lib/routes/bell-labs/events-news.js +0 -70
  4453. package/lib/routes/benedictevans/recent.js +0 -41
  4454. package/lib/routes/bibgame/category.js +0 -56
  4455. package/lib/routes/bihu/activaties.js +0 -76
  4456. package/lib/routes/bing/index.js +0 -26
  4457. package/lib/routes/biobio/index.js +0 -40
  4458. package/lib/routes/biobio/others.js +0 -45
  4459. package/lib/routes/bioon/latest.js +0 -51
  4460. package/lib/routes/bishijie/kuaixun.js +0 -21
  4461. package/lib/routes/bjnews/epaper.js +0 -80
  4462. package/lib/routes/bjnews/news.js +0 -43
  4463. package/lib/routes/blizzard/news.js +0 -51
  4464. package/lib/routes/blogread/newest.js +0 -30
  4465. package/lib/routes/blogs/diygod/animal-crossing.js +0 -39
  4466. package/lib/routes/blogs/diygod/gk.js +0 -33
  4467. package/lib/routes/blogs/hedwig.js +0 -42
  4468. package/lib/routes/blogs/jianning.js +0 -45
  4469. package/lib/routes/blogs/paulgraham.js +0 -46
  4470. package/lib/routes/blogs/wangyin.js +0 -50
  4471. package/lib/routes/blogs/wordpress.js +0 -50
  4472. package/lib/routes/blow-studio/work.js +0 -71
  4473. package/lib/routes/blur-studio/index.js +0 -81
  4474. package/lib/routes/boc/whpj.js +0 -99
  4475. package/lib/routes/bof/home.js +0 -42
  4476. package/lib/routes/bookscomtw/newbooks.js +0 -37
  4477. package/lib/routes/booksource/index.js +0 -22
  4478. package/lib/routes/booth-pm/shop.js +0 -60
  4479. package/lib/routes/boston/index.js +0 -73
  4480. package/lib/routes/buaq/index.js +0 -31
  4481. package/lib/routes/caus/index.js +0 -87
  4482. package/lib/routes/cbc/topics.js +0 -71
  4483. package/lib/routes/ccg/index.js +0 -49
  4484. package/lib/routes/cell/cell/index.js +0 -113
  4485. package/lib/routes/cell/cover.js +0 -106
  4486. package/lib/routes/cfan/news.js +0 -49
  4487. package/lib/routes/cfd/gbp_div.js +0 -28
  4488. package/lib/routes/cgtn/most.js +0 -48
  4489. package/lib/routes/cgtn/opinions.js +0 -50
  4490. package/lib/routes/cgtn/pick.js +0 -45
  4491. package/lib/routes/cgtn/top.js +0 -45
  4492. package/lib/routes/changku/index.js +0 -39
  4493. package/lib/routes/chaoli/index.js +0 -50
  4494. package/lib/routes/checkee/index.js +0 -56
  4495. package/lib/routes/chicagotribune/index.js +0 -77
  4496. package/lib/routes/chinadialogue/column.js +0 -58
  4497. package/lib/routes/chinadialogue/topics.js +0 -55
  4498. package/lib/routes/chinalaborwatch/reports.js +0 -53
  4499. package/lib/routes/chinatimes/index.js +0 -115
  4500. package/lib/routes/chiphell/forum.js +0 -67
  4501. package/lib/routes/chocolatey/software.js +0 -55
  4502. package/lib/routes/chouti/top.js +0 -28
  4503. package/lib/routes/chrome/extensions.js +0 -30
  4504. package/lib/routes/chsi/zszcgd.js +0 -51
  4505. package/lib/routes/chuiniu/column.js +0 -89
  4506. package/lib/routes/chuiniu/column_list.js +0 -36
  4507. package/lib/routes/citavi/index.js +0 -52
  4508. package/lib/routes/ciweimao/chapter.js +0 -34
  4509. package/lib/routes/cktest/app.js +0 -34
  4510. package/lib/routes/cktest/policy.js +0 -43
  4511. package/lib/routes/cmes/news.js +0 -64
  4512. package/lib/routes/cna/index.js +0 -54
  4513. package/lib/routes/cneb/guoneinews.js +0 -27
  4514. package/lib/routes/cneb/yjxx.js +0 -36
  4515. package/lib/routes/cnu/discovery.js +0 -59
  4516. package/lib/routes/cnu/selected.js +0 -52
  4517. package/lib/routes/cnu/utils.js +0 -28
  4518. package/lib/routes/codeceo/category.js +0 -51
  4519. package/lib/routes/codeceo/home.js +0 -49
  4520. package/lib/routes/commonapp/blog.js +0 -42
  4521. package/lib/routes/coronavirus/caixin.js +0 -34
  4522. package/lib/routes/coronavirus/dxy-data.js +0 -86
  4523. package/lib/routes/coronavirus/dxy.js +0 -27
  4524. package/lib/routes/coronavirus/mogov-2019ncov.js +0 -49
  4525. package/lib/routes/coronavirus/nhc.js +0 -30
  4526. package/lib/routes/coronavirus/scmp.js +0 -32
  4527. package/lib/routes/coronavirus/sg-moh.js +0 -40
  4528. package/lib/routes/coronavirus/yahoo-japan.js +0 -77
  4529. package/lib/routes/cpta/notice.js +0 -41
  4530. package/lib/routes/cpython/index.js +0 -32
  4531. package/lib/routes/craigslist/search.js +0 -51
  4532. package/lib/routes/cria/news.js +0 -57
  4533. package/lib/routes/cs/news.js +0 -69
  4534. package/lib/routes/csc/notice.js +0 -99
  4535. package/lib/routes/curiouscat/user.js +0 -40
  4536. package/lib/routes/curseforge/files.js +0 -36
  4537. package/lib/routes/curseforge/generalfiles.js +0 -42
  4538. package/lib/routes/cve/search.js +0 -26
  4539. package/lib/routes/cyzone/author.js +0 -55
  4540. package/lib/routes/cyzone/label.js +0 -53
  4541. package/lib/routes/d1bz/novel.js +0 -72
  4542. package/lib/routes/d2/daily.js +0 -49
  4543. package/lib/routes/damai/activity.js +0 -28
  4544. package/lib/routes/daxiaamu/home.js +0 -45
  4545. package/lib/routes/dayone/blog.js +0 -56
  4546. package/lib/routes/ddrk/index.js +0 -32
  4547. package/lib/routes/ddrk/list.js +0 -37
  4548. package/lib/routes/deepl/blog.js +0 -34
  4549. package/lib/routes/deeplearningai/thebatch.js +0 -29
  4550. package/lib/routes/dengekionline/new.js +0 -133
  4551. package/lib/routes/dev.to/top.js +0 -40
  4552. package/lib/routes/dgtle/index.js +0 -57
  4553. package/lib/routes/dgtle/keyword.js +0 -29
  4554. package/lib/routes/dgtle/trade.js +0 -42
  4555. package/lib/routes/dhl/shipment-tracking.js +0 -56
  4556. package/lib/routes/dianping/user.js +0 -98
  4557. package/lib/routes/dida365/habit-checkins.js +0 -83
  4558. package/lib/routes/digic-pictures/index.js +0 -72
  4559. package/lib/routes/digitaling/article.js +0 -71
  4560. package/lib/routes/digitaling/index.js +0 -42
  4561. package/lib/routes/digitaling/project.js +0 -55
  4562. package/lib/routes/dilbert/strip.js +0 -54
  4563. package/lib/routes/dilidili/fanju.js +0 -78
  4564. package/lib/routes/discuss/index.js +0 -71
  4565. package/lib/routes/discuz/discuz.js +0 -148
  4566. package/lib/routes/disqus/posts.js +0 -53
  4567. package/lib/routes/dockone/weekly.js +0 -60
  4568. package/lib/routes/donews/index.js +0 -59
  4569. package/lib/routes/donews/utils.js +0 -19
  4570. package/lib/routes/dongmanmanhua/comic.js +0 -45
  4571. package/lib/routes/dribbble/keyword.js +0 -10
  4572. package/lib/routes/dribbble/popular.js +0 -10
  4573. package/lib/routes/dribbble/user.js +0 -10
  4574. package/lib/routes/dribbble/utils.js +0 -94
  4575. package/lib/routes/dsb/area.js +0 -33
  4576. package/lib/routes/duozhi/index.js +0 -48
  4577. package/lib/routes/duozhuayu/search.js +0 -76
  4578. package/lib/routes/dxy/vaccine.js +0 -109
  4579. package/lib/routes/dysfz/index.js +0 -20
  4580. package/lib/routes/edge/addon.js +0 -32
  4581. package/lib/routes/edrawsoft/mindmap.js +0 -99
  4582. package/lib/routes/eeo/index.js +0 -83
  4583. package/lib/routes/egsea/flash.js +0 -40
  4584. package/lib/routes/eleme/open/announce.js +0 -35
  4585. package/lib/routes/eleme/open-be/announce.js +0 -21
  4586. package/lib/routes/elife/index.js +0 -67
  4587. package/lib/routes/elitebabes/index.js +0 -30
  4588. package/lib/routes/elitebabes/search.js +0 -15
  4589. package/lib/routes/elitebabes/utils.js +0 -88
  4590. package/lib/routes/elitebabes/videos.js +0 -26
  4591. package/lib/routes/emi-nitta/home.js +0 -74
  4592. package/lib/routes/enclavebooks/category.js +0 -77
  4593. package/lib/routes/enclavebooks/collection.js +0 -44
  4594. package/lib/routes/enclavebooks/user.js +0 -44
  4595. package/lib/routes/engadget/home.js +0 -67
  4596. package/lib/routes/esquirehk/tag.js +0 -71
  4597. package/lib/routes/etherscan/transactions.js +0 -37
  4598. package/lib/routes/everything/changes.js +0 -33
  4599. package/lib/routes/facebook/page.js +0 -128
  4600. package/lib/routes/fanbox/conv.js +0 -227
  4601. package/lib/routes/fanbox/header.js +0 -13
  4602. package/lib/routes/fanbox/main.js +0 -45
  4603. package/lib/routes/fanfou/favorites.js +0 -36
  4604. package/lib/routes/fanfou/home_timeline.js +0 -32
  4605. package/lib/routes/fanfou/public_timeline.js +0 -34
  4606. package/lib/routes/fanfou/user_timeline.js +0 -35
  4607. package/lib/routes/fanfou/utils.js +0 -40
  4608. package/lib/routes/fanxinzhui/latest.js +0 -52
  4609. package/lib/routes/fashionnetwork/headline.js +0 -56
  4610. package/lib/routes/fashionnetwork/news.js +0 -74
  4611. package/lib/routes/fdroid/apprelease.js +0 -33
  4612. package/lib/routes/feed-the-beast/modpack.js +0 -31
  4613. package/lib/routes/feixuew/index.js +0 -63
  4614. package/lib/routes/fir/update.js +0 -31
  4615. package/lib/routes/firefox/addons.js +0 -33
  4616. package/lib/routes/firefox/release.js +0 -30
  4617. package/lib/routes/fitchratings/site.js +0 -33
  4618. package/lib/routes/fjnews/fznews.js +0 -55
  4619. package/lib/routes/fjnews/jjnews.js +0 -43
  4620. package/lib/routes/fontstory/tw.js +0 -48
  4621. package/lib/routes/fulinian/index.js +0 -50
  4622. package/lib/routes/furaffinity/home.js +0 -59
  4623. package/lib/routes/furaffinity/status.js +0 -39
  4624. package/lib/routes/furaffinity/user.js +0 -96
  4625. package/lib/routes/futunn/highlights.js +0 -58
  4626. package/lib/routes/fx678/kx.js +0 -44
  4627. package/lib/routes/gab/explore.js +0 -31
  4628. package/lib/routes/galaxylab/index.js +0 -35
  4629. package/lib/routes/galgame/hhgal.js +0 -70
  4630. package/lib/routes/galgame/sayhuahuo.js +0 -22
  4631. package/lib/routes/galgame/zdfx.js +0 -30
  4632. package/lib/routes/gamegrape/index.js +0 -73
  4633. package/lib/routes/gamersky/ent.js +0 -89
  4634. package/lib/routes/gaoqing/utils.js +0 -57
  4635. package/lib/routes/gaoqingla/latest.js +0 -37
  4636. package/lib/routes/gbcc/trust.js +0 -28
  4637. package/lib/routes/geektime/news.js +0 -54
  4638. package/lib/routes/getitfree/category.js +0 -59
  4639. package/lib/routes/getitfree/search.js +0 -25
  4640. package/lib/routes/getitfree/utils.js +0 -47
  4641. package/lib/routes/girlimg/album.js +0 -57
  4642. package/lib/routes/gitchat/newest.js +0 -23
  4643. package/lib/routes/gitea/blog.js +0 -70
  4644. package/lib/routes/gitlab/explore.js +0 -43
  4645. package/lib/routes/gitlab/release.js +0 -35
  4646. package/lib/routes/gitlab/tag.js +0 -35
  4647. package/lib/routes/go.jp/mofa/main.js +0 -95
  4648. package/lib/routes/gocomics/index.js +0 -64
  4649. package/lib/routes/gov/beijing/eea.js +0 -92
  4650. package/lib/routes/gov/beijing/mhc.js +0 -68
  4651. package/lib/routes/gov/chinatax/latest.js +0 -42
  4652. package/lib/routes/gov/chongqing/ljxq/zwgk.js +0 -67
  4653. package/lib/routes/gov/city/nanjing/getContent.js +0 -69
  4654. package/lib/routes/gov/city/nanjing/index.js +0 -32
  4655. package/lib/routes/gov/cnca/hydt.js +0 -54
  4656. package/lib/routes/gov/cnca/jgdt.js +0 -54
  4657. package/lib/routes/gov/cnca/zxtz.js +0 -63
  4658. package/lib/routes/gov/cppcc/index.js +0 -48
  4659. package/lib/routes/gov/guangdong/edu.js +0 -83
  4660. package/lib/routes/gov/guangdong/eea.js +0 -59
  4661. package/lib/routes/gov/harbin/kjj.js +0 -39
  4662. package/lib/routes/gov/hubei/hbsia.js +0 -101
  4663. package/lib/routes/gov/hunan/notice.js +0 -80
  4664. package/lib/routes/gov/moa/moa.js +0 -164
  4665. package/lib/routes/gov/moa/sjzxfb.js +0 -20
  4666. package/lib/routes/gov/mohrss/sbjm.js +0 -59
  4667. package/lib/routes/gov/mohurd/policy.js +0 -39
  4668. package/lib/routes/gov/ndrc/xwdt.js +0 -54
  4669. package/lib/routes/gov/ngd/index.js +0 -51
  4670. package/lib/routes/gov/nppa/channels.js +0 -57
  4671. package/lib/routes/gov/nppa/contents.js +0 -37
  4672. package/lib/routes/gov/province/jiangsu/getContent.js +0 -77
  4673. package/lib/routes/gov/province/jiangsu/index.js +0 -66
  4674. package/lib/routes/gov/sapprft/7026.js +0 -97
  4675. package/lib/routes/gov/shanghai/sthj.js +0 -26
  4676. package/lib/routes/gov/suzhou/doc.js +0 -39
  4677. package/lib/routes/gov/suzhou/news.js +0 -142
  4678. package/lib/routes/gov/suzhou/utils.js +0 -20
  4679. package/lib/routes/gov/taiwan/mnd.js +0 -63
  4680. package/lib/routes/gov/veterans/china.js +0 -76
  4681. package/lib/routes/gov/veterans/hebei.js +0 -73
  4682. package/lib/routes/gov/wuhan/kjj.js +0 -63
  4683. package/lib/routes/gov/wuhan/wehdz.js +0 -63
  4684. package/lib/routes/gov/xinwen/tujie.js +0 -75
  4685. package/lib/routes/gracg/user.js +0 -65
  4686. package/lib/routes/gradcafe/result.js +0 -37
  4687. package/lib/routes/growincity/news.js +0 -49
  4688. package/lib/routes/grubstreet/index.js +0 -9
  4689. package/lib/routes/grubstreet/utils.js +0 -78
  4690. package/lib/routes/guanggoo/index.js +0 -81
  4691. package/lib/routes/guardian/guardian.js +0 -45
  4692. package/lib/routes/guat/news.js +0 -68
  4693. package/lib/routes/guet/news.js +0 -95
  4694. package/lib/routes/guiltfree/onsale.js +0 -48
  4695. package/lib/routes/gvm/index.js +0 -94
  4696. package/lib/routes/gwern/category.js +0 -58
  4697. package/lib/routes/hackerone/hacktivity.js +0 -47
  4698. package/lib/routes/hackerone/search.js +0 -48
  4699. package/lib/routes/haimaoba/comics.js +0 -57
  4700. package/lib/routes/haohaozhu/discover.js +0 -42
  4701. package/lib/routes/haohaozhu/whole-house.js +0 -75
  4702. package/lib/routes/hdx/explore.js +0 -57
  4703. package/lib/routes/hentai-cosplays/hentai-cosplays.js +0 -11
  4704. package/lib/routes/hentai-cosplays/utils.js +0 -52
  4705. package/lib/routes/hexo/fluid.js +0 -49
  4706. package/lib/routes/hexo/next.js +0 -49
  4707. package/lib/routes/hexo/yilia.js +0 -34
  4708. package/lib/routes/hinatazaka46/blog.js +0 -38
  4709. package/lib/routes/hinatazaka46/news.js +0 -34
  4710. package/lib/routes/hkcd/pdf.js +0 -30
  4711. package/lib/routes/hkcnews/news.js +0 -63
  4712. package/lib/routes/hkej/index.js +0 -138
  4713. package/lib/routes/hkgolden/index.js +0 -110
  4714. package/lib/routes/hopper/index.js +0 -82
  4715. package/lib/routes/hpoi/index.js +0 -47
  4716. package/lib/routes/hpoi/info.js +0 -51
  4717. package/lib/routes/hpoi/user.js +0 -37
  4718. package/lib/routes/huawei/xinsheng/index.js +0 -61
  4719. package/lib/routes/hugo/releases.js +0 -53
  4720. package/lib/routes/huya/live.js +0 -33
  4721. package/lib/routes/icable/category.js +0 -64
  4722. package/lib/routes/icourse163/newest.js +0 -77
  4723. package/lib/routes/idaily/index.js +0 -21
  4724. package/lib/routes/idownloadblog/index.js +0 -51
  4725. package/lib/routes/iea/index.js +0 -53
  4726. package/lib/routes/ifanr/index.js +0 -75
  4727. package/lib/routes/ifnews/column.js +0 -75
  4728. package/lib/routes/iie/blog.js +0 -47
  4729. package/lib/routes/im2maker/index.js +0 -60
  4730. package/lib/routes/imaijia/category.js +0 -63
  4731. package/lib/routes/imuseum/index.js +0 -49
  4732. package/lib/routes/index.js +0 -112
  4733. package/lib/routes/indienova/article.js +0 -53
  4734. package/lib/routes/infzm/news.js +0 -62
  4735. package/lib/routes/instapaper/person.js +0 -28
  4736. package/lib/routes/iplay/utils.js +0 -57
  4737. package/lib/routes/ipsw/index.js +0 -112
  4738. package/lib/routes/itjuzi/invest.js +0 -32
  4739. package/lib/routes/itjuzi/merge.js +0 -32
  4740. package/lib/routes/itslide/new.js +0 -40
  4741. package/lib/routes/iyiou/index.js +0 -41
  4742. package/lib/routes/iyouport/index.js +0 -35
  4743. package/lib/routes/iyouport/utils.js +0 -22
  4744. package/lib/routes/japanpost/track.js +0 -111
  4745. package/lib/routes/japanpost/utils.js +0 -94
  4746. package/lib/routes/jdlingyu/index.js +0 -45
  4747. package/lib/routes/jianshu/collection.js +0 -29
  4748. package/lib/routes/jianshu/home.js +0 -27
  4749. package/lib/routes/jianshu/trending.js +0 -28
  4750. package/lib/routes/jianshu/user.js +0 -29
  4751. package/lib/routes/jianshu/utils.js +0 -66
  4752. package/lib/routes/jiazhen108/index.js +0 -47
  4753. package/lib/routes/jijitang/article.js +0 -19
  4754. package/lib/routes/jijitang/publication.js +0 -18
  4755. package/lib/routes/jingdong/zhongchou.js +0 -78
  4756. package/lib/routes/jinritoutiao/keyword.js +0 -27
  4757. package/lib/routes/jinse/catalogue.js +0 -20
  4758. package/lib/routes/jinse/lives.js +0 -20
  4759. package/lib/routes/jinse/timeline.js +0 -21
  4760. package/lib/routes/jpmorganchase/research.js +0 -52
  4761. package/lib/routes/jskou/index.js +0 -21
  4762. package/lib/routes/juesheng/index.js +0 -49
  4763. package/lib/routes/justrun/index.js +0 -44
  4764. package/lib/routes/jx3/news.js +0 -58
  4765. package/lib/routes/kaggle/competitions.js +0 -51
  4766. package/lib/routes/kaggle/discussion.js +0 -72
  4767. package/lib/routes/kaggle/user.js +0 -19
  4768. package/lib/routes/kaiyan/index.js +0 -53
  4769. package/lib/routes/kaopunews/index.js +0 -28
  4770. package/lib/routes/kirara/news.js +0 -30
  4771. package/lib/routes/kkj/news.js +0 -52
  4772. package/lib/routes/konami/pesmobile.js +0 -31
  4773. package/lib/routes/kongfz/shop.js +0 -58
  4774. package/lib/routes/kpmg/insights.js +0 -79
  4775. package/lib/routes/krankenkassen/index.js +0 -54
  4776. package/lib/routes/ku/index.js +0 -31
  4777. package/lib/routes/kuai/id.js +0 -38
  4778. package/lib/routes/kuai/index.js +0 -38
  4779. package/lib/routes/kzfeed/topic.js +0 -122
  4780. package/lib/routes/laosiji/feed.js +0 -23
  4781. package/lib/routes/laosiji/hotshow.js +0 -32
  4782. package/lib/routes/lastfm/loved.js +0 -27
  4783. package/lib/routes/lastfm/recent.js +0 -27
  4784. package/lib/routes/lastfm/top.js +0 -27
  4785. package/lib/routes/law/dh.js +0 -39
  4786. package/lib/routes/law/gf.js +0 -41
  4787. package/lib/routes/law/hq.js +0 -39
  4788. package/lib/routes/law/hw.js +0 -39
  4789. package/lib/routes/law/jctd.js +0 -41
  4790. package/lib/routes/law/jh.js +0 -41
  4791. package/lib/routes/law/jtc.js +0 -41
  4792. package/lib/routes/law/ts.js +0 -41
  4793. package/lib/routes/law/zl.js +0 -40
  4794. package/lib/routes/leboncoin/ad.js +0 -136
  4795. package/lib/routes/leetcode/check-cn.js +0 -98
  4796. package/lib/routes/leetcode/check-us.js +0 -32
  4797. package/lib/routes/leetcode/utils.js +0 -54
  4798. package/lib/routes/letterboxd/utils.js +0 -140
  4799. package/lib/routes/liequtv/room.js +0 -36
  4800. package/lib/routes/lifetimes/index.js +0 -99
  4801. package/lib/routes/lingyi/index.js +0 -64
  4802. package/lib/routes/linkedkeeper/index.js +0 -37
  4803. package/lib/routes/liquipedia/dota2_matches.js +0 -50
  4804. package/lib/routes/liwushuo/index.js +0 -28
  4805. package/lib/routes/liyuan-forums/threads.js +0 -76
  4806. package/lib/routes/lol/newsindex.js +0 -95
  4807. package/lib/routes/lolapp/article.js +0 -53
  4808. package/lib/routes/loveheaven/update.js +0 -45
  4809. package/lib/routes/lowendtalk/discussion.js +0 -43
  4810. package/lib/routes/lwn/alerts.js +0 -57
  4811. package/lib/routes/macau-bolsas/index.js +0 -47
  4812. package/lib/routes/macked/app.js +0 -25
  4813. package/lib/routes/macwk/soft.js +0 -32
  4814. package/lib/routes/mafengwo/note.js +0 -53
  4815. package/lib/routes/magireco/announcements.js +0 -26
  4816. package/lib/routes/magireco/event_banner.js +0 -34
  4817. package/lib/routes/mail/imap.js +0 -79
  4818. package/lib/routes/maitta/index.js +0 -29
  4819. package/lib/routes/makeuseof/index.js +0 -59
  4820. package/lib/routes/manhuadui/manhua.js +0 -36
  4821. package/lib/routes/manong-weekly/issues.js +0 -33
  4822. package/lib/routes/manxiaosi/book.js +0 -49
  4823. package/lib/routes/maoyan/hotComplete.js +0 -87
  4824. package/lib/routes/mastodon/account_id.js +0 -21
  4825. package/lib/routes/mastodon/acct.js +0 -18
  4826. package/lib/routes/mastodon/timeline_local.js +0 -22
  4827. package/lib/routes/mastodon/timeline_remote.js +0 -22
  4828. package/lib/routes/mastodon/utils.js +0 -131
  4829. package/lib/routes/matataki/site/posts/author.js +0 -17
  4830. package/lib/routes/matataki/site/posts/favorite.js +0 -42
  4831. package/lib/routes/matataki/site/posts/scoreranking.js +0 -15
  4832. package/lib/routes/matataki/site/posts/tag.js +0 -16
  4833. package/lib/routes/matataki/site/posts/timeranking.js +0 -15
  4834. package/lib/routes/matataki/site/posts/token.js +0 -18
  4835. package/lib/routes/matataki/utils/matataki-utils.js +0 -125
  4836. package/lib/routes/matters/author.js +0 -49
  4837. package/lib/routes/matters/latest.js +0 -69
  4838. package/lib/routes/matters/tags.js +0 -56
  4839. package/lib/routes/maxnews/dota2.js +0 -45
  4840. package/lib/routes/mcdonalds/news.js +0 -53
  4841. package/lib/routes/mediadigest/category.js +0 -130
  4842. package/lib/routes/meihua/article.js +0 -54
  4843. package/lib/routes/meihua/shots.js +0 -58
  4844. package/lib/routes/meituan/open/announce.js +0 -45
  4845. package/lib/routes/meituan/tech/home.js +0 -45
  4846. package/lib/routes/mercari/index.js +0 -67
  4847. package/lib/routes/metacritic/release.js +0 -53
  4848. package/lib/routes/method-studios/index.js +0 -60
  4849. package/lib/routes/metred/fuli.js +0 -42
  4850. package/lib/routes/mhw/news.js +0 -48
  4851. package/lib/routes/mhw/update.js +0 -66
  4852. package/lib/routes/mi/board.js +0 -36
  4853. package/lib/routes/mi/crowdfunding.js +0 -31
  4854. package/lib/routes/mi/golden.js +0 -22
  4855. package/lib/routes/mi/miui/index.js +0 -58
  4856. package/lib/routes/micmicidol/article.js +0 -28
  4857. package/lib/routes/microsoft-store/updates.js +0 -30
  4858. package/lib/routes/mihoyo/bh2.js +0 -43
  4859. package/lib/routes/mihoyo/bh3.js +0 -60
  4860. package/lib/routes/mind42/index.js +0 -7
  4861. package/lib/routes/mind42/search.js +0 -5
  4862. package/lib/routes/mind42/tag.js +0 -5
  4863. package/lib/routes/mind42/utils.js +0 -47
  4864. package/lib/routes/mingjian/index.js +0 -46
  4865. package/lib/routes/miniapp/article.js +0 -57
  4866. package/lib/routes/miniapp/store/newest.js +0 -36
  4867. package/lib/routes/miniflux/get_entries.js +0 -264
  4868. package/lib/routes/miniflux/get_feeds.js +0 -90
  4869. package/lib/routes/missevan/drama.js +0 -40
  4870. package/lib/routes/missevan/latest.js +0 -47
  4871. package/lib/routes/mitbbs/index.js +0 -54
  4872. package/lib/routes/mitre/publications.js +0 -27
  4873. package/lib/routes/mittrchina/index.js +0 -45
  4874. package/lib/routes/mlhang/latest.js +0 -23
  4875. package/lib/routes/mlog-club/projects.js +0 -33
  4876. package/lib/routes/mlog-club/topics.js +0 -37
  4877. package/lib/routes/mobdata/report.js +0 -30
  4878. package/lib/routes/modian/zhongchou.js +0 -61
  4879. package/lib/routes/moxingfans/index.js +0 -50
  4880. package/lib/routes/moxingnet/index.js +0 -61
  4881. package/lib/routes/mp4ba/index.js +0 -133
  4882. package/lib/routes/mqube/latest.js +0 -21
  4883. package/lib/routes/mqube/tag.js +0 -23
  4884. package/lib/routes/mqube/top.js +0 -21
  4885. package/lib/routes/mqube/user.js +0 -25
  4886. package/lib/routes/muchong/journal.js +0 -52
  4887. package/lib/routes/mzitu/category.js +0 -26
  4888. package/lib/routes/mzitu/home.js +0 -32
  4889. package/lib/routes/mzitu/post.js +0 -41
  4890. package/lib/routes/mzitu/tag.js +0 -25
  4891. package/lib/routes/mzitu/tags.js +0 -23
  4892. package/lib/routes/mzitu/util.js +0 -51
  4893. package/lib/routes/namoc/announcement.js +0 -64
  4894. package/lib/routes/namoc/exhibition.js +0 -67
  4895. package/lib/routes/namoc/media.js +0 -67
  4896. package/lib/routes/namoc/news.js +0 -67
  4897. package/lib/routes/namoc/specials.js +0 -42
  4898. package/lib/routes/nasa/apod-cn.js +0 -66
  4899. package/lib/routes/nasa/apod-ncku.js +0 -30
  4900. package/lib/routes/nasa/apod.js +0 -30
  4901. package/lib/routes/nba/app_news.js +0 -40
  4902. package/lib/routes/netflix/newsroom.js +0 -82
  4903. package/lib/routes/network360/jobs.js +0 -24
  4904. package/lib/routes/newsmth/account.js +0 -39
  4905. package/lib/routes/newsmth/section.js +0 -99
  4906. package/lib/routes/nfmovies/index.js +0 -58
  4907. package/lib/routes/niaogebiji/cat.js +0 -86
  4908. package/lib/routes/niaogebiji/index.js +0 -40
  4909. package/lib/routes/niaogebiji/today.js +0 -29
  4910. package/lib/routes/ningmeng/song.js +0 -77
  4911. package/lib/routes/nobelprize/index.js +0 -79
  4912. package/lib/routes/noi/index.js +0 -40
  4913. package/lib/routes/noi/province-news.js +0 -40
  4914. package/lib/routes/noi/rg-news.js +0 -47
  4915. package/lib/routes/noi/winners-list.js +0 -41
  4916. package/lib/routes/northhouse/index.js +0 -54
  4917. package/lib/routes/nosec/index.js +0 -73
  4918. package/lib/routes/notefolio/index.js +0 -67
  4919. package/lib/routes/novel/axdzs.js +0 -67
  4920. package/lib/routes/novel/biquge.js +0 -66
  4921. package/lib/routes/novel/biqugeinfo.js +0 -69
  4922. package/lib/routes/novel/booksky.js +0 -44
  4923. package/lib/routes/novel/dcrsw.js +0 -58
  4924. package/lib/routes/novel/ptwxz.js +0 -76
  4925. package/lib/routes/novel/uukanshu.js +0 -39
  4926. package/lib/routes/novel/wenxuemi.js +0 -63
  4927. package/lib/routes/novel/zhaishuyuan.js +0 -84
  4928. package/lib/routes/npc/index.js +0 -42
  4929. package/lib/routes/obsidian/announcements.js +0 -22
  4930. package/lib/routes/one/index.js +0 -48
  4931. package/lib/routes/or/index.js +0 -54
  4932. package/lib/routes/ow/patch.js +0 -23
  4933. package/lib/routes/owspace/read.js +0 -141
  4934. package/lib/routes/p-articles/contributors.js +0 -45
  4935. package/lib/routes/p-articles/section.js +0 -53
  4936. package/lib/routes/p-articles/utils.js +0 -29
  4937. package/lib/routes/paidai/utils.js +0 -26
  4938. package/lib/routes/partnershiponai/resources.js +0 -49
  4939. package/lib/routes/patchwork.kernel.org/comments.js +0 -33
  4940. package/lib/routes/pcr/news-cn.js +0 -28
  4941. package/lib/routes/pcr/news-tw.js +0 -67
  4942. package/lib/routes/pcr/news.js +0 -31
  4943. package/lib/routes/pediy/topic.js +0 -117
  4944. package/lib/routes/pediy/utils.js +0 -27
  4945. package/lib/routes/pgyer/app.js +0 -91
  4946. package/lib/routes/piaohua/hot.js +0 -37
  4947. package/lib/routes/piapro/public.js +0 -54
  4948. package/lib/routes/piapro/user.js +0 -47
  4949. package/lib/routes/piapro/utils.js +0 -45
  4950. package/lib/routes/pintu360/index.js +0 -54
  4951. package/lib/routes/pjsk/news.js +0 -49
  4952. package/lib/routes/plainlaw/archives.js +0 -42
  4953. package/lib/routes/pmcaff/feed.js +0 -51
  4954. package/lib/routes/pmcaff/list.js +0 -67
  4955. package/lib/routes/pmcaff/user.js +0 -56
  4956. package/lib/routes/pocket/trending.js +0 -31
  4957. package/lib/routes/polar/blog.js +0 -47
  4958. package/lib/routes/popiask/questions.js +0 -41
  4959. package/lib/routes/popiask/tapechat_questions.js +0 -43
  4960. package/lib/routes/popyard/index.js +0 -93
  4961. package/lib/routes/pork-price/index.js +0 -49
  4962. package/lib/routes/pornhub/category.js +0 -22
  4963. package/lib/routes/pornhub/category_url.js +0 -34
  4964. package/lib/routes/pornhub/model.js +0 -35
  4965. package/lib/routes/pornhub/pornstar.js +0 -35
  4966. package/lib/routes/pornhub/search.js +0 -22
  4967. package/lib/routes/pornhub/users.js +0 -35
  4968. package/lib/routes/potplayer/update.js +0 -42
  4969. package/lib/routes/processon/popular.js +0 -51
  4970. package/lib/routes/project-zero-issues/index.js +0 -48
  4971. package/lib/routes/ps/list.js +0 -34
  4972. package/lib/routes/ps/product.js +0 -133
  4973. package/lib/routes/ps/ps4updates.js +0 -60
  4974. package/lib/routes/ps/trophy.js +0 -86
  4975. package/lib/routes/psnine/game.js +0 -32
  4976. package/lib/routes/psnine/index.js +0 -33
  4977. package/lib/routes/psnine/shuzhe.js +0 -33
  4978. package/lib/routes/psnine/trade.js +0 -39
  4979. package/lib/routes/ptpress/book.js +0 -34
  4980. package/lib/routes/putonghua/hangzhou.js +0 -45
  4981. package/lib/routes/qlwb/city.js +0 -54
  4982. package/lib/routes/qlwb/news.js +0 -37
  4983. package/lib/routes/qstheory/index.js +0 -122
  4984. package/lib/routes/qtfyfl/category.js +0 -91
  4985. package/lib/routes/quantamagazine/archive.js +0 -81
  4986. package/lib/routes/questmobile/report.js +0 -121
  4987. package/lib/routes/qutoutiao/category.js +0 -44
  4988. package/lib/routes/react/react-native-weekly.js +0 -35
  4989. package/lib/routes/remote-work/index.js +0 -88
  4990. package/lib/routes/rescuetime/release-notes.js +0 -37
  4991. package/lib/routes/right/forum.js +0 -67
  4992. package/lib/routes/rs05/rs05.js +0 -35
  4993. package/lib/routes/rss3/blog.js +0 -46
  4994. package/lib/routes/rthk-news/index.js +0 -60
  4995. package/lib/routes/s-hentai/index.js +0 -64
  4996. package/lib/routes/sagawa/index.js +0 -67
  4997. package/lib/routes/sankakucomplex/post.js +0 -50
  4998. package/lib/routes/sans/summit_archive.js +0 -24
  4999. package/lib/routes/sbs/chinese.js +0 -70
  5000. package/lib/routes/scala-blog/scala-blog.js +0 -29
  5001. package/lib/routes/scboy/thread.js +0 -50
  5002. package/lib/routes/sckjt/news.js +0 -35
  5003. package/lib/routes/scoresaber/user.js +0 -44
  5004. package/lib/routes/sexinsex/index.js +0 -101
  5005. package/lib/routes/sf/sffq-announce.js +0 -22
  5006. package/lib/routes/shanbay/checkin.js +0 -48
  5007. package/lib/routes/shanbay/footprints.js +0 -42
  5008. package/lib/routes/shengwugu/index.js +0 -41
  5009. package/lib/routes/shinybbs/index.js +0 -60
  5010. package/lib/routes/shinybbs/latest.js +0 -57
  5011. package/lib/routes/shinybbs/p.js +0 -38
  5012. package/lib/routes/showroom/room.js +0 -31
  5013. package/lib/routes/shuax/project.js +0 -37
  5014. package/lib/routes/shuhui/comics.js +0 -95
  5015. package/lib/routes/simonsfoundation/articles.js +0 -53
  5016. package/lib/routes/simpread/changelog.js +0 -79
  5017. package/lib/routes/sina/chuangshiji.js +0 -38
  5018. package/lib/routes/sina/discovery.js +0 -52
  5019. package/lib/routes/sina/finance.js +0 -37
  5020. package/lib/routes/sina/rollnews.js +0 -41
  5021. package/lib/routes/sina/sports.js +0 -54
  5022. package/lib/routes/sixthtone/news.js +0 -52
  5023. package/lib/routes/sketch/updates.js +0 -40
  5024. package/lib/routes/socialbeta/home.js +0 -42
  5025. package/lib/routes/socialbeta/hunt.js +0 -29
  5026. package/lib/routes/socialclub/events.js +0 -28
  5027. package/lib/routes/sogou/doodles.js +0 -26
  5028. package/lib/routes/soomal/topics.js +0 -130
  5029. package/lib/routes/soul/hot.js +0 -74
  5030. package/lib/routes/soundcloud/utils.js +0 -47
  5031. package/lib/routes/steam/search.js +0 -57
  5032. package/lib/routes/stork/keyword.js +0 -58
  5033. package/lib/routes/storyfm/index.js +0 -44
  5034. package/lib/routes/t66y/index.js +0 -156
  5035. package/lib/routes/t66y/post.js +0 -153
  5036. package/lib/routes/tahui/rptlist.js +0 -48
  5037. package/lib/routes/tam/forecast.js +0 -53
  5038. package/lib/routes/tanwu/products.js +0 -27
  5039. package/lib/routes/technologyreview/topic.js +0 -35
  5040. package/lib/routes/telecompaper/news.js +0 -100
  5041. package/lib/routes/telecompaper/search.js +0 -76
  5042. package/lib/routes/tencent/bigdata/index.js +0 -53
  5043. package/lib/routes/tencent/bugly/changelog.js +0 -49
  5044. package/lib/routes/tencent/egame/room.js +0 -52
  5045. package/lib/routes/tencent/gameinstitute/community.js +0 -60
  5046. package/lib/routes/tencent/guyu/channel.js +0 -64
  5047. package/lib/routes/tencent/tucaoqq/post.js +0 -39
  5048. package/lib/routes/tencent/video/playlist.js +0 -46
  5049. package/lib/routes/tencent/wechat/miniprogram/devtools.js +0 -38
  5050. package/lib/routes/tencent/wechat/miniprogram/framework.js +0 -35
  5051. package/lib/routes/tencent/wechat/miniprogram/plugins.js +0 -54
  5052. package/lib/routes/tencent/wechat/miniprogram/wxcloud.js +0 -47
  5053. package/lib/routes/tesla/update.js +0 -42
  5054. package/lib/routes/thrillist/index.js +0 -67
  5055. package/lib/routes/tianya/comments.js +0 -41
  5056. package/lib/routes/tianya/index.js +0 -32
  5057. package/lib/routes/tianya/user.js +0 -34
  5058. package/lib/routes/tianyancha/hot.js +0 -48
  5059. package/lib/routes/tingdiantz/95598.js +0 -46
  5060. package/lib/routes/titsguru/model.js +0 -16
  5061. package/lib/routes/titsguru/util.js +0 -68
  5062. package/lib/routes/tongli/news.js +0 -45
  5063. package/lib/routes/tophub/index.js +0 -28
  5064. package/lib/routes/totalcommander/whatsnew.js +0 -32
  5065. package/lib/routes/touhougarakuta/index.js +0 -68
  5066. package/lib/routes/touhougarakuta/json2html.js +0 -113
  5067. package/lib/routes/tprtc/cqzr.js +0 -80
  5068. package/lib/routes/tprtc/news.js +0 -71
  5069. package/lib/routes/tprtc/qyzc.js +0 -84
  5070. package/lib/routes/tssstatus/index.js +0 -35
  5071. package/lib/routes/tuicool/mags.js +0 -41
  5072. package/lib/routes/ui-cn/article.js +0 -51
  5073. package/lib/routes/uisdc/news.js +0 -34
  5074. package/lib/routes/uisdc/talk.js +0 -58
  5075. package/lib/routes/uisdc/topic.js +0 -55
  5076. package/lib/routes/uisdc/zt.js +0 -65
  5077. package/lib/routes/uniqlo/stylingbook.js +0 -24
  5078. package/lib/routes/unit-image/films.js +0 -141
  5079. package/lib/routes/universities/ahau/cs_news/utils.js +0 -50
  5080. package/lib/routes/universities/ahau/jwc/utils.js +0 -50
  5081. package/lib/routes/universities/ahau/main/utils.js +0 -50
  5082. package/lib/routes/universities/ahmu/news.js +0 -51
  5083. package/lib/routes/universities/ahut/cstzgg.js +0 -45
  5084. package/lib/routes/universities/ahut/jwc.js +0 -43
  5085. package/lib/routes/universities/ahut/news.js +0 -44
  5086. package/lib/routes/universities/bjtu/gs/index.js +0 -130
  5087. package/lib/routes/universities/buaa/news/index.js +0 -66
  5088. package/lib/routes/universities/buaa/utils.js +0 -57
  5089. package/lib/routes/universities/bupt/funbox.js +0 -40
  5090. package/lib/routes/universities/bupt/grs.js +0 -64
  5091. package/lib/routes/universities/bupt/news.js +0 -34
  5092. package/lib/routes/universities/bupt/portal.js +0 -34
  5093. package/lib/routes/universities/bupt/utils.js +0 -72
  5094. package/lib/routes/universities/bupt/yz.js +0 -155
  5095. package/lib/routes/universities/bwu/utils.js +0 -50
  5096. package/lib/routes/universities/cpu/home.js +0 -52
  5097. package/lib/routes/universities/cpu/jwc.js +0 -52
  5098. package/lib/routes/universities/cpu/yjsy.js +0 -52
  5099. package/lib/routes/universities/cqu/jwc/announcement.js +0 -53
  5100. package/lib/routes/universities/cqu/net/info.js +0 -60
  5101. package/lib/routes/universities/cqu/news/tz.js +0 -71
  5102. package/lib/routes/universities/cqu/news/utils.js +0 -48
  5103. package/lib/routes/universities/cqu/sci/info.js +0 -59
  5104. package/lib/routes/universities/cqu/youth/info.js +0 -62
  5105. package/lib/routes/universities/cug/gcxy/index.js +0 -114
  5106. package/lib/routes/universities/cug/news.js +0 -63
  5107. package/lib/routes/universities/cuit/cxxww.js +0 -63
  5108. package/lib/routes/universities/dlmu/news.js +0 -44
  5109. package/lib/routes/universities/dlu/jiaowu/news.js +0 -37
  5110. package/lib/routes/universities/fudan/cce.js +0 -52
  5111. package/lib/routes/universities/gdou/jwc/utils.js +0 -72
  5112. package/lib/routes/universities/gzmtu/jwc/utils.js +0 -86
  5113. package/lib/routes/universities/gzmtu/tsg/utils.js +0 -86
  5114. package/lib/routes/universities/harvard/health/blog.js +0 -51
  5115. package/lib/routes/universities/hhu/libNews.js +0 -57
  5116. package/lib/routes/universities/hhu/libNewsc.js +0 -75
  5117. package/lib/routes/universities/hnust/graduate/index.js +0 -40
  5118. package/lib/routes/universities/jnu/yw/index.js +0 -81
  5119. package/lib/routes/universities/kmust/job/careers.js +0 -33
  5120. package/lib/routes/universities/kmust/job/jobfairs.js +0 -32
  5121. package/lib/routes/universities/kmust/jwc.js +0 -44
  5122. package/lib/routes/universities/lit/jwc.js +0 -50
  5123. package/lib/routes/universities/lit/tw.js +0 -56
  5124. package/lib/routes/universities/lit/xwzx.js +0 -73
  5125. package/lib/routes/universities/lntu/jwnews.js +0 -46
  5126. package/lib/routes/universities/lyu/news/utils.js +0 -42
  5127. package/lib/routes/universities/mit/graduateadmissions.js +0 -63
  5128. package/lib/routes/universities/nciae/news.js +0 -58
  5129. package/lib/routes/universities/nciae/tzgg.js +0 -58
  5130. package/lib/routes/universities/nciae/xsxx.js +0 -58
  5131. package/lib/routes/universities/njfu/jwc.js +0 -52
  5132. package/lib/routes/universities/njtech/jwc.js +0 -54
  5133. package/lib/routes/universities/nuc/index.js +0 -91
  5134. package/lib/routes/universities/nudt/yjszs.js +0 -65
  5135. package/lib/routes/universities/nwafu/54youth.js +0 -28
  5136. package/lib/routes/universities/nwafu/cie.js +0 -28
  5137. package/lib/routes/universities/nwafu/gs.js +0 -28
  5138. package/lib/routes/universities/nwafu/jcc.js +0 -28
  5139. package/lib/routes/universities/nwafu/jiaowu.js +0 -28
  5140. package/lib/routes/universities/nwafu/lib.js +0 -28
  5141. package/lib/routes/universities/nwafu/news.js +0 -28
  5142. package/lib/routes/universities/nwafu/nic.js +0 -28
  5143. package/lib/routes/universities/nwafu/yjshy.js +0 -28
  5144. package/lib/routes/universities/seu/cse/index.js +0 -69
  5145. package/lib/routes/universities/seu/radio/academic.js +0 -65
  5146. package/lib/routes/universities/seu/yzb/index.js +0 -38
  5147. package/lib/routes/universities/shanghaitech/activity.js +0 -34
  5148. package/lib/routes/universities/shanghaitech/sist/activity.js +0 -51
  5149. package/lib/routes/universities/shou/www.js +0 -64
  5150. package/lib/routes/universities/shu/index.js +0 -75
  5151. package/lib/routes/universities/shu/jwc.js +0 -62
  5152. package/lib/routes/universities/sjtu/gs/tzgg.js +0 -31
  5153. package/lib/routes/universities/sjtu/gs/utils.js +0 -64
  5154. package/lib/routes/universities/sjtu/jwc.js +0 -115
  5155. package/lib/routes/universities/sjtu/seiee/academic.js +0 -18
  5156. package/lib/routes/universities/sjtu/seiee/bjwb.js +0 -45
  5157. package/lib/routes/universities/sjtu/seiee/utils.js +0 -45
  5158. package/lib/routes/universities/sjtu/seiee/xsb.js +0 -53
  5159. package/lib/routes/universities/sjtu/tongqu/activity.js +0 -43
  5160. package/lib/routes/universities/sjtu/yzb/zkxx.js +0 -33
  5161. package/lib/routes/universities/slu/utils.js +0 -74
  5162. package/lib/routes/universities/swufe/seie/index.js +0 -71
  5163. package/lib/routes/universities/swust/cs.js +0 -62
  5164. package/lib/routes/universities/swust/helper.js +0 -47
  5165. package/lib/routes/universities/swust/jwc_news.js +0 -45
  5166. package/lib/routes/universities/swust/jwc_notice.js +0 -51
  5167. package/lib/routes/universities/thu/index.js +0 -107
  5168. package/lib/routes/universities/usst/jwc.js +0 -62
  5169. package/lib/routes/universities/ustb/tj/news.js +0 -62
  5170. package/lib/routes/universities/utdallas/isso.js +0 -54
  5171. package/lib/routes/universities/whu/cs.js +0 -38
  5172. package/lib/routes/universities/whu/news.js +0 -128
  5173. package/lib/routes/universities/wtu/index.js +0 -34
  5174. package/lib/routes/universities/ynnu/edu/base64.js +0 -351
  5175. package/lib/routes/universities/ynnu/edu/news.js +0 -109
  5176. package/lib/routes/universities/ynu/utils.js +0 -64
  5177. package/lib/routes/universities/yzu/home.js +0 -83
  5178. package/lib/routes/universities/yzu/yjszs.js +0 -81
  5179. package/lib/routes/universities/zjgsu/tzgg/utils.js +0 -54
  5180. package/lib/routes/universities/zjut/design.js +0 -59
  5181. package/lib/routes/universities/zjut/index.js +0 -59
  5182. package/lib/routes/universities/zucc/cssearch/index.js +0 -47
  5183. package/lib/routes/universities/zucc/news/index.js +0 -68
  5184. package/lib/routes/universities/zzu/news.js +0 -80
  5185. package/lib/routes/universities/zzu/soft/news.js +0 -68
  5186. package/lib/routes/us/supremecourt/argument_audio.js +0 -58
  5187. package/lib/routes/uwants/index.js +0 -70
  5188. package/lib/routes/v2ex/post.js +0 -39
  5189. package/lib/routes/v2ex/tab.js +0 -60
  5190. package/lib/routes/v2ex/topics.js +0 -30
  5191. package/lib/routes/vgtime/keyword.js +0 -46
  5192. package/lib/routes/vgtime/news.js +0 -52
  5193. package/lib/routes/vgtime/release.js +0 -20
  5194. package/lib/routes/voa/day-photos.js +0 -54
  5195. package/lib/routes/voa/index.js +0 -54
  5196. package/lib/routes/vol/lastupdate.js +0 -51
  5197. package/lib/routes/vuevideo/user.js +0 -60
  5198. package/lib/routes/vulture/utils.js +0 -113
  5199. package/lib/routes/wanwansub/index.js +0 -57
  5200. package/lib/routes/wanwansub/info.js +0 -44
  5201. package/lib/routes/watchface/update.js +0 -42
  5202. package/lib/routes/weatheralarm/index.js +0 -26
  5203. package/lib/routes/webtoons/comic.js +0 -54
  5204. package/lib/routes/webtoons/naver.js +0 -50
  5205. package/lib/routes/weexcn/index.js +0 -69
  5206. package/lib/routes/weforum/report.js +0 -56
  5207. package/lib/routes/wegene/column.js +0 -30
  5208. package/lib/routes/weidian/goods.js +0 -37
  5209. package/lib/routes/weseepro/circle.js +0 -38
  5210. package/lib/routes/weseepro/newest-direct.js +0 -69
  5211. package/lib/routes/weseepro/newest.js +0 -69
  5212. package/lib/routes/westore/new.js +0 -40
  5213. package/lib/routes/whalegogo/home.js +0 -43
  5214. package/lib/routes/whalegogo/portal.js +0 -57
  5215. package/lib/routes/whb/zhuzhan.js +0 -76
  5216. package/lib/routes/wikihow/category.js +0 -34
  5217. package/lib/routes/wikihow/index.js +0 -32
  5218. package/lib/routes/wineyun/index.js +0 -36
  5219. package/lib/routes/wired/tag.js +0 -31
  5220. package/lib/routes/wolley/host.js +0 -39
  5221. package/lib/routes/wolley/index.js +0 -47
  5222. package/lib/routes/wolley/user.js +0 -38
  5223. package/lib/routes/wto/dispute-settlement.js +0 -37
  5224. package/lib/routes/wukong/user.js +0 -93
  5225. package/lib/routes/x-mol/news.js +0 -48
  5226. package/lib/routes/x-mol/paper.js +0 -78
  5227. package/lib/routes/x-mol/utils.js +0 -16
  5228. package/lib/routes/xiachufang/utils.js +0 -100
  5229. package/lib/routes/xiaoheihe/discount.js +0 -71
  5230. package/lib/routes/xiaoheihe/news.js +0 -53
  5231. package/lib/routes/xiaoheihe/user.js +0 -51
  5232. package/lib/routes/xici/index.js +0 -33
  5233. package/lib/routes/ximalaya/album.js +0 -219
  5234. package/lib/routes/ximalaya/utils.js +0 -131
  5235. package/lib/routes/xinquji/internal.js +0 -15
  5236. package/lib/routes/xinquji/today.js +0 -15
  5237. package/lib/routes/xposed/module.js +0 -36
  5238. package/lib/routes/xuangubao/subject.js +0 -47
  5239. package/lib/routes/xuetangx/course_list.js +0 -52
  5240. package/lib/routes/xyplorer/whatsnew.js +0 -32
  5241. package/lib/routes/yahoo-jp-tv/index.js +0 -21
  5242. package/lib/routes/yande.re/post_popular_recent.js +0 -63
  5243. package/lib/routes/yicas/blog.js +0 -52
  5244. package/lib/routes/yidoutang/index.js +0 -33
  5245. package/lib/routes/yinxiang/card.js +0 -45
  5246. package/lib/routes/yinxiang/category.js +0 -46
  5247. package/lib/routes/yinxiang/note.js +0 -41
  5248. package/lib/routes/yinxiang/personal.js +0 -47
  5249. package/lib/routes/yinxiang/tag.js +0 -46
  5250. package/lib/routes/youdao/latest.js +0 -47
  5251. package/lib/routes/youdao/xueba.js +0 -64
  5252. package/lib/routes/yuzu-emu/entry.js +0 -52
  5253. package/lib/routes/zcfy/hot.js +0 -34
  5254. package/lib/routes/zcfy/index.js +0 -34
  5255. package/lib/routes/zfrontier/board_postlist.js +0 -36
  5256. package/lib/routes/zfrontier/postlist.js +0 -33
  5257. package/lib/routes/zhanqi/room.js +0 -37
  5258. package/lib/routes/zhilian/index.js +0 -78
  5259. package/lib/routes/zhishifenzi/depth.js +0 -56
  5260. package/lib/routes/zhishifenzi/innovation.js +0 -67
  5261. package/lib/routes/zhishifenzi/news.js +0 -66
  5262. package/lib/routes/zhuixinfan/list.js +0 -51
  5263. package/lib/routes/zhutix/latest.js +0 -41
  5264. package/lib/routes/zimuku/index.js +0 -41
  5265. package/lib/routes/zimuxia/index.js +0 -56
  5266. package/lib/routes/zimuxia/portfolio.js +0 -39
  5267. package/lib/routes/zimuzu/resource.js +0 -19
  5268. package/lib/routes/zimuzu/top.js +0 -27
  5269. package/lib/routes/ziroom/room.js +0 -55
  5270. package/lib/routes/zreading/home.js +0 -50
  5271. package/lib/routes/zsnews/index.js +0 -31
  5272. package/lib/routes/zzz/index.js +0 -59
  5273. package/lib/utils/cf-email.js +0 -36
  5274. package/lib/utils/common-config.js +0 -82
  5275. package/lib/utils/common-utils.js +0 -37
  5276. package/lib/utils/date.js +0 -85
  5277. package/lib/utils/dateParser.js +0 -89
  5278. package/lib/utils/got.js +0 -40
  5279. package/lib/utils/logger.js +0 -34
  5280. package/lib/utils/md5.js +0 -5
  5281. package/lib/utils/parse-date.js +0 -199
  5282. package/lib/utils/puppeteer-utils.js +0 -63
  5283. package/lib/utils/puppeteer.js +0 -79
  5284. package/lib/utils/rand-user-agent.js +0 -29
  5285. package/lib/utils/readable-social.js +0 -46
  5286. package/lib/utils/render.js +0 -9
  5287. package/lib/utils/request-wrapper.js +0 -86
  5288. package/lib/utils/rss-parser.js +0 -13
  5289. package/lib/utils/timezone.js +0 -14
  5290. package/lib/utils/unify-proxy.js +0 -116
  5291. package/lib/utils/valid-host.js +0 -16
  5292. package/lib/utils/wait.js +0 -5
  5293. package/lib/utils/wechat-mp.js +0 -271
  5294. package/lib/v2/0818tuan/index.js +0 -47
  5295. package/lib/v2/0818tuan/maintainer.js +0 -3
  5296. package/lib/v2/0818tuan/radar.js +0 -13
  5297. package/lib/v2/0818tuan/router.js +0 -3
  5298. package/lib/v2/12306/index.js +0 -108
  5299. package/lib/v2/12306/maintainer.js +0 -4
  5300. package/lib/v2/12306/radar.js +0 -28
  5301. package/lib/v2/12306/router.js +0 -4
  5302. package/lib/v2/12306/zxdt.js +0 -67
  5303. package/lib/v2/163/ds.js +0 -33
  5304. package/lib/v2/163/dy.js +0 -29
  5305. package/lib/v2/163/dy2.js +0 -42
  5306. package/lib/v2/163/exclusive.js +0 -148
  5307. package/lib/v2/163/maintainer.js +0 -20
  5308. package/lib/v2/163/music/artist-songs.js +0 -39
  5309. package/lib/v2/163/music/artist.js +0 -39
  5310. package/lib/v2/163/music/djradio.js +0 -78
  5311. package/lib/v2/163/music/maintainer.js +0 -3
  5312. package/lib/v2/163/music/playlist.js +0 -55
  5313. package/lib/v2/163/music/userevents.js +0 -52
  5314. package/lib/v2/163/music/userplaylist.js +0 -56
  5315. package/lib/v2/163/music/userplayrecords.js +0 -55
  5316. package/lib/v2/163/news/rank.js +0 -155
  5317. package/lib/v2/163/news/special.js +0 -114
  5318. package/lib/v2/163/open/vip.js +0 -63
  5319. package/lib/v2/163/radar.js +0 -155
  5320. package/lib/v2/163/renjian.js +0 -77
  5321. package/lib/v2/163/router.js +0 -20
  5322. package/lib/v2/163/today.js +0 -55
  5323. package/lib/v2/163/utils.js +0 -40
  5324. package/lib/v2/18comic/album.js +0 -76
  5325. package/lib/v2/18comic/blogs.js +0 -64
  5326. package/lib/v2/18comic/index.js +0 -12
  5327. package/lib/v2/18comic/maintainer.js +0 -6
  5328. package/lib/v2/18comic/radar.js +0 -41
  5329. package/lib/v2/18comic/router.js +0 -6
  5330. package/lib/v2/18comic/search.js +0 -13
  5331. package/lib/v2/18comic/templates/description.art +0 -4
  5332. package/lib/v2/18comic/utils.js +0 -71
  5333. package/lib/v2/19lou/index.js +0 -78
  5334. package/lib/v2/19lou/maintainer.js +0 -3
  5335. package/lib/v2/19lou/radar.js +0 -29
  5336. package/lib/v2/19lou/router.js +0 -3
  5337. package/lib/v2/1point3acres/blog.js +0 -67
  5338. package/lib/v2/1point3acres/category.js +0 -17
  5339. package/lib/v2/1point3acres/maintainer.js +0 -9
  5340. package/lib/v2/1point3acres/offer.js +0 -69
  5341. package/lib/v2/1point3acres/radar.js +0 -53
  5342. package/lib/v2/1point3acres/router.js +0 -10
  5343. package/lib/v2/1point3acres/section.js +0 -28
  5344. package/lib/v2/1point3acres/thread.js +0 -15
  5345. package/lib/v2/1point3acres/user/post.js +0 -21
  5346. package/lib/v2/1point3acres/user/thread.js +0 -21
  5347. package/lib/v2/1point3acres/utils.js +0 -79
  5348. package/lib/v2/2047/index.js +0 -55
  5349. package/lib/v2/2047/maintainer.js +0 -3
  5350. package/lib/v2/2047/radar.js +0 -13
  5351. package/lib/v2/2047/router.js +0 -3
  5352. package/lib/v2/2048/index.js +0 -98
  5353. package/lib/v2/2048/maintainer.js +0 -3
  5354. package/lib/v2/2048/radar.js +0 -13
  5355. package/lib/v2/2048/router.js +0 -3
  5356. package/lib/v2/2cycd/index.js +0 -57
  5357. package/lib/v2/2cycd/maintainer.js +0 -3
  5358. package/lib/v2/2cycd/radar.js +0 -25
  5359. package/lib/v2/2cycd/router.js +0 -3
  5360. package/lib/v2/35photo/actual.js +0 -7
  5361. package/lib/v2/35photo/author.js +0 -9
  5362. package/lib/v2/35photo/genre.js +0 -10
  5363. package/lib/v2/35photo/interesting.js +0 -7
  5364. package/lib/v2/35photo/maintainer.js +0 -8
  5365. package/lib/v2/35photo/map.js +0 -7
  5366. package/lib/v2/35photo/new.js +0 -7
  5367. package/lib/v2/35photo/radar.js +0 -43
  5368. package/lib/v2/35photo/router.js +0 -8
  5369. package/lib/v2/35photo/utils.js +0 -57
  5370. package/lib/v2/36kr/index.js +0 -80
  5371. package/lib/v2/36kr/maintainer.js +0 -9
  5372. package/lib/v2/36kr/radar.js +0 -49
  5373. package/lib/v2/36kr/router.js +0 -3
  5374. package/lib/v2/423down/index.js +0 -114
  5375. package/lib/v2/423down/maintainer.js +0 -3
  5376. package/lib/v2/423down/radar.js +0 -193
  5377. package/lib/v2/423down/router.js +0 -3
  5378. package/lib/v2/500px/maintainer.js +0 -4
  5379. package/lib/v2/500px/radar.js +0 -19
  5380. package/lib/v2/500px/router.js +0 -4
  5381. package/lib/v2/500px/tribeSet.js +0 -29
  5382. package/lib/v2/500px/user.js +0 -32
  5383. package/lib/v2/500px/utils.js +0 -122
  5384. package/lib/v2/50forum/maintainer.js +0 -3
  5385. package/lib/v2/50forum/radar.js +0 -13
  5386. package/lib/v2/50forum/router.js +0 -3
  5387. package/lib/v2/50forum/zhuanjia.js +0 -51
  5388. package/lib/v2/52hrtt/index.js +0 -56
  5389. package/lib/v2/52hrtt/maintainer.js +0 -4
  5390. package/lib/v2/52hrtt/radar.js +0 -19
  5391. package/lib/v2/52hrtt/router.js +0 -4
  5392. package/lib/v2/52hrtt/symposium.js +0 -56
  5393. package/lib/v2/591/list.js +0 -144
  5394. package/lib/v2/591/maintainer.js +0 -3
  5395. package/lib/v2/591/radar.js +0 -16
  5396. package/lib/v2/591/router.js +0 -3
  5397. package/lib/v2/6park/index.js +0 -65
  5398. package/lib/v2/6park/maintainer.js +0 -8
  5399. package/lib/v2/6park/news.js +0 -76
  5400. package/lib/v2/6park/radar.js +0 -65
  5401. package/lib/v2/6park/router.js +0 -4
  5402. package/lib/v2/6v123/latestMovies.js +0 -14
  5403. package/lib/v2/6v123/latestTVSeries.js +0 -14
  5404. package/lib/v2/6v123/maintainer.js +0 -4
  5405. package/lib/v2/6v123/radar.js +0 -23
  5406. package/lib/v2/6v123/router.js +0 -4
  5407. package/lib/v2/6v123/utils.js +0 -83
  5408. package/lib/v2/78dm/index.js +0 -74
  5409. package/lib/v2/78dm/maintainer.js +0 -5
  5410. package/lib/v2/78dm/radar.js +0 -37
  5411. package/lib/v2/78dm/router.js +0 -3
  5412. package/lib/v2/7mmtv/index.js +0 -78
  5413. package/lib/v2/7mmtv/maintainer.js +0 -4
  5414. package/lib/v2/7mmtv/radar.js +0 -19
  5415. package/lib/v2/7mmtv/router.js +0 -3
  5416. package/lib/v2/8kcos/article.js +0 -24
  5417. package/lib/v2/8kcos/cat.js +0 -22
  5418. package/lib/v2/8kcos/const.js +0 -4
  5419. package/lib/v2/8kcos/latest.js +0 -23
  5420. package/lib/v2/8kcos/maintainer.js +0 -5
  5421. package/lib/v2/8kcos/radar.js +0 -25
  5422. package/lib/v2/8kcos/router.js +0 -5
  5423. package/lib/v2/8kcos/tag.js +0 -23
  5424. package/lib/v2/8world/index.js +0 -57
  5425. package/lib/v2/8world/maintainer.js +0 -4
  5426. package/lib/v2/8world/radar.js +0 -19
  5427. package/lib/v2/8world/router.js +0 -3
  5428. package/lib/v2/91porn/author.js +0 -60
  5429. package/lib/v2/91porn/index.js +0 -60
  5430. package/lib/v2/91porn/maintainer.js +0 -4
  5431. package/lib/v2/91porn/radar.js +0 -19
  5432. package/lib/v2/91porn/router.js +0 -4
  5433. package/lib/v2/91porn/utils.js +0 -12
  5434. package/lib/v2/95mm/category.js +0 -20
  5435. package/lib/v2/95mm/maintainer.js +0 -5
  5436. package/lib/v2/95mm/radar.js +0 -25
  5437. package/lib/v2/95mm/router.js +0 -5
  5438. package/lib/v2/95mm/tab.js +0 -9
  5439. package/lib/v2/95mm/tag.js +0 -9
  5440. package/lib/v2/95mm/utils.js +0 -59
  5441. package/lib/v2/9to5/maintainer.js +0 -3
  5442. package/lib/v2/9to5/radar.js +0 -35
  5443. package/lib/v2/9to5/router.js +0 -3
  5444. package/lib/v2/9to5/subsite.js +0 -70
  5445. package/lib/v2/9to5/utils.js +0 -36
  5446. package/lib/v2/aamacau/index.js +0 -56
  5447. package/lib/v2/aamacau/maintainer.js +0 -3
  5448. package/lib/v2/aamacau/radar.js +0 -13
  5449. package/lib/v2/aamacau/router.js +0 -3
  5450. package/lib/v2/abmedia/category.js +0 -30
  5451. package/lib/v2/abmedia/index.js +0 -26
  5452. package/lib/v2/abmedia/maintainer.js +0 -3
  5453. package/lib/v2/abmedia/radar.js +0 -19
  5454. package/lib/v2/abmedia/router.js +0 -4
  5455. package/lib/v2/abskoop/index.js +0 -57
  5456. package/lib/v2/abskoop/maintainer.js +0 -3
  5457. package/lib/v2/abskoop/nsfw.js +0 -52
  5458. package/lib/v2/abskoop/radar.js +0 -13
  5459. package/lib/v2/abskoop/router.js +0 -4
  5460. package/lib/v2/abskoop/templates/description.art +0 -3
  5461. package/lib/v2/acfun/article.js +0 -100
  5462. package/lib/v2/acfun/bangumi.js +0 -28
  5463. package/lib/v2/acfun/maintainer.js +0 -5
  5464. package/lib/v2/acfun/radar.js +0 -25
  5465. package/lib/v2/acfun/router.js +0 -5
  5466. package/lib/v2/acfun/video.js +0 -45
  5467. package/lib/v2/acg17/maintainer.js +0 -3
  5468. package/lib/v2/acg17/post.js +0 -20
  5469. package/lib/v2/acg17/radar.js +0 -13
  5470. package/lib/v2/acg17/router.js +0 -3
  5471. package/lib/v2/acs/journal.js +0 -73
  5472. package/lib/v2/acs/maintainer.js +0 -3
  5473. package/lib/v2/acs/radar.js +0 -13
  5474. package/lib/v2/acs/router.js +0 -3
  5475. package/lib/v2/aeaweb/index.js +0 -81
  5476. package/lib/v2/aeaweb/maintainer.js +0 -3
  5477. package/lib/v2/aeaweb/radar.js +0 -13
  5478. package/lib/v2/aeaweb/router.js +0 -3
  5479. package/lib/v2/agefans/detail.js +0 -26
  5480. package/lib/v2/agefans/maintainer.js +0 -4
  5481. package/lib/v2/agefans/radar.js +0 -19
  5482. package/lib/v2/agefans/router.js +0 -4
  5483. package/lib/v2/agefans/update.js +0 -40
  5484. package/lib/v2/agirls/index.js +0 -77
  5485. package/lib/v2/agirls/maintainer.js +0 -5
  5486. package/lib/v2/agirls/radar.js +0 -25
  5487. package/lib/v2/agirls/router.js +0 -5
  5488. package/lib/v2/agirls/topic.js +0 -71
  5489. package/lib/v2/agirls/topic_list.js +0 -44
  5490. package/lib/v2/agora0/index.js +0 -54
  5491. package/lib/v2/agora0/maintainer.js +0 -4
  5492. package/lib/v2/agora0/pen0.js +0 -43
  5493. package/lib/v2/agora0/radar.js +0 -24
  5494. package/lib/v2/agora0/router.js +0 -4
  5495. package/lib/v2/ahjzu/maintainer.js +0 -3
  5496. package/lib/v2/ahjzu/news.js +0 -57
  5497. package/lib/v2/ahjzu/radar.js +0 -13
  5498. package/lib/v2/ahjzu/router.js +0 -3
  5499. package/lib/v2/aicaijing/index.js +0 -73
  5500. package/lib/v2/aicaijing/maintainer.js +0 -6
  5501. package/lib/v2/aicaijing/radar.js +0 -31
  5502. package/lib/v2/aicaijing/router.js +0 -3
  5503. package/lib/v2/aiea/index.js +0 -39
  5504. package/lib/v2/aiea/maintainer.js +0 -3
  5505. package/lib/v2/aiea/radar.js +0 -13
  5506. package/lib/v2/aiea/router.js +0 -3
  5507. package/lib/v2/aijishu/index.js +0 -26
  5508. package/lib/v2/aijishu/maintainer.js +0 -5
  5509. package/lib/v2/aijishu/radar.js +0 -25
  5510. package/lib/v2/aijishu/router.js +0 -3
  5511. package/lib/v2/aijishu/utils.js +0 -36
  5512. package/lib/v2/airchina/index.js +0 -36
  5513. package/lib/v2/airchina/maintainer.js +0 -3
  5514. package/lib/v2/airchina/radar.js +0 -13
  5515. package/lib/v2/airchina/router.js +0 -3
  5516. package/lib/v2/ajmide/index.js +0 -29
  5517. package/lib/v2/ajmide/maintainer.js +0 -3
  5518. package/lib/v2/ajmide/radar.js +0 -16
  5519. package/lib/v2/ajmide/router.js +0 -3
  5520. package/lib/v2/aliyun/database_month.js +0 -40
  5521. package/lib/v2/aliyun/developer/group.js +0 -49
  5522. package/lib/v2/aliyun/maintainer.js +0 -5
  5523. package/lib/v2/aliyun/notice.js +0 -56
  5524. package/lib/v2/aliyun/radar.js +0 -32
  5525. package/lib/v2/aliyun/router.js +0 -5
  5526. package/lib/v2/aliyundrive/files.js +0 -59
  5527. package/lib/v2/aliyundrive/maintainer.js +0 -3
  5528. package/lib/v2/aliyundrive/radar.js +0 -13
  5529. package/lib/v2/aliyundrive/router.js +0 -3
  5530. package/lib/v2/aljazeera/index.js +0 -87
  5531. package/lib/v2/aljazeera/maintainer.js +0 -5
  5532. package/lib/v2/aljazeera/radar.js +0 -62
  5533. package/lib/v2/aljazeera/router.js +0 -3
  5534. package/lib/v2/allrecode/index.js +0 -65
  5535. package/lib/v2/allrecode/maintainer.js +0 -5
  5536. package/lib/v2/allrecode/news.js +0 -35
  5537. package/lib/v2/allrecode/radar.js +0 -25
  5538. package/lib/v2/allrecode/router.js +0 -4
  5539. package/lib/v2/ally/maintainer.js +0 -3
  5540. package/lib/v2/ally/radar.js +0 -13
  5541. package/lib/v2/ally/rail.js +0 -108
  5542. package/lib/v2/ally/router.js +0 -3
  5543. package/lib/v2/amazon/awsblogs.js +0 -27
  5544. package/lib/v2/amazon/kindle-software-updates.js +0 -47
  5545. package/lib/v2/amazon/maintainer.js +0 -4
  5546. package/lib/v2/amazon/radar.js +0 -24
  5547. package/lib/v2/amazon/router.js +0 -4
  5548. package/lib/v2/android/maintainer.js +0 -3
  5549. package/lib/v2/android/platform-tools-releases.js +0 -47
  5550. package/lib/v2/android/radar.js +0 -13
  5551. package/lib/v2/android/router.js +0 -3
  5552. package/lib/v2/annualreviews/index.js +0 -68
  5553. package/lib/v2/annualreviews/maintainer.js +0 -3
  5554. package/lib/v2/annualreviews/radar.js +0 -13
  5555. package/lib/v2/annualreviews/router.js +0 -3
  5556. package/lib/v2/anquanke/category.js +0 -39
  5557. package/lib/v2/anquanke/maintainer.js +0 -4
  5558. package/lib/v2/anquanke/radar.js +0 -13
  5559. package/lib/v2/anquanke/router.js +0 -4
  5560. package/lib/v2/anquanke/vul.js +0 -34
  5561. package/lib/v2/apache/apisix/blog.js +0 -32
  5562. package/lib/v2/apache/maintainer.js +0 -3
  5563. package/lib/v2/apache/radar.js +0 -13
  5564. package/lib/v2/apache/router.js +0 -3
  5565. package/lib/v2/apiseven/blog.js +0 -46
  5566. package/lib/v2/apiseven/maintainer.js +0 -3
  5567. package/lib/v2/apiseven/radar.js +0 -13
  5568. package/lib/v2/apiseven/router.js +0 -3
  5569. package/lib/v2/apkpure/maintainer.js +0 -3
  5570. package/lib/v2/apkpure/radar.js +0 -13
  5571. package/lib/v2/apkpure/router.js +0 -3
  5572. package/lib/v2/apkpure/versions.js +0 -48
  5573. package/lib/v2/apnews/maintainer.js +0 -3
  5574. package/lib/v2/apnews/radar.js +0 -13
  5575. package/lib/v2/apnews/router.js +0 -3
  5576. package/lib/v2/apnews/topics.js +0 -47
  5577. package/lib/v2/app-center/maintainer.js +0 -3
  5578. package/lib/v2/app-center/radar.js +0 -13
  5579. package/lib/v2/app-center/release.js +0 -120
  5580. package/lib/v2/app-center/router.js +0 -3
  5581. package/lib/v2/apple/exchange_repair.js +0 -47
  5582. package/lib/v2/apple/maintainer.js +0 -3
  5583. package/lib/v2/apple/radar.js +0 -13
  5584. package/lib/v2/apple/router.js +0 -3
  5585. package/lib/v2/appledaily/index.js +0 -65
  5586. package/lib/v2/appledaily/maintainer.js +0 -3
  5587. package/lib/v2/appledaily/radar.js +0 -157
  5588. package/lib/v2/appledaily/router.js +0 -3
  5589. package/lib/v2/appleinsider/index.js +0 -59
  5590. package/lib/v2/appleinsider/maintainer.js +0 -3
  5591. package/lib/v2/appleinsider/radar.js +0 -13
  5592. package/lib/v2/appleinsider/router.js +0 -3
  5593. package/lib/v2/appstore/gofans.js +0 -34
  5594. package/lib/v2/appstore/in-app-purchase.js +0 -58
  5595. package/lib/v2/appstore/maintainer.js +0 -7
  5596. package/lib/v2/appstore/price.js +0 -53
  5597. package/lib/v2/appstore/radar.js +0 -41
  5598. package/lib/v2/appstore/router.js +0 -7
  5599. package/lib/v2/appstore/update.js +0 -37
  5600. package/lib/v2/appstore/xianmian.js +0 -28
  5601. package/lib/v2/aqara/community.js +0 -32
  5602. package/lib/v2/aqara/maintainer.js +0 -4
  5603. package/lib/v2/aqara/news.js +0 -53
  5604. package/lib/v2/aqara/radar.js +0 -21
  5605. package/lib/v2/aqara/router.js +0 -4
  5606. package/lib/v2/arcteryx/maintainer.js +0 -5
  5607. package/lib/v2/arcteryx/new-arrivals.js +0 -38
  5608. package/lib/v2/arcteryx/outlet.js +0 -40
  5609. package/lib/v2/arcteryx/radar.js +0 -29
  5610. package/lib/v2/arcteryx/regear-new-arrivals.js +0 -53
  5611. package/lib/v2/arcteryx/router.js +0 -5
  5612. package/lib/v2/arcteryx/utils.js +0 -23
  5613. package/lib/v2/arknights/announce.js +0 -55
  5614. package/lib/v2/arknights/japan.js +0 -25
  5615. package/lib/v2/arknights/maintainer.js +0 -5
  5616. package/lib/v2/arknights/news.js +0 -42
  5617. package/lib/v2/arknights/radar.js +0 -40
  5618. package/lib/v2/arknights/router.js +0 -8
  5619. package/lib/v2/ash-maurya/index.js +0 -54
  5620. package/lib/v2/ash-maurya/maintainer.js +0 -3
  5621. package/lib/v2/ash-maurya/radar.js +0 -13
  5622. package/lib/v2/ash-maurya/router.js +0 -3
  5623. package/lib/v2/asiantolick/index.js +0 -67
  5624. package/lib/v2/asiantolick/maintainer.js +0 -6
  5625. package/lib/v2/asiantolick/radar.js +0 -31
  5626. package/lib/v2/asiantolick/router.js +0 -3
  5627. package/lib/v2/asiantolick/templates/description.art +0 -3
  5628. package/lib/v2/asus/bios.js +0 -39
  5629. package/lib/v2/asus/gpu-tweak.js +0 -31
  5630. package/lib/v2/asus/maintainer.js +0 -4
  5631. package/lib/v2/asus/radar.js +0 -24
  5632. package/lib/v2/asus/router.js +0 -4
  5633. package/lib/v2/atcoder/contest.js +0 -64
  5634. package/lib/v2/atcoder/maintainer.js +0 -4
  5635. package/lib/v2/atcoder/post.js +0 -38
  5636. package/lib/v2/atcoder/radar.js +0 -22
  5637. package/lib/v2/atcoder/router.js +0 -4
  5638. package/lib/v2/audiobar/latest.js +0 -53
  5639. package/lib/v2/audiobar/maintainer.js +0 -3
  5640. package/lib/v2/audiobar/radar.js +0 -13
  5641. package/lib/v2/audiobar/router.js +0 -3
  5642. package/lib/v2/baai/comments.js +0 -35
  5643. package/lib/v2/baai/events.js +0 -35
  5644. package/lib/v2/baai/hub.js +0 -60
  5645. package/lib/v2/baai/maintainer.js +0 -5
  5646. package/lib/v2/baai/radar.js +0 -31
  5647. package/lib/v2/baai/router.js +0 -7
  5648. package/lib/v2/baai/utils.js +0 -33
  5649. package/lib/v2/baidu/gushitong/index.js +0 -28
  5650. package/lib/v2/baidu/maintainer.js +0 -9
  5651. package/lib/v2/baidu/radar.js +0 -68
  5652. package/lib/v2/baidu/router.js +0 -9
  5653. package/lib/v2/baidu/tieba/forum.js +0 -64
  5654. package/lib/v2/baidu/tieba/post.js +0 -80
  5655. package/lib/v2/baidu/tieba/user.js +0 -33
  5656. package/lib/v2/baidu/top.js +0 -34
  5657. package/lib/v2/baijing/index.js +0 -54
  5658. package/lib/v2/baijing/maintainer.js +0 -3
  5659. package/lib/v2/baijing/radar.js +0 -22
  5660. package/lib/v2/baijing/router.js +0 -3
  5661. package/lib/v2/bandcamp/live.js +0 -41
  5662. package/lib/v2/bandcamp/maintainer.js +0 -5
  5663. package/lib/v2/bandcamp/radar.js +0 -25
  5664. package/lib/v2/bandcamp/router.js +0 -5
  5665. package/lib/v2/bandcamp/tag.js +0 -46
  5666. package/lib/v2/bandcamp/weekly.js +0 -29
  5667. package/lib/v2/bangumi/maintainer.js +0 -17
  5668. package/lib/v2/bangumi/moe/index.js +0 -92
  5669. package/lib/v2/bangumi/online/online.js +0 -28
  5670. package/lib/v2/bangumi/radar.js +0 -92
  5671. package/lib/v2/bangumi/router.js +0 -14
  5672. package/lib/v2/bangumi/tv/calendar/_base.js +0 -37
  5673. package/lib/v2/bangumi/tv/calendar/today.js +0 -63
  5674. package/lib/v2/bangumi/tv/group/reply.js +0 -59
  5675. package/lib/v2/bangumi/tv/group/topic.js +0 -39
  5676. package/lib/v2/bangumi/tv/person/index.js +0 -38
  5677. package/lib/v2/bangumi/tv/subject/comments.js +0 -52
  5678. package/lib/v2/bangumi/tv/subject/ep.js +0 -31
  5679. package/lib/v2/bangumi/tv/subject/index.js +0 -26
  5680. package/lib/v2/bangumi/tv/subject/offcial-subject-api.js +0 -32
  5681. package/lib/v2/bangumi/tv/user/blog.js +0 -43
  5682. package/lib/v2/baozimh/index.js +0 -55
  5683. package/lib/v2/baozimh/maintainer.js +0 -3
  5684. package/lib/v2/baozimh/radar.js +0 -13
  5685. package/lib/v2/baozimh/router.js +0 -3
  5686. package/lib/v2/barronschina/index.js +0 -70
  5687. package/lib/v2/barronschina/maintainer.js +0 -3
  5688. package/lib/v2/barronschina/radar.js +0 -13
  5689. package/lib/v2/barronschina/router.js +0 -3
  5690. package/lib/v2/bast/index.js +0 -74
  5691. package/lib/v2/bast/maintainer.js +0 -3
  5692. package/lib/v2/bast/radar.js +0 -13
  5693. package/lib/v2/bast/router.js +0 -3
  5694. package/lib/v2/bbcnewslabs/maintainer.js +0 -3
  5695. package/lib/v2/bbcnewslabs/news.js +0 -32
  5696. package/lib/v2/bbcnewslabs/radar.js +0 -13
  5697. package/lib/v2/bbcnewslabs/router.js +0 -3
  5698. package/lib/v2/bdys/index.js +0 -98
  5699. package/lib/v2/bdys/maintainer.js +0 -3
  5700. package/lib/v2/bdys/radar.js +0 -20
  5701. package/lib/v2/bdys/router.js +0 -3
  5702. package/lib/v2/behance/maintainer.js +0 -3
  5703. package/lib/v2/behance/radar.js +0 -26
  5704. package/lib/v2/behance/router.js +0 -3
  5705. package/lib/v2/behance/user.js +0 -67
  5706. package/lib/v2/bellroy/maintainer.js +0 -3
  5707. package/lib/v2/bellroy/new-releases.js +0 -26
  5708. package/lib/v2/bellroy/radar.js +0 -13
  5709. package/lib/v2/bellroy/router.js +0 -3
  5710. package/lib/v2/bendibao/maintainer.js +0 -3
  5711. package/lib/v2/bendibao/news.js +0 -109
  5712. package/lib/v2/bendibao/radar.js +0 -13
  5713. package/lib/v2/bendibao/router.js +0 -3
  5714. package/lib/v2/bgmlist/maintainer.js +0 -3
  5715. package/lib/v2/bgmlist/onair.js +0 -32
  5716. package/lib/v2/bgmlist/radar.js +0 -13
  5717. package/lib/v2/bgmlist/router.js +0 -3
  5718. package/lib/v2/bigquant/collections.js +0 -35
  5719. package/lib/v2/bigquant/maintainer.js +0 -3
  5720. package/lib/v2/bigquant/radar.js +0 -13
  5721. package/lib/v2/bigquant/router.js +0 -3
  5722. package/lib/v2/bilibili/app.js +0 -33
  5723. package/lib/v2/bilibili/article.js +0 -53
  5724. package/lib/v2/bilibili/audio.js +0 -42
  5725. package/lib/v2/bilibili/bangumi.js +0 -50
  5726. package/lib/v2/bilibili/blackboard.js +0 -31
  5727. package/lib/v2/bilibili/cache.js +0 -149
  5728. package/lib/v2/bilibili/coin.js +0 -35
  5729. package/lib/v2/bilibili/danmaku.js +0 -56
  5730. package/lib/v2/bilibili/dynamic.js +0 -209
  5731. package/lib/v2/bilibili/fav.js +0 -39
  5732. package/lib/v2/bilibili/followers.js +0 -38
  5733. package/lib/v2/bilibili/followings.js +0 -37
  5734. package/lib/v2/bilibili/followings_article.js +0 -57
  5735. package/lib/v2/bilibili/followings_dynamic.js +0 -137
  5736. package/lib/v2/bilibili/followings_video.js +0 -46
  5737. package/lib/v2/bilibili/hotSearch.js +0 -25
  5738. package/lib/v2/bilibili/linkNews.js +0 -42
  5739. package/lib/v2/bilibili/liveArea.js +0 -64
  5740. package/lib/v2/bilibili/liveRoom.js +0 -41
  5741. package/lib/v2/bilibili/liveSearch.js +0 -40
  5742. package/lib/v2/bilibili/maintainer.js +0 -43
  5743. package/lib/v2/bilibili/mallIP.js +0 -34
  5744. package/lib/v2/bilibili/mallNew.js +0 -31
  5745. package/lib/v2/bilibili/manga_followings.js +0 -39
  5746. package/lib/v2/bilibili/manga_update.js +0 -33
  5747. package/lib/v2/bilibili/online.js +0 -25
  5748. package/lib/v2/bilibili/page.js +0 -36
  5749. package/lib/v2/bilibili/partion-ranking.js +0 -59
  5750. package/lib/v2/bilibili/partion.js +0 -36
  5751. package/lib/v2/bilibili/popular.js +0 -29
  5752. package/lib/v2/bilibili/radar.js +0 -141
  5753. package/lib/v2/bilibili/ranking.js +0 -43
  5754. package/lib/v2/bilibili/readlist.js +0 -31
  5755. package/lib/v2/bilibili/reply.js +0 -38
  5756. package/lib/v2/bilibili/router.js +0 -43
  5757. package/lib/v2/bilibili/topic.js +0 -50
  5758. package/lib/v2/bilibili/userChannel.js +0 -69
  5759. package/lib/v2/bilibili/userCollection.js +0 -51
  5760. package/lib/v2/bilibili/userFav.js +0 -35
  5761. package/lib/v2/bilibili/user_bangumi.js +0 -36
  5762. package/lib/v2/bilibili/utils.js +0 -20
  5763. package/lib/v2/bilibili/video-all.js +0 -73
  5764. package/lib/v2/bilibili/video.js +0 -46
  5765. package/lib/v2/bilibili/vsearch.js +0 -71
  5766. package/lib/v2/bilibili/weekly_recommend.js +0 -41
  5767. package/lib/v2/biodiscover/index.js +0 -44
  5768. package/lib/v2/biodiscover/maintainer.js +0 -3
  5769. package/lib/v2/biodiscover/radar.js +0 -13
  5770. package/lib/v2/biodiscover/router.js +0 -3
  5771. package/lib/v2/bioone/featured.js +0 -52
  5772. package/lib/v2/bioone/journal.js +0 -60
  5773. package/lib/v2/bioone/maintainer.js +0 -4
  5774. package/lib/v2/bioone/radar.js +0 -19
  5775. package/lib/v2/bioone/router.js +0 -4
  5776. package/lib/v2/biquge/index.js +0 -99
  5777. package/lib/v2/biquge/maintainer.js +0 -3
  5778. package/lib/v2/biquge/radar.js +0 -29
  5779. package/lib/v2/biquge/router.js +0 -3
  5780. package/lib/v2/bit/cs/cs.js +0 -24
  5781. package/lib/v2/bit/cs/utils.js +0 -53
  5782. package/lib/v2/bit/jwc/jwc.js +0 -24
  5783. package/lib/v2/bit/jwc/utils.js +0 -49
  5784. package/lib/v2/bit/maintainer.js +0 -6
  5785. package/lib/v2/bit/radar.js +0 -37
  5786. package/lib/v2/bit/router.js +0 -6
  5787. package/lib/v2/bit/rszhaopin.js +0 -30
  5788. package/lib/v2/bit/yjs.js +0 -27
  5789. package/lib/v2/bitbucket/commits.js +0 -40
  5790. package/lib/v2/bitbucket/maintainer.js +0 -4
  5791. package/lib/v2/bitbucket/radar.js +0 -19
  5792. package/lib/v2/bitbucket/router.js +0 -4
  5793. package/lib/v2/bitbucket/tags.js +0 -40
  5794. package/lib/v2/bitmovin/blog.js +0 -27
  5795. package/lib/v2/bitmovin/maintainer.js +0 -3
  5796. package/lib/v2/bitmovin/radar.js +0 -13
  5797. package/lib/v2/bitmovin/router.js +0 -3
  5798. package/lib/v2/bjfu/grs.js +0 -65
  5799. package/lib/v2/bjfu/it/index.js +0 -49
  5800. package/lib/v2/bjfu/it/utils.js +0 -64
  5801. package/lib/v2/bjfu/jwc/index.js +0 -55
  5802. package/lib/v2/bjfu/jwc/utils.js +0 -63
  5803. package/lib/v2/bjfu/kjc.js +0 -65
  5804. package/lib/v2/bjfu/maintainer.js +0 -7
  5805. package/lib/v2/bjfu/news/index.js +0 -55
  5806. package/lib/v2/bjfu/news/utils.js +0 -63
  5807. package/lib/v2/bjfu/radar.js +0 -45
  5808. package/lib/v2/bjfu/router.js +0 -7
  5809. package/lib/v2/bjp/apod.js +0 -43
  5810. package/lib/v2/bjp/maintainer.js +0 -3
  5811. package/lib/v2/bjp/radar.js +0 -13
  5812. package/lib/v2/bjp/router.js +0 -3
  5813. package/lib/v2/bjsk/index.js +0 -52
  5814. package/lib/v2/bjsk/maintainer.js +0 -3
  5815. package/lib/v2/bjsk/radar.js +0 -13
  5816. package/lib/v2/bjsk/router.js +0 -3
  5817. package/lib/v2/bjwxdxh/index.js +0 -52
  5818. package/lib/v2/bjwxdxh/maintainer.js +0 -3
  5819. package/lib/v2/bjwxdxh/radar.js +0 -13
  5820. package/lib/v2/bjwxdxh/router.js +0 -3
  5821. package/lib/v2/bjx/huanbao.js +0 -78
  5822. package/lib/v2/bjx/maintainer.js +0 -4
  5823. package/lib/v2/bjx/radar.js +0 -21
  5824. package/lib/v2/bjx/router.js +0 -4
  5825. package/lib/v2/bjx/types.js +0 -33
  5826. package/lib/v2/blockbeats/index.js +0 -43
  5827. package/lib/v2/blockbeats/maintainer.js +0 -3
  5828. package/lib/v2/blockbeats/radar.js +0 -19
  5829. package/lib/v2/blockbeats/router.js +0 -3
  5830. package/lib/v2/bloomberg/authors.js +0 -52
  5831. package/lib/v2/bloomberg/index.js +0 -28
  5832. package/lib/v2/bloomberg/maintainer.js +0 -5
  5833. package/lib/v2/bloomberg/radar.js +0 -19
  5834. package/lib/v2/bloomberg/router.js +0 -5
  5835. package/lib/v2/bloomberg/templates/image_figure.art +0 -9
  5836. package/lib/v2/bloomberg/utils.js +0 -407
  5837. package/lib/v2/bluestacks/maintainer.js +0 -3
  5838. package/lib/v2/bluestacks/radar.js +0 -13
  5839. package/lib/v2/bluestacks/release.js +0 -63
  5840. package/lib/v2/bluestacks/router.js +0 -3
  5841. package/lib/v2/bnu/bs.js +0 -52
  5842. package/lib/v2/bnu/dwxgb.js +0 -57
  5843. package/lib/v2/bnu/fdy.js +0 -41
  5844. package/lib/v2/bnu/lib.js +0 -40
  5845. package/lib/v2/bnu/maintainer.js +0 -6
  5846. package/lib/v2/bnu/radar.js +0 -37
  5847. package/lib/v2/bnu/router.js +0 -6
  5848. package/lib/v2/bookfere/category.js +0 -36
  5849. package/lib/v2/bookfere/maintainer.js +0 -3
  5850. package/lib/v2/bookfere/radar.js +0 -11
  5851. package/lib/v2/bookfere/router.js +0 -3
  5852. package/lib/v2/brave/latest.js +0 -38
  5853. package/lib/v2/brave/maintainer.js +0 -3
  5854. package/lib/v2/brave/radar.js +0 -13
  5855. package/lib/v2/brave/router.js +0 -3
  5856. package/lib/v2/brooklynmuseum/exhibitions.js +0 -27
  5857. package/lib/v2/brooklynmuseum/maintainer.js +0 -3
  5858. package/lib/v2/brooklynmuseum/radar.js +0 -11
  5859. package/lib/v2/brooklynmuseum/router.js +0 -3
  5860. package/lib/v2/bse/index.js +0 -173
  5861. package/lib/v2/bse/maintainer.js +0 -3
  5862. package/lib/v2/bse/radar.js +0 -13
  5863. package/lib/v2/bse/router.js +0 -3
  5864. package/lib/v2/btzj/index.js +0 -103
  5865. package/lib/v2/btzj/maintainer.js +0 -3
  5866. package/lib/v2/btzj/radar.js +0 -13
  5867. package/lib/v2/btzj/router.js +0 -3
  5868. package/lib/v2/bupt/maintainer.js +0 -3
  5869. package/lib/v2/bupt/radar.js +0 -13
  5870. package/lib/v2/bupt/rczp.js +0 -51
  5871. package/lib/v2/bupt/router.js +0 -3
  5872. package/lib/v2/byteclicks/index.js +0 -22
  5873. package/lib/v2/byteclicks/maintainer.js +0 -4
  5874. package/lib/v2/byteclicks/radar.js +0 -19
  5875. package/lib/v2/byteclicks/router.js +0 -4
  5876. package/lib/v2/byteclicks/tag.js +0 -30
  5877. package/lib/v2/byteclicks/utils.js +0 -13
  5878. package/lib/v2/bytes/bytes.js +0 -25
  5879. package/lib/v2/bytes/maintainer.js +0 -4
  5880. package/lib/v2/bytes/radar.js +0 -13
  5881. package/lib/v2/bytes/router.js +0 -3
  5882. package/lib/v2/c114/maintainer.js +0 -3
  5883. package/lib/v2/c114/radar.js +0 -13
  5884. package/lib/v2/c114/roll.js +0 -57
  5885. package/lib/v2/c114/router.js +0 -3
  5886. package/lib/v2/caai/index.js +0 -22
  5887. package/lib/v2/caai/maintainer.js +0 -3
  5888. package/lib/v2/caai/radar.js +0 -13
  5889. package/lib/v2/caai/router.js +0 -3
  5890. package/lib/v2/caai/utils.js +0 -46
  5891. package/lib/v2/caareviews/book.js +0 -14
  5892. package/lib/v2/caareviews/essay.js +0 -14
  5893. package/lib/v2/caareviews/exhibition.js +0 -14
  5894. package/lib/v2/caareviews/maintainer.js +0 -5
  5895. package/lib/v2/caareviews/radar.js +0 -25
  5896. package/lib/v2/caareviews/router.js +0 -5
  5897. package/lib/v2/caareviews/utils.js +0 -49
  5898. package/lib/v2/cahkms/index.js +0 -69
  5899. package/lib/v2/cahkms/maintainer.js +0 -3
  5900. package/lib/v2/cahkms/radar.js +0 -13
  5901. package/lib/v2/cahkms/router.js +0 -3
  5902. package/lib/v2/caijing/maintainer.js +0 -3
  5903. package/lib/v2/caijing/radar.js +0 -13
  5904. package/lib/v2/caijing/roll.js +0 -46
  5905. package/lib/v2/caijing/router.js +0 -3
  5906. package/lib/v2/caixin/article.js +0 -27
  5907. package/lib/v2/caixin/blog.js +0 -58
  5908. package/lib/v2/caixin/category.js +0 -56
  5909. package/lib/v2/caixin/database.js +0 -48
  5910. package/lib/v2/caixin/k.js +0 -40
  5911. package/lib/v2/caixin/latest.js +0 -50
  5912. package/lib/v2/caixin/maintainer.js +0 -8
  5913. package/lib/v2/caixin/radar.js +0 -43
  5914. package/lib/v2/caixin/router.js +0 -8
  5915. package/lib/v2/caixin/templates/article.art +0 -38
  5916. package/lib/v2/caixin/utils.js +0 -52
  5917. package/lib/v2/camchina/index.js +0 -52
  5918. package/lib/v2/camchina/maintainer.js +0 -3
  5919. package/lib/v2/camchina/radar.js +0 -13
  5920. package/lib/v2/camchina/router.js +0 -3
  5921. package/lib/v2/cankaoxiaoxi/index.js +0 -68
  5922. package/lib/v2/cankaoxiaoxi/maintainer.js +0 -4
  5923. package/lib/v2/cankaoxiaoxi/radar.js +0 -16
  5924. package/lib/v2/cankaoxiaoxi/router.js +0 -4
  5925. package/lib/v2/cartoonmad/comic.js +0 -70
  5926. package/lib/v2/cartoonmad/maintainer.js +0 -3
  5927. package/lib/v2/cartoonmad/radar.js +0 -13
  5928. package/lib/v2/cartoonmad/router.js +0 -3
  5929. package/lib/v2/cas/cg/index.js +0 -52
  5930. package/lib/v2/cas/ia/yjs.js +0 -25
  5931. package/lib/v2/cas/iee/kydt.js +0 -48
  5932. package/lib/v2/cas/maintainer.js +0 -7
  5933. package/lib/v2/cas/mesalab/kb.js +0 -41
  5934. package/lib/v2/cas/radar.js +0 -48
  5935. package/lib/v2/cas/router.js +0 -7
  5936. package/lib/v2/cas/sim/kyjz.js +0 -47
  5937. package/lib/v2/cast/index.js +0 -74
  5938. package/lib/v2/cast/maintainer.js +0 -3
  5939. package/lib/v2/cast/radar.js +0 -13
  5940. package/lib/v2/cast/router.js +0 -3
  5941. package/lib/v2/cau/ele.js +0 -42
  5942. package/lib/v2/cau/maintainer.js +0 -4
  5943. package/lib/v2/cau/radar.js +0 -21
  5944. package/lib/v2/cau/router.js +0 -4
  5945. package/lib/v2/cau/yjs.js +0 -42
  5946. package/lib/v2/cbirc/index.js +0 -119
  5947. package/lib/v2/cbirc/maintainer.js +0 -3
  5948. package/lib/v2/cbirc/radar.js +0 -13
  5949. package/lib/v2/cbirc/router.js +0 -3
  5950. package/lib/v2/cbnweek/index.js +0 -46
  5951. package/lib/v2/cbnweek/maintainer.js +0 -3
  5952. package/lib/v2/cbnweek/radar.js +0 -13
  5953. package/lib/v2/cbnweek/router.js +0 -3
  5954. package/lib/v2/ccac/maintainer.js +0 -3
  5955. package/lib/v2/ccac/news.js +0 -56
  5956. package/lib/v2/ccac/radar.js +0 -13
  5957. package/lib/v2/ccac/router.js +0 -3
  5958. package/lib/v2/ccac/utils.js +0 -32
  5959. package/lib/v2/ccf/ccfcv/index.js +0 -68
  5960. package/lib/v2/ccf/maintainer.js +0 -5
  5961. package/lib/v2/ccf/news.js +0 -45
  5962. package/lib/v2/ccf/radar.js +0 -41
  5963. package/lib/v2/ccf/router.js +0 -5
  5964. package/lib/v2/ccf/tfbd/index.js +0 -22
  5965. package/lib/v2/ccf/tfbd/utils.js +0 -47
  5966. package/lib/v2/ccnu/career.js +0 -31
  5967. package/lib/v2/ccnu/cs.js +0 -28
  5968. package/lib/v2/ccnu/maintainer.js +0 -6
  5969. package/lib/v2/ccnu/radar.js +0 -40
  5970. package/lib/v2/ccnu/router.js +0 -6
  5971. package/lib/v2/ccnu/wu.js +0 -27
  5972. package/lib/v2/ccnu/yjs.js +0 -27
  5973. package/lib/v2/ccreports/index.js +0 -41
  5974. package/lib/v2/ccreports/maintainer.js +0 -3
  5975. package/lib/v2/ccreports/radar.js +0 -13
  5976. package/lib/v2/ccreports/router.js +0 -3
  5977. package/lib/v2/cctv/category.js +0 -20
  5978. package/lib/v2/cctv/jx.js +0 -51
  5979. package/lib/v2/cctv/lm.js +0 -77
  5980. package/lib/v2/cctv/maintainer.js +0 -7
  5981. package/lib/v2/cctv/radar.js +0 -41
  5982. package/lib/v2/cctv/router.js +0 -7
  5983. package/lib/v2/cctv/special.js +0 -110
  5984. package/lib/v2/cctv/utils/mzzlbg.js +0 -41
  5985. package/lib/v2/cctv/utils/news.js +0 -105
  5986. package/lib/v2/cctv/utils/xinwen1j1.js +0 -81
  5987. package/lib/v2/cctv/xwlb.js +0 -50
  5988. package/lib/v2/cde/index.js +0 -132
  5989. package/lib/v2/cde/maintainer.js +0 -5
  5990. package/lib/v2/cde/radar.js +0 -73
  5991. package/lib/v2/cde/router.js +0 -5
  5992. package/lib/v2/cde/utils.js +0 -20
  5993. package/lib/v2/cde/xxgk.js +0 -73
  5994. package/lib/v2/cde/zdyz.js +0 -77
  5995. package/lib/v2/cdi/index.js +0 -61
  5996. package/lib/v2/cdi/maintainer.js +0 -3
  5997. package/lib/v2/cdi/radar.js +0 -13
  5998. package/lib/v2/cdi/router.js +0 -3
  5999. package/lib/v2/cdzjryb/maintainer.js +0 -3
  6000. package/lib/v2/cdzjryb/projectList.js +0 -49
  6001. package/lib/v2/cdzjryb/radar.js +0 -13
  6002. package/lib/v2/cdzjryb/router.js +0 -3
  6003. package/lib/v2/cebbank/all.js +0 -51
  6004. package/lib/v2/cebbank/history.js +0 -50
  6005. package/lib/v2/cebbank/maintainer.js +0 -4
  6006. package/lib/v2/cebbank/radar.js +0 -19
  6007. package/lib/v2/cebbank/router.js +0 -4
  6008. package/lib/v2/cebbank/utils.js +0 -70
  6009. package/lib/v2/cgtn/maintainer.js +0 -3
  6010. package/lib/v2/cgtn/podcast.js +0 -35
  6011. package/lib/v2/cgtn/radar.js +0 -13
  6012. package/lib/v2/cgtn/router.js +0 -3
  6013. package/lib/v2/chaincatcher/home.js +0 -50
  6014. package/lib/v2/chaincatcher/maintainer.js +0 -4
  6015. package/lib/v2/chaincatcher/news.js +0 -40
  6016. package/lib/v2/chaincatcher/radar.js +0 -19
  6017. package/lib/v2/chaincatcher/router.js +0 -4
  6018. package/lib/v2/changba/maintainer.js +0 -3
  6019. package/lib/v2/changba/radar.js +0 -13
  6020. package/lib/v2/changba/router.js +0 -3
  6021. package/lib/v2/changba/user.js +0 -84
  6022. package/lib/v2/chaoxing/maintainer.js +0 -3
  6023. package/lib/v2/chaoxing/qk.js +0 -59
  6024. package/lib/v2/chaoxing/radar.js +0 -13
  6025. package/lib/v2/chaoxing/router.js +0 -3
  6026. package/lib/v2/chaping/banner.js +0 -40
  6027. package/lib/v2/chaping/maintainer.js +0 -5
  6028. package/lib/v2/chaping/news.js +0 -55
  6029. package/lib/v2/chaping/newsflash.js +0 -23
  6030. package/lib/v2/chaping/radar.js +0 -31
  6031. package/lib/v2/chaping/router.js +0 -5
  6032. package/lib/v2/chiculture/maintainer.js +0 -3
  6033. package/lib/v2/chiculture/radar.js +0 -16
  6034. package/lib/v2/chiculture/router.js +0 -3
  6035. package/lib/v2/chiculture/topic.js +0 -61
  6036. package/lib/v2/china/maintainer.js +0 -4
  6037. package/lib/v2/china/news/highlights/news.js +0 -40
  6038. package/lib/v2/china/news/military/news.js +0 -31
  6039. package/lib/v2/china/radar.js +0 -21
  6040. package/lib/v2/china/router.js +0 -4
  6041. package/lib/v2/chinacef/experts.js +0 -38
  6042. package/lib/v2/chinacef/hot.js +0 -38
  6043. package/lib/v2/chinacef/index.js +0 -39
  6044. package/lib/v2/chinacef/maintainer.js +0 -5
  6045. package/lib/v2/chinacef/radar.js +0 -25
  6046. package/lib/v2/chinacef/router.js +0 -5
  6047. package/lib/v2/chinacef/templates/description.art +0 -1
  6048. package/lib/v2/chinacef/utils.js +0 -55
  6049. package/lib/v2/chinadegrees/maintainer.js +0 -3
  6050. package/lib/v2/chinadegrees/province.js +0 -66
  6051. package/lib/v2/chinadegrees/radar.js +0 -13
  6052. package/lib/v2/chinadegrees/router.js +0 -3
  6053. package/lib/v2/chinafactcheck/index.js +0 -38
  6054. package/lib/v2/chinafactcheck/maintainer.js +0 -3
  6055. package/lib/v2/chinafactcheck/radar.js +0 -13
  6056. package/lib/v2/chinafactcheck/router.js +0 -3
  6057. package/lib/v2/chinafactcheck/templates/description.art +0 -1
  6058. package/lib/v2/chinafactcheck/utils.js +0 -60
  6059. package/lib/v2/chinanews/index.js +0 -66
  6060. package/lib/v2/chinanews/maintainer.js +0 -3
  6061. package/lib/v2/chinanews/radar.js +0 -13
  6062. package/lib/v2/chinanews/router.js +0 -3
  6063. package/lib/v2/chinathinktanks/maintainer.js +0 -3
  6064. package/lib/v2/chinathinktanks/radar.js +0 -13
  6065. package/lib/v2/chinathinktanks/router.js +0 -3
  6066. package/lib/v2/chinathinktanks/viewpoint.js +0 -52
  6067. package/lib/v2/chinaventure/index.js +0 -63
  6068. package/lib/v2/chinaventure/maintainer.js +0 -3
  6069. package/lib/v2/chinaventure/radar.js +0 -13
  6070. package/lib/v2/chinaventure/router.js +0 -3
  6071. package/lib/v2/chsi/hotnews.js +0 -56
  6072. package/lib/v2/chsi/kydt.js +0 -51
  6073. package/lib/v2/chsi/kyzx.js +0 -51
  6074. package/lib/v2/chsi/maintainer.js +0 -5
  6075. package/lib/v2/chsi/radar.js +0 -25
  6076. package/lib/v2/chsi/router.js +0 -5
  6077. package/lib/v2/ciidbnu/index.js +0 -57
  6078. package/lib/v2/ciidbnu/maintainer.js +0 -3
  6079. package/lib/v2/ciidbnu/radar.js +0 -13
  6080. package/lib/v2/ciidbnu/router.js +0 -3
  6081. package/lib/v2/civitai/discussions.js +0 -42
  6082. package/lib/v2/civitai/maintainer.js +0 -4
  6083. package/lib/v2/civitai/models.js +0 -26
  6084. package/lib/v2/civitai/radar.js +0 -19
  6085. package/lib/v2/civitai/router.js +0 -4
  6086. package/lib/v2/clash/maintainer.js +0 -3
  6087. package/lib/v2/clash/premium.js +0 -23
  6088. package/lib/v2/clash/radar.js +0 -13
  6089. package/lib/v2/clash/router.js +0 -3
  6090. package/lib/v2/clickme/index.js +0 -56
  6091. package/lib/v2/clickme/maintainer.js +0 -3
  6092. package/lib/v2/clickme/radar.js +0 -21
  6093. package/lib/v2/clickme/router.js +0 -3
  6094. package/lib/v2/cloudnative/blog.js +0 -34
  6095. package/lib/v2/cloudnative/maintainer.js +0 -3
  6096. package/lib/v2/cloudnative/radar.js +0 -13
  6097. package/lib/v2/cloudnative/router.js +0 -3
  6098. package/lib/v2/cls/depth.js +0 -82
  6099. package/lib/v2/cls/hot.js +0 -45
  6100. package/lib/v2/cls/maintainer.js +0 -5
  6101. package/lib/v2/cls/radar.js +0 -25
  6102. package/lib/v2/cls/router.js +0 -5
  6103. package/lib/v2/cls/telegraph.js +0 -52
  6104. package/lib/v2/cls/templates/depth.art +0 -10
  6105. package/lib/v2/cls/templates/telegraph.art +0 -10
  6106. package/lib/v2/cls/utils.js +0 -15
  6107. package/lib/v2/cmde/index.js +0 -72
  6108. package/lib/v2/cmde/maintainer.js +0 -3
  6109. package/lib/v2/cmde/radar.js +0 -13
  6110. package/lib/v2/cmde/router.js +0 -3
  6111. package/lib/v2/cn-healthcare/index.js +0 -31
  6112. package/lib/v2/cn-healthcare/maintainer.js +0 -3
  6113. package/lib/v2/cn-healthcare/radar.js +0 -13
  6114. package/lib/v2/cn-healthcare/router.js +0 -3
  6115. package/lib/v2/cnbc/maintainer.js +0 -3
  6116. package/lib/v2/cnbc/radar.js +0 -21
  6117. package/lib/v2/cnbc/router.js +0 -3
  6118. package/lib/v2/cnbc/rss.js +0 -54
  6119. package/lib/v2/cnbeta/maintainer.js +0 -5
  6120. package/lib/v2/cnbeta/radar.js +0 -25
  6121. package/lib/v2/cnbeta/router.js +0 -4
  6122. package/lib/v2/cnbeta/type.js +0 -36
  6123. package/lib/v2/cnbeta/utils.js +0 -25
  6124. package/lib/v2/cnblogs/common.js +0 -30
  6125. package/lib/v2/cnblogs/maintainer.js +0 -7
  6126. package/lib/v2/cnblogs/radar.js +0 -37
  6127. package/lib/v2/cnblogs/router.js +0 -7
  6128. package/lib/v2/cncf/index.js +0 -43
  6129. package/lib/v2/cncf/maintainer.js +0 -3
  6130. package/lib/v2/cncf/radar.js +0 -31
  6131. package/lib/v2/cncf/reports.js +0 -38
  6132. package/lib/v2/cncf/router.js +0 -4
  6133. package/lib/v2/cngal/entry.js +0 -25
  6134. package/lib/v2/cngal/maintainer.js +0 -4
  6135. package/lib/v2/cngal/radar.js +0 -19
  6136. package/lib/v2/cngal/router.js +0 -4
  6137. package/lib/v2/cngal/weekly.js +0 -20
  6138. package/lib/v2/cnjxol/index.js +0 -97
  6139. package/lib/v2/cnjxol/maintainer.js +0 -4
  6140. package/lib/v2/cnjxol/radar.js +0 -19
  6141. package/lib/v2/cnjxol/router.js +0 -3
  6142. package/lib/v2/cnki/author.js +0 -45
  6143. package/lib/v2/cnki/debut.js +0 -62
  6144. package/lib/v2/cnki/journals.js +0 -53
  6145. package/lib/v2/cnki/maintainer.js +0 -5
  6146. package/lib/v2/cnki/radar.js +0 -27
  6147. package/lib/v2/cnki/router.js +0 -5
  6148. package/lib/v2/cnki/utils.js +0 -26
  6149. package/lib/v2/cntheory/maintainer.js +0 -3
  6150. package/lib/v2/cntheory/paper.js +0 -89
  6151. package/lib/v2/cntheory/radar.js +0 -13
  6152. package/lib/v2/cntheory/router.js +0 -3
  6153. package/lib/v2/cntheory/templates/description.art +0 -2
  6154. package/lib/v2/cntv/column.js +0 -29
  6155. package/lib/v2/cntv/maintainer.js +0 -3
  6156. package/lib/v2/cntv/radar.js +0 -13
  6157. package/lib/v2/cntv/router.js +0 -3
  6158. package/lib/v2/codeforces/contests.js +0 -45
  6159. package/lib/v2/codeforces/maintainer.js +0 -4
  6160. package/lib/v2/codeforces/radar.js +0 -21
  6161. package/lib/v2/codeforces/recent_actions.js +0 -47
  6162. package/lib/v2/codeforces/router.js +0 -4
  6163. package/lib/v2/coindesk/index.js +0 -34
  6164. package/lib/v2/coindesk/maintainer.js +0 -3
  6165. package/lib/v2/coindesk/radar.js +0 -13
  6166. package/lib/v2/coindesk/router.js +0 -3
  6167. package/lib/v2/comicskingdom/index.js +0 -60
  6168. package/lib/v2/comicskingdom/maintainer.js +0 -3
  6169. package/lib/v2/comicskingdom/radar.js +0 -13
  6170. package/lib/v2/comicskingdom/router.js +0 -3
  6171. package/lib/v2/consumer/index.js +0 -55
  6172. package/lib/v2/consumer/maintainer.js +0 -3
  6173. package/lib/v2/consumer/radar.js +0 -13
  6174. package/lib/v2/consumer/router.js +0 -3
  6175. package/lib/v2/cool18/index.js +0 -61
  6176. package/lib/v2/cool18/maintainer.js +0 -3
  6177. package/lib/v2/cool18/radar.js +0 -13
  6178. package/lib/v2/cool18/router.js +0 -3
  6179. package/lib/v2/coolapk/dyh.js +0 -37
  6180. package/lib/v2/coolapk/hot.js +0 -97
  6181. package/lib/v2/coolapk/huati.js +0 -24
  6182. package/lib/v2/coolapk/maintainer.js +0 -9
  6183. package/lib/v2/coolapk/radar.js +0 -31
  6184. package/lib/v2/coolapk/router.js +0 -9
  6185. package/lib/v2/coolapk/toutiao.js +0 -29
  6186. package/lib/v2/coolapk/tuwen.js +0 -31
  6187. package/lib/v2/coolapk/userDynamic.js +0 -35
  6188. package/lib/v2/coolapk/utils.js +0 -150
  6189. package/lib/v2/coomer/artist.js +0 -9
  6190. package/lib/v2/coomer/maintainer.js +0 -4
  6191. package/lib/v2/coomer/posts.js +0 -7
  6192. package/lib/v2/coomer/radar.js +0 -19
  6193. package/lib/v2/coomer/router.js +0 -4
  6194. package/lib/v2/coomer/utils.js +0 -53
  6195. package/lib/v2/copymanga/comic.js +0 -110
  6196. package/lib/v2/copymanga/maintainer.js +0 -3
  6197. package/lib/v2/copymanga/radar.js +0 -19
  6198. package/lib/v2/copymanga/router.js +0 -3
  6199. package/lib/v2/copymanga/templates/comic.art +0 -4
  6200. package/lib/v2/cpcey/index.js +0 -60
  6201. package/lib/v2/cpcey/maintainer.js +0 -3
  6202. package/lib/v2/cpcey/radar.js +0 -27
  6203. package/lib/v2/cpcey/router.js +0 -3
  6204. package/lib/v2/cpuid/maintainer.js +0 -3
  6205. package/lib/v2/cpuid/news.js +0 -30
  6206. package/lib/v2/cpuid/radar.js +0 -13
  6207. package/lib/v2/cpuid/router.js +0 -3
  6208. package/lib/v2/cqwu/index.js +0 -46
  6209. package/lib/v2/cqwu/maintainer.js +0 -3
  6210. package/lib/v2/cqwu/radar.js +0 -27
  6211. package/lib/v2/cqwu/router.js +0 -3
  6212. package/lib/v2/crac/index.js +0 -46
  6213. package/lib/v2/crac/maintainer.js +0 -3
  6214. package/lib/v2/crac/radar.js +0 -13
  6215. package/lib/v2/crac/router.js +0 -3
  6216. package/lib/v2/creative-comic/book.js +0 -60
  6217. package/lib/v2/creative-comic/maintainer.js +0 -3
  6218. package/lib/v2/creative-comic/radar.js +0 -13
  6219. package/lib/v2/creative-comic/router.js +0 -3
  6220. package/lib/v2/creative-comic/utils.js +0 -96
  6221. package/lib/v2/crossbell/feeds/following.js +0 -29
  6222. package/lib/v2/crossbell/maintainer.js +0 -6
  6223. package/lib/v2/crossbell/notes/character.js +0 -22
  6224. package/lib/v2/crossbell/notes/index.js +0 -16
  6225. package/lib/v2/crossbell/notes/source.js +0 -19
  6226. package/lib/v2/crossbell/notes/utils.js +0 -18
  6227. package/lib/v2/crossbell/radar.js +0 -24
  6228. package/lib/v2/crossbell/router.js +0 -6
  6229. package/lib/v2/csc/maintainer.js +0 -3
  6230. package/lib/v2/csc/notice.js +0 -99
  6231. package/lib/v2/csc/radar.js +0 -31
  6232. package/lib/v2/csc/router.js +0 -3
  6233. package/lib/v2/cscse/maintainer.js +0 -3
  6234. package/lib/v2/cscse/radar.js +0 -13
  6235. package/lib/v2/cscse/router.js +0 -3
  6236. package/lib/v2/cscse/tzgg.js +0 -54
  6237. package/lib/v2/csdn/blog.js +0 -39
  6238. package/lib/v2/csdn/maintainer.js +0 -3
  6239. package/lib/v2/csdn/radar.js +0 -13
  6240. package/lib/v2/csdn/router.js +0 -3
  6241. package/lib/v2/cste/index.js +0 -56
  6242. package/lib/v2/cste/maintainer.js +0 -3
  6243. package/lib/v2/cste/radar.js +0 -13
  6244. package/lib/v2/cste/router.js +0 -3
  6245. package/lib/v2/csu/career.js +0 -51
  6246. package/lib/v2/csu/cse.js +0 -41
  6247. package/lib/v2/csu/mail.js +0 -47
  6248. package/lib/v2/csu/maintainer.js +0 -5
  6249. package/lib/v2/csu/radar.js +0 -29
  6250. package/lib/v2/csu/router.js +0 -5
  6251. package/lib/v2/csu/utils.js +0 -17
  6252. package/lib/v2/cts/maintainer.js +0 -3
  6253. package/lib/v2/cts/news.js +0 -40
  6254. package/lib/v2/cts/radar.js +0 -13
  6255. package/lib/v2/cts/router.js +0 -3
  6256. package/lib/v2/cuc/maintainer.js +0 -3
  6257. package/lib/v2/cuc/radar.js +0 -13
  6258. package/lib/v2/cuc/router.js +0 -3
  6259. package/lib/v2/cuc/yz.js +0 -33
  6260. package/lib/v2/curius/links.js +0 -43
  6261. package/lib/v2/curius/maintainer.js +0 -3
  6262. package/lib/v2/curius/radar.js +0 -13
  6263. package/lib/v2/curius/router.js +0 -3
  6264. package/lib/v2/curius/templates/description.art +0 -16
  6265. package/lib/v2/cw/author.js +0 -18
  6266. package/lib/v2/cw/maintainer.js +0 -6
  6267. package/lib/v2/cw/master.js +0 -18
  6268. package/lib/v2/cw/radar.js +0 -31
  6269. package/lib/v2/cw/router.js +0 -6
  6270. package/lib/v2/cw/sub.js +0 -18
  6271. package/lib/v2/cw/today.js +0 -18
  6272. package/lib/v2/cw/utils.js +0 -133
  6273. package/lib/v2/cztv/daily.js +0 -41
  6274. package/lib/v2/cztv/maintainer.js +0 -4
  6275. package/lib/v2/cztv/radar.js +0 -19
  6276. package/lib/v2/cztv/router.js +0 -4
  6277. package/lib/v2/cztv/zjxwlb.js +0 -38
  6278. package/lib/v2/dahecube/index.js +0 -66
  6279. package/lib/v2/dahecube/maintainer.js +0 -3
  6280. package/lib/v2/dahecube/radar.js +0 -24
  6281. package/lib/v2/dahecube/router.js +0 -3
  6282. package/lib/v2/dahecube/utils.js +0 -47
  6283. package/lib/v2/dapenti/maintainer.js +0 -4
  6284. package/lib/v2/dapenti/radar.js +0 -27
  6285. package/lib/v2/dapenti/router.js +0 -4
  6286. package/lib/v2/dapenti/subject.js +0 -5
  6287. package/lib/v2/dapenti/tugua.js +0 -5
  6288. package/lib/v2/dapenti/utils.js +0 -75
  6289. package/lib/v2/darwinawards/index.js +0 -56
  6290. package/lib/v2/darwinawards/maintainer.js +0 -4
  6291. package/lib/v2/darwinawards/radar.js +0 -13
  6292. package/lib/v2/darwinawards/router.js +0 -4
  6293. package/lib/v2/dayanzai/index.js +0 -58
  6294. package/lib/v2/dayanzai/maintainer.js +0 -3
  6295. package/lib/v2/dayanzai/radar.js +0 -13
  6296. package/lib/v2/dayanzai/router.js +0 -3
  6297. package/lib/v2/dbmv/index.js +0 -64
  6298. package/lib/v2/dbmv/maintainer.js +0 -3
  6299. package/lib/v2/dbmv/radar.js +0 -13
  6300. package/lib/v2/dbmv/router.js +0 -3
  6301. package/lib/v2/dcard/maintainer.js +0 -4
  6302. package/lib/v2/dcard/radar.js +0 -31
  6303. package/lib/v2/dcard/router.js +0 -3
  6304. package/lib/v2/dcard/section.js +0 -66
  6305. package/lib/v2/dcard/utils.js +0 -50
  6306. package/lib/v2/dcfever/maintainer.js +0 -6
  6307. package/lib/v2/dcfever/news.js +0 -36
  6308. package/lib/v2/dcfever/radar.js +0 -37
  6309. package/lib/v2/dcfever/reviews.js +0 -29
  6310. package/lib/v2/dcfever/router.js +0 -6
  6311. package/lib/v2/dcfever/trading-search.js +0 -39
  6312. package/lib/v2/dcfever/trading.js +0 -39
  6313. package/lib/v2/dcfever/utils.js +0 -78
  6314. package/lib/v2/ddosi/category.js +0 -42
  6315. package/lib/v2/ddosi/index.js +0 -41
  6316. package/lib/v2/ddosi/maintainer.js +0 -4
  6317. package/lib/v2/ddosi/radar.js +0 -19
  6318. package/lib/v2/ddosi/router.js +0 -4
  6319. package/lib/v2/dedao/index.js +0 -46
  6320. package/lib/v2/dedao/knowledge.js +0 -64
  6321. package/lib/v2/dedao/list.js +0 -66
  6322. package/lib/v2/dedao/maintainer.js +0 -8
  6323. package/lib/v2/dedao/radar.js +0 -50
  6324. package/lib/v2/dedao/router.js +0 -6
  6325. package/lib/v2/dedao/user.js +0 -79
  6326. package/lib/v2/deepmind/blog.js +0 -32
  6327. package/lib/v2/deepmind/maintainer.js +0 -3
  6328. package/lib/v2/deepmind/radar.js +0 -13
  6329. package/lib/v2/deepmind/router.js +0 -3
  6330. package/lib/v2/dgjyw/index.js +0 -67
  6331. package/lib/v2/dgjyw/maintainer.js +0 -3
  6332. package/lib/v2/dgjyw/radar.js +0 -13
  6333. package/lib/v2/dgjyw/router.js +0 -3
  6334. package/lib/v2/dhu/jiaowu/news.js +0 -37
  6335. package/lib/v2/dhu/maintainer.js +0 -4
  6336. package/lib/v2/dhu/radar.js +0 -17
  6337. package/lib/v2/dhu/router.js +0 -4
  6338. package/lib/v2/dhu/xxgk/news.js +0 -32
  6339. package/lib/v2/diandong/ddh.js +0 -51
  6340. package/lib/v2/diandong/maintainer.js +0 -4
  6341. package/lib/v2/diandong/news.js +0 -50
  6342. package/lib/v2/diandong/radar.js +0 -19
  6343. package/lib/v2/diandong/router.js +0 -4
  6344. package/lib/v2/diershoubing/maintainer.js +0 -3
  6345. package/lib/v2/diershoubing/news.js +0 -50
  6346. package/lib/v2/diershoubing/radar.js +0 -13
  6347. package/lib/v2/diershoubing/router.js +0 -3
  6348. package/lib/v2/discord/channel.js +0 -38
  6349. package/lib/v2/discord/discord-api.js +0 -61
  6350. package/lib/v2/discord/maintainer.js +0 -3
  6351. package/lib/v2/discord/radar.js +0 -13
  6352. package/lib/v2/discord/router.js +0 -3
  6353. package/lib/v2/disinfo/maintainer.js +0 -3
  6354. package/lib/v2/disinfo/publications.js +0 -56
  6355. package/lib/v2/disinfo/radar.js +0 -13
  6356. package/lib/v2/disinfo/router.js +0 -3
  6357. package/lib/v2/disinformationindex/blog.js +0 -48
  6358. package/lib/v2/disinformationindex/maintainer.js +0 -4
  6359. package/lib/v2/disinformationindex/radar.js +0 -19
  6360. package/lib/v2/disinformationindex/research.js +0 -45
  6361. package/lib/v2/disinformationindex/router.js +0 -4
  6362. package/lib/v2/disinformationindex/templates/description.art +0 -7
  6363. package/lib/v2/diskanalyzer/maintainer.js +0 -3
  6364. package/lib/v2/diskanalyzer/radar.js +0 -13
  6365. package/lib/v2/diskanalyzer/router.js +0 -3
  6366. package/lib/v2/diskanalyzer/whats-new.js +0 -49
  6367. package/lib/v2/distill/index.js +0 -64
  6368. package/lib/v2/distill/maintainer.js +0 -3
  6369. package/lib/v2/distill/radar.js +0 -13
  6370. package/lib/v2/distill/router.js +0 -3
  6371. package/lib/v2/dlsite/campaign.js +0 -174
  6372. package/lib/v2/dlsite/ci-en/article.js +0 -64
  6373. package/lib/v2/dlsite/index.js +0 -5
  6374. package/lib/v2/dlsite/maintainer.js +0 -6
  6375. package/lib/v2/dlsite/new.js +0 -108
  6376. package/lib/v2/dlsite/radar.js +0 -29
  6377. package/lib/v2/dlsite/router.js +0 -6
  6378. package/lib/v2/dlsite/utils.js +0 -176
  6379. package/lib/v2/dmzj/maintainer.js +0 -3
  6380. package/lib/v2/dmzj/news.js +0 -26
  6381. package/lib/v2/dmzj/radar.js +0 -67
  6382. package/lib/v2/dmzj/router.js +0 -3
  6383. package/lib/v2/dockerhub/build.js +0 -31
  6384. package/lib/v2/dockerhub/maintainer.js +0 -4
  6385. package/lib/v2/dockerhub/radar.js +0 -19
  6386. package/lib/v2/dockerhub/router.js +0 -4
  6387. package/lib/v2/dockerhub/tag.js +0 -33
  6388. package/lib/v2/dockerhub/utils.js +0 -10
  6389. package/lib/v2/docschina/jsweekly.js +0 -114
  6390. package/lib/v2/docschina/maintainer.js +0 -3
  6391. package/lib/v2/docschina/radar.js +0 -13
  6392. package/lib/v2/docschina/router.js +0 -3
  6393. package/lib/v2/domp4/detail.js +0 -69
  6394. package/lib/v2/domp4/latest.js +0 -32
  6395. package/lib/v2/domp4/maintainer.js +0 -4
  6396. package/lib/v2/domp4/radar.js +0 -25
  6397. package/lib/v2/domp4/router.js +0 -4
  6398. package/lib/v2/domp4/utils.js +0 -89
  6399. package/lib/v2/dongqiudi/maintainer.js +0 -8
  6400. package/lib/v2/dongqiudi/player_news.js +0 -7
  6401. package/lib/v2/dongqiudi/radar.js +0 -45
  6402. package/lib/v2/dongqiudi/result.js +0 -30
  6403. package/lib/v2/dongqiudi/router.js +0 -8
  6404. package/lib/v2/dongqiudi/special.js +0 -42
  6405. package/lib/v2/dongqiudi/team_news.js +0 -7
  6406. package/lib/v2/dongqiudi/top_news.js +0 -33
  6407. package/lib/v2/dongqiudi/utils.js +0 -147
  6408. package/lib/v2/douban/book/rank.js +0 -34
  6409. package/lib/v2/douban/channel/subject.js +0 -60
  6410. package/lib/v2/douban/channel/topic.js +0 -63
  6411. package/lib/v2/douban/commercialpress/latest.js +0 -55
  6412. package/lib/v2/douban/event/hot.js +0 -30
  6413. package/lib/v2/douban/maintainer.js +0 -28
  6414. package/lib/v2/douban/other/bookstore.js +0 -30
  6415. package/lib/v2/douban/other/celebrity.js +0 -41
  6416. package/lib/v2/douban/other/classification.js +0 -39
  6417. package/lib/v2/douban/other/doulist.js +0 -63
  6418. package/lib/v2/douban/other/explore.js +0 -50
  6419. package/lib/v2/douban/other/explore_column.js +0 -56
  6420. package/lib/v2/douban/other/group.js +0 -48
  6421. package/lib/v2/douban/other/jobs.js +0 -33
  6422. package/lib/v2/douban/other/later.js +0 -32
  6423. package/lib/v2/douban/other/latest_book.js +0 -19
  6424. package/lib/v2/douban/other/latest_music.js +0 -74
  6425. package/lib/v2/douban/other/list.js +0 -40
  6426. package/lib/v2/douban/other/playing.js +0 -35
  6427. package/lib/v2/douban/other/replied.js +0 -86
  6428. package/lib/v2/douban/other/replies.js +0 -61
  6429. package/lib/v2/douban/other/topic.js +0 -80
  6430. package/lib/v2/douban/other/ustop.js +0 -22
  6431. package/lib/v2/douban/other/weekly_best.js +0 -53
  6432. package/lib/v2/douban/people/status.js +0 -501
  6433. package/lib/v2/douban/people/wish.js +0 -71
  6434. package/lib/v2/douban/radar.js +0 -60
  6435. package/lib/v2/douban/router.js +0 -28
  6436. package/lib/v2/douyin/hashtag.js +0 -94
  6437. package/lib/v2/douyin/live.js +0 -49
  6438. package/lib/v2/douyin/maintainer.js +0 -5
  6439. package/lib/v2/douyin/radar.js +0 -27
  6440. package/lib/v2/douyin/router.js +0 -5
  6441. package/lib/v2/douyin/templates/embed.art +0 -13
  6442. package/lib/v2/douyin/user.js +0 -77
  6443. package/lib/v2/douyin/utils.js +0 -135
  6444. package/lib/v2/douyu/group.js +0 -45
  6445. package/lib/v2/douyu/maintainer.js +0 -5
  6446. package/lib/v2/douyu/post.js +0 -58
  6447. package/lib/v2/douyu/radar.js +0 -27
  6448. package/lib/v2/douyu/room.js +0 -34
  6449. package/lib/v2/douyu/router.js +0 -5
  6450. package/lib/v2/dtcj/datahero.js +0 -50
  6451. package/lib/v2/dtcj/datainsight.js +0 -52
  6452. package/lib/v2/dtcj/maintainer.js +0 -4
  6453. package/lib/v2/dtcj/radar.js +0 -25
  6454. package/lib/v2/dtcj/router.js +0 -4
  6455. package/lib/v2/dushu/fuzhou/index.js +0 -42
  6456. package/lib/v2/dushu/maintainer.js +0 -3
  6457. package/lib/v2/dushu/radar.js +0 -24
  6458. package/lib/v2/dushu/router.js +0 -3
  6459. package/lib/v2/dut/defaults.js +0 -53
  6460. package/lib/v2/dut/index.js +0 -82
  6461. package/lib/v2/dut/maintainer.js +0 -14
  6462. package/lib/v2/dut/radar.js +0 -109
  6463. package/lib/v2/dut/router.js +0 -4
  6464. package/lib/v2/dut/shortcuts.js +0 -77
  6465. package/lib/v2/dx2025/index.js +0 -51
  6466. package/lib/v2/dx2025/maintainer.js +0 -3
  6467. package/lib/v2/dx2025/radar.js +0 -19
  6468. package/lib/v2/dx2025/router.js +0 -3
  6469. package/lib/v2/e-hentai/index.js +0 -115
  6470. package/lib/v2/e-hentai/maintainer.js +0 -5
  6471. package/lib/v2/e-hentai/radar.js +0 -43
  6472. package/lib/v2/e-hentai/router.js +0 -3
  6473. package/lib/v2/eagle/blog.js +0 -51
  6474. package/lib/v2/eagle/changelog.js +0 -77
  6475. package/lib/v2/eagle/maintainer.js +0 -4
  6476. package/lib/v2/eagle/radar.js +0 -101
  6477. package/lib/v2/eagle/router.js +0 -4
  6478. package/lib/v2/earthquake/ceic.js +0 -68
  6479. package/lib/v2/earthquake/index.js +0 -40
  6480. package/lib/v2/earthquake/maintainer.js +0 -4
  6481. package/lib/v2/earthquake/radar.js +0 -24
  6482. package/lib/v2/earthquake/router.js +0 -4
  6483. package/lib/v2/eastday/24.js +0 -89
  6484. package/lib/v2/eastday/find.js +0 -49
  6485. package/lib/v2/eastday/maintainer.js +0 -6
  6486. package/lib/v2/eastday/portrait.js +0 -47
  6487. package/lib/v2/eastday/radar.js +0 -35
  6488. package/lib/v2/eastday/router.js +0 -6
  6489. package/lib/v2/eastday/sh.js +0 -49
  6490. package/lib/v2/eastmoney/maintainer.js +0 -4
  6491. package/lib/v2/eastmoney/radar.js +0 -21
  6492. package/lib/v2/eastmoney/router.js +0 -4
  6493. package/lib/v2/eastmoney/search/index.js +0 -55
  6494. package/lib/v2/eastmoney/ttjj/user.js +0 -65
  6495. package/lib/v2/ecnu/contest.js +0 -41
  6496. package/lib/v2/ecnu/maintainer.js +0 -4
  6497. package/lib/v2/ecnu/radar.js +0 -30
  6498. package/lib/v2/ecnu/router.js +0 -4
  6499. package/lib/v2/ecnu/yjs.js +0 -37
  6500. package/lib/v2/economist/download.js +0 -30
  6501. package/lib/v2/economist/espresso.js +0 -80
  6502. package/lib/v2/economist/full.js +0 -44
  6503. package/lib/v2/economist/global-business-review.js +0 -86
  6504. package/lib/v2/economist/gre-vocabulary.js +0 -19
  6505. package/lib/v2/economist/maintainer.js +0 -7
  6506. package/lib/v2/economist/radar.js +0 -38
  6507. package/lib/v2/economist/router.js +0 -7
  6508. package/lib/v2/ecust/e/news.js +0 -44
  6509. package/lib/v2/ecust/gschool/yjs.js +0 -27
  6510. package/lib/v2/ecust/maintainer.js +0 -4
  6511. package/lib/v2/ecust/radar.js +0 -21
  6512. package/lib/v2/ecust/router.js +0 -4
  6513. package/lib/v2/ehentai/ehapi.js +0 -221
  6514. package/lib/v2/ehentai/favorites.js +0 -28
  6515. package/lib/v2/ehentai/maintainer.js +0 -5
  6516. package/lib/v2/ehentai/router.js +0 -5
  6517. package/lib/v2/ehentai/search.js +0 -36
  6518. package/lib/v2/ehentai/tag.js +0 -24
  6519. package/lib/v2/elasticsearch-cn/index.js +0 -57
  6520. package/lib/v2/elasticsearch-cn/maintainer.js +0 -3
  6521. package/lib/v2/elasticsearch-cn/radar.js +0 -13
  6522. package/lib/v2/elasticsearch-cn/router.js +0 -3
  6523. package/lib/v2/eleduck/jobs.js +0 -38
  6524. package/lib/v2/eleduck/maintainer.js +0 -4
  6525. package/lib/v2/eleduck/posts.js +0 -41
  6526. package/lib/v2/eleduck/radar.js +0 -25
  6527. package/lib/v2/eleduck/router.js +0 -4
  6528. package/lib/v2/elsevier/issue.js +0 -62
  6529. package/lib/v2/elsevier/journal.js +0 -72
  6530. package/lib/v2/elsevier/maintainer.js +0 -4
  6531. package/lib/v2/elsevier/radar.js +0 -19
  6532. package/lib/v2/elsevier/router.js +0 -6
  6533. package/lib/v2/embassy/index.js +0 -60
  6534. package/lib/v2/embassy/maintainer.js +0 -3
  6535. package/lib/v2/embassy/radar.js +0 -258
  6536. package/lib/v2/embassy/router.js +0 -3
  6537. package/lib/v2/embassy/supportedList.js +0 -257
  6538. package/lib/v2/ems/apple.js +0 -42
  6539. package/lib/v2/ems/maintainer.js +0 -4
  6540. package/lib/v2/ems/news.js +0 -21
  6541. package/lib/v2/ems/radar.js +0 -19
  6542. package/lib/v2/ems/router.js +0 -4
  6543. package/lib/v2/ems/templates/apple.art +0 -6
  6544. package/lib/v2/epicgames/index.js +0 -80
  6545. package/lib/v2/epicgames/maintainer.js +0 -3
  6546. package/lib/v2/epicgames/radar.js +0 -13
  6547. package/lib/v2/epicgames/router.js +0 -3
  6548. package/lib/v2/epicgames/templates/description.art +0 -2
  6549. package/lib/v2/eprice/maintainer.js +0 -3
  6550. package/lib/v2/eprice/radar.js +0 -24
  6551. package/lib/v2/eprice/router.js +0 -3
  6552. package/lib/v2/eprice/rss.js +0 -99
  6553. package/lib/v2/eventernote/actors.js +0 -103
  6554. package/lib/v2/eventernote/maintainer.js +0 -3
  6555. package/lib/v2/eventernote/radar.js +0 -13
  6556. package/lib/v2/eventernote/router.js +0 -3
  6557. package/lib/v2/ezone/index.js +0 -70
  6558. package/lib/v2/ezone/maintainer.js +0 -3
  6559. package/lib/v2/ezone/radar.js +0 -13
  6560. package/lib/v2/ezone/router.js +0 -3
  6561. package/lib/v2/famitsu/category.js +0 -62
  6562. package/lib/v2/famitsu/maintainer.js +0 -3
  6563. package/lib/v2/famitsu/radar.js +0 -13
  6564. package/lib/v2/famitsu/router.js +0 -3
  6565. package/lib/v2/fantia/maintainer.js +0 -4
  6566. package/lib/v2/fantia/radar.js +0 -13
  6567. package/lib/v2/fantia/router.js +0 -4
  6568. package/lib/v2/fantia/search.js +0 -71
  6569. package/lib/v2/fantia/user.js +0 -44
  6570. package/lib/v2/fastbull/express-news.js +0 -33
  6571. package/lib/v2/fastbull/maintainer.js +0 -5
  6572. package/lib/v2/fastbull/news.js +0 -57
  6573. package/lib/v2/fastbull/radar.js +0 -19
  6574. package/lib/v2/fastbull/router.js +0 -5
  6575. package/lib/v2/fda/cdrh.js +0 -62
  6576. package/lib/v2/fda/maintainer.js +0 -3
  6577. package/lib/v2/fda/radar.js +0 -13
  6578. package/lib/v2/fda/router.js +0 -3
  6579. package/lib/v2/feng/forum.js +0 -42
  6580. package/lib/v2/feng/maintainer.js +0 -3
  6581. package/lib/v2/feng/radar.js +0 -13
  6582. package/lib/v2/feng/router.js +0 -3
  6583. package/lib/v2/feng/utils.js +0 -80
  6584. package/lib/v2/ff14/ff14_global.js +0 -42
  6585. package/lib/v2/ff14/ff14_zh.js +0 -43
  6586. package/lib/v2/ff14/maintainer.js +0 -4
  6587. package/lib/v2/ff14/radar.js +0 -30
  6588. package/lib/v2/ff14/router.js +0 -7
  6589. package/lib/v2/fffdm/maintainer.js +0 -3
  6590. package/lib/v2/fffdm/manhua/manhua.js +0 -55
  6591. package/lib/v2/fffdm/radar.js +0 -14
  6592. package/lib/v2/fffdm/router.js +0 -3
  6593. package/lib/v2/filmdeepfocus/index.js +0 -58
  6594. package/lib/v2/filmdeepfocus/maintainer.js +0 -3
  6595. package/lib/v2/filmdeepfocus/radar.js +0 -13
  6596. package/lib/v2/filmdeepfocus/router.js +0 -3
  6597. package/lib/v2/finviz/maintainer.js +0 -4
  6598. package/lib/v2/finviz/news.js +0 -45
  6599. package/lib/v2/finviz/quote.js +0 -40
  6600. package/lib/v2/finviz/radar.js +0 -19
  6601. package/lib/v2/finviz/router.js +0 -4
  6602. package/lib/v2/firefox/index.js +0 -74
  6603. package/lib/v2/firefox/maintainer.js +0 -3
  6604. package/lib/v2/firefox/radar.js +0 -13
  6605. package/lib/v2/firefox/router.js +0 -3
  6606. package/lib/v2/fisher-spb/maintainer.js +0 -3
  6607. package/lib/v2/fisher-spb/news.js +0 -49
  6608. package/lib/v2/fisher-spb/radar.js +0 -13
  6609. package/lib/v2/fisher-spb/router.js +0 -3
  6610. package/lib/v2/fishshell/index.js +0 -27
  6611. package/lib/v2/fishshell/maintainer.js +0 -3
  6612. package/lib/v2/fishshell/radar.js +0 -13
  6613. package/lib/v2/fishshell/router.js +0 -3
  6614. package/lib/v2/fjksbm/index.js +0 -53
  6615. package/lib/v2/fjksbm/maintainer.js +0 -3
  6616. package/lib/v2/fjksbm/radar.js +0 -13
  6617. package/lib/v2/fjksbm/router.js +0 -3
  6618. package/lib/v2/flyert/creditcard.js +0 -86
  6619. package/lib/v2/flyert/maintainer.js +0 -4
  6620. package/lib/v2/flyert/preferential.js +0 -48
  6621. package/lib/v2/flyert/radar.js +0 -19
  6622. package/lib/v2/flyert/router.js +0 -4
  6623. package/lib/v2/flyert/utils.js +0 -67
  6624. package/lib/v2/focustaiwan/index.js +0 -72
  6625. package/lib/v2/focustaiwan/maintainer.js +0 -3
  6626. package/lib/v2/focustaiwan/radar.js +0 -13
  6627. package/lib/v2/focustaiwan/router.js +0 -3
  6628. package/lib/v2/foresightnews/index.js +0 -85
  6629. package/lib/v2/foresightnews/maintainer.js +0 -6
  6630. package/lib/v2/foresightnews/radar.js +0 -31
  6631. package/lib/v2/foresightnews/router.js +0 -3
  6632. package/lib/v2/foreverblog/feeds.js +0 -36
  6633. package/lib/v2/foreverblog/maintainer.js +0 -3
  6634. package/lib/v2/foreverblog/radar.js +0 -13
  6635. package/lib/v2/foreverblog/router.js +0 -3
  6636. package/lib/v2/fortnite/maintainer.js +0 -3
  6637. package/lib/v2/fortnite/news.js +0 -58
  6638. package/lib/v2/fortnite/radar.js +0 -16
  6639. package/lib/v2/fortnite/router.js +0 -3
  6640. package/lib/v2/fortunechina/index.js +0 -70
  6641. package/lib/v2/fortunechina/maintainer.js +0 -3
  6642. package/lib/v2/fortunechina/radar.js +0 -13
  6643. package/lib/v2/fortunechina/router.js +0 -3
  6644. package/lib/v2/fosshub/index.js +0 -49
  6645. package/lib/v2/fosshub/maintainer.js +0 -3
  6646. package/lib/v2/fosshub/radar.js +0 -13
  6647. package/lib/v2/fosshub/router.js +0 -3
  6648. package/lib/v2/freecomputerbooks/index.js +0 -66
  6649. package/lib/v2/freecomputerbooks/maintainer.js +0 -4
  6650. package/lib/v2/freecomputerbooks/radar.js +0 -31
  6651. package/lib/v2/freecomputerbooks/router.js +0 -3
  6652. package/lib/v2/freewechat/maintainer.js +0 -3
  6653. package/lib/v2/freewechat/profile.js +0 -61
  6654. package/lib/v2/freewechat/radar.js +0 -13
  6655. package/lib/v2/freewechat/router.js +0 -3
  6656. package/lib/v2/ft/channel.js +0 -9
  6657. package/lib/v2/ft/maintainer.js +0 -4
  6658. package/lib/v2/ft/myft.js +0 -44
  6659. package/lib/v2/ft/radar.js +0 -24
  6660. package/lib/v2/ft/router.js +0 -4
  6661. package/lib/v2/ft/utils.js +0 -91
  6662. package/lib/v2/furstar/archive.js +0 -28
  6663. package/lib/v2/furstar/artists.js +0 -32
  6664. package/lib/v2/furstar/index.js +0 -33
  6665. package/lib/v2/furstar/maintainer.js +0 -5
  6666. package/lib/v2/furstar/radar.js +0 -25
  6667. package/lib/v2/furstar/router.js +0 -5
  6668. package/lib/v2/furstar/utils.js +0 -96
  6669. package/lib/v2/fx-markets/channel.js +0 -56
  6670. package/lib/v2/fx-markets/maintainer.js +0 -3
  6671. package/lib/v2/fx-markets/radar.js +0 -31
  6672. package/lib/v2/fx-markets/router.js +0 -3
  6673. package/lib/v2/gameapps/index.js +0 -75
  6674. package/lib/v2/gameapps/maintainer.js +0 -3
  6675. package/lib/v2/gameapps/radar.js +0 -13
  6676. package/lib/v2/gameapps/router.js +0 -3
  6677. package/lib/v2/gamebase/maintainer.js +0 -3
  6678. package/lib/v2/gamebase/news.js +0 -74
  6679. package/lib/v2/gamebase/radar.js +0 -13
  6680. package/lib/v2/gamebase/router.js +0 -3
  6681. package/lib/v2/gamer/gnn_index.js +0 -130
  6682. package/lib/v2/gamer/hot.js +0 -59
  6683. package/lib/v2/gamer/maintainer.js +0 -4
  6684. package/lib/v2/gamer/radar.js +0 -29
  6685. package/lib/v2/gamer/router.js +0 -4
  6686. package/lib/v2/gamersecret/index.js +0 -60
  6687. package/lib/v2/gamersecret/maintainer.js +0 -3
  6688. package/lib/v2/gamersecret/radar.js +0 -31
  6689. package/lib/v2/gamersecret/router.js +0 -3
  6690. package/lib/v2/gamme/category.js +0 -50
  6691. package/lib/v2/gamme/maintainer.js +0 -6
  6692. package/lib/v2/gamme/radar.js +0 -33
  6693. package/lib/v2/gamme/router.js +0 -4
  6694. package/lib/v2/gamme/tag.js +0 -61
  6695. package/lib/v2/gaze/maintainer.js +0 -3
  6696. package/lib/v2/gaze/radar.js +0 -13
  6697. package/lib/v2/gaze/router.js +0 -3
  6698. package/lib/v2/gaze/templates/update.art +0 -4
  6699. package/lib/v2/gaze/update.js +0 -27
  6700. package/lib/v2/gcores/category.js +0 -140
  6701. package/lib/v2/gcores/maintainer.js +0 -5
  6702. package/lib/v2/gcores/radar.js +0 -31
  6703. package/lib/v2/gcores/radio.js +0 -90
  6704. package/lib/v2/gcores/router.js +0 -5
  6705. package/lib/v2/gcores/tag.js +0 -130
  6706. package/lib/v2/gdut/maintainer.js +0 -3
  6707. package/lib/v2/gdut/news.js +0 -166
  6708. package/lib/v2/gdut/oa_news.js +0 -214
  6709. package/lib/v2/gdut/radar.js +0 -13
  6710. package/lib/v2/gdut/router.js +0 -3
  6711. package/lib/v2/gelonghui/home.js +0 -31
  6712. package/lib/v2/gelonghui/hot-article.js +0 -33
  6713. package/lib/v2/gelonghui/keyword.js +0 -34
  6714. package/lib/v2/gelonghui/live.js +0 -31
  6715. package/lib/v2/gelonghui/maintainer.js +0 -6
  6716. package/lib/v2/gelonghui/radar.js +0 -43
  6717. package/lib/v2/gelonghui/router.js +0 -8
  6718. package/lib/v2/gelonghui/subject.js +0 -36
  6719. package/lib/v2/gelonghui/user.js +0 -33
  6720. package/lib/v2/gelonghui/utils.js +0 -27
  6721. package/lib/v2/geocaching/blogs.js +0 -30
  6722. package/lib/v2/geocaching/maintainer.js +0 -3
  6723. package/lib/v2/geocaching/radar.js +0 -13
  6724. package/lib/v2/geocaching/router.js +0 -3
  6725. package/lib/v2/getdr/index.js +0 -47
  6726. package/lib/v2/getdr/maintainer.js +0 -3
  6727. package/lib/v2/getdr/radar.js +0 -13
  6728. package/lib/v2/getdr/router.js +0 -3
  6729. package/lib/v2/getitfree/index.js +0 -54
  6730. package/lib/v2/getitfree/maintainer.js +0 -3
  6731. package/lib/v2/getitfree/radar.js +0 -13
  6732. package/lib/v2/getitfree/router.js +0 -3
  6733. package/lib/v2/gettr/maintainer.js +0 -3
  6734. package/lib/v2/gettr/radar.js +0 -13
  6735. package/lib/v2/gettr/router.js +0 -3
  6736. package/lib/v2/gettr/user.js +0 -56
  6737. package/lib/v2/gf-cn/maintainer.js +0 -3
  6738. package/lib/v2/gf-cn/news.js +0 -50
  6739. package/lib/v2/gf-cn/radar.js +0 -13
  6740. package/lib/v2/gf-cn/router.js +0 -3
  6741. package/lib/v2/gihyo/group.js +0 -48
  6742. package/lib/v2/gihyo/maintainer.js +0 -3
  6743. package/lib/v2/gihyo/radar.js +0 -13
  6744. package/lib/v2/gihyo/router.js +0 -3
  6745. package/lib/v2/gitee/maintainer.js +0 -6
  6746. package/lib/v2/gitee/radar.js +0 -31
  6747. package/lib/v2/gitee/repos/commits.js +0 -40
  6748. package/lib/v2/gitee/repos/events.js +0 -66
  6749. package/lib/v2/gitee/repos/releases.js +0 -33
  6750. package/lib/v2/gitee/router.js +0 -6
  6751. package/lib/v2/gitee/users/events.js +0 -84
  6752. package/lib/v2/github/branches.js +0 -31
  6753. package/lib/v2/github/comments.js +0 -127
  6754. package/lib/v2/github/contributors.js +0 -96
  6755. package/lib/v2/github/file.js +0 -45
  6756. package/lib/v2/github/follower.js +0 -50
  6757. package/lib/v2/github/issue.js +0 -52
  6758. package/lib/v2/github/maintainer.js +0 -17
  6759. package/lib/v2/github/notifications.js +0 -47
  6760. package/lib/v2/github/pulls.js +0 -46
  6761. package/lib/v2/github/radar.js +0 -91
  6762. package/lib/v2/github/repos.js +0 -34
  6763. package/lib/v2/github/router.js +0 -18
  6764. package/lib/v2/github/search.js +0 -41
  6765. package/lib/v2/github/star.js +0 -51
  6766. package/lib/v2/github/starred_repos.js +0 -63
  6767. package/lib/v2/github/topic.js +0 -25
  6768. package/lib/v2/github/trending.js +0 -89
  6769. package/lib/v2/github/wiki.js +0 -32
  6770. package/lib/v2/gitpod/blog.js +0 -60
  6771. package/lib/v2/gitpod/changelog.js +0 -35
  6772. package/lib/v2/gitpod/maintainer.js +0 -4
  6773. package/lib/v2/gitpod/radar.js +0 -19
  6774. package/lib/v2/gitpod/router.js +0 -4
  6775. package/lib/v2/gitpod/utils.js +0 -3
  6776. package/lib/v2/gocn/jobs.js +0 -23
  6777. package/lib/v2/gocn/maintainer.js +0 -4
  6778. package/lib/v2/gocn/radar.js +0 -19
  6779. package/lib/v2/gocn/router.js +0 -4
  6780. package/lib/v2/gocn/topics.js +0 -23
  6781. package/lib/v2/gocn/util.js +0 -17
  6782. package/lib/v2/good/index.js +0 -53
  6783. package/lib/v2/good/maintainer.js +0 -3
  6784. package/lib/v2/good/radar.js +0 -13
  6785. package/lib/v2/good/router.js +0 -3
  6786. package/lib/v2/google/album.js +0 -36
  6787. package/lib/v2/google/citations.js +0 -45
  6788. package/lib/v2/google/doodles.js +0 -35
  6789. package/lib/v2/google/fonts.js +0 -43
  6790. package/lib/v2/google/maintainer.js +0 -10
  6791. package/lib/v2/google/news.js +0 -66
  6792. package/lib/v2/google/radar.js +0 -64
  6793. package/lib/v2/google/router.js +0 -10
  6794. package/lib/v2/google/scholar.js +0 -45
  6795. package/lib/v2/google/sites.js +0 -75
  6796. package/lib/v2/google/sitesRecentChanges.js +0 -51
  6797. package/lib/v2/gov/anhui/kjt.js +0 -56
  6798. package/lib/v2/gov/beijing/bphc/index.js +0 -54
  6799. package/lib/v2/gov/beijing/jw/tzgg.js +0 -58
  6800. package/lib/v2/gov/beijing/kw/index.js +0 -44
  6801. package/lib/v2/gov/ccdi/index.js +0 -18
  6802. package/lib/v2/gov/ccdi/utils.js +0 -94
  6803. package/lib/v2/gov/cmse/fxrw.js +0 -40
  6804. package/lib/v2/gov/cmse/index.js +0 -67
  6805. package/lib/v2/gov/cnnic/index.js +0 -54
  6806. package/lib/v2/gov/csrc/auditstatus.js +0 -54
  6807. package/lib/v2/gov/csrc/news.js +0 -69
  6808. package/lib/v2/gov/customs/list.js +0 -80
  6809. package/lib/v2/gov/customs/utils.js +0 -21
  6810. package/lib/v2/gov/dianbai/dianbai.js +0 -18
  6811. package/lib/v2/gov/gaozhou/gaozhou.js +0 -19
  6812. package/lib/v2/gov/general/general.js +0 -250
  6813. package/lib/v2/gov/guangdong/tqyb/sncsyjxh.js +0 -37
  6814. package/lib/v2/gov/guangdong/tqyb/tfxtq.js +0 -30
  6815. package/lib/v2/gov/gz/index.js +0 -38
  6816. package/lib/v2/gov/hebei/czt.js +0 -53
  6817. package/lib/v2/gov/huazhou/huazhou.js +0 -19
  6818. package/lib/v2/gov/huizhou/zwgk/index.js +0 -58
  6819. package/lib/v2/gov/hunan/changsha/major-email.js +0 -52
  6820. package/lib/v2/gov/immiau/news.js +0 -43
  6821. package/lib/v2/gov/jinan/healthcommission/medical_exam_notice.js +0 -49
  6822. package/lib/v2/gov/maintainer.js +0 -81
  6823. package/lib/v2/gov/maoming/maoming.js +0 -417
  6824. package/lib/v2/gov/maonan/maonan.js +0 -100
  6825. package/lib/v2/gov/mee/ywdt.js +0 -80
  6826. package/lib/v2/gov/mfa/wjdt.js +0 -67
  6827. package/lib/v2/gov/mgs/mgs.js +0 -19
  6828. package/lib/v2/gov/miit/wjfb.js +0 -61
  6829. package/lib/v2/gov/miit/wjgs.js +0 -62
  6830. package/lib/v2/gov/miit/yjzj.js +0 -59
  6831. package/lib/v2/gov/miit/zcjd.js +0 -62
  6832. package/lib/v2/gov/miit/zcwj.js +0 -53
  6833. package/lib/v2/gov/mmht/mmht.js +0 -19
  6834. package/lib/v2/gov/moe/moe.js +0 -89
  6835. package/lib/v2/gov/moe/s78.js +0 -44
  6836. package/lib/v2/gov/mofcom/article.js +0 -68
  6837. package/lib/v2/gov/moj/aac/news.js +0 -49
  6838. package/lib/v2/gov/news/index.js +0 -114
  6839. package/lib/v2/gov/nifdc/index.js +0 -86
  6840. package/lib/v2/gov/nmpa/generic.js +0 -83
  6841. package/lib/v2/gov/nopss/index.js +0 -57
  6842. package/lib/v2/gov/nrta/news.js +0 -62
  6843. package/lib/v2/gov/nsfc/index.js +0 -83
  6844. package/lib/v2/gov/pbc/goutongjiaoliu.js +0 -58
  6845. package/lib/v2/gov/pbc/gzlw.js +0 -27
  6846. package/lib/v2/gov/pbc/tradeAnnouncement.js +0 -57
  6847. package/lib/v2/gov/pbc/utils.js +0 -20
  6848. package/lib/v2/gov/pbc/zcyj.js +0 -29
  6849. package/lib/v2/gov/radar.js +0 -1080
  6850. package/lib/v2/gov/router.js +0 -72
  6851. package/lib/v2/gov/sasac/generic.js +0 -42
  6852. package/lib/v2/gov/sdb/sdb.js +0 -19
  6853. package/lib/v2/gov/shaanxi/kjt.js +0 -55
  6854. package/lib/v2/gov/shanghai/rsj/ksxm.js +0 -39
  6855. package/lib/v2/gov/shanghai/wsjkw/yqtb/index.js +0 -33
  6856. package/lib/v2/gov/shanghai/yjj/index.js +0 -62
  6857. package/lib/v2/gov/shenzhen/hrss/szksy/index.js +0 -41
  6858. package/lib/v2/gov/shenzhen/xxgk/zfxxgj.js +0 -72
  6859. package/lib/v2/gov/shenzhen/zzb/index.js +0 -40
  6860. package/lib/v2/gov/sichuan/deyang/govpublicinfo.js +0 -92
  6861. package/lib/v2/gov/sichuan/deyang/mztoday.js +0 -134
  6862. package/lib/v2/gov/stats/index.js +0 -112
  6863. package/lib/v2/gov/taiyuan/rsj.js +0 -41
  6864. package/lib/v2/gov/wuhan/whyw.js +0 -44
  6865. package/lib/v2/gov/xinyi/xinyi.js +0 -19
  6866. package/lib/v2/gov/xuzhou/hrss.js +0 -54
  6867. package/lib/v2/gov/zhengce/govall.js +0 -55
  6868. package/lib/v2/gov/zhengce/wenjian.js +0 -47
  6869. package/lib/v2/gov/zhengce/zhengceku.js +0 -22
  6870. package/lib/v2/gov/zhengce/zuixin.js +0 -39
  6871. package/lib/v2/gq/maintainer.js +0 -3
  6872. package/lib/v2/gq/radar.js +0 -13
  6873. package/lib/v2/gq/router.js +0 -3
  6874. package/lib/v2/gq/templates/embed-article.art +0 -1
  6875. package/lib/v2/gq/templates/embed-product.art +0 -4
  6876. package/lib/v2/gq/templates/img.art +0 -6
  6877. package/lib/v2/gq/templates/tw.art +0 -3
  6878. package/lib/v2/gq/templates/videoObject.art +0 -6
  6879. package/lib/v2/gq/templates/youtube.art +0 -3
  6880. package/lib/v2/gq/tw/index.js +0 -165
  6881. package/lib/v2/greasyfork/feedback.js +0 -31
  6882. package/lib/v2/greasyfork/maintainer.js +0 -5
  6883. package/lib/v2/greasyfork/radar.js +0 -25
  6884. package/lib/v2/greasyfork/router.js +0 -5
  6885. package/lib/v2/greasyfork/scripts.js +0 -39
  6886. package/lib/v2/greasyfork/versions.js +0 -29
  6887. package/lib/v2/guancha/headline.js +0 -51
  6888. package/lib/v2/guancha/index.js +0 -159
  6889. package/lib/v2/guancha/maintainer.js +0 -7
  6890. package/lib/v2/guancha/member.js +0 -86
  6891. package/lib/v2/guancha/personalpage.js +0 -72
  6892. package/lib/v2/guancha/radar.js +0 -49
  6893. package/lib/v2/guancha/router.js +0 -7
  6894. package/lib/v2/guancha/topic.js +0 -56
  6895. package/lib/v2/guandian/index.js +0 -37
  6896. package/lib/v2/guandian/maintainer.js +0 -3
  6897. package/lib/v2/guandian/radar.js +0 -13
  6898. package/lib/v2/guandian/router.js +0 -3
  6899. package/lib/v2/guangdiu/cheaps.js +0 -28
  6900. package/lib/v2/guangdiu/index.js +0 -44
  6901. package/lib/v2/guangdiu/maintainer.js +0 -5
  6902. package/lib/v2/guangdiu/radar.js +0 -25
  6903. package/lib/v2/guangdiu/rank.js +0 -38
  6904. package/lib/v2/guangdiu/router.js +0 -5
  6905. package/lib/v2/guanhai/index.js +0 -47
  6906. package/lib/v2/guanhai/maintainer.js +0 -4
  6907. package/lib/v2/guanhai/radar.js +0 -13
  6908. package/lib/v2/guanhai/router.js +0 -3
  6909. package/lib/v2/guduodata/daily.js +0 -63
  6910. package/lib/v2/guduodata/maintainer.js +0 -3
  6911. package/lib/v2/guduodata/radar.js +0 -13
  6912. package/lib/v2/guduodata/router.js +0 -3
  6913. package/lib/v2/guggenheim/exhibitions.js +0 -29
  6914. package/lib/v2/guggenheim/maintainer.js +0 -3
  6915. package/lib/v2/guggenheim/radar.js +0 -11
  6916. package/lib/v2/guggenheim/router.js +0 -3
  6917. package/lib/v2/gumroad/index.js +0 -39
  6918. package/lib/v2/gumroad/maintainer.js +0 -3
  6919. package/lib/v2/gumroad/radar.js +0 -17
  6920. package/lib/v2/gumroad/router.js +0 -3
  6921. package/lib/v2/guokr/channel.js +0 -47
  6922. package/lib/v2/guokr/maintainer.js +0 -4
  6923. package/lib/v2/guokr/radar.js +0 -19
  6924. package/lib/v2/guokr/router.js +0 -4
  6925. package/lib/v2/guokr/scientific.js +0 -30
  6926. package/lib/v2/gxmzu/ai.js +0 -18
  6927. package/lib/v2/gxmzu/maintainer.js +0 -4
  6928. package/lib/v2/gxmzu/radar.js +0 -21
  6929. package/lib/v2/gxmzu/router.js +0 -4
  6930. package/lib/v2/gxmzu/utils/index.js +0 -55
  6931. package/lib/v2/gxmzu/yjs.js +0 -18
  6932. package/lib/v2/gz-cmc/index.js +0 -137
  6933. package/lib/v2/gz-cmc/maintainer.js +0 -3
  6934. package/lib/v2/gz-cmc/radar.js +0 -12
  6935. package/lib/v2/gz-cmc/router.js +0 -3
  6936. package/lib/v2/gzdaily/app.js +0 -53
  6937. package/lib/v2/gzdaily/maintainer.js +0 -3
  6938. package/lib/v2/gzdaily/radar.js +0 -12
  6939. package/lib/v2/gzdaily/router.js +0 -3
  6940. package/lib/v2/gzh360/category.js +0 -8
  6941. package/lib/v2/gzh360/gzh.js +0 -18
  6942. package/lib/v2/gzh360/maintainer.js +0 -4
  6943. package/lib/v2/gzh360/radar.js +0 -19
  6944. package/lib/v2/gzh360/router.js +0 -4
  6945. package/lib/v2/gzh360/universal.js +0 -53
  6946. package/lib/v2/gzh360/utils.js +0 -62
  6947. package/lib/v2/gzhu/maintainer.js +0 -3
  6948. package/lib/v2/gzhu/radar.js +0 -13
  6949. package/lib/v2/gzhu/router.js +0 -3
  6950. package/lib/v2/gzhu/yjs.js +0 -31
  6951. package/lib/v2/hackernews/index.js +0 -112
  6952. package/lib/v2/hackernews/maintainer.js +0 -3
  6953. package/lib/v2/hackernews/radar.js +0 -13
  6954. package/lib/v2/hackernews/router.js +0 -3
  6955. package/lib/v2/hackertalk/index.js +0 -23
  6956. package/lib/v2/hackertalk/maintainer.js +0 -3
  6957. package/lib/v2/hackertalk/radar.js +0 -13
  6958. package/lib/v2/hackertalk/router.js +0 -3
  6959. package/lib/v2/hackmd/maintainer.js +0 -3
  6960. package/lib/v2/hackmd/profile.js +0 -24
  6961. package/lib/v2/hackmd/radar.js +0 -13
  6962. package/lib/v2/hackmd/router.js +0 -3
  6963. package/lib/v2/hafu/maintainer.js +0 -3
  6964. package/lib/v2/hafu/news.js +0 -15
  6965. package/lib/v2/hafu/radar.js +0 -23
  6966. package/lib/v2/hafu/router.js +0 -3
  6967. package/lib/v2/hafu/utils.js +0 -205
  6968. package/lib/v2/hakkatv/maintainer.js +0 -3
  6969. package/lib/v2/hakkatv/radar.js +0 -13
  6970. package/lib/v2/hakkatv/router.js +0 -3
  6971. package/lib/v2/hakkatv/type.js +0 -67
  6972. package/lib/v2/hameln/chapter.js +0 -59
  6973. package/lib/v2/hameln/maintainer.js +0 -3
  6974. package/lib/v2/hameln/radar.js +0 -13
  6975. package/lib/v2/hameln/router.js +0 -1
  6976. package/lib/v2/hashnode/blog.js +0 -62
  6977. package/lib/v2/hashnode/maintainer.js +0 -3
  6978. package/lib/v2/hashnode/radar.js +0 -13
  6979. package/lib/v2/hashnode/router.js +0 -3
  6980. package/lib/v2/hbr/maintainer.js +0 -3
  6981. package/lib/v2/hbr/radar.js +0 -13
  6982. package/lib/v2/hbr/router.js +0 -3
  6983. package/lib/v2/hbr/topic.js +0 -56
  6984. package/lib/v2/hdu/cs/notice.js +0 -54
  6985. package/lib/v2/hdu/cs/pg.js +0 -54
  6986. package/lib/v2/hdu/maintainer.js +0 -4
  6987. package/lib/v2/hdu/radar.js +0 -19
  6988. package/lib/v2/hdu/router.js +0 -5
  6989. package/lib/v2/hellobtc/information.js +0 -51
  6990. package/lib/v2/hellobtc/kepu.js +0 -64
  6991. package/lib/v2/hellobtc/maintainer.js +0 -6
  6992. package/lib/v2/hellobtc/news.js +0 -29
  6993. package/lib/v2/hellobtc/radar.js +0 -85
  6994. package/lib/v2/hellobtc/router.js +0 -6
  6995. package/lib/v2/hellobtc/topic.js +0 -43
  6996. package/lib/v2/hellogithub/index.js +0 -102
  6997. package/lib/v2/hellogithub/maintainer.js +0 -9
  6998. package/lib/v2/hellogithub/radar.js +0 -49
  6999. package/lib/v2/hellogithub/report.js +0 -56
  7000. package/lib/v2/hellogithub/router.js +0 -8
  7001. package/lib/v2/hellogithub/volume.js +0 -50
  7002. package/lib/v2/hex-rays/index.js +0 -47
  7003. package/lib/v2/hex-rays/maintainer.js +0 -3
  7004. package/lib/v2/hex-rays/radar.js +0 -13
  7005. package/lib/v2/hex-rays/router.js +0 -3
  7006. package/lib/v2/hit/hitgs.js +0 -46
  7007. package/lib/v2/hit/jwc.js +0 -60
  7008. package/lib/v2/hit/maintainer.js +0 -5
  7009. package/lib/v2/hit/radar.js +0 -29
  7010. package/lib/v2/hit/router.js +0 -6
  7011. package/lib/v2/hit/today.js +0 -59
  7012. package/lib/v2/hitsz/article.js +0 -41
  7013. package/lib/v2/hitsz/maintainer.js +0 -3
  7014. package/lib/v2/hitsz/radar.js +0 -13
  7015. package/lib/v2/hitsz/router.js +0 -3
  7016. package/lib/v2/hitwh/maintainer.js +0 -3
  7017. package/lib/v2/hitwh/radar.js +0 -13
  7018. package/lib/v2/hitwh/router.js +0 -3
  7019. package/lib/v2/hitwh/today.js +0 -52
  7020. package/lib/v2/hizu/index.js +0 -76
  7021. package/lib/v2/hizu/maintainer.js +0 -3
  7022. package/lib/v2/hizu/radar.js +0 -13
  7023. package/lib/v2/hizu/router.js +0 -3
  7024. package/lib/v2/hjedd/article.js +0 -27
  7025. package/lib/v2/hjedd/hot.js +0 -14
  7026. package/lib/v2/hjedd/latest.js +0 -14
  7027. package/lib/v2/hjedd/maintainer.js +0 -10
  7028. package/lib/v2/hjedd/news.js +0 -14
  7029. package/lib/v2/hjedd/notice.js +0 -14
  7030. package/lib/v2/hjedd/original.js +0 -14
  7031. package/lib/v2/hjedd/radar.js +0 -55
  7032. package/lib/v2/hjedd/router.js +0 -10
  7033. package/lib/v2/hjedd/templates/attachment.art +0 -7
  7034. package/lib/v2/hjedd/top.js +0 -14
  7035. package/lib/v2/hjedd/utils.js +0 -111
  7036. package/lib/v2/hk01/channel.js +0 -23
  7037. package/lib/v2/hk01/hot.js +0 -20
  7038. package/lib/v2/hk01/issue.js +0 -22
  7039. package/lib/v2/hk01/latest.js +0 -20
  7040. package/lib/v2/hk01/maintainer.js +0 -8
  7041. package/lib/v2/hk01/radar.js +0 -43
  7042. package/lib/v2/hk01/router.js +0 -8
  7043. package/lib/v2/hk01/tag.js +0 -22
  7044. package/lib/v2/hk01/utils.js +0 -43
  7045. package/lib/v2/hk01/zone.js +0 -23
  7046. package/lib/v2/hkej/index.js +0 -154
  7047. package/lib/v2/hkej/maintainer.js +0 -3
  7048. package/lib/v2/hkej/radar.js +0 -13
  7049. package/lib/v2/hkej/router.js +0 -3
  7050. package/lib/v2/hkepc/data.js +0 -62
  7051. package/lib/v2/hkepc/index.js +0 -97
  7052. package/lib/v2/hkepc/maintainer.js +0 -3
  7053. package/lib/v2/hkepc/radar.js +0 -19
  7054. package/lib/v2/hkepc/router.js +0 -3
  7055. package/lib/v2/hket/index.js +0 -122
  7056. package/lib/v2/hket/maintainer.js +0 -3
  7057. package/lib/v2/hket/radar.js +0 -45
  7058. package/lib/v2/hket/router.js +0 -3
  7059. package/lib/v2/hket/templates/description.art +0 -1
  7060. package/lib/v2/hket/templates/image.art +0 -1
  7061. package/lib/v2/hkjunkcall/index.js +0 -53
  7062. package/lib/v2/hkjunkcall/maintainer.js +0 -3
  7063. package/lib/v2/hkjunkcall/radar.js +0 -13
  7064. package/lib/v2/hkjunkcall/router.js +0 -3
  7065. package/lib/v2/hljucm/maintainer.js +0 -3
  7066. package/lib/v2/hljucm/radar.js +0 -13
  7067. package/lib/v2/hljucm/router.js +0 -3
  7068. package/lib/v2/hljucm/yjsy.js +0 -56
  7069. package/lib/v2/hnrb/index.js +0 -85
  7070. package/lib/v2/hnrb/maintainer.js +0 -3
  7071. package/lib/v2/hnrb/radar.js +0 -13
  7072. package/lib/v2/hnrb/router.js +0 -3
  7073. package/lib/v2/hongkong/chp.js +0 -103
  7074. package/lib/v2/hongkong/dh.js +0 -53
  7075. package/lib/v2/hongkong/maintainer.js +0 -4
  7076. package/lib/v2/hongkong/radar.js +0 -19
  7077. package/lib/v2/hongkong/router.js +0 -4
  7078. package/lib/v2/hotchina/index.js +0 -55
  7079. package/lib/v2/hotchina/maintainer.js +0 -5
  7080. package/lib/v2/hotchina/radar.js +0 -25
  7081. package/lib/v2/hotchina/router.js +0 -3
  7082. package/lib/v2/hotukdeals/hottest.js +0 -25
  7083. package/lib/v2/hotukdeals/index.js +0 -34
  7084. package/lib/v2/hotukdeals/maintainer.js +0 -4
  7085. package/lib/v2/hotukdeals/radar.js +0 -37
  7086. package/lib/v2/hotukdeals/router.js +0 -4
  7087. package/lib/v2/houxu/events.js +0 -37
  7088. package/lib/v2/houxu/index.js +0 -37
  7089. package/lib/v2/houxu/lives.js +0 -35
  7090. package/lib/v2/houxu/maintainer.js +0 -6
  7091. package/lib/v2/houxu/memory.js +0 -37
  7092. package/lib/v2/houxu/radar.js +0 -31
  7093. package/lib/v2/houxu/router.js +0 -8
  7094. package/lib/v2/hrbeu/gx/card.js +0 -42
  7095. package/lib/v2/hrbeu/gx/list.js +0 -65
  7096. package/lib/v2/hrbeu/job/bigemploy.js +0 -25
  7097. package/lib/v2/hrbeu/job/calendar.js +0 -46
  7098. package/lib/v2/hrbeu/job/list.js +0 -65
  7099. package/lib/v2/hrbeu/maintainer.js +0 -9
  7100. package/lib/v2/hrbeu/radar.js +0 -81
  7101. package/lib/v2/hrbeu/router.js +0 -10
  7102. package/lib/v2/hrbeu/uae/list.js +0 -57
  7103. package/lib/v2/hrbeu/ugs/news.js +0 -98
  7104. package/lib/v2/hrbeu/yjsy/list.js +0 -57
  7105. package/lib/v2/hrbust/jwzx.js +0 -36
  7106. package/lib/v2/hrbust/maintainer.js +0 -3
  7107. package/lib/v2/hrbust/radar.js +0 -13
  7108. package/lib/v2/hrbust/router.js +0 -3
  7109. package/lib/v2/hrbust/templates/description.art +0 -1
  7110. package/lib/v2/hrbust/utils.js +0 -71
  7111. package/lib/v2/huangz/index.js +0 -29
  7112. package/lib/v2/huangz/maintainer.js +0 -3
  7113. package/lib/v2/huangz/radar.js +0 -13
  7114. package/lib/v2/huangz/router.js +0 -3
  7115. package/lib/v2/huanqiu/index.js +0 -72
  7116. package/lib/v2/huanqiu/maintainer.js +0 -3
  7117. package/lib/v2/huanqiu/radar.js +0 -13
  7118. package/lib/v2/huanqiu/router.js +0 -3
  7119. package/lib/v2/hunanpea/maintainer.js +0 -3
  7120. package/lib/v2/hunanpea/radar.js +0 -13
  7121. package/lib/v2/hunanpea/router.js +0 -3
  7122. package/lib/v2/hunanpea/rsks.js +0 -42
  7123. package/lib/v2/hupu/all.js +0 -73
  7124. package/lib/v2/hupu/bbs.js +0 -85
  7125. package/lib/v2/hupu/index.js +0 -80
  7126. package/lib/v2/hupu/maintainer.js +0 -7
  7127. package/lib/v2/hupu/radar.js +0 -35
  7128. package/lib/v2/hupu/router.js +0 -7
  7129. package/lib/v2/hust/aia/news.js +0 -26
  7130. package/lib/v2/hust/aia/notice.js +0 -29
  7131. package/lib/v2/hust/maintainer.js +0 -7
  7132. package/lib/v2/hust/radar.js +0 -27
  7133. package/lib/v2/hust/router.js +0 -7
  7134. package/lib/v2/hust/yjs.js +0 -27
  7135. package/lib/v2/huxiu/article.js +0 -33
  7136. package/lib/v2/huxiu/author.js +0 -36
  7137. package/lib/v2/huxiu/briefColumn.js +0 -41
  7138. package/lib/v2/huxiu/collection.js +0 -39
  7139. package/lib/v2/huxiu/maintainer.js +0 -8
  7140. package/lib/v2/huxiu/moment.js +0 -39
  7141. package/lib/v2/huxiu/radar.js +0 -47
  7142. package/lib/v2/huxiu/router.js +0 -9
  7143. package/lib/v2/huxiu/search.js +0 -40
  7144. package/lib/v2/huxiu/tag.js +0 -38
  7145. package/lib/v2/huxiu/templates/brief.art +0 -22
  7146. package/lib/v2/huxiu/templates/img.art +0 -3
  7147. package/lib/v2/huxiu/templates/moment.art +0 -16
  7148. package/lib/v2/huxiu/templates/video.art +0 -7
  7149. package/lib/v2/huxiu/utils.js +0 -154
  7150. package/lib/v2/hyqss/index.js +0 -89
  7151. package/lib/v2/hyqss/maintainer.js +0 -4
  7152. package/lib/v2/hyqss/radar.js +0 -22
  7153. package/lib/v2/hyqss/router.js +0 -3
  7154. package/lib/v2/icac/maintainer.js +0 -3
  7155. package/lib/v2/icac/news.js +0 -46
  7156. package/lib/v2/icac/radar.js +0 -13
  7157. package/lib/v2/icac/router.js +0 -3
  7158. package/lib/v2/icac/utils.js +0 -17
  7159. package/lib/v2/idolypride/maintainer.js +0 -3
  7160. package/lib/v2/idolypride/news.js +0 -29
  7161. package/lib/v2/idolypride/radar.js +0 -13
  7162. package/lib/v2/idolypride/router.js +0 -3
  7163. package/lib/v2/ieee/earlyaccess.js +0 -77
  7164. package/lib/v2/ieee/journal.js +0 -78
  7165. package/lib/v2/ieee/maintainer.js +0 -5
  7166. package/lib/v2/ieee/radar.js +0 -25
  7167. package/lib/v2/ieee/recent.js +0 -95
  7168. package/lib/v2/ieee/router.js +0 -7
  7169. package/lib/v2/ieee/templates/description.art +0 -11
  7170. package/lib/v2/ieee-security/maintainer.js +0 -3
  7171. package/lib/v2/ieee-security/radar.js +0 -13
  7172. package/lib/v2/ieee-security/router.js +0 -3
  7173. package/lib/v2/ieee-security/sp.js +0 -36
  7174. package/lib/v2/ielts/index.js +0 -64
  7175. package/lib/v2/ielts/maintainer.js +0 -3
  7176. package/lib/v2/ielts/radar.js +0 -13
  7177. package/lib/v2/ielts/router.js +0 -3
  7178. package/lib/v2/ifeng/feng.js +0 -71
  7179. package/lib/v2/ifeng/maintainer.js +0 -4
  7180. package/lib/v2/ifeng/news.js +0 -54
  7181. package/lib/v2/ifeng/radar.js +0 -18
  7182. package/lib/v2/ifeng/router.js +0 -4
  7183. package/lib/v2/ifeng/utils.js +0 -28
  7184. package/lib/v2/ifi-audio/download.js +0 -34
  7185. package/lib/v2/ifi-audio/maintainer.js +0 -3
  7186. package/lib/v2/ifi-audio/radar.js +0 -11
  7187. package/lib/v2/ifi-audio/router.js +0 -3
  7188. package/lib/v2/iguoguo/index.js +0 -75
  7189. package/lib/v2/iguoguo/maintainer.js +0 -3
  7190. package/lib/v2/iguoguo/radar.js +0 -11
  7191. package/lib/v2/iguoguo/router.js +0 -3
  7192. package/lib/v2/iiilab/index.js +0 -24
  7193. package/lib/v2/iiilab/maintainer.js +0 -3
  7194. package/lib/v2/iiilab/radar.js +0 -13
  7195. package/lib/v2/iiilab/router.js +0 -3
  7196. package/lib/v2/ikea/cn/family_offers.js +0 -70
  7197. package/lib/v2/ikea/cn/low_price.js +0 -22
  7198. package/lib/v2/ikea/cn/new.js +0 -39
  7199. package/lib/v2/ikea/cn/utils.js +0 -42
  7200. package/lib/v2/ikea/gb/new.js +0 -54
  7201. package/lib/v2/ikea/gb/offer.js +0 -69
  7202. package/lib/v2/ikea/maintainer.js +0 -7
  7203. package/lib/v2/ikea/radar.js +0 -42
  7204. package/lib/v2/ikea/router.js +0 -7
  7205. package/lib/v2/imagemagick/changelog.js +0 -46
  7206. package/lib/v2/imagemagick/maintainer.js +0 -3
  7207. package/lib/v2/imagemagick/radar.js +0 -13
  7208. package/lib/v2/imagemagick/router.js +0 -3
  7209. package/lib/v2/independent/maintainer.js +0 -3
  7210. package/lib/v2/independent/ps5-stock-uk.js +0 -27
  7211. package/lib/v2/independent/radar.js +0 -13
  7212. package/lib/v2/independent/router.js +0 -3
  7213. package/lib/v2/indiansinkuwait/latest.js +0 -43
  7214. package/lib/v2/indiansinkuwait/maintainer.js +0 -3
  7215. package/lib/v2/indiansinkuwait/radar.js +0 -13
  7216. package/lib/v2/indiansinkuwait/router.js +0 -3
  7217. package/lib/v2/inewsweek/index.js +0 -53
  7218. package/lib/v2/inewsweek/maintainer.js +0 -3
  7219. package/lib/v2/inewsweek/radar.js +0 -13
  7220. package/lib/v2/inewsweek/router.js +0 -3
  7221. package/lib/v2/infoq/maintainer.js +0 -4
  7222. package/lib/v2/infoq/radar.js +0 -19
  7223. package/lib/v2/infoq/recommend.js +0 -25
  7224. package/lib/v2/infoq/router.js +0 -4
  7225. package/lib/v2/infoq/topic.js +0 -42
  7226. package/lib/v2/infoq/utils.js +0 -111
  7227. package/lib/v2/informs/index.js +0 -74
  7228. package/lib/v2/informs/maintainer.js +0 -3
  7229. package/lib/v2/informs/radar.js +0 -109
  7230. package/lib/v2/informs/router.js +0 -3
  7231. package/lib/v2/inoreader/index.js +0 -46
  7232. package/lib/v2/inoreader/maintainer.js +0 -4
  7233. package/lib/v2/inoreader/radar.js +0 -23
  7234. package/lib/v2/inoreader/router.js +0 -4
  7235. package/lib/v2/inoreader/rss.js +0 -47
  7236. package/lib/v2/instagram/common-utils.js +0 -59
  7237. package/lib/v2/instagram/maintainer.js +0 -4
  7238. package/lib/v2/instagram/private-api/index.js +0 -94
  7239. package/lib/v2/instagram/private-api/utils.js +0 -37
  7240. package/lib/v2/instagram/radar.js +0 -19
  7241. package/lib/v2/instagram/router.js +0 -4
  7242. package/lib/v2/instagram/templates/images.art +0 -5
  7243. package/lib/v2/instagram/templates/video.art +0 -5
  7244. package/lib/v2/instagram/web-api/index.js +0 -70
  7245. package/lib/v2/instagram/web-api/utils.js +0 -99
  7246. package/lib/v2/instructables/maintainer.js +0 -3
  7247. package/lib/v2/instructables/projects.js +0 -56
  7248. package/lib/v2/instructables/radar.js +0 -19
  7249. package/lib/v2/instructables/router.js +0 -3
  7250. package/lib/v2/iqiyi/album.js +0 -62
  7251. package/lib/v2/iqiyi/maintainer.js +0 -4
  7252. package/lib/v2/iqiyi/radar.js +0 -24
  7253. package/lib/v2/iqiyi/router.js +0 -4
  7254. package/lib/v2/iqiyi/video.js +0 -43
  7255. package/lib/v2/iqnew/latest.js +0 -57
  7256. package/lib/v2/iqnew/maintainer.js +0 -3
  7257. package/lib/v2/iqnew/radar.js +0 -13
  7258. package/lib/v2/iqnew/router.js +0 -3
  7259. package/lib/v2/iresearch/maintainer.js +0 -4
  7260. package/lib/v2/iresearch/radar.js +0 -19
  7261. package/lib/v2/iresearch/report.js +0 -60
  7262. package/lib/v2/iresearch/router.js +0 -4
  7263. package/lib/v2/iresearch/weekly.js +0 -39
  7264. package/lib/v2/islander/maintainer.js +0 -4
  7265. package/lib/v2/islander/radar.js +0 -19
  7266. package/lib/v2/islander/router.js +0 -4
  7267. package/lib/v2/islander/search.js +0 -33
  7268. package/lib/v2/islander/top30event.js +0 -28
  7269. package/lib/v2/issuehunt/funded.js +0 -28
  7270. package/lib/v2/issuehunt/maintainer.js +0 -3
  7271. package/lib/v2/issuehunt/radar.js +0 -13
  7272. package/lib/v2/issuehunt/router.js +0 -3
  7273. package/lib/v2/itch/devlog.js +0 -66
  7274. package/lib/v2/itch/index.js +0 -56
  7275. package/lib/v2/itch/maintainer.js +0 -5
  7276. package/lib/v2/itch/posts.js +0 -41
  7277. package/lib/v2/itch/radar.js +0 -28
  7278. package/lib/v2/itch/router.js +0 -5
  7279. package/lib/v2/ithome/index.js +0 -85
  7280. package/lib/v2/ithome/maintainer.js +0 -7
  7281. package/lib/v2/ithome/radar.js +0 -120
  7282. package/lib/v2/ithome/ranking.js +0 -69
  7283. package/lib/v2/ithome/router.js +0 -7
  7284. package/lib/v2/ithome/tag.js +0 -48
  7285. package/lib/v2/ithome/tw/feeds.js +0 -38
  7286. package/lib/v2/ithome/zt.js +0 -62
  7287. package/lib/v2/iwara/index.js +0 -43
  7288. package/lib/v2/iwara/maintainer.js +0 -4
  7289. package/lib/v2/iwara/radar.js +0 -25
  7290. package/lib/v2/iwara/router.js +0 -4
  7291. package/lib/v2/iwara/subscriptions.js +0 -49
  7292. package/lib/v2/iwara/templates/subscriptions.art +0 -1
  7293. package/lib/v2/ixigua/maintainer.js +0 -3
  7294. package/lib/v2/ixigua/radar.js +0 -13
  7295. package/lib/v2/ixigua/router.js +0 -3
  7296. package/lib/v2/ixigua/userVideo.js +0 -40
  7297. package/lib/v2/jandan/index.js +0 -31
  7298. package/lib/v2/jandan/maintainer.js +0 -4
  7299. package/lib/v2/jandan/radar.js +0 -19
  7300. package/lib/v2/jandan/router.js +0 -4
  7301. package/lib/v2/jandan/section.js +0 -48
  7302. package/lib/v2/javbus/index.js +0 -170
  7303. package/lib/v2/javbus/maintainer.js +0 -37
  7304. package/lib/v2/javbus/radar.js +0 -149
  7305. package/lib/v2/javbus/router.js +0 -3
  7306. package/lib/v2/javdb/actors.js +0 -20
  7307. package/lib/v2/javdb/index.js +0 -32
  7308. package/lib/v2/javdb/maintainer.js +0 -10
  7309. package/lib/v2/javdb/makers.js +0 -21
  7310. package/lib/v2/javdb/radar.js +0 -49
  7311. package/lib/v2/javdb/rankings.js +0 -12
  7312. package/lib/v2/javdb/router.js +0 -10
  7313. package/lib/v2/javdb/search.js +0 -26
  7314. package/lib/v2/javdb/series.js +0 -21
  7315. package/lib/v2/javdb/tags.js +0 -12
  7316. package/lib/v2/javdb/utils.js +0 -79
  7317. package/lib/v2/javlibrary/bestrated.js +0 -9
  7318. package/lib/v2/javlibrary/bestreviews.js +0 -9
  7319. package/lib/v2/javlibrary/genre.js +0 -10
  7320. package/lib/v2/javlibrary/maintainer.js +0 -11
  7321. package/lib/v2/javlibrary/mostwanted.js +0 -9
  7322. package/lib/v2/javlibrary/newentries.js +0 -8
  7323. package/lib/v2/javlibrary/newrelease.js +0 -9
  7324. package/lib/v2/javlibrary/radar.js +0 -79
  7325. package/lib/v2/javlibrary/router.js +0 -19
  7326. package/lib/v2/javlibrary/star.js +0 -10
  7327. package/lib/v2/javlibrary/update.js +0 -8
  7328. package/lib/v2/javlibrary/user.js +0 -10
  7329. package/lib/v2/javlibrary/utils.js +0 -98
  7330. package/lib/v2/jd/maintainer.js +0 -3
  7331. package/lib/v2/jd/price.js +0 -42
  7332. package/lib/v2/jd/radar.js +0 -13
  7333. package/lib/v2/jd/router.js +0 -3
  7334. package/lib/v2/jewishmuseum/exhibitions.js +0 -16
  7335. package/lib/v2/jewishmuseum/maintainer.js +0 -3
  7336. package/lib/v2/jewishmuseum/radar.js +0 -11
  7337. package/lib/v2/jewishmuseum/router.js +0 -3
  7338. package/lib/v2/jiaoliudao/index.js +0 -35
  7339. package/lib/v2/jiaoliudao/maintainer.js +0 -3
  7340. package/lib/v2/jiaoliudao/radar.js +0 -13
  7341. package/lib/v2/jiaoliudao/router.js +0 -3
  7342. package/lib/v2/jiemian/list.js +0 -60
  7343. package/lib/v2/jiemian/maintainer.js +0 -4
  7344. package/lib/v2/jiemian/radar.js +0 -19
  7345. package/lib/v2/jiemian/router.js +0 -4
  7346. package/lib/v2/jike/maintainer.js +0 -5
  7347. package/lib/v2/jike/radar.js +0 -34
  7348. package/lib/v2/jike/router.js +0 -5
  7349. package/lib/v2/jike/topic.js +0 -42
  7350. package/lib/v2/jike/topicText.js +0 -21
  7351. package/lib/v2/jike/user.js +0 -158
  7352. package/lib/v2/jike/utils.js +0 -197
  7353. package/lib/v2/jin10/index.js +0 -58
  7354. package/lib/v2/jin10/maintainer.js +0 -3
  7355. package/lib/v2/jin10/radar.js +0 -13
  7356. package/lib/v2/jin10/router.js +0 -3
  7357. package/lib/v2/jisilu/index.js +0 -90
  7358. package/lib/v2/jisilu/maintainer.js +0 -3
  7359. package/lib/v2/jisilu/radar.js +0 -25
  7360. package/lib/v2/jisilu/router.js +0 -3
  7361. package/lib/v2/jornada/index.js +0 -59
  7362. package/lib/v2/jornada/maintainer.js +0 -3
  7363. package/lib/v2/jornada/radar.js +0 -13
  7364. package/lib/v2/jornada/router.js +0 -3
  7365. package/lib/v2/jou/home.js +0 -18
  7366. package/lib/v2/jou/maintainer.js +0 -4
  7367. package/lib/v2/jou/radar.js +0 -21
  7368. package/lib/v2/jou/router.js +0 -6
  7369. package/lib/v2/jou/utils/index.js +0 -60
  7370. package/lib/v2/jou/yz.js +0 -18
  7371. package/lib/v2/jseea/maintainer.js +0 -3
  7372. package/lib/v2/jseea/news.js +0 -64
  7373. package/lib/v2/jseea/radar.js +0 -13
  7374. package/lib/v2/jseea/router.js +0 -3
  7375. package/lib/v2/juejin/books.js +0 -30
  7376. package/lib/v2/juejin/category.js +0 -39
  7377. package/lib/v2/juejin/collection.js +0 -26
  7378. package/lib/v2/juejin/column.js +0 -31
  7379. package/lib/v2/juejin/favorites.js +0 -39
  7380. package/lib/v2/juejin/maintainer.js +0 -13
  7381. package/lib/v2/juejin/news.js +0 -25
  7382. package/lib/v2/juejin/pins.js +0 -67
  7383. package/lib/v2/juejin/posts.js +0 -25
  7384. package/lib/v2/juejin/radar.js +0 -61
  7385. package/lib/v2/juejin/router.js +0 -13
  7386. package/lib/v2/juejin/shares.js +0 -26
  7387. package/lib/v2/juejin/tag.js +0 -40
  7388. package/lib/v2/juejin/trending.js +0 -79
  7389. package/lib/v2/juejin/utils.js +0 -56
  7390. package/lib/v2/jump/discount.js +0 -120
  7391. package/lib/v2/jump/maintainer.js +0 -3
  7392. package/lib/v2/jump/radar.js +0 -13
  7393. package/lib/v2/jump/router.js +0 -3
  7394. package/lib/v2/kakuyomu/episode.js +0 -54
  7395. package/lib/v2/kakuyomu/maintainer.js +0 -3
  7396. package/lib/v2/kakuyomu/radar.js +0 -13
  7397. package/lib/v2/kakuyomu/router.js +0 -1
  7398. package/lib/v2/kbs/maintainer.js +0 -4
  7399. package/lib/v2/kbs/news.js +0 -67
  7400. package/lib/v2/kbs/radar.js +0 -19
  7401. package/lib/v2/kbs/router.js +0 -4
  7402. package/lib/v2/kbs/today.js +0 -56
  7403. package/lib/v2/kcna/maintainer.js +0 -3
  7404. package/lib/v2/kcna/news.js +0 -81
  7405. package/lib/v2/kcna/radar.js +0 -61
  7406. package/lib/v2/kcna/router.js +0 -3
  7407. package/lib/v2/kcna/utils.js +0 -64
  7408. package/lib/v2/ke/maintainer.js +0 -3
  7409. package/lib/v2/ke/radar.js +0 -13
  7410. package/lib/v2/ke/results.js +0 -36
  7411. package/lib/v2/ke/router.js +0 -3
  7412. package/lib/v2/keep/maintainer.js +0 -3
  7413. package/lib/v2/keep/radar.js +0 -13
  7414. package/lib/v2/keep/router.js +0 -3
  7415. package/lib/v2/keep/user.js +0 -57
  7416. package/lib/v2/kemono/index.js +0 -103
  7417. package/lib/v2/kemono/maintainer.js +0 -4
  7418. package/lib/v2/kemono/radar.js +0 -13
  7419. package/lib/v2/kemono/router.js +0 -3
  7420. package/lib/v2/kimlaw/maintainer.js +0 -3
  7421. package/lib/v2/kimlaw/radar.js +0 -13
  7422. package/lib/v2/kimlaw/router.js +0 -3
  7423. package/lib/v2/kimlaw/thesis.js +0 -44
  7424. package/lib/v2/knowmedia/index.js +0 -38
  7425. package/lib/v2/knowmedia/maintainer.js +0 -3
  7426. package/lib/v2/knowmedia/radar.js +0 -31
  7427. package/lib/v2/knowmedia/router.js +0 -3
  7428. package/lib/v2/knowmedia/templates/desc.art +0 -3
  7429. package/lib/v2/kuaidi100/index.js +0 -47
  7430. package/lib/v2/kuaidi100/maintainer.js +0 -4
  7431. package/lib/v2/kuaidi100/radar.js +0 -25
  7432. package/lib/v2/kuaidi100/router.js +0 -4
  7433. package/lib/v2/kuaidi100/supported_company.js +0 -16
  7434. package/lib/v2/kuaidi100/utils.js +0 -258
  7435. package/lib/v2/kunchengblog/essay.js +0 -50
  7436. package/lib/v2/kunchengblog/maintainer.js +0 -3
  7437. package/lib/v2/kunchengblog/radar.js +0 -13
  7438. package/lib/v2/kunchengblog/router.js +0 -3
  7439. package/lib/v2/kuwaitlocal/index.js +0 -47
  7440. package/lib/v2/kuwaitlocal/maintainer.js +0 -4
  7441. package/lib/v2/kuwaitlocal/radar.js +0 -19
  7442. package/lib/v2/kuwaitlocal/router.js +0 -3
  7443. package/lib/v2/kyodonews/index.js +0 -123
  7444. package/lib/v2/kyodonews/maintainer.js +0 -3
  7445. package/lib/v2/kyodonews/radar.js +0 -33
  7446. package/lib/v2/kyodonews/router.js +0 -3
  7447. package/lib/v2/lang/maintainer.js +0 -3
  7448. package/lib/v2/lang/radar.js +0 -13
  7449. package/lib/v2/lang/room.js +0 -40
  7450. package/lib/v2/lang/router.js +0 -3
  7451. package/lib/v2/lanqiao/author.js +0 -61
  7452. package/lib/v2/lanqiao/courses.js +0 -62
  7453. package/lib/v2/lanqiao/maintainer.js +0 -5
  7454. package/lib/v2/lanqiao/questions.js +0 -52
  7455. package/lib/v2/lanqiao/radar.js +0 -25
  7456. package/lib/v2/lanqiao/router.js +0 -5
  7457. package/lib/v2/lanqiao/utils.js +0 -12
  7458. package/lib/v2/laohu8/maintainer.js +0 -3
  7459. package/lib/v2/laohu8/personal.js +0 -32
  7460. package/lib/v2/laohu8/radar.js +0 -13
  7461. package/lib/v2/laohu8/router.js +0 -3
  7462. package/lib/v2/latepost/index.js +0 -62
  7463. package/lib/v2/latepost/maintainer.js +0 -3
  7464. package/lib/v2/latepost/radar.js +0 -13
  7465. package/lib/v2/latepost/router.js +0 -3
  7466. package/lib/v2/lativ/index.js +0 -42
  7467. package/lib/v2/lativ/maintainer.js +0 -3
  7468. package/lib/v2/lativ/radar.js +0 -13
  7469. package/lib/v2/lativ/router.js +0 -3
  7470. package/lib/v2/lativ/templates/detail.art +0 -9
  7471. package/lib/v2/layer3/maintainer.js +0 -3
  7472. package/lib/v2/layer3/quests.js +0 -37
  7473. package/lib/v2/layer3/radar.js +0 -13
  7474. package/lib/v2/layer3/router.js +0 -3
  7475. package/lib/v2/layer3/templates/description.art +0 -24
  7476. package/lib/v2/layoffs/index.js +0 -134
  7477. package/lib/v2/layoffs/maintainer.js +0 -3
  7478. package/lib/v2/layoffs/radar.js +0 -13
  7479. package/lib/v2/layoffs/router.js +0 -3
  7480. package/lib/v2/learnblockchain/maintainer.js +0 -3
  7481. package/lib/v2/learnblockchain/posts.js +0 -43
  7482. package/lib/v2/learnblockchain/radar.js +0 -19
  7483. package/lib/v2/learnblockchain/router.js +0 -3
  7484. package/lib/v2/learnku/maintainer.js +0 -3
  7485. package/lib/v2/learnku/radar.js +0 -13
  7486. package/lib/v2/learnku/router.js +0 -3
  7487. package/lib/v2/learnku/topic.js +0 -72
  7488. package/lib/v2/leetcode/articles.js +0 -80
  7489. package/lib/v2/leetcode/dailyquestion-cn.js +0 -115
  7490. package/lib/v2/leetcode/dailyquestion-en.js +0 -116
  7491. package/lib/v2/leetcode/dailyquestion-solution-cn.js +0 -183
  7492. package/lib/v2/leetcode/dailyquestion-solution-en.js +0 -213
  7493. package/lib/v2/leetcode/maintainer.js +0 -6
  7494. package/lib/v2/leetcode/radar.js +0 -62
  7495. package/lib/v2/leetcode/router.js +0 -7
  7496. package/lib/v2/leiphone/index.js +0 -25
  7497. package/lib/v2/leiphone/maintainer.js +0 -5
  7498. package/lib/v2/leiphone/newsflash.js +0 -19
  7499. package/lib/v2/leiphone/radar.js +0 -25
  7500. package/lib/v2/leiphone/router.js +0 -4
  7501. package/lib/v2/leiphone/utils.js +0 -41
  7502. package/lib/v2/lever/index.js +0 -28
  7503. package/lib/v2/lever/maintainer.js +0 -3
  7504. package/lib/v2/lever/radar.js +0 -13
  7505. package/lib/v2/lever/router.js +0 -3
  7506. package/lib/v2/lfsyd/home.js +0 -42
  7507. package/lib/v2/lfsyd/maintainer.js +0 -7
  7508. package/lib/v2/lfsyd/old_home.js +0 -29
  7509. package/lib/v2/lfsyd/radar.js +0 -39
  7510. package/lib/v2/lfsyd/router.js +0 -6
  7511. package/lib/v2/lfsyd/tag.js +0 -64
  7512. package/lib/v2/lfsyd/user.js +0 -48
  7513. package/lib/v2/lfsyd/utils.js +0 -103
  7514. package/lib/v2/lianxh/index.js +0 -61
  7515. package/lib/v2/lianxh/maintainer.js +0 -3
  7516. package/lib/v2/lianxh/radar.js +0 -13
  7517. package/lib/v2/lianxh/router.js +0 -3
  7518. package/lib/v2/line/maintainer.js +0 -4
  7519. package/lib/v2/line/publisher.js +0 -53
  7520. package/lib/v2/line/radar.js +0 -19
  7521. package/lib/v2/line/router.js +0 -4
  7522. package/lib/v2/line/today.js +0 -44
  7523. package/lib/v2/line/utils.js +0 -43
  7524. package/lib/v2/linkedin/cn/index.js +0 -13
  7525. package/lib/v2/linkedin/cn/renderer.js +0 -179
  7526. package/lib/v2/linkedin/cn/utils.js +0 -122
  7527. package/lib/v2/linkedin/jobs.js +0 -44
  7528. package/lib/v2/linkedin/maintainer.js +0 -4
  7529. package/lib/v2/linkedin/models.js +0 -15
  7530. package/lib/v2/linkedin/radar.js +0 -36
  7531. package/lib/v2/linkedin/router.js +0 -4
  7532. package/lib/v2/linkedin/utils.js +0 -121
  7533. package/lib/v2/linkresearcher/index.js +0 -68
  7534. package/lib/v2/linkresearcher/maintainer.js +0 -3
  7535. package/lib/v2/linkresearcher/radar.js +0 -19
  7536. package/lib/v2/linkresearcher/router.js +0 -3
  7537. package/lib/v2/linovelib/maintainer.js +0 -3
  7538. package/lib/v2/linovelib/novel.js +0 -33
  7539. package/lib/v2/linovelib/radar.js +0 -13
  7540. package/lib/v2/linovelib/router.js +0 -3
  7541. package/lib/v2/literotica/category.js +0 -55
  7542. package/lib/v2/literotica/maintainer.js +0 -4
  7543. package/lib/v2/literotica/new.js +0 -59
  7544. package/lib/v2/literotica/radar.js +0 -19
  7545. package/lib/v2/literotica/router.js +0 -4
  7546. package/lib/v2/liulinblog/itnews.js +0 -23
  7547. package/lib/v2/liulinblog/kuaixun.js +0 -17
  7548. package/lib/v2/liulinblog/maintainer.js +0 -4
  7549. package/lib/v2/liulinblog/radar.js +0 -33
  7550. package/lib/v2/liulinblog/router.js +0 -4
  7551. package/lib/v2/liulinblog/utils.js +0 -42
  7552. package/lib/v2/lkong/forum.js +0 -55
  7553. package/lib/v2/lkong/maintainer.js +0 -4
  7554. package/lib/v2/lkong/query.js +0 -82
  7555. package/lib/v2/lkong/radar.js +0 -19
  7556. package/lib/v2/lkong/router.js +0 -4
  7557. package/lib/v2/lkong/thread.js +0 -57
  7558. package/lib/v2/lofter/maintainer.js +0 -4
  7559. package/lib/v2/lofter/radar.js +0 -17
  7560. package/lib/v2/lofter/router.js +0 -4
  7561. package/lib/v2/lofter/tag.js +0 -59
  7562. package/lib/v2/lofter/user.js +0 -61
  7563. package/lib/v2/logonews/index.js +0 -76
  7564. package/lib/v2/logonews/maintainer.js +0 -8
  7565. package/lib/v2/logonews/radar.js +0 -43
  7566. package/lib/v2/logonews/router.js +0 -5
  7567. package/lib/v2/loltw/maintainer.js +0 -3
  7568. package/lib/v2/loltw/news.js +0 -36
  7569. package/lib/v2/loltw/radar.js +0 -13
  7570. package/lib/v2/loltw/router.js +0 -3
  7571. package/lib/v2/lovelive-anime/maintainer.js +0 -5
  7572. package/lib/v2/lovelive-anime/news.js +0 -56
  7573. package/lib/v2/lovelive-anime/radar.js +0 -31
  7574. package/lib/v2/lovelive-anime/router.js +0 -5
  7575. package/lib/v2/lovelive-anime/schedules.js +0 -56
  7576. package/lib/v2/lovelive-anime/topics.js +0 -84
  7577. package/lib/v2/luogu/contest.js +0 -72
  7578. package/lib/v2/luogu/daily.js +0 -33
  7579. package/lib/v2/luogu/maintainer.js +0 -6
  7580. package/lib/v2/luogu/radar.js +0 -31
  7581. package/lib/v2/luogu/router.js +0 -6
  7582. package/lib/v2/luogu/userBlog.js +0 -48
  7583. package/lib/v2/luogu/userFeed.js +0 -30
  7584. package/lib/v2/lvv2/maintainer.js +0 -4
  7585. package/lib/v2/lvv2/news.js +0 -75
  7586. package/lib/v2/lvv2/radar.js +0 -79
  7587. package/lib/v2/lvv2/router.js +0 -4
  7588. package/lib/v2/lvv2/top.js +0 -77
  7589. package/lib/v2/lxixsxa/discography.js +0 -54
  7590. package/lib/v2/lxixsxa/information.js +0 -48
  7591. package/lib/v2/lxixsxa/jsonpHelper.js +0 -19
  7592. package/lib/v2/lxixsxa/maintainer.js +0 -4
  7593. package/lib/v2/lxixsxa/radar.js +0 -36
  7594. package/lib/v2/lxixsxa/router.js +0 -4
  7595. package/lib/v2/macfilos/blog.js +0 -61
  7596. package/lib/v2/macfilos/maintainer.js +0 -3
  7597. package/lib/v2/macfilos/radar.js +0 -13
  7598. package/lib/v2/macfilos/router.js +0 -3
  7599. package/lib/v2/macmenubar/maintainer.js +0 -3
  7600. package/lib/v2/macmenubar/radar.js +0 -13
  7601. package/lib/v2/macmenubar/recently.js +0 -47
  7602. package/lib/v2/macmenubar/router.js +0 -3
  7603. package/lib/v2/magazinelib/latest-magazine.js +0 -55
  7604. package/lib/v2/magazinelib/maintainer.js +0 -3
  7605. package/lib/v2/magazinelib/radar.js +0 -19
  7606. package/lib/v2/magazinelib/router.js +0 -3
  7607. package/lib/v2/mangadex/index.js +0 -73
  7608. package/lib/v2/mangadex/maintainer.js +0 -3
  7609. package/lib/v2/mangadex/radar.js +0 -13
  7610. package/lib/v2/mangadex/router.js +0 -3
  7611. package/lib/v2/manhuagui/comic.js +0 -114
  7612. package/lib/v2/manhuagui/maintainer.js +0 -6
  7613. package/lib/v2/manhuagui/radar.js +0 -33
  7614. package/lib/v2/manhuagui/router.js +0 -5
  7615. package/lib/v2/manhuagui/subscribe.js +0 -54
  7616. package/lib/v2/mcachicago/exhibitions.js +0 -17
  7617. package/lib/v2/mcachicago/maintainer.js +0 -3
  7618. package/lib/v2/mcachicago/radar.js +0 -11
  7619. package/lib/v2/mcachicago/router.js +0 -3
  7620. package/lib/v2/mckinsey/cn/categoryMap.js +0 -79
  7621. package/lib/v2/mckinsey/cn/index.js +0 -37
  7622. package/lib/v2/mckinsey/maintainer.js +0 -3
  7623. package/lib/v2/mckinsey/radar.js +0 -12
  7624. package/lib/v2/mckinsey/router.js +0 -3
  7625. package/lib/v2/mclaren/index.js +0 -96
  7626. package/lib/v2/mclaren/maintainer.js +0 -3
  7627. package/lib/v2/mclaren/radar.js +0 -29
  7628. package/lib/v2/mclaren/router.js +0 -3
  7629. package/lib/v2/mclaren/templates/desc.art +0 -6
  7630. package/lib/v2/mdpi/journal.js +0 -65
  7631. package/lib/v2/mdpi/maintainer.js +0 -3
  7632. package/lib/v2/mdpi/radar.js +0 -13
  7633. package/lib/v2/mdpi/router.js +0 -3
  7634. package/lib/v2/medsci/index.js +0 -67
  7635. package/lib/v2/medsci/maintainer.js +0 -3
  7636. package/lib/v2/medsci/radar.js +0 -13
  7637. package/lib/v2/medsci/router.js +0 -3
  7638. package/lib/v2/meituclub/latest.js +0 -41
  7639. package/lib/v2/meituclub/maintainer.js +0 -3
  7640. package/lib/v2/meituclub/radar.js +0 -13
  7641. package/lib/v2/meituclub/router.js +0 -3
  7642. package/lib/v2/meituclub/templates/description.art +0 -1
  7643. package/lib/v2/meteor/boards.js +0 -11
  7644. package/lib/v2/meteor/index.js +0 -45
  7645. package/lib/v2/meteor/maintainer.js +0 -4
  7646. package/lib/v2/meteor/radar.js +0 -19
  7647. package/lib/v2/meteor/router.js +0 -4
  7648. package/lib/v2/meteor/utils.js +0 -90
  7649. package/lib/v2/metmuseum/exhibitions.js +0 -31
  7650. package/lib/v2/metmuseum/maintainer.js +0 -3
  7651. package/lib/v2/metmuseum/radar.js +0 -11
  7652. package/lib/v2/metmuseum/router.js +0 -3
  7653. package/lib/v2/mihoyo/bbs.js +0 -63
  7654. package/lib/v2/mihoyo/maintainer.js +0 -4
  7655. package/lib/v2/mihoyo/radar.js +0 -50
  7656. package/lib/v2/mihoyo/router.js +0 -4
  7657. package/lib/v2/mihoyo/ys/news.js +0 -81
  7658. package/lib/v2/mindmeister/example.js +0 -44
  7659. package/lib/v2/mindmeister/maintainer.js +0 -3
  7660. package/lib/v2/mindmeister/radar.js +0 -13
  7661. package/lib/v2/mindmeister/router.js +0 -3
  7662. package/lib/v2/minecraft/maintainer.js +0 -3
  7663. package/lib/v2/minecraft/radar.js +0 -13
  7664. package/lib/v2/minecraft/router.js +0 -3
  7665. package/lib/v2/minecraft/version.js +0 -34
  7666. package/lib/v2/mingpao/index.js +0 -89
  7667. package/lib/v2/mingpao/maintainer.js +0 -3
  7668. package/lib/v2/mingpao/radar.js +0 -36
  7669. package/lib/v2/mingpao/router.js +0 -3
  7670. package/lib/v2/mingpao/templates/fancybox.art +0 -7
  7671. package/lib/v2/miris/blog.js +0 -19
  7672. package/lib/v2/miris/maintainer.js +0 -3
  7673. package/lib/v2/miris/radar.js +0 -11
  7674. package/lib/v2/miris/router.js +0 -3
  7675. package/lib/v2/mirror/index.js +0 -41
  7676. package/lib/v2/mirror/maintainer.js +0 -3
  7677. package/lib/v2/mirror/radar.js +0 -17
  7678. package/lib/v2/mirror/router.js +0 -3
  7679. package/lib/v2/misskey/featured-notes.js +0 -29
  7680. package/lib/v2/misskey/maintainer.js +0 -3
  7681. package/lib/v2/misskey/radar.js +0 -35
  7682. package/lib/v2/misskey/router.js +0 -3
  7683. package/lib/v2/misskey/utils.js +0 -31
  7684. package/lib/v2/mixcloud/index.js +0 -130
  7685. package/lib/v2/mixcloud/maintainer.js +0 -3
  7686. package/lib/v2/mixcloud/queries.js +0 -1520
  7687. package/lib/v2/mixcloud/radar.js +0 -37
  7688. package/lib/v2/mixcloud/router.js +0 -3
  7689. package/lib/v2/mobilism/forums.js +0 -75
  7690. package/lib/v2/mobilism/maintainer.js +0 -4
  7691. package/lib/v2/mobilism/portal.js +0 -54
  7692. package/lib/v2/mobilism/radar.js +0 -23
  7693. package/lib/v2/mobilism/router.js +0 -4
  7694. package/lib/v2/modelscope/community.js +0 -55
  7695. package/lib/v2/modelscope/datasets.js +0 -55
  7696. package/lib/v2/modelscope/maintainer.js +0 -6
  7697. package/lib/v2/modelscope/models.js +0 -45
  7698. package/lib/v2/modelscope/radar.js +0 -33
  7699. package/lib/v2/modelscope/router.js +0 -6
  7700. package/lib/v2/modelscope/studios.js +0 -57
  7701. package/lib/v2/mohw/clarification.js +0 -50
  7702. package/lib/v2/mohw/maintainer.js +0 -3
  7703. package/lib/v2/mohw/radar.js +0 -13
  7704. package/lib/v2/mohw/router.js +0 -3
  7705. package/lib/v2/mox/index.js +0 -57
  7706. package/lib/v2/mox/maintainer.js +0 -3
  7707. package/lib/v2/mox/radar.js +0 -13
  7708. package/lib/v2/mox/router.js +0 -3
  7709. package/lib/v2/mpaypass/main.js +0 -69
  7710. package/lib/v2/mpaypass/maintainer.js +0 -4
  7711. package/lib/v2/mpaypass/news.js +0 -39
  7712. package/lib/v2/mpaypass/radar.js +0 -19
  7713. package/lib/v2/mpaypass/router.js +0 -4
  7714. package/lib/v2/mrdx/daily.js +0 -79
  7715. package/lib/v2/mrdx/maintainer.js +0 -3
  7716. package/lib/v2/mrdx/radar.js +0 -13
  7717. package/lib/v2/mrdx/router.js +0 -3
  7718. package/lib/v2/mrdx/utils.js +0 -17
  7719. package/lib/v2/mtime/maintainer.js +0 -3
  7720. package/lib/v2/mtime/news.js +0 -52
  7721. package/lib/v2/mtime/radar.js +0 -13
  7722. package/lib/v2/mtime/router.js +0 -3
  7723. package/lib/v2/mvm/index.js +0 -58
  7724. package/lib/v2/mvm/maintainer.js +0 -3
  7725. package/lib/v2/mvm/radar.js +0 -13
  7726. package/lib/v2/mvm/router.js +0 -3
  7727. package/lib/v2/mydrivers/index.js +0 -110
  7728. package/lib/v2/mydrivers/maintainer.js +0 -3
  7729. package/lib/v2/mydrivers/radar.js +0 -13
  7730. package/lib/v2/mydrivers/router.js +0 -3
  7731. package/lib/v2/myfigurecollection/activity.js +0 -63
  7732. package/lib/v2/myfigurecollection/index.js +0 -82
  7733. package/lib/v2/myfigurecollection/maintainer.js +0 -4
  7734. package/lib/v2/myfigurecollection/radar.js +0 -44
  7735. package/lib/v2/myfigurecollection/router.js +0 -4
  7736. package/lib/v2/mygopen/index.js +0 -29
  7737. package/lib/v2/mygopen/maintainer.js +0 -3
  7738. package/lib/v2/mygopen/radar.js +0 -13
  7739. package/lib/v2/mygopen/router.js +0 -3
  7740. package/lib/v2/mysql/maintainer.js +0 -3
  7741. package/lib/v2/mysql/radar.js +0 -13
  7742. package/lib/v2/mysql/release.js +0 -62
  7743. package/lib/v2/mysql/router.js +0 -3
  7744. package/lib/v2/natgeo/dailyphoto.js +0 -32
  7745. package/lib/v2/natgeo/dailyselection.js +0 -41
  7746. package/lib/v2/natgeo/maintainer.js +0 -5
  7747. package/lib/v2/natgeo/natgeo.js +0 -56
  7748. package/lib/v2/natgeo/radar.js +0 -24
  7749. package/lib/v2/natgeo/router.js +0 -5
  7750. package/lib/v2/nature/cover.js +0 -77
  7751. package/lib/v2/nature/highlight.js +0 -22
  7752. package/lib/v2/nature/maintainer.js +0 -8
  7753. package/lib/v2/nature/news-and-comment.js +0 -37
  7754. package/lib/v2/nature/news.js +0 -30
  7755. package/lib/v2/nature/radar.js +0 -37
  7756. package/lib/v2/nature/research.js +0 -39
  7757. package/lib/v2/nature/router.js +0 -8
  7758. package/lib/v2/nature/siteindex.js +0 -48
  7759. package/lib/v2/nature/utils.js +0 -980
  7760. package/lib/v2/nautil/maintainer.js +0 -3
  7761. package/lib/v2/nautil/radar.js +0 -13
  7762. package/lib/v2/nautil/router.js +0 -3
  7763. package/lib/v2/nautil/topics.js +0 -57
  7764. package/lib/v2/nbd/article.js +0 -50
  7765. package/lib/v2/nbd/index.js +0 -52
  7766. package/lib/v2/nbd/maintainer.js +0 -4
  7767. package/lib/v2/nbd/radar.js +0 -19
  7768. package/lib/v2/nbd/router.js +0 -4
  7769. package/lib/v2/nber/index.js +0 -48
  7770. package/lib/v2/nber/maintainer.js +0 -4
  7771. package/lib/v2/nber/radar.js +0 -19
  7772. package/lib/v2/nber/router.js +0 -4
  7773. package/lib/v2/ncepu/maintainer.js +0 -3
  7774. package/lib/v2/ncepu/master/masterinfo.js +0 -78
  7775. package/lib/v2/ncepu/radar.js +0 -25
  7776. package/lib/v2/ncepu/router.js +0 -3
  7777. package/lib/v2/ncwu/maintainer.js +0 -3
  7778. package/lib/v2/ncwu/notice.js +0 -27
  7779. package/lib/v2/ncwu/radar.js +0 -13
  7780. package/lib/v2/ncwu/router.js +0 -3
  7781. package/lib/v2/ndss-symposium/maintainer.js +0 -3
  7782. package/lib/v2/ndss-symposium/ndss.js +0 -80
  7783. package/lib/v2/ndss-symposium/radar.js +0 -13
  7784. package/lib/v2/ndss-symposium/router.js +0 -3
  7785. package/lib/v2/neatdownloadmanager/download.js +0 -50
  7786. package/lib/v2/neatdownloadmanager/maintainer.js +0 -3
  7787. package/lib/v2/neatdownloadmanager/radar.js +0 -13
  7788. package/lib/v2/neatdownloadmanager/router.js +0 -3
  7789. package/lib/v2/neea/index.js +0 -110
  7790. package/lib/v2/neea/jlpt.js +0 -52
  7791. package/lib/v2/neea/maintainer.js +0 -4
  7792. package/lib/v2/neea/radar.js +0 -13
  7793. package/lib/v2/neea/router.js +0 -4
  7794. package/lib/v2/neu/bmie.js +0 -94
  7795. package/lib/v2/neu/maintainer.js +0 -4
  7796. package/lib/v2/neu/news.js +0 -44
  7797. package/lib/v2/neu/radar.js +0 -21
  7798. package/lib/v2/neu/router.js +0 -4
  7799. package/lib/v2/newmuseum/exhibitions.js +0 -27
  7800. package/lib/v2/newmuseum/maintainer.js +0 -3
  7801. package/lib/v2/newmuseum/radar.js +0 -11
  7802. package/lib/v2/newmuseum/router.js +0 -3
  7803. package/lib/v2/newrank/douyin.js +0 -63
  7804. package/lib/v2/newrank/maintainer.js +0 -4
  7805. package/lib/v2/newrank/radar.js +0 -15
  7806. package/lib/v2/newrank/router.js +0 -4
  7807. package/lib/v2/newrank/utils.js +0 -112
  7808. package/lib/v2/newrank/wechat.js +0 -65
  7809. package/lib/v2/news/maintainer.js +0 -3
  7810. package/lib/v2/news/radar.js +0 -13
  7811. package/lib/v2/news/router.js +0 -3
  7812. package/lib/v2/news/whxw.js +0 -67
  7813. package/lib/v2/newsmarket/index.js +0 -63
  7814. package/lib/v2/newsmarket/maintainer.js +0 -3
  7815. package/lib/v2/newsmarket/radar.js +0 -13
  7816. package/lib/v2/newsmarket/router.js +0 -3
  7817. package/lib/v2/newzmz/index.js +0 -79
  7818. package/lib/v2/newzmz/maintainer.js +0 -4
  7819. package/lib/v2/newzmz/radar.js +0 -19
  7820. package/lib/v2/newzmz/router.js +0 -4
  7821. package/lib/v2/newzmz/view.js +0 -42
  7822. package/lib/v2/nextapple/maintainer.js +0 -3
  7823. package/lib/v2/nextapple/radar.js +0 -13
  7824. package/lib/v2/nextapple/realtime.js +0 -44
  7825. package/lib/v2/nextapple/router.js +0 -3
  7826. package/lib/v2/nga/forum.js +0 -71
  7827. package/lib/v2/nga/maintainer.js +0 -4
  7828. package/lib/v2/nga/post.js +0 -127
  7829. package/lib/v2/nga/radar.js +0 -39
  7830. package/lib/v2/nga/router.js +0 -4
  7831. package/lib/v2/ngocn2/index.js +0 -56
  7832. package/lib/v2/ngocn2/maintainer.js +0 -3
  7833. package/lib/v2/ngocn2/radar.js +0 -13
  7834. package/lib/v2/ngocn2/router.js +0 -3
  7835. package/lib/v2/nhentai/maintainer.js +0 -4
  7836. package/lib/v2/nhentai/other.js +0 -30
  7837. package/lib/v2/nhentai/radar.js +0 -19
  7838. package/lib/v2/nhentai/router.js +0 -4
  7839. package/lib/v2/nhentai/search.js +0 -23
  7840. package/lib/v2/nhentai/util.js +0 -146
  7841. package/lib/v2/nhk/maintainer.js +0 -4
  7842. package/lib/v2/nhk/news.js +0 -41
  7843. package/lib/v2/nhk/news_web_easy.js +0 -44
  7844. package/lib/v2/nhk/radar.js +0 -19
  7845. package/lib/v2/nhk/router.js +0 -4
  7846. package/lib/v2/nifd/maintainer.js +0 -3
  7847. package/lib/v2/nifd/radar.js +0 -117
  7848. package/lib/v2/nifd/research.js +0 -52
  7849. package/lib/v2/nifd/router.js +0 -3
  7850. package/lib/v2/nikkei/asia/index.js +0 -53
  7851. package/lib/v2/nikkei/cn/index.js +0 -91
  7852. package/lib/v2/nikkei/index.js +0 -36
  7853. package/lib/v2/nikkei/maintainer.js +0 -6
  7854. package/lib/v2/nikkei/news.js +0 -90
  7855. package/lib/v2/nikkei/radar.js +0 -59
  7856. package/lib/v2/nikkei/router.js +0 -7
  7857. package/lib/v2/nintendo/direct.js +0 -31
  7858. package/lib/v2/nintendo/eshop_cn.js +0 -44
  7859. package/lib/v2/nintendo/eshop_hk.js +0 -79
  7860. package/lib/v2/nintendo/eshop_jp.js +0 -34
  7861. package/lib/v2/nintendo/eshop_us.js +0 -32
  7862. package/lib/v2/nintendo/maintainer.js +0 -7
  7863. package/lib/v2/nintendo/news.js +0 -23
  7864. package/lib/v2/nintendo/news_china.js +0 -35
  7865. package/lib/v2/nintendo/radar.js +0 -70
  7866. package/lib/v2/nintendo/router.js +0 -10
  7867. package/lib/v2/nintendo/system-update.js +0 -38
  7868. package/lib/v2/nintendo/utils.js +0 -170
  7869. package/lib/v2/nippon/index.js +0 -31
  7870. package/lib/v2/nippon/maintainer.js +0 -3
  7871. package/lib/v2/nippon/radar.js +0 -13
  7872. package/lib/v2/nippon/router.js +0 -3
  7873. package/lib/v2/njglyy/maintainer.js +0 -3
  7874. package/lib/v2/njglyy/radar.js +0 -13
  7875. package/lib/v2/njglyy/router.js +0 -3
  7876. package/lib/v2/njglyy/utils/index.js +0 -50
  7877. package/lib/v2/njglyy/ygbjypx.js +0 -18
  7878. package/lib/v2/njit/jwc.js +0 -92
  7879. package/lib/v2/njit/maintainer.js +0 -4
  7880. package/lib/v2/njit/radar.js +0 -21
  7881. package/lib/v2/njit/router.js +0 -4
  7882. package/lib/v2/njit/tzgg.js +0 -74
  7883. package/lib/v2/njnu/ceai/ceai.js +0 -44
  7884. package/lib/v2/njnu/ceai/utils.js +0 -55
  7885. package/lib/v2/njnu/jwc/jwc.js +0 -43
  7886. package/lib/v2/njnu/jwc/utils.js +0 -59
  7887. package/lib/v2/njnu/maintainer.js +0 -4
  7888. package/lib/v2/njnu/radar.js +0 -21
  7889. package/lib/v2/njnu/router.js +0 -4
  7890. package/lib/v2/nju/admission.js +0 -41
  7891. package/lib/v2/nju/dafls.js +0 -39
  7892. package/lib/v2/nju/exchangesys.js +0 -46
  7893. package/lib/v2/nju/gra.js +0 -31
  7894. package/lib/v2/nju/hosptial.js +0 -41
  7895. package/lib/v2/nju/hqjt.js +0 -39
  7896. package/lib/v2/nju/itsc.js +0 -46
  7897. package/lib/v2/nju/jjc.js +0 -42
  7898. package/lib/v2/nju/jw.js +0 -59
  7899. package/lib/v2/nju/maintainer.js +0 -15
  7900. package/lib/v2/nju/radar.js +0 -124
  7901. package/lib/v2/nju/rczp.js +0 -48
  7902. package/lib/v2/nju/router.js +0 -15
  7903. package/lib/v2/nju/scit.js +0 -36
  7904. package/lib/v2/nju/zbb.js +0 -81
  7905. package/lib/v2/nju/zcc.js +0 -46
  7906. package/lib/v2/njucm/grabs.js +0 -18
  7907. package/lib/v2/njucm/maintainer.js +0 -3
  7908. package/lib/v2/njucm/radar.js +0 -13
  7909. package/lib/v2/njucm/router.js +0 -3
  7910. package/lib/v2/njucm/utils/index.js +0 -47
  7911. package/lib/v2/njupt/jwc.js +0 -90
  7912. package/lib/v2/njupt/maintainer.js +0 -3
  7913. package/lib/v2/njupt/radar.js +0 -20
  7914. package/lib/v2/njupt/router.js +0 -3
  7915. package/lib/v2/njust/cwc.js +0 -39
  7916. package/lib/v2/njust/dgxg.js +0 -40
  7917. package/lib/v2/njust/eo.js +0 -50
  7918. package/lib/v2/njust/eoe.js +0 -39
  7919. package/lib/v2/njust/gs.js +0 -41
  7920. package/lib/v2/njust/jwc.js +0 -41
  7921. package/lib/v2/njust/maintainer.js +0 -8
  7922. package/lib/v2/njust/radar.js +0 -110
  7923. package/lib/v2/njust/router.js +0 -8
  7924. package/lib/v2/njust/utils.js +0 -35
  7925. package/lib/v2/njxzc/home.js +0 -26
  7926. package/lib/v2/njxzc/lib.js +0 -26
  7927. package/lib/v2/njxzc/maintainer.js +0 -4
  7928. package/lib/v2/njxzc/radar.js +0 -21
  7929. package/lib/v2/njxzc/router.js +0 -6
  7930. package/lib/v2/njxzc/utils/index.js +0 -48
  7931. package/lib/v2/nltimes/maintainer.js +0 -3
  7932. package/lib/v2/nltimes/news.js +0 -89
  7933. package/lib/v2/nltimes/radar.js +0 -19
  7934. package/lib/v2/nltimes/router.js +0 -3
  7935. package/lib/v2/nmbxd1/forum.js +0 -58
  7936. package/lib/v2/nmbxd1/maintainer.js +0 -3
  7937. package/lib/v2/nmbxd1/radar.js +0 -13
  7938. package/lib/v2/nmbxd1/router.js +0 -3
  7939. package/lib/v2/nmbxd1/templates/description.art +0 -65
  7940. package/lib/v2/nmtv/column.js +0 -53
  7941. package/lib/v2/nmtv/maintainer.js +0 -3
  7942. package/lib/v2/nmtv/radar.js +0 -13
  7943. package/lib/v2/nmtv/router.js +0 -3
  7944. package/lib/v2/nodejs/blog.js +0 -60
  7945. package/lib/v2/nodejs/maintainer.js +0 -3
  7946. package/lib/v2/nodejs/radar.js +0 -13
  7947. package/lib/v2/nodejs/router.js +0 -3
  7948. package/lib/v2/nogizaka46/blog.js +0 -29
  7949. package/lib/v2/nogizaka46/maintainer.js +0 -4
  7950. package/lib/v2/nogizaka46/news.js +0 -33
  7951. package/lib/v2/nogizaka46/radar.js +0 -21
  7952. package/lib/v2/nogizaka46/router.js +0 -4
  7953. package/lib/v2/now/maintainer.js +0 -3
  7954. package/lib/v2/now/news.js +0 -66
  7955. package/lib/v2/now/radar.js +0 -13
  7956. package/lib/v2/now/router.js +0 -3
  7957. package/lib/v2/nowcoder/discuss.js +0 -57
  7958. package/lib/v2/nowcoder/experience.js +0 -48
  7959. package/lib/v2/nowcoder/jobcenter.js +0 -57
  7960. package/lib/v2/nowcoder/maintainer.js +0 -7
  7961. package/lib/v2/nowcoder/radar.js +0 -40
  7962. package/lib/v2/nowcoder/recommend.js +0 -20
  7963. package/lib/v2/nowcoder/router.js +0 -7
  7964. package/lib/v2/nowcoder/schedule.js +0 -32
  7965. package/lib/v2/npm/maintainer.js +0 -3
  7966. package/lib/v2/npm/package.js +0 -45
  7967. package/lib/v2/npm/radar.js +0 -13
  7968. package/lib/v2/npm/router.js +0 -3
  7969. package/lib/v2/ntdtv/channel.js +0 -44
  7970. package/lib/v2/ntdtv/maintainer.js +0 -3
  7971. package/lib/v2/ntdtv/radar.js +0 -13
  7972. package/lib/v2/ntdtv/router.js +0 -3
  7973. package/lib/v2/nua/dc.js +0 -63
  7974. package/lib/v2/nua/gra.js +0 -21
  7975. package/lib/v2/nua/index.js +0 -22
  7976. package/lib/v2/nua/lib.js +0 -39
  7977. package/lib/v2/nua/maintainer.js +0 -7
  7978. package/lib/v2/nua/radar.js +0 -45
  7979. package/lib/v2/nua/router.js +0 -7
  7980. package/lib/v2/nua/sxw.js +0 -22
  7981. package/lib/v2/nua/utils.js +0 -75
  7982. package/lib/v2/nuaa/college/cae.js +0 -79
  7983. package/lib/v2/nuaa/college/cs.js +0 -78
  7984. package/lib/v2/nuaa/jwc/jwc.js +0 -76
  7985. package/lib/v2/nuaa/maintainer.js +0 -6
  7986. package/lib/v2/nuaa/radar.js +0 -29
  7987. package/lib/v2/nuaa/router.js +0 -6
  7988. package/lib/v2/nuaa/utils/pypasswaf.js +0 -22
  7989. package/lib/v2/nuaa/yjsy/yjsy.js +0 -74
  7990. package/lib/v2/nuist/bulletin.js +0 -61
  7991. package/lib/v2/nuist/cas.js +0 -71
  7992. package/lib/v2/nuist/jwc.js +0 -43
  7993. package/lib/v2/nuist/library/lib.js +0 -43
  7994. package/lib/v2/nuist/maintainer.js +0 -10
  7995. package/lib/v2/nuist/radar.js +0 -69
  7996. package/lib/v2/nuist/router.js +0 -10
  7997. package/lib/v2/nuist/scs.js +0 -49
  7998. package/lib/v2/nuist/sese.js +0 -45
  7999. package/lib/v2/nuist/xgc.js +0 -49
  8000. package/lib/v2/nuist/yjs.js +0 -60
  8001. package/lib/v2/nyaa/main.js +0 -50
  8002. package/lib/v2/nyaa/maintainer.js +0 -9
  8003. package/lib/v2/nyaa/radar.js +0 -47
  8004. package/lib/v2/nyaa/router.js +0 -9
  8005. package/lib/v2/nytimes/author.js +0 -43
  8006. package/lib/v2/nytimes/book.js +0 -71
  8007. package/lib/v2/nytimes/daily_briefing_chinese.js +0 -67
  8008. package/lib/v2/nytimes/index.js +0 -110
  8009. package/lib/v2/nytimes/maintainer.js +0 -6
  8010. package/lib/v2/nytimes/radar.js +0 -31
  8011. package/lib/v2/nytimes/router.js +0 -6
  8012. package/lib/v2/nytimes/utils.js +0 -108
  8013. package/lib/v2/oceanengine/arithmeticIndex.js +0 -145
  8014. package/lib/v2/oceanengine/maintainer.js +0 -3
  8015. package/lib/v2/oceanengine/radar.js +0 -13
  8016. package/lib/v2/oceanengine/router.js +0 -3
  8017. package/lib/v2/odaily/activity.js +0 -47
  8018. package/lib/v2/odaily/maintainer.js +0 -6
  8019. package/lib/v2/odaily/newsflash.js +0 -26
  8020. package/lib/v2/odaily/post.js +0 -63
  8021. package/lib/v2/odaily/radar.js +0 -60
  8022. package/lib/v2/odaily/router.js +0 -6
  8023. package/lib/v2/odaily/user.js +0 -53
  8024. package/lib/v2/odaily/utils.js +0 -3
  8025. package/lib/v2/oilchem/index.js +0 -66
  8026. package/lib/v2/oilchem/maintainer.js +0 -3
  8027. package/lib/v2/oilchem/radar.js +0 -11
  8028. package/lib/v2/oilchem/router.js +0 -3
  8029. package/lib/v2/oilchem/routes.js +0 -671
  8030. package/lib/v2/oncc/index.js +0 -83
  8031. package/lib/v2/oncc/maintainer.js +0 -4
  8032. package/lib/v2/oncc/money18.js +0 -115
  8033. package/lib/v2/oncc/radar.js +0 -45
  8034. package/lib/v2/oncc/router.js +0 -4
  8035. package/lib/v2/oo-software/changelog.js +0 -40
  8036. package/lib/v2/oo-software/maintainer.js +0 -3
  8037. package/lib/v2/oo-software/radar.js +0 -13
  8038. package/lib/v2/oo-software/router.js +0 -3
  8039. package/lib/v2/openai/blog.js +0 -97
  8040. package/lib/v2/openai/chatgpt.js +0 -98
  8041. package/lib/v2/openai/maintainer.js +0 -3
  8042. package/lib/v2/openai/radar.js +0 -27
  8043. package/lib/v2/openai/router.js +0 -4
  8044. package/lib/v2/openwrt/maintainer.js +0 -3
  8045. package/lib/v2/openwrt/radar.js +0 -13
  8046. package/lib/v2/openwrt/releases.js +0 -25
  8047. package/lib/v2/openwrt/router.js +0 -3
  8048. package/lib/v2/orcid/index.js +0 -54
  8049. package/lib/v2/orcid/maintainer.js +0 -3
  8050. package/lib/v2/orcid/radar.js +0 -13
  8051. package/lib/v2/orcid/router.js +0 -3
  8052. package/lib/v2/oreno3d/get_sec_page_data.js +0 -75
  8053. package/lib/v2/oreno3d/main.js +0 -157
  8054. package/lib/v2/oreno3d/maintainer.js +0 -7
  8055. package/lib/v2/oreno3d/radar.js +0 -52
  8056. package/lib/v2/oreno3d/router.js +0 -7
  8057. package/lib/v2/oschina/maintainer.js +0 -6
  8058. package/lib/v2/oschina/news.js +0 -93
  8059. package/lib/v2/oschina/radar.js +0 -33
  8060. package/lib/v2/oschina/router.js +0 -6
  8061. package/lib/v2/oschina/topic.js +0 -53
  8062. package/lib/v2/oschina/user.js +0 -50
  8063. package/lib/v2/oshwhub/explore.js +0 -116
  8064. package/lib/v2/oshwhub/maintainer.js +0 -3
  8065. package/lib/v2/oshwhub/radar.js +0 -16
  8066. package/lib/v2/oshwhub/router.js +0 -3
  8067. package/lib/v2/ouc/it-postgraduate.js +0 -27
  8068. package/lib/v2/ouc/it.js +0 -43
  8069. package/lib/v2/ouc/maintainer.js +0 -5
  8070. package/lib/v2/ouc/radar.js +0 -27
  8071. package/lib/v2/ouc/router.js +0 -5
  8072. package/lib/v2/ouc/yjs.js +0 -27
  8073. package/lib/v2/oup/index.js +0 -53
  8074. package/lib/v2/oup/maintainer.js +0 -3
  8075. package/lib/v2/oup/radar.js +0 -13
  8076. package/lib/v2/oup/router.js +0 -3
  8077. package/lib/v2/outagereport/index.js +0 -51
  8078. package/lib/v2/outagereport/maintainer.js +0 -3
  8079. package/lib/v2/outagereport/radar.js +0 -13
  8080. package/lib/v2/outagereport/router.js +0 -3
  8081. package/lib/v2/panewslab/author.js +0 -48
  8082. package/lib/v2/panewslab/index.js +0 -63
  8083. package/lib/v2/panewslab/maintainer.js +0 -8
  8084. package/lib/v2/panewslab/news.js +0 -28
  8085. package/lib/v2/panewslab/radar.js +0 -31
  8086. package/lib/v2/panewslab/router.js +0 -8
  8087. package/lib/v2/panewslab/topic.js +0 -48
  8088. package/lib/v2/paradigm/maintainer.js +0 -3
  8089. package/lib/v2/paradigm/radar.js +0 -13
  8090. package/lib/v2/paradigm/router.js +0 -3
  8091. package/lib/v2/paradigm/writing.js +0 -44
  8092. package/lib/v2/patagonia/maintainer.js +0 -3
  8093. package/lib/v2/patagonia/new-arrivals.js +0 -61
  8094. package/lib/v2/patagonia/radar.js +0 -23
  8095. package/lib/v2/patagonia/router.js +0 -3
  8096. package/lib/v2/penguin-random-house/articles.js +0 -27
  8097. package/lib/v2/penguin-random-house/maintainer.js +0 -4
  8098. package/lib/v2/penguin-random-house/radar.js +0 -19
  8099. package/lib/v2/penguin-random-house/router.js +0 -4
  8100. package/lib/v2/penguin-random-house/thereaddown.js +0 -27
  8101. package/lib/v2/penguin-random-house/utils.js +0 -119
  8102. package/lib/v2/people/index.js +0 -87
  8103. package/lib/v2/people/liuyan.js +0 -54
  8104. package/lib/v2/people/maintainer.js +0 -6
  8105. package/lib/v2/people/radar.js +0 -21
  8106. package/lib/v2/people/router.js +0 -6
  8107. package/lib/v2/people/xjpjh.js +0 -68
  8108. package/lib/v2/peopo/maintainer.js +0 -3
  8109. package/lib/v2/peopo/radar.js +0 -13
  8110. package/lib/v2/peopo/router.js +0 -3
  8111. package/lib/v2/peopo/topic.js +0 -46
  8112. package/lib/v2/phoronix/index.js +0 -107
  8113. package/lib/v2/phoronix/maintainer.js +0 -3
  8114. package/lib/v2/phoronix/radar.js +0 -13
  8115. package/lib/v2/phoronix/router.js +0 -3
  8116. package/lib/v2/pianyuan/app.js +0 -34
  8117. package/lib/v2/pianyuan/maintainer.js +0 -4
  8118. package/lib/v2/pianyuan/radar.js +0 -13
  8119. package/lib/v2/pianyuan/router.js +0 -4
  8120. package/lib/v2/pianyuan/search.js +0 -45
  8121. package/lib/v2/pianyuan/utils.js +0 -88
  8122. package/lib/v2/picnob/maintainer.js +0 -3
  8123. package/lib/v2/picnob/radar.js +0 -13
  8124. package/lib/v2/picnob/router.js +0 -3
  8125. package/lib/v2/picnob/templates/desc.art +0 -13
  8126. package/lib/v2/picnob/user.js +0 -61
  8127. package/lib/v2/picuki/maintainer.js +0 -3
  8128. package/lib/v2/picuki/profile.js +0 -190
  8129. package/lib/v2/picuki/radar.js +0 -13
  8130. package/lib/v2/picuki/router.js +0 -3
  8131. package/lib/v2/picuki/templates/video.art +0 -3
  8132. package/lib/v2/picuki/utils.js +0 -21
  8133. package/lib/v2/pikabu/community.js +0 -37
  8134. package/lib/v2/pikabu/maintainer.js +0 -5
  8135. package/lib/v2/pikabu/radar.js +0 -25
  8136. package/lib/v2/pikabu/router.js +0 -4
  8137. package/lib/v2/pikabu/templates/video.art +0 -8
  8138. package/lib/v2/pikabu/user.js +0 -46
  8139. package/lib/v2/pikabu/utils.js +0 -43
  8140. package/lib/v2/pincong/hot.js +0 -28
  8141. package/lib/v2/pincong/index.js +0 -34
  8142. package/lib/v2/pincong/maintainer.js +0 -5
  8143. package/lib/v2/pincong/radar.js +0 -35
  8144. package/lib/v2/pincong/router.js +0 -5
  8145. package/lib/v2/pincong/topic.js +0 -25
  8146. package/lib/v2/pincong/utils.js +0 -22
  8147. package/lib/v2/pingwest/maintainer.js +0 -5
  8148. package/lib/v2/pingwest/radar.js +0 -25
  8149. package/lib/v2/pingwest/router.js +0 -5
  8150. package/lib/v2/pingwest/status.js +0 -47
  8151. package/lib/v2/pingwest/tag.js +0 -43
  8152. package/lib/v2/pingwest/user.js +0 -59
  8153. package/lib/v2/pingwest/utils.js +0 -92
  8154. package/lib/v2/pixabay/maintainer.js +0 -3
  8155. package/lib/v2/pixabay/radar.js +0 -13
  8156. package/lib/v2/pixabay/router.js +0 -3
  8157. package/lib/v2/pixabay/search.js +0 -50
  8158. package/lib/v2/pixiv/api/getBookmarks.js +0 -23
  8159. package/lib/v2/pixiv/api/getIllustFollows.js +0 -20
  8160. package/lib/v2/pixiv/api/getIllusts.js +0 -22
  8161. package/lib/v2/pixiv/api/getRanking.js +0 -30
  8162. package/lib/v2/pixiv/api/getUserDetail.js +0 -27
  8163. package/lib/v2/pixiv/api/searchIllust.js +0 -24
  8164. package/lib/v2/pixiv/api/searchPopularIllust.js +0 -23
  8165. package/lib/v2/pixiv/bookmarks.js +0 -40
  8166. package/lib/v2/pixiv/constants.js +0 -8
  8167. package/lib/v2/pixiv/illustfollow.js +0 -34
  8168. package/lib/v2/pixiv/maintainer.js +0 -8
  8169. package/lib/v2/pixiv/novels.js +0 -44
  8170. package/lib/v2/pixiv/pixiv-got.js +0 -65
  8171. package/lib/v2/pixiv/radar.js +0 -43
  8172. package/lib/v2/pixiv/ranking.js +0 -92
  8173. package/lib/v2/pixiv/router.js +0 -8
  8174. package/lib/v2/pixiv/search.js +0 -51
  8175. package/lib/v2/pixiv/token.js +0 -86
  8176. package/lib/v2/pixiv/user.js +0 -38
  8177. package/lib/v2/pixiv/utils.js +0 -17
  8178. package/lib/v2/piyao/jrpy.js +0 -39
  8179. package/lib/v2/piyao/maintainer.js +0 -3
  8180. package/lib/v2/piyao/radar.js +0 -13
  8181. package/lib/v2/piyao/router.js +0 -3
  8182. package/lib/v2/pku/bbs/hot.js +0 -56
  8183. package/lib/v2/pku/cls/lecture.js +0 -25
  8184. package/lib/v2/pku/eecs.js +0 -64
  8185. package/lib/v2/pku/hr.js +0 -54
  8186. package/lib/v2/pku/maintainer.js +0 -13
  8187. package/lib/v2/pku/nsd.js +0 -69
  8188. package/lib/v2/pku/pkuyjs.js +0 -29
  8189. package/lib/v2/pku/radar.js +0 -150
  8190. package/lib/v2/pku/rccp/mzyt.js +0 -23
  8191. package/lib/v2/pku/router.js +0 -13
  8192. package/lib/v2/pku/scc/recruit.js +0 -58
  8193. package/lib/v2/pku/ss/admission.js +0 -15
  8194. package/lib/v2/pku/ss/common.js +0 -37
  8195. package/lib/v2/pku/ss/notice.js +0 -15
  8196. package/lib/v2/pku/ss/pg_admin.js +0 -15
  8197. package/lib/v2/pku/utils.js +0 -15
  8198. package/lib/v2/playno1/av.js +0 -41
  8199. package/lib/v2/playno1/maintainer.js +0 -4
  8200. package/lib/v2/playno1/radar.js +0 -21
  8201. package/lib/v2/playno1/router.js +0 -4
  8202. package/lib/v2/playno1/st.js +0 -36
  8203. package/lib/v2/playno1/utils.js +0 -32
  8204. package/lib/v2/plurk/anonymous.js +0 -23
  8205. package/lib/v2/plurk/hotlinks.js +0 -20
  8206. package/lib/v2/plurk/maintainer.js +0 -9
  8207. package/lib/v2/plurk/news.js +0 -23
  8208. package/lib/v2/plurk/radar.js +0 -56
  8209. package/lib/v2/plurk/router.js +0 -9
  8210. package/lib/v2/plurk/search.js +0 -27
  8211. package/lib/v2/plurk/top.js +0 -29
  8212. package/lib/v2/plurk/topic.js +0 -33
  8213. package/lib/v2/plurk/user.js +0 -31
  8214. package/lib/v2/plurk/utils.js +0 -56
  8215. package/lib/v2/pmthinking/index.js +0 -61
  8216. package/lib/v2/pmthinking/maintainer.js +0 -3
  8217. package/lib/v2/pmthinking/radar.js +0 -13
  8218. package/lib/v2/pmthinking/router.js +0 -3
  8219. package/lib/v2/pnas/index.js +0 -101
  8220. package/lib/v2/pnas/maintainer.js +0 -3
  8221. package/lib/v2/pnas/radar.js +0 -13
  8222. package/lib/v2/pnas/router.js +0 -3
  8223. package/lib/v2/polkadot/home.js +0 -34
  8224. package/lib/v2/polkadot/maintainer.js +0 -3
  8225. package/lib/v2/polkadot/radar.js +0 -13
  8226. package/lib/v2/polkadot/router.js +0 -3
  8227. package/lib/v2/polkaworld/home.js +0 -24
  8228. package/lib/v2/polkaworld/maintainer.js +0 -3
  8229. package/lib/v2/polkaworld/radar.js +0 -13
  8230. package/lib/v2/polkaworld/router.js +0 -3
  8231. package/lib/v2/postman/maintainer.js +0 -3
  8232. package/lib/v2/postman/radar.js +0 -13
  8233. package/lib/v2/postman/release-notes.js +0 -27
  8234. package/lib/v2/postman/router.js +0 -3
  8235. package/lib/v2/prestige-av/maintainer.js +0 -3
  8236. package/lib/v2/prestige-av/radar.js +0 -18
  8237. package/lib/v2/prestige-av/router.js +0 -3
  8238. package/lib/v2/prestige-av/series.js +0 -42
  8239. package/lib/v2/producthunt/maintainer.js +0 -3
  8240. package/lib/v2/producthunt/radar.js +0 -13
  8241. package/lib/v2/producthunt/router.js +0 -3
  8242. package/lib/v2/producthunt/today.js +0 -44
  8243. package/lib/v2/pts/curations.js +0 -44
  8244. package/lib/v2/pts/index.js +0 -68
  8245. package/lib/v2/pts/live.js +0 -49
  8246. package/lib/v2/pts/maintainer.js +0 -10
  8247. package/lib/v2/pts/projects.js +0 -44
  8248. package/lib/v2/pts/radar.js +0 -55
  8249. package/lib/v2/pts/router.js +0 -7
  8250. package/lib/v2/pubmed/maintainer.js +0 -3
  8251. package/lib/v2/pubmed/radar.js +0 -13
  8252. package/lib/v2/pubmed/router.js +0 -3
  8253. package/lib/v2/pubmed/trending.js +0 -58
  8254. package/lib/v2/putty/changes.js +0 -36
  8255. package/lib/v2/putty/maintainer.js +0 -3
  8256. package/lib/v2/putty/radar.js +0 -13
  8257. package/lib/v2/putty/router.js +0 -3
  8258. package/lib/v2/qbittorrent/maintainer.js +0 -3
  8259. package/lib/v2/qbittorrent/news.js +0 -59
  8260. package/lib/v2/qbittorrent/radar.js +0 -13
  8261. package/lib/v2/qbittorrent/router.js +0 -3
  8262. package/lib/v2/qdaily/index.js +0 -87
  8263. package/lib/v2/qdaily/maintainer.js +0 -3
  8264. package/lib/v2/qdaily/radar.js +0 -25
  8265. package/lib/v2/qdaily/router.js +0 -3
  8266. package/lib/v2/qdaily/templates/article.art +0 -5
  8267. package/lib/v2/qdu/jwc.js +0 -58
  8268. package/lib/v2/qdu/maintainer.js +0 -3
  8269. package/lib/v2/qdu/radar.js +0 -13
  8270. package/lib/v2/qdu/router.js +0 -3
  8271. package/lib/v2/qianp/maintainer.js +0 -3
  8272. package/lib/v2/qianp/news.js +0 -48
  8273. package/lib/v2/qianp/radar.js +0 -13
  8274. package/lib/v2/qianp/router.js +0 -3
  8275. package/lib/v2/qianzhan/column.js +0 -50
  8276. package/lib/v2/qianzhan/maintainer.js +0 -4
  8277. package/lib/v2/qianzhan/radar.js +0 -26
  8278. package/lib/v2/qianzhan/rank.js +0 -40
  8279. package/lib/v2/qianzhan/router.js +0 -4
  8280. package/lib/v2/qidian/author.js +0 -41
  8281. package/lib/v2/qidian/chapter.js +0 -37
  8282. package/lib/v2/qidian/forum.js +0 -39
  8283. package/lib/v2/qidian/free-next.js +0 -42
  8284. package/lib/v2/qidian/free.js +0 -45
  8285. package/lib/v2/qidian/maintainer.js +0 -7
  8286. package/lib/v2/qidian/radar.js +0 -41
  8287. package/lib/v2/qidian/router.js +0 -7
  8288. package/lib/v2/qidiantu/index.js +0 -87
  8289. package/lib/v2/qidiantu/maintainer.js +0 -4
  8290. package/lib/v2/qidiantu/radar.js +0 -19
  8291. package/lib/v2/qidiantu/router.js +0 -3
  8292. package/lib/v2/qingting/channel.js +0 -32
  8293. package/lib/v2/qingting/maintainer.js +0 -4
  8294. package/lib/v2/qingting/podcast.js +0 -77
  8295. package/lib/v2/qingting/radar.js +0 -19
  8296. package/lib/v2/qingting/router.js +0 -4
  8297. package/lib/v2/qipamaijia/index.js +0 -32
  8298. package/lib/v2/qipamaijia/maintainer.js +0 -3
  8299. package/lib/v2/qipamaijia/radar.js +0 -13
  8300. package/lib/v2/qipamaijia/router.js +0 -3
  8301. package/lib/v2/qiyoujiage/maintainer.js +0 -3
  8302. package/lib/v2/qiyoujiage/price.js +0 -28
  8303. package/lib/v2/qiyoujiage/radar.js +0 -13
  8304. package/lib/v2/qiyoujiage/router.js +0 -3
  8305. package/lib/v2/qlu/maintainer.js +0 -3
  8306. package/lib/v2/qlu/notice.js +0 -54
  8307. package/lib/v2/qlu/radar.js +0 -13
  8308. package/lib/v2/qlu/router.js +0 -3
  8309. package/lib/v2/qm120/maintainer.js +0 -3
  8310. package/lib/v2/qm120/news.js +0 -50
  8311. package/lib/v2/qm120/radar.js +0 -13
  8312. package/lib/v2/qm120/router.js +0 -3
  8313. package/lib/v2/qoo-app/apps/card.js +0 -38
  8314. package/lib/v2/qoo-app/apps/comment.js +0 -43
  8315. package/lib/v2/qoo-app/apps/note.js +0 -47
  8316. package/lib/v2/qoo-app/apps/post.js +0 -51
  8317. package/lib/v2/qoo-app/maintainer.js +0 -11
  8318. package/lib/v2/qoo-app/news.js +0 -41
  8319. package/lib/v2/qoo-app/notes/note.js +0 -43
  8320. package/lib/v2/qoo-app/notes/topic.js +0 -20
  8321. package/lib/v2/qoo-app/notes/user.js +0 -20
  8322. package/lib/v2/qoo-app/radar.js +0 -73
  8323. package/lib/v2/qoo-app/router.js +0 -11
  8324. package/lib/v2/qoo-app/user/appComment.js +0 -41
  8325. package/lib/v2/qoo-app/utils.js +0 -57
  8326. package/lib/v2/qq/ac/comic.js +0 -43
  8327. package/lib/v2/qq/ac/rank.js +0 -20
  8328. package/lib/v2/qq/ac/utils.js +0 -71
  8329. package/lib/v2/qq/fact/index.js +0 -61
  8330. package/lib/v2/qq/kg/cache.js +0 -28
  8331. package/lib/v2/qq/kg/reply.js +0 -21
  8332. package/lib/v2/qq/kg/user.js +0 -50
  8333. package/lib/v2/qq/live.js +0 -36
  8334. package/lib/v2/qq/maintainer.js +0 -8
  8335. package/lib/v2/qq/radar.js +0 -49
  8336. package/lib/v2/qq/router.js +0 -8
  8337. package/lib/v2/qq88/index.js +0 -60
  8338. package/lib/v2/qq88/maintainer.js +0 -3
  8339. package/lib/v2/qq88/radar.js +0 -13
  8340. package/lib/v2/qq88/router.js +0 -3
  8341. package/lib/v2/quicker/maintainer.js +0 -7
  8342. package/lib/v2/quicker/qa.js +0 -65
  8343. package/lib/v2/quicker/radar.js +0 -31
  8344. package/lib/v2/quicker/router.js +0 -7
  8345. package/lib/v2/quicker/share.js +0 -61
  8346. package/lib/v2/quicker/user.js +0 -62
  8347. package/lib/v2/quicker/versions.js +0 -36
  8348. package/lib/v2/qweather/3days.js +0 -46
  8349. package/lib/v2/qweather/maintainer.js +0 -4
  8350. package/lib/v2/qweather/now.js +0 -45
  8351. package/lib/v2/qweather/radar.js +0 -15
  8352. package/lib/v2/qweather/router.js +0 -4
  8353. package/lib/v2/qweather/templates/3days.art +0 -20
  8354. package/lib/v2/radio/album.js +0 -106
  8355. package/lib/v2/radio/index.js +0 -55
  8356. package/lib/v2/radio/maintainer.js +0 -5
  8357. package/lib/v2/radio/radar.js +0 -25
  8358. package/lib/v2/radio/router.js +0 -5
  8359. package/lib/v2/radio/zhibo.js +0 -73
  8360. package/lib/v2/radio-canada/latest.js +0 -43
  8361. package/lib/v2/radio-canada/maintainer.js +0 -3
  8362. package/lib/v2/radio-canada/radar.js +0 -13
  8363. package/lib/v2/radio-canada/router.js +0 -3
  8364. package/lib/v2/rarehistoricalphotos/index.js +0 -28
  8365. package/lib/v2/rarehistoricalphotos/maintainer.js +0 -3
  8366. package/lib/v2/rarehistoricalphotos/radar.js +0 -13
  8367. package/lib/v2/rarehistoricalphotos/router.js +0 -3
  8368. package/lib/v2/reactnewsletter/maintainer.js +0 -4
  8369. package/lib/v2/reactnewsletter/radar.js +0 -13
  8370. package/lib/v2/reactnewsletter/reactnewsletter.js +0 -25
  8371. package/lib/v2/reactnewsletter/router.js +0 -3
  8372. package/lib/v2/readhub/index.js +0 -106
  8373. package/lib/v2/readhub/maintainer.js +0 -3
  8374. package/lib/v2/readhub/radar.js +0 -13
  8375. package/lib/v2/readhub/router.js +0 -6
  8376. package/lib/v2/remnote/changelog.js +0 -33
  8377. package/lib/v2/remnote/maintainer.js +0 -3
  8378. package/lib/v2/remnote/radar.js +0 -13
  8379. package/lib/v2/remnote/router.js +0 -3
  8380. package/lib/v2/researchgate/maintainer.js +0 -3
  8381. package/lib/v2/researchgate/publications.js +0 -70
  8382. package/lib/v2/researchgate/radar.js +0 -13
  8383. package/lib/v2/researchgate/router.js +0 -3
  8384. package/lib/v2/reuters/common.js +0 -67
  8385. package/lib/v2/reuters/investigates.js +0 -39
  8386. package/lib/v2/reuters/maintainer.js +0 -6
  8387. package/lib/v2/reuters/migration_prompt.js +0 -3
  8388. package/lib/v2/reuters/radar.js +0 -19
  8389. package/lib/v2/reuters/router.js +0 -6
  8390. package/lib/v2/reuters/templates/description.art +0 -44
  8391. package/lib/v2/rfa/index.js +0 -51
  8392. package/lib/v2/rfa/maintainer.js +0 -3
  8393. package/lib/v2/rfa/radar.js +0 -13
  8394. package/lib/v2/rfa/router.js +0 -3
  8395. package/lib/v2/rfi/maintainer.js +0 -3
  8396. package/lib/v2/rfi/news.js +0 -49
  8397. package/lib/v2/rfi/radar.js +0 -13
  8398. package/lib/v2/rfi/router.js +0 -3
  8399. package/lib/v2/rodong/maintainer.js +0 -3
  8400. package/lib/v2/rodong/news.js +0 -45
  8401. package/lib/v2/rodong/radar.js +0 -13
  8402. package/lib/v2/rodong/router.js +0 -3
  8403. package/lib/v2/rsshub/maintainer.js +0 -4
  8404. package/lib/v2/rsshub/radar.js +0 -19
  8405. package/lib/v2/rsshub/router.js +0 -6
  8406. package/lib/v2/rsshub/routes.js +0 -69
  8407. package/lib/v2/rsshub/sponsors.js +0 -47
  8408. package/lib/v2/ruancan/category.js +0 -8
  8409. package/lib/v2/ruancan/index.js +0 -7
  8410. package/lib/v2/ruancan/maintainer.js +0 -6
  8411. package/lib/v2/ruancan/radar.js +0 -31
  8412. package/lib/v2/ruancan/router.js +0 -6
  8413. package/lib/v2/ruancan/search.js +0 -8
  8414. package/lib/v2/ruancan/user.js +0 -8
  8415. package/lib/v2/ruancan/utils.js +0 -66
  8416. package/lib/v2/ruc/hr.js +0 -58
  8417. package/lib/v2/ruc/maintainer.js +0 -3
  8418. package/lib/v2/ruc/radar.js +0 -13
  8419. package/lib/v2/ruc/router.js +0 -3
  8420. package/lib/v2/rustcc/jobs.js +0 -39
  8421. package/lib/v2/rustcc/maintainer.js +0 -3
  8422. package/lib/v2/rustcc/radar.js +0 -13
  8423. package/lib/v2/rustcc/router.js +0 -3
  8424. package/lib/v2/sakurazaka46/blog.js +0 -54
  8425. package/lib/v2/sakurazaka46/maintainer.js +0 -4
  8426. package/lib/v2/sakurazaka46/news.js +0 -51
  8427. package/lib/v2/sakurazaka46/radar.js +0 -19
  8428. package/lib/v2/sakurazaka46/router.js +0 -4
  8429. package/lib/v2/samsung/maintainer.js +0 -3
  8430. package/lib/v2/samsung/radar.js +0 -13
  8431. package/lib/v2/samsung/research/blog.js +0 -49
  8432. package/lib/v2/samsung/router.js +0 -3
  8433. package/lib/v2/saraba1st/digest.js +0 -79
  8434. package/lib/v2/saraba1st/maintainer.js +0 -4
  8435. package/lib/v2/saraba1st/radar.js +0 -25
  8436. package/lib/v2/saraba1st/router.js +0 -4
  8437. package/lib/v2/saraba1st/thread.js +0 -63
  8438. package/lib/v2/sass/gs/index.js +0 -55
  8439. package/lib/v2/sass/maintainer.js +0 -3
  8440. package/lib/v2/sass/radar.js +0 -13
  8441. package/lib/v2/sass/router.js +0 -3
  8442. package/lib/v2/scau/maintainer.js +0 -3
  8443. package/lib/v2/scau/radar.js +0 -13
  8444. package/lib/v2/scau/router.js +0 -3
  8445. package/lib/v2/scau/yjs.js +0 -27
  8446. package/lib/v2/science/cover.js +0 -69
  8447. package/lib/v2/science/current.js +0 -42
  8448. package/lib/v2/science/early.js +0 -33
  8449. package/lib/v2/science/maintainer.js +0 -5
  8450. package/lib/v2/science/radar.js +0 -25
  8451. package/lib/v2/science/router.js +0 -5
  8452. package/lib/v2/science/utils.js +0 -64
  8453. package/lib/v2/sciencedirect/journal.js +0 -69
  8454. package/lib/v2/sciencedirect/maintainer.js +0 -3
  8455. package/lib/v2/sciencedirect/radar.js +0 -13
  8456. package/lib/v2/sciencedirect/router.js +0 -3
  8457. package/lib/v2/sciencenet/blog.js +0 -61
  8458. package/lib/v2/sciencenet/maintainer.js +0 -4
  8459. package/lib/v2/sciencenet/radar.js +0 -19
  8460. package/lib/v2/sciencenet/router.js +0 -4
  8461. package/lib/v2/sciencenet/user.js +0 -65
  8462. package/lib/v2/scitation/journal.js +0 -58
  8463. package/lib/v2/scitation/maintainer.js +0 -4
  8464. package/lib/v2/scitation/radar.js +0 -19
  8465. package/lib/v2/scitation/router.js +0 -4
  8466. package/lib/v2/scitation/section.js +0 -76
  8467. package/lib/v2/scitation/utils.js +0 -29
  8468. package/lib/v2/scmp/index.js +0 -114
  8469. package/lib/v2/scmp/maintainer.js +0 -3
  8470. package/lib/v2/scmp/radar.js +0 -13
  8471. package/lib/v2/scmp/router.js +0 -3
  8472. package/lib/v2/scnu/cs/match.js +0 -36
  8473. package/lib/v2/scnu/jw.js +0 -33
  8474. package/lib/v2/scnu/library.js +0 -33
  8475. package/lib/v2/scnu/maintainer.js +0 -7
  8476. package/lib/v2/scnu/radar.js +0 -45
  8477. package/lib/v2/scnu/router.js +0 -7
  8478. package/lib/v2/scnu/ss.js +0 -28
  8479. package/lib/v2/scnu/yjs.js +0 -24
  8480. package/lib/v2/sctv/maintainer.js +0 -3
  8481. package/lib/v2/sctv/programme.js +0 -80
  8482. package/lib/v2/sctv/radar.js +0 -13
  8483. package/lib/v2/sctv/router.js +0 -3
  8484. package/lib/v2/scut/jwc/news.js +0 -117
  8485. package/lib/v2/scut/jwc/notice.js +0 -123
  8486. package/lib/v2/scut/jwc/school.js +0 -121
  8487. package/lib/v2/scut/maintainer.js +0 -8
  8488. package/lib/v2/scut/radar.js +0 -33
  8489. package/lib/v2/scut/router.js +0 -8
  8490. package/lib/v2/scut/scet/notice.js +0 -31
  8491. package/lib/v2/scut/seie/news_center.js +0 -52
  8492. package/lib/v2/scut/yjs.js +0 -30
  8493. package/lib/v2/scvtc/maintainer.js +0 -3
  8494. package/lib/v2/scvtc/radar.js +0 -13
  8495. package/lib/v2/scvtc/router.js +0 -3
  8496. package/lib/v2/scvtc/xygg.js +0 -40
  8497. package/lib/v2/sdu/cmse.js +0 -59
  8498. package/lib/v2/sdu/cs.js +0 -57
  8499. package/lib/v2/sdu/data.js +0 -110
  8500. package/lib/v2/sdu/epe.js +0 -55
  8501. package/lib/v2/sdu/extractor/index.js +0 -15
  8502. package/lib/v2/sdu/extractor/sdrj.js +0 -21
  8503. package/lib/v2/sdu/extractor/view.js +0 -21
  8504. package/lib/v2/sdu/extractor/wh/jwc.js +0 -24
  8505. package/lib/v2/sdu/extractor/wh/news.js +0 -21
  8506. package/lib/v2/sdu/maintainer.js +0 -9
  8507. package/lib/v2/sdu/mech.js +0 -60
  8508. package/lib/v2/sdu/radar.js +0 -159
  8509. package/lib/v2/sdu/router.js +0 -9
  8510. package/lib/v2/sdu/sc.js +0 -61
  8511. package/lib/v2/sdu/wh/jwc.js +0 -42
  8512. package/lib/v2/sdu/wh/news.js +0 -38
  8513. package/lib/v2/secnews/index.js +0 -27
  8514. package/lib/v2/secnews/maintainer.js +0 -3
  8515. package/lib/v2/secnews/radar.js +0 -13
  8516. package/lib/v2/secnews/router.js +0 -3
  8517. package/lib/v2/secrss/author.js +0 -24
  8518. package/lib/v2/secrss/category.js +0 -26
  8519. package/lib/v2/secrss/maintainer.js +0 -4
  8520. package/lib/v2/secrss/radar.js +0 -19
  8521. package/lib/v2/secrss/router.js +0 -4
  8522. package/lib/v2/seekingalpha/index.js +0 -56
  8523. package/lib/v2/seekingalpha/maintainer.js +0 -3
  8524. package/lib/v2/seekingalpha/radar.js +0 -13
  8525. package/lib/v2/seekingalpha/router.js +0 -3
  8526. package/lib/v2/segmentfault/blogs.js +0 -38
  8527. package/lib/v2/segmentfault/channel.js +0 -46
  8528. package/lib/v2/segmentfault/maintainer.js +0 -5
  8529. package/lib/v2/segmentfault/radar.js +0 -25
  8530. package/lib/v2/segmentfault/router.js +0 -5
  8531. package/lib/v2/segmentfault/user.js +0 -43
  8532. package/lib/v2/sehuatang/index.js +0 -131
  8533. package/lib/v2/sehuatang/maintainer.js +0 -7
  8534. package/lib/v2/sehuatang/radar.js +0 -19
  8535. package/lib/v2/sehuatang/router.js +0 -7
  8536. package/lib/v2/sensortower/blog.js +0 -69
  8537. package/lib/v2/sensortower/maintainer.js +0 -3
  8538. package/lib/v2/sensortower/radar.js +0 -13
  8539. package/lib/v2/sensortower/router.js +0 -3
  8540. package/lib/v2/setn/index.js +0 -100
  8541. package/lib/v2/setn/maintainer.js +0 -3
  8542. package/lib/v2/setn/radar.js +0 -53
  8543. package/lib/v2/setn/router.js +0 -3
  8544. package/lib/v2/shiep/index.js +0 -91
  8545. package/lib/v2/shiep/maintainer.js +0 -3
  8546. package/lib/v2/shiep/radar.js +0 -181
  8547. package/lib/v2/shiep/router.js +0 -3
  8548. package/lib/v2/shmeea/index.js +0 -44
  8549. package/lib/v2/shmeea/maintainer.js +0 -4
  8550. package/lib/v2/shmeea/radar.js +0 -19
  8551. package/lib/v2/shmeea/router.js +0 -4
  8552. package/lib/v2/shmeea/self-study.js +0 -61
  8553. package/lib/v2/shmtu/jwc.js +0 -57
  8554. package/lib/v2/shmtu/maintainer.js +0 -5
  8555. package/lib/v2/shmtu/portal.js +0 -81
  8556. package/lib/v2/shmtu/radar.js +0 -29
  8557. package/lib/v2/shmtu/router.js +0 -5
  8558. package/lib/v2/shmtu/www.js +0 -58
  8559. package/lib/v2/shopback/maintainer.js +0 -3
  8560. package/lib/v2/shopback/radar.js +0 -13
  8561. package/lib/v2/shopback/router.js +0 -3
  8562. package/lib/v2/shopback/store.js +0 -37
  8563. package/lib/v2/shoppingdesign/maintainer.js +0 -3
  8564. package/lib/v2/shoppingdesign/posts.js +0 -43
  8565. package/lib/v2/shoppingdesign/radar.js +0 -13
  8566. package/lib/v2/shoppingdesign/router.js +0 -3
  8567. package/lib/v2/shuiguopai/index.js +0 -76
  8568. package/lib/v2/shuiguopai/maintainer.js +0 -3
  8569. package/lib/v2/shuiguopai/radar.js +0 -13
  8570. package/lib/v2/shuiguopai/router.js +0 -3
  8571. package/lib/v2/shuiguopai/templates/description.art +0 -6
  8572. package/lib/v2/sicau/dky.js +0 -52
  8573. package/lib/v2/sicau/maintainer.js +0 -5
  8574. package/lib/v2/sicau/radar.js +0 -27
  8575. package/lib/v2/sicau/router.js +0 -5
  8576. package/lib/v2/sicau/yan.js +0 -52
  8577. package/lib/v2/sicau/zsjy.js +0 -53
  8578. package/lib/v2/sigsac/ccs.js +0 -57
  8579. package/lib/v2/sigsac/maintainer.js +0 -3
  8580. package/lib/v2/sigsac/radar.js +0 -13
  8581. package/lib/v2/sigsac/router.js +0 -3
  8582. package/lib/v2/simpleinfo/index.js +0 -50
  8583. package/lib/v2/simpleinfo/maintainer.js +0 -3
  8584. package/lib/v2/simpleinfo/radar.js +0 -19
  8585. package/lib/v2/simpleinfo/router.js +0 -3
  8586. package/lib/v2/sinchew/index.js +0 -68
  8587. package/lib/v2/sinchew/maintainer.js +0 -5
  8588. package/lib/v2/sinchew/radar.js +0 -25
  8589. package/lib/v2/sinchew/router.js +0 -4
  8590. package/lib/v2/sis001/forum.js +0 -62
  8591. package/lib/v2/sis001/maintainer.js +0 -3
  8592. package/lib/v2/sis001/radar.js +0 -13
  8593. package/lib/v2/sis001/router.js +0 -3
  8594. package/lib/v2/skysports/maintainer.js +0 -3
  8595. package/lib/v2/skysports/news.js +0 -55
  8596. package/lib/v2/skysports/radar.js +0 -13
  8597. package/lib/v2/skysports/router.js +0 -3
  8598. package/lib/v2/slowmist/maintainer.js +0 -3
  8599. package/lib/v2/slowmist/radar.js +0 -13
  8600. package/lib/v2/slowmist/router.js +0 -3
  8601. package/lib/v2/slowmist/slowmist.js +0 -39
  8602. package/lib/v2/smzdm/article.js +0 -43
  8603. package/lib/v2/smzdm/baoliao.js +0 -43
  8604. package/lib/v2/smzdm/haowen.js +0 -48
  8605. package/lib/v2/smzdm/haowen_fenlei.js +0 -56
  8606. package/lib/v2/smzdm/keyword.js +0 -42
  8607. package/lib/v2/smzdm/maintainer.js +0 -8
  8608. package/lib/v2/smzdm/radar.js +0 -48
  8609. package/lib/v2/smzdm/ranking.js +0 -56
  8610. package/lib/v2/smzdm/router.js +0 -8
  8611. package/lib/v2/snowpeak/maintainer.js +0 -3
  8612. package/lib/v2/snowpeak/radar.js +0 -13
  8613. package/lib/v2/snowpeak/router.js +0 -3
  8614. package/lib/v2/snowpeak/us-new-arrivals.js +0 -45
  8615. package/lib/v2/sobooks/date.js +0 -7
  8616. package/lib/v2/sobooks/index.js +0 -7
  8617. package/lib/v2/sobooks/maintainer.js +0 -5
  8618. package/lib/v2/sobooks/radar.js +0 -25
  8619. package/lib/v2/sobooks/router.js +0 -5
  8620. package/lib/v2/sobooks/tag.js +0 -7
  8621. package/lib/v2/sobooks/utils.js +0 -50
  8622. package/lib/v2/sohu/maintainer.js +0 -3
  8623. package/lib/v2/sohu/mp.js +0 -56
  8624. package/lib/v2/sohu/radar.js +0 -13
  8625. package/lib/v2/sohu/router.js +0 -3
  8626. package/lib/v2/solidot/_article.js +0 -50
  8627. package/lib/v2/solidot/main.js +0 -41
  8628. package/lib/v2/solidot/maintainer.js +0 -3
  8629. package/lib/v2/solidot/radar.js +0 -117
  8630. package/lib/v2/solidot/router.js +0 -3
  8631. package/lib/v2/sony/downloads.js +0 -47
  8632. package/lib/v2/sony/maintainer.js +0 -3
  8633. package/lib/v2/sony/radar.js +0 -13
  8634. package/lib/v2/sony/router.js +0 -3
  8635. package/lib/v2/soundofhope/channel.js +0 -42
  8636. package/lib/v2/soundofhope/maintainer.js +0 -3
  8637. package/lib/v2/soundofhope/radar.js +0 -13
  8638. package/lib/v2/soundofhope/router.js +0 -3
  8639. package/lib/v2/southcn/maintainer.js +0 -4
  8640. package/lib/v2/southcn/nfapp/column.js +0 -45
  8641. package/lib/v2/southcn/nfapp/reporter.js +0 -33
  8642. package/lib/v2/southcn/nfapp/utils.js +0 -23
  8643. package/lib/v2/southcn/radar.js +0 -12
  8644. package/lib/v2/southcn/router.js +0 -4
  8645. package/lib/v2/spotify/artist.js +0 -41
  8646. package/lib/v2/spotify/maintainer.js +0 -7
  8647. package/lib/v2/spotify/playlist.js +0 -31
  8648. package/lib/v2/spotify/radar.js +0 -37
  8649. package/lib/v2/spotify/router.js +0 -7
  8650. package/lib/v2/spotify/saved.js +0 -30
  8651. package/lib/v2/spotify/top.js +0 -24
  8652. package/lib/v2/spotify/utils.js +0 -62
  8653. package/lib/v2/springer/journal.js +0 -72
  8654. package/lib/v2/springer/maintainer.js +0 -3
  8655. package/lib/v2/springer/radar.js +0 -13
  8656. package/lib/v2/springer/router.js +0 -3
  8657. package/lib/v2/sputniknews/index.js +0 -94
  8658. package/lib/v2/sputniknews/maintainer.js +0 -3
  8659. package/lib/v2/sputniknews/radar.js +0 -13
  8660. package/lib/v2/sputniknews/router.js +0 -3
  8661. package/lib/v2/sse/convert.js +0 -39
  8662. package/lib/v2/sse/disclosure.js +0 -46
  8663. package/lib/v2/sse/inquire.js +0 -45
  8664. package/lib/v2/sse/lawandrules.js +0 -43
  8665. package/lib/v2/sse/maintainer.js +0 -7
  8666. package/lib/v2/sse/radar.js +0 -41
  8667. package/lib/v2/sse/renewal.js +0 -57
  8668. package/lib/v2/sse/router.js +0 -7
  8669. package/lib/v2/ssm/maintainer.js +0 -3
  8670. package/lib/v2/ssm/news.js +0 -38
  8671. package/lib/v2/ssm/radar.js +0 -13
  8672. package/lib/v2/ssm/router.js +0 -3
  8673. package/lib/v2/sspai/activity.js +0 -83
  8674. package/lib/v2/sspai/author.js +0 -57
  8675. package/lib/v2/sspai/bookmarks.js +0 -41
  8676. package/lib/v2/sspai/column.js +0 -62
  8677. package/lib/v2/sspai/index.js +0 -37
  8678. package/lib/v2/sspai/maintainer.js +0 -14
  8679. package/lib/v2/sspai/matrix.js +0 -38
  8680. package/lib/v2/sspai/radar.js +0 -81
  8681. package/lib/v2/sspai/router.js +0 -14
  8682. package/lib/v2/sspai/series.js +0 -46
  8683. package/lib/v2/sspai/seriesUpdate.js +0 -36
  8684. package/lib/v2/sspai/shortcutsGallery.js +0 -29
  8685. package/lib/v2/sspai/tag.js +0 -42
  8686. package/lib/v2/sspai/topic.js +0 -50
  8687. package/lib/v2/sspai/topics.js +0 -37
  8688. package/lib/v2/startuplatte/index.js +0 -56
  8689. package/lib/v2/startuplatte/maintainer.js +0 -3
  8690. package/lib/v2/startuplatte/radar.js +0 -13
  8691. package/lib/v2/startuplatte/router.js +0 -3
  8692. package/lib/v2/stcn/index.js +0 -64
  8693. package/lib/v2/stcn/maintainer.js +0 -3
  8694. package/lib/v2/stcn/radar.js +0 -13
  8695. package/lib/v2/stcn/router.js +0 -3
  8696. package/lib/v2/stdaily/digitalpaper.js +0 -125
  8697. package/lib/v2/stdaily/maintainer.js +0 -3
  8698. package/lib/v2/stdaily/radar.js +0 -11
  8699. package/lib/v2/stdaily/router.js +0 -3
  8700. package/lib/v2/stheadline/maintainer.js +0 -3
  8701. package/lib/v2/stheadline/radar.js +0 -13
  8702. package/lib/v2/stheadline/router.js +0 -3
  8703. package/lib/v2/stheadline/std/realtime.js +0 -46
  8704. package/lib/v2/storm/index.js +0 -57
  8705. package/lib/v2/storm/maintainer.js +0 -3
  8706. package/lib/v2/storm/radar.js +0 -13
  8707. package/lib/v2/storm/router.js +0 -3
  8708. package/lib/v2/stratechery/index.js +0 -20
  8709. package/lib/v2/stratechery/maintainer.js +0 -3
  8710. package/lib/v2/stratechery/radar.js +0 -11
  8711. package/lib/v2/stratechery/router.js +0 -3
  8712. package/lib/v2/studygolang/go.js +0 -5
  8713. package/lib/v2/studygolang/jobs.js +0 -7
  8714. package/lib/v2/studygolang/maintainer.js +0 -5
  8715. package/lib/v2/studygolang/radar.js +0 -25
  8716. package/lib/v2/studygolang/router.js +0 -5
  8717. package/lib/v2/studygolang/utils.js +0 -74
  8718. package/lib/v2/studygolang/weekly.js +0 -7
  8719. package/lib/v2/subhd/index.js +0 -79
  8720. package/lib/v2/subhd/maintainer.js +0 -4
  8721. package/lib/v2/subhd/radar.js +0 -19
  8722. package/lib/v2/subhd/router.js +0 -3
  8723. package/lib/v2/supchina/index.js +0 -67
  8724. package/lib/v2/supchina/maintainer.js +0 -4
  8725. package/lib/v2/supchina/podcasts.js +0 -66
  8726. package/lib/v2/supchina/radar.js +0 -19
  8727. package/lib/v2/supchina/router.js +0 -4
  8728. package/lib/v2/sustech/bidding.js +0 -34
  8729. package/lib/v2/sustech/maintainer.js +0 -5
  8730. package/lib/v2/sustech/newshub-zh.js +0 -39
  8731. package/lib/v2/sustech/radar.js +0 -29
  8732. package/lib/v2/sustech/router.js +0 -5
  8733. package/lib/v2/sustech/yjs.js +0 -29
  8734. package/lib/v2/swissinfo/index.js +0 -73
  8735. package/lib/v2/swissinfo/maintainer.js +0 -3
  8736. package/lib/v2/swissinfo/radar.js +0 -13
  8737. package/lib/v2/swissinfo/router.js +0 -3
  8738. package/lib/v2/swjtu/jtys/yjs.js +0 -55
  8739. package/lib/v2/swjtu/jwc.js +0 -67
  8740. package/lib/v2/swjtu/jyzpxx.js +0 -28
  8741. package/lib/v2/swjtu/maintainer.js +0 -6
  8742. package/lib/v2/swjtu/radar.js +0 -37
  8743. package/lib/v2/swjtu/router.js +0 -6
  8744. package/lib/v2/swjtu/utils.js +0 -33
  8745. package/lib/v2/swjtu/xg.js +0 -79
  8746. package/lib/v2/swpu/bgw.js +0 -58
  8747. package/lib/v2/swpu/cjxy.js +0 -53
  8748. package/lib/v2/swpu/dean.js +0 -59
  8749. package/lib/v2/swpu/dxy.js +0 -61
  8750. package/lib/v2/swpu/is.js +0 -53
  8751. package/lib/v2/swpu/maintainer.js +0 -8
  8752. package/lib/v2/swpu/radar.js +0 -43
  8753. package/lib/v2/swpu/router.js +0 -8
  8754. package/lib/v2/swpu/scs.js +0 -58
  8755. package/lib/v2/swpu/utils.js +0 -22
  8756. package/lib/v2/syosetu/chapter.js +0 -61
  8757. package/lib/v2/syosetu/maintainer.js +0 -3
  8758. package/lib/v2/syosetu/radar.js +0 -21
  8759. package/lib/v2/syosetu/router.js +0 -1
  8760. package/lib/v2/sysu/cse.js +0 -103
  8761. package/lib/v2/sysu/maintainer.js +0 -3
  8762. package/lib/v2/sysu/radar.js +0 -13
  8763. package/lib/v2/sysu/router.js +0 -3
  8764. package/lib/v2/szse/inquire.js +0 -41
  8765. package/lib/v2/szse/maintainer.js +0 -6
  8766. package/lib/v2/szse/notice.js +0 -73
  8767. package/lib/v2/szse/projectdynamic.js +0 -90
  8768. package/lib/v2/szse/radar.js +0 -33
  8769. package/lib/v2/szse/router.js +0 -6
  8770. package/lib/v2/szse/rule.js +0 -51
  8771. package/lib/v2/szu/maintainer.js +0 -3
  8772. package/lib/v2/szu/radar.js +0 -19
  8773. package/lib/v2/szu/router.js +0 -3
  8774. package/lib/v2/szu/yz/index.js +0 -51
  8775. package/lib/v2/szu/yz/utils.js +0 -74
  8776. package/lib/v2/taiwannews/hot.js +0 -52
  8777. package/lib/v2/taiwannews/maintainer.js +0 -3
  8778. package/lib/v2/taiwannews/radar.js +0 -13
  8779. package/lib/v2/taiwannews/router.js +0 -3
  8780. package/lib/v2/taobao/maintainer.js +0 -3
  8781. package/lib/v2/taobao/radar.js +0 -117
  8782. package/lib/v2/taobao/router.js +0 -3
  8783. package/lib/v2/taobao/zhongchou.js +0 -46
  8784. package/lib/v2/taoguba/blog.js +0 -84
  8785. package/lib/v2/taoguba/index.js +0 -82
  8786. package/lib/v2/taoguba/maintainer.js +0 -6
  8787. package/lib/v2/taoguba/radar.js +0 -19
  8788. package/lib/v2/taoguba/router.js +0 -6
  8789. package/lib/v2/taptap/changelog.js +0 -41
  8790. package/lib/v2/taptap/maintainer.js +0 -7
  8791. package/lib/v2/taptap/radar.js +0 -42
  8792. package/lib/v2/taptap/review.js +0 -131
  8793. package/lib/v2/taptap/router.js +0 -8
  8794. package/lib/v2/taptap/topic.js +0 -85
  8795. package/lib/v2/taptap/utils.js +0 -54
  8796. package/lib/v2/techcrunch/maintainer.js +0 -3
  8797. package/lib/v2/techcrunch/news.js +0 -38
  8798. package/lib/v2/techcrunch/radar.js +0 -13
  8799. package/lib/v2/techcrunch/router.js +0 -3
  8800. package/lib/v2/techflowpost/express.js +0 -33
  8801. package/lib/v2/techflowpost/index.js +0 -30
  8802. package/lib/v2/techflowpost/maintainer.js +0 -4
  8803. package/lib/v2/techflowpost/radar.js +0 -19
  8804. package/lib/v2/techflowpost/router.js +0 -5
  8805. package/lib/v2/telegram/blog.js +0 -35
  8806. package/lib/v2/telegram/channel.js +0 -605
  8807. package/lib/v2/telegram/maintainer.js +0 -5
  8808. package/lib/v2/telegram/radar.js +0 -35
  8809. package/lib/v2/telegram/router.js +0 -5
  8810. package/lib/v2/telegram/stickerpack.js +0 -26
  8811. package/lib/v2/tencent/cloud/column.js +0 -51
  8812. package/lib/v2/tencent/maintainer.js +0 -8
  8813. package/lib/v2/tencent/news/author.js +0 -44
  8814. package/lib/v2/tencent/news/coronavirus/data.js +0 -71
  8815. package/lib/v2/tencent/news/coronavirus/total.js +0 -34
  8816. package/lib/v2/tencent/news/coronavirus/utils.js +0 -17
  8817. package/lib/v2/tencent/pvp/newsindex.js +0 -64
  8818. package/lib/v2/tencent/qq/sdk/changelog.js +0 -56
  8819. package/lib/v2/tencent/radar.js +0 -89
  8820. package/lib/v2/tencent/router.js +0 -8
  8821. package/lib/v2/tesla/maintainer.js +0 -3
  8822. package/lib/v2/tesla/price/get-price.js +0 -25
  8823. package/lib/v2/tesla/price/index.js +0 -41
  8824. package/lib/v2/tesla/radar.js +0 -13
  8825. package/lib/v2/tesla/router.js +0 -3
  8826. package/lib/v2/test/index.js +0 -278
  8827. package/lib/v2/test/maintainer.js +0 -3
  8828. package/lib/v2/test/router.js +0 -3
  8829. package/lib/v2/theatlantic/maintainer.js +0 -3
  8830. package/lib/v2/theatlantic/news.js +0 -32
  8831. package/lib/v2/theatlantic/radar.js +0 -13
  8832. package/lib/v2/theatlantic/router.js +0 -3
  8833. package/lib/v2/theatlantic/utils.js +0 -54
  8834. package/lib/v2/thecatcity/index.js +0 -48
  8835. package/lib/v2/thecatcity/maintainer.js +0 -3
  8836. package/lib/v2/thecatcity/radar.js +0 -13
  8837. package/lib/v2/thecatcity/router.js +0 -3
  8838. package/lib/v2/thecatcity/termsMap.js +0 -30
  8839. package/lib/v2/thecover/channel.js +0 -66
  8840. package/lib/v2/thecover/maintainer.js +0 -3
  8841. package/lib/v2/thecover/radar.js +0 -13
  8842. package/lib/v2/thecover/router.js +0 -3
  8843. package/lib/v2/theinitium/full.js +0 -169
  8844. package/lib/v2/theinitium/maintainer.js +0 -6
  8845. package/lib/v2/theinitium/radar.js +0 -25
  8846. package/lib/v2/theinitium/router.js +0 -3
  8847. package/lib/v2/themoviedb/api-key.js +0 -23
  8848. package/lib/v2/themoviedb/collection.js +0 -21
  8849. package/lib/v2/themoviedb/episodes.js +0 -27
  8850. package/lib/v2/themoviedb/maintainer.js +0 -7
  8851. package/lib/v2/themoviedb/radar.js +0 -73
  8852. package/lib/v2/themoviedb/router.js +0 -7
  8853. package/lib/v2/themoviedb/seasons.js +0 -31
  8854. package/lib/v2/themoviedb/sheet.js +0 -45
  8855. package/lib/v2/themoviedb/trending.js +0 -24
  8856. package/lib/v2/themoviedb/utils.js +0 -34
  8857. package/lib/v2/thenewslens/index.js +0 -79
  8858. package/lib/v2/thenewslens/maintainer.js +0 -10
  8859. package/lib/v2/thenewslens/radar.js +0 -55
  8860. package/lib/v2/thenewslens/router.js +0 -3
  8861. package/lib/v2/thepaper/839studio/category.js +0 -40
  8862. package/lib/v2/thepaper/839studio/studio.js +0 -33
  8863. package/lib/v2/thepaper/channel.js +0 -26
  8864. package/lib/v2/thepaper/factpaper.js +0 -61
  8865. package/lib/v2/thepaper/featured.js +0 -18
  8866. package/lib/v2/thepaper/list.js +0 -27
  8867. package/lib/v2/thepaper/maintainer.js +0 -9
  8868. package/lib/v2/thepaper/radar.js +0 -48
  8869. package/lib/v2/thepaper/router.js +0 -9
  8870. package/lib/v2/thepaper/sidebar.js +0 -24
  8871. package/lib/v2/thepaper/utils.js +0 -78
  8872. package/lib/v2/theverge/index.js +0 -98
  8873. package/lib/v2/theverge/maintainer.js +0 -3
  8874. package/lib/v2/theverge/radar.js +0 -13
  8875. package/lib/v2/theverge/router.js +0 -3
  8876. package/lib/v2/thwiki/index.js +0 -32
  8877. package/lib/v2/thwiki/maintainer.js +0 -3
  8878. package/lib/v2/thwiki/radar.js +0 -13
  8879. package/lib/v2/thwiki/router.js +0 -3
  8880. package/lib/v2/tiktok/maintainer.js +0 -3
  8881. package/lib/v2/tiktok/radar.js +0 -13
  8882. package/lib/v2/tiktok/router.js +0 -3
  8883. package/lib/v2/tiktok/templates/user.art +0 -3
  8884. package/lib/v2/tiktok/user.js +0 -56
  8885. package/lib/v2/timednews/maintainer.js +0 -3
  8886. package/lib/v2/timednews/news.js +0 -106
  8887. package/lib/v2/timednews/radar.js +0 -57
  8888. package/lib/v2/timednews/router.js +0 -3
  8889. package/lib/v2/tingshuitz/changsha.js +0 -43
  8890. package/lib/v2/tingshuitz/dalian.js +0 -29
  8891. package/lib/v2/tingshuitz/dongguan.js +0 -34
  8892. package/lib/v2/tingshuitz/guangzhou.js +0 -23
  8893. package/lib/v2/tingshuitz/hangzhou.js +0 -34
  8894. package/lib/v2/tingshuitz/maintainer.js +0 -12
  8895. package/lib/v2/tingshuitz/nanjing.js +0 -33
  8896. package/lib/v2/tingshuitz/radar.js +0 -78
  8897. package/lib/v2/tingshuitz/router.js +0 -12
  8898. package/lib/v2/tingshuitz/wuhan.js +0 -32
  8899. package/lib/v2/tingshuitz/xian.js +0 -31
  8900. package/lib/v2/tingshuitz/xiaoshan.js +0 -34
  8901. package/lib/v2/tingshuitz/yangjiang.js +0 -29
  8902. package/lib/v2/tisi/index.js +0 -38
  8903. package/lib/v2/tisi/maintainer.js +0 -3
  8904. package/lib/v2/tisi/radar.js +0 -17
  8905. package/lib/v2/tisi/router.js +0 -3
  8906. package/lib/v2/tju/cic/index.js +0 -113
  8907. package/lib/v2/tju/maintainer.js +0 -6
  8908. package/lib/v2/tju/news/index.js +0 -135
  8909. package/lib/v2/tju/oaa/index.js +0 -112
  8910. package/lib/v2/tju/radar.js +0 -97
  8911. package/lib/v2/tju/router.js +0 -6
  8912. package/lib/v2/tju/yzb/index.js +0 -121
  8913. package/lib/v2/tokeninsight/blog.js +0 -52
  8914. package/lib/v2/tokeninsight/bulletin.js +0 -44
  8915. package/lib/v2/tokeninsight/maintainer.js +0 -5
  8916. package/lib/v2/tokeninsight/radar.js +0 -25
  8917. package/lib/v2/tokeninsight/report.js +0 -52
  8918. package/lib/v2/tokeninsight/router.js +0 -5
  8919. package/lib/v2/tongji/maintainer.js +0 -4
  8920. package/lib/v2/tongji/radar.js +0 -21
  8921. package/lib/v2/tongji/router.js +0 -4
  8922. package/lib/v2/tongji/sse/_article.js +0 -25
  8923. package/lib/v2/tongji/sse/notice.js +0 -46
  8924. package/lib/v2/tongji/yjs.js +0 -27
  8925. package/lib/v2/topys/index.js +0 -66
  8926. package/lib/v2/topys/maintainer.js +0 -3
  8927. package/lib/v2/topys/radar.js +0 -13
  8928. package/lib/v2/topys/router.js +0 -3
  8929. package/lib/v2/tradingview/blog.js +0 -60
  8930. package/lib/v2/tradingview/maintainer.js +0 -3
  8931. package/lib/v2/tradingview/radar.js +0 -13
  8932. package/lib/v2/tradingview/router.js +0 -3
  8933. package/lib/v2/tradingview/templates/description.art +0 -4
  8934. package/lib/v2/trending/allTrending.js +0 -196
  8935. package/lib/v2/trending/maintainer.js +0 -3
  8936. package/lib/v2/trending/radar.js +0 -35
  8937. package/lib/v2/trending/router.js +0 -3
  8938. package/lib/v2/tribalfootball/latest.js +0 -68
  8939. package/lib/v2/tribalfootball/maintainer.js +0 -3
  8940. package/lib/v2/tribalfootball/radar.js +0 -13
  8941. package/lib/v2/tribalfootball/router.js +0 -3
  8942. package/lib/v2/trow/maintainer.js +0 -3
  8943. package/lib/v2/trow/portal.js +0 -46
  8944. package/lib/v2/trow/radar.js +0 -13
  8945. package/lib/v2/trow/router.js +0 -3
  8946. package/lib/v2/tvb/maintainer.js +0 -3
  8947. package/lib/v2/tvb/news.js +0 -80
  8948. package/lib/v2/tvb/radar.js +0 -13
  8949. package/lib/v2/tvb/router.js +0 -3
  8950. package/lib/v2/twitter/api_fallback_common.js +0 -17
  8951. package/lib/v2/twitter/collection.js +0 -55
  8952. package/lib/v2/twitter/developer-api/search.js +0 -22
  8953. package/lib/v2/twitter/developer-api/user.js +0 -29
  8954. package/lib/v2/twitter/followings.js +0 -44
  8955. package/lib/v2/twitter/keyword.js +0 -5
  8956. package/lib/v2/twitter/likes.js +0 -22
  8957. package/lib/v2/twitter/list.js +0 -38
  8958. package/lib/v2/twitter/maintainer.js +0 -10
  8959. package/lib/v2/twitter/media.js +0 -7
  8960. package/lib/v2/twitter/radar.js +0 -73
  8961. package/lib/v2/twitter/router.js +0 -10
  8962. package/lib/v2/twitter/trends.js +0 -24
  8963. package/lib/v2/twitter/user.js +0 -5
  8964. package/lib/v2/twitter/utils.js +0 -450
  8965. package/lib/v2/twitter/web-api/media.js +0 -23
  8966. package/lib/v2/twitter/web-api/search.js +0 -16
  8967. package/lib/v2/twitter/web-api/twitter-api.js +0 -220
  8968. package/lib/v2/twitter/web-api/twitter-got.js +0 -91
  8969. package/lib/v2/twitter/web-api/user.js +0 -33
  8970. package/lib/v2/twreporter/category.js +0 -40
  8971. package/lib/v2/twreporter/fetch_article.js +0 -67
  8972. package/lib/v2/twreporter/maintainer.js +0 -5
  8973. package/lib/v2/twreporter/newest.js +0 -29
  8974. package/lib/v2/twreporter/photography.js +0 -46
  8975. package/lib/v2/twreporter/radar.js +0 -25
  8976. package/lib/v2/twreporter/router.js +0 -5
  8977. package/lib/v2/txrjy/fornumtopic.js +0 -72
  8978. package/lib/v2/txrjy/maintainer.js +0 -3
  8979. package/lib/v2/txrjy/radar.js +0 -17
  8980. package/lib/v2/txrjy/router.js +0 -3
  8981. package/lib/v2/tynu/maintainer.js +0 -3
  8982. package/lib/v2/tynu/radar.js +0 -13
  8983. package/lib/v2/tynu/router.js +0 -3
  8984. package/lib/v2/tynu/tynu.js +0 -39
  8985. package/lib/v2/typora/changelog-dev.js +0 -31
  8986. package/lib/v2/typora/changelog.js +0 -40
  8987. package/lib/v2/typora/maintainer.js +0 -4
  8988. package/lib/v2/typora/radar.js +0 -21
  8989. package/lib/v2/typora/router.js +0 -4
  8990. package/lib/v2/u3c3/index.js +0 -59
  8991. package/lib/v2/u3c3/maintainer.js +0 -3
  8992. package/lib/v2/u3c3/radar.js +0 -29
  8993. package/lib/v2/u3c3/router.js +0 -3
  8994. package/lib/v2/u9a9/index.js +0 -66
  8995. package/lib/v2/u9a9/maintainer.js +0 -4
  8996. package/lib/v2/u9a9/radar.js +0 -19
  8997. package/lib/v2/u9a9/router.js +0 -4
  8998. package/lib/v2/uber/blog.js +0 -58
  8999. package/lib/v2/uber/maintainer.js +0 -3
  9000. package/lib/v2/uber/radar.js +0 -13
  9001. package/lib/v2/uber/router.js +0 -3
  9002. package/lib/v2/ucas/ai.js +0 -28
  9003. package/lib/v2/ucas/index.js +0 -59
  9004. package/lib/v2/ucas/maintainer.js +0 -4
  9005. package/lib/v2/ucas/radar.js +0 -41
  9006. package/lib/v2/ucas/rader.js +0 -47
  9007. package/lib/v2/ucas/router.js +0 -4
  9008. package/lib/v2/uchicago/current.js +0 -80
  9009. package/lib/v2/uchicago/maintainer.js +0 -3
  9010. package/lib/v2/uchicago/radar.js +0 -13
  9011. package/lib/v2/uchicago/router.js +0 -3
  9012. package/lib/v2/udn/breaking-news.js +0 -85
  9013. package/lib/v2/udn/global/index.js +0 -67
  9014. package/lib/v2/udn/global/tag.js +0 -51
  9015. package/lib/v2/udn/maintainer.js +0 -5
  9016. package/lib/v2/udn/radar.js +0 -27
  9017. package/lib/v2/udn/router.js +0 -5
  9018. package/lib/v2/uestc/auto.js +0 -45
  9019. package/lib/v2/uestc/cqe.js +0 -60
  9020. package/lib/v2/uestc/gr.js +0 -48
  9021. package/lib/v2/uestc/jwc.js +0 -52
  9022. package/lib/v2/uestc/maintainer.js +0 -12
  9023. package/lib/v2/uestc/news.js +0 -51
  9024. package/lib/v2/uestc/radar.js +0 -69
  9025. package/lib/v2/uestc/router.js +0 -12
  9026. package/lib/v2/uestc/scse.js +0 -90
  9027. package/lib/v2/uestc/sice.js +0 -46
  9028. package/lib/v2/uestc/sise.js +0 -80
  9029. package/lib/v2/uibe/hr.js +0 -58
  9030. package/lib/v2/uibe/maintainer.js +0 -3
  9031. package/lib/v2/uibe/radar.js +0 -13
  9032. package/lib/v2/uibe/router.js +0 -3
  9033. package/lib/v2/ulapia/index.js +0 -47
  9034. package/lib/v2/ulapia/maintainer.js +0 -3
  9035. package/lib/v2/ulapia/radar.js +0 -55
  9036. package/lib/v2/ulapia/research.js +0 -38
  9037. package/lib/v2/ulapia/router.js +0 -4
  9038. package/lib/v2/unusualwhales/maintainer.js +0 -3
  9039. package/lib/v2/unusualwhales/news.js +0 -24
  9040. package/lib/v2/unusualwhales/radar.js +0 -13
  9041. package/lib/v2/unusualwhales/router.js +0 -3
  9042. package/lib/v2/upc/jsj.js +0 -77
  9043. package/lib/v2/upc/main.js +0 -72
  9044. package/lib/v2/upc/maintainer.js +0 -5
  9045. package/lib/v2/upc/radar.js +0 -53
  9046. package/lib/v2/upc/router.js +0 -5
  9047. package/lib/v2/upc/yjs.js +0 -28
  9048. package/lib/v2/uptimerobot/maintainer.js +0 -3
  9049. package/lib/v2/uptimerobot/radar.js +0 -13
  9050. package/lib/v2/uptimerobot/router.js +0 -3
  9051. package/lib/v2/uptimerobot/rss.js +0 -126
  9052. package/lib/v2/uraaka-joshi/maintainer.js +0 -4
  9053. package/lib/v2/uraaka-joshi/radar.js +0 -19
  9054. package/lib/v2/uraaka-joshi/router.js +0 -4
  9055. package/lib/v2/uraaka-joshi/uraaka-joshi-user.js +0 -105
  9056. package/lib/v2/uraaka-joshi/uraaka-joshi.js +0 -89
  9057. package/lib/v2/urbandictionary/maintainer.js +0 -3
  9058. package/lib/v2/urbandictionary/radar.js +0 -13
  9059. package/lib/v2/urbandictionary/random.js +0 -24
  9060. package/lib/v2/urbandictionary/router.js +0 -3
  9061. package/lib/v2/usenix/maintainer.js +0 -3
  9062. package/lib/v2/usenix/radar.js +0 -13
  9063. package/lib/v2/usenix/router.js +0 -3
  9064. package/lib/v2/usenix/usenix.js +0 -63
  9065. package/lib/v2/usepanda/index.js +0 -26
  9066. package/lib/v2/usepanda/maintainer.js +0 -3
  9067. package/lib/v2/usepanda/radar.js +0 -11
  9068. package/lib/v2/usepanda/router.js +0 -3
  9069. package/lib/v2/ustb/maintainer.js +0 -25
  9070. package/lib/v2/ustb/radar.js +0 -21
  9071. package/lib/v2/ustb/router.js +0 -4
  9072. package/lib/v2/ustb/yjsy/news.js +0 -464
  9073. package/lib/v2/ustb/yzxc/tzgg.js +0 -49
  9074. package/lib/v2/ustc/eeis.js +0 -59
  9075. package/lib/v2/ustc/gs.js +0 -59
  9076. package/lib/v2/ustc/index.js +0 -79
  9077. package/lib/v2/ustc/job.js +0 -193
  9078. package/lib/v2/ustc/jwc.js +0 -57
  9079. package/lib/v2/ustc/maintainer.js +0 -8
  9080. package/lib/v2/ustc/radar.js +0 -53
  9081. package/lib/v2/ustc/router.js +0 -8
  9082. package/lib/v2/ustc/sist.js +0 -59
  9083. package/lib/v2/usts/jwch.js +0 -56
  9084. package/lib/v2/usts/maintainer.js +0 -3
  9085. package/lib/v2/usts/radar.js +0 -25
  9086. package/lib/v2/usts/router.js +0 -3
  9087. package/lib/v2/uw/gix/news.js +0 -67
  9088. package/lib/v2/uw/maintainer.js +0 -3
  9089. package/lib/v2/uw/radar.js +0 -13
  9090. package/lib/v2/uw/router.js +0 -3
  9091. package/lib/v2/v1tx/index.js +0 -36
  9092. package/lib/v2/v1tx/maintainer.js +0 -4
  9093. package/lib/v2/v1tx/radar.js +0 -13
  9094. package/lib/v2/v1tx/router.js +0 -3
  9095. package/lib/v2/vcb-s/category.js +0 -51
  9096. package/lib/v2/vcb-s/index.js +0 -39
  9097. package/lib/v2/vcb-s/maintainer.js +0 -4
  9098. package/lib/v2/vcb-s/radar.js +0 -19
  9099. package/lib/v2/vcb-s/router.js +0 -4
  9100. package/lib/v2/verfghbw/maintainer.js +0 -3
  9101. package/lib/v2/verfghbw/press.js +0 -60
  9102. package/lib/v2/verfghbw/radar.js +0 -13
  9103. package/lib/v2/verfghbw/router.js +0 -3
  9104. package/lib/v2/verse/articles.js +0 -42
  9105. package/lib/v2/verse/maintainer.js +0 -3
  9106. package/lib/v2/verse/radar.js +0 -13
  9107. package/lib/v2/verse/router.js +0 -3
  9108. package/lib/v2/vimeo/category.js +0 -64
  9109. package/lib/v2/vimeo/channel.js +0 -72
  9110. package/lib/v2/vimeo/maintainer.js +0 -5
  9111. package/lib/v2/vimeo/radar.js +0 -33
  9112. package/lib/v2/vimeo/router.js +0 -5
  9113. package/lib/v2/vimeo/usr-videos.js +0 -76
  9114. package/lib/v2/vlive/index.js +0 -71
  9115. package/lib/v2/vlive/maintainer.js +0 -3
  9116. package/lib/v2/vlive/radar.js +0 -13
  9117. package/lib/v2/vlive/router.js +0 -3
  9118. package/lib/v2/vlive/templates/post.art +0 -8
  9119. package/lib/v2/vlive/templates/video.art +0 -3
  9120. package/lib/v2/vmware/flings.js +0 -59
  9121. package/lib/v2/vmware/maintainer.js +0 -3
  9122. package/lib/v2/vmware/radar.js +0 -13
  9123. package/lib/v2/vmware/router.js +0 -3
  9124. package/lib/v2/vocus/maintainer.js +0 -4
  9125. package/lib/v2/vocus/publication.js +0 -42
  9126. package/lib/v2/vocus/radar.js +0 -19
  9127. package/lib/v2/vocus/router.js +0 -4
  9128. package/lib/v2/vocus/user.js +0 -43
  9129. package/lib/v2/vocus/utils.js +0 -51
  9130. package/lib/v2/vom/featured.js +0 -50
  9131. package/lib/v2/vom/maintainer.js +0 -3
  9132. package/lib/v2/vom/radar.js +0 -13
  9133. package/lib/v2/vom/router.js +0 -3
  9134. package/lib/v2/wallhaven/index.js +0 -55
  9135. package/lib/v2/wallhaven/maintainer.js +0 -4
  9136. package/lib/v2/wallhaven/radar.js +0 -53
  9137. package/lib/v2/wallhaven/router.js +0 -4
  9138. package/lib/v2/wallpaperhub/index.js +0 -28
  9139. package/lib/v2/wallpaperhub/maintainer.js +0 -3
  9140. package/lib/v2/wallpaperhub/radar.js +0 -13
  9141. package/lib/v2/wallpaperhub/router.js +0 -3
  9142. package/lib/v2/wallstreetcn/hot.js +0 -56
  9143. package/lib/v2/wallstreetcn/live.js +0 -49
  9144. package/lib/v2/wallstreetcn/maintainer.js +0 -6
  9145. package/lib/v2/wallstreetcn/news.js +0 -76
  9146. package/lib/v2/wallstreetcn/radar.js +0 -25
  9147. package/lib/v2/wallstreetcn/router.js +0 -6
  9148. package/lib/v2/wangqiutiyu/anchor.js +0 -42
  9149. package/lib/v2/wangqiutiyu/maintainer.js +0 -3
  9150. package/lib/v2/wangqiutiyu/radar.js +0 -13
  9151. package/lib/v2/wangqiutiyu/router.js +0 -3
  9152. package/lib/v2/wanqu/maintainer.js +0 -3
  9153. package/lib/v2/wanqu/news.js +0 -27
  9154. package/lib/v2/wanqu/radar.js +0 -13
  9155. package/lib/v2/wanqu/router.js +0 -3
  9156. package/lib/v2/warthunder/maintainer.js +0 -3
  9157. package/lib/v2/warthunder/news.js +0 -49
  9158. package/lib/v2/warthunder/radar.js +0 -13
  9159. package/lib/v2/warthunder/router.js +0 -3
  9160. package/lib/v2/watchout/index.js +0 -51
  9161. package/lib/v2/watchout/maintainer.js +0 -3
  9162. package/lib/v2/watchout/radar.js +0 -13
  9163. package/lib/v2/watchout/router.js +0 -3
  9164. package/lib/v2/wdc/download.js +0 -37
  9165. package/lib/v2/wdc/maintainer.js +0 -3
  9166. package/lib/v2/wdc/radar.js +0 -13
  9167. package/lib/v2/wdc/router.js +0 -3
  9168. package/lib/v2/web3caff/index.js +0 -63
  9169. package/lib/v2/web3caff/maintainer.js +0 -3
  9170. package/lib/v2/web3caff/radar.js +0 -13
  9171. package/lib/v2/web3caff/router.js +0 -3
  9172. package/lib/v2/wechat/_README +0 -1
  9173. package/lib/v2/wechat/announce.js +0 -33
  9174. package/lib/v2/wechat/ce.js +0 -69
  9175. package/lib/v2/wechat/data258.js +0 -137
  9176. package/lib/v2/wechat/ershcimi.js +0 -35
  9177. package/lib/v2/wechat/feeddd.js +0 -38
  9178. package/lib/v2/wechat/feeds.js +0 -23
  9179. package/lib/v2/wechat/maintainer.js +0 -15
  9180. package/lib/v2/wechat/mp.js +0 -59
  9181. package/lib/v2/wechat/msgalbum.js +0 -41
  9182. package/lib/v2/wechat/radar.js +0 -104
  9183. package/lib/v2/wechat/router.js +0 -15
  9184. package/lib/v2/wechat/sogou.js +0 -58
  9185. package/lib/v2/wechat/tgchannel.js +0 -146
  9186. package/lib/v2/wechat/uread.js +0 -51
  9187. package/lib/v2/wechat/wechat2rss.js +0 -28
  9188. package/lib/v2/wechat/wxnmh.js +0 -46
  9189. package/lib/v2/weekendhk/maintainer.js +0 -4
  9190. package/lib/v2/weekendhk/posts.js +0 -29
  9191. package/lib/v2/weekendhk/radar.js +0 -13
  9192. package/lib/v2/weekendhk/router.js +0 -3
  9193. package/lib/v2/weibo/keyword.js +0 -55
  9194. package/lib/v2/weibo/maintainer.js +0 -8
  9195. package/lib/v2/weibo/oasis/user.js +0 -20
  9196. package/lib/v2/weibo/radar.js +0 -48
  9197. package/lib/v2/weibo/router.js +0 -8
  9198. package/lib/v2/weibo/search/hot.js +0 -35
  9199. package/lib/v2/weibo/super_index.js +0 -62
  9200. package/lib/v2/weibo/timeline.js +0 -162
  9201. package/lib/v2/weibo/user.js +0 -155
  9202. package/lib/v2/weibo/utils.js +0 -458
  9203. package/lib/v2/wenku8/chapter.js +0 -35
  9204. package/lib/v2/wenku8/index.js +0 -52
  9205. package/lib/v2/wenku8/maintainer.js +0 -5
  9206. package/lib/v2/wenku8/radar.js +0 -85
  9207. package/lib/v2/wenku8/router.js +0 -5
  9208. package/lib/v2/wenku8/volume.js +0 -52
  9209. package/lib/v2/wfdf/maintainer.js +0 -3
  9210. package/lib/v2/wfdf/news.js +0 -29
  9211. package/lib/v2/wfdf/radar.js +0 -13
  9212. package/lib/v2/wfdf/router.js +0 -3
  9213. package/lib/v2/wfu/jwc.js +0 -54
  9214. package/lib/v2/wfu/maintainer.js +0 -4
  9215. package/lib/v2/wfu/news.js +0 -96
  9216. package/lib/v2/wfu/radar.js +0 -21
  9217. package/lib/v2/wfu/router.js +0 -4
  9218. package/lib/v2/whitehouse/briefing-room.js +0 -50
  9219. package/lib/v2/whitehouse/maintainer.js +0 -4
  9220. package/lib/v2/whitehouse/ostp.js +0 -50
  9221. package/lib/v2/whitehouse/radar.js +0 -19
  9222. package/lib/v2/whitehouse/router.js +0 -4
  9223. package/lib/v2/who/maintainer.js +0 -5
  9224. package/lib/v2/who/news-room.js +0 -75
  9225. package/lib/v2/who/news.js +0 -42
  9226. package/lib/v2/who/radar.js +0 -25
  9227. package/lib/v2/who/router.js +0 -5
  9228. package/lib/v2/who/speeches.js +0 -45
  9229. package/lib/v2/whoscall/index.js +0 -55
  9230. package/lib/v2/whoscall/maintainer.js +0 -5
  9231. package/lib/v2/whoscall/radar.js +0 -25
  9232. package/lib/v2/whoscall/router.js +0 -3
  9233. package/lib/v2/wikinews/index.js +0 -43
  9234. package/lib/v2/wikinews/maintainer.js +0 -3
  9235. package/lib/v2/wikinews/radar.js +0 -13
  9236. package/lib/v2/wikinews/router.js +0 -4
  9237. package/lib/v2/wise/maintainer.js +0 -3
  9238. package/lib/v2/wise/pair.js +0 -65
  9239. package/lib/v2/wise/radar.js +0 -11
  9240. package/lib/v2/wise/router.js +0 -3
  9241. package/lib/v2/wizfile/index.js +0 -41
  9242. package/lib/v2/wizfile/maintainer.js +0 -3
  9243. package/lib/v2/wizfile/radar.js +0 -13
  9244. package/lib/v2/wizfile/router.js +0 -3
  9245. package/lib/v2/wnacg/index.js +0 -110
  9246. package/lib/v2/wnacg/maintainer.js +0 -5
  9247. package/lib/v2/wnacg/radar.js +0 -25
  9248. package/lib/v2/wnacg/router.js +0 -5
  9249. package/lib/v2/wnacg/templates/manga.art +0 -9
  9250. package/lib/v2/worldjournal/index.js +0 -60
  9251. package/lib/v2/worldjournal/maintainer.js +0 -3
  9252. package/lib/v2/worldjournal/radar.js +0 -13
  9253. package/lib/v2/worldjournal/router.js +0 -3
  9254. package/lib/v2/woshipm/bookmarks.js +0 -34
  9255. package/lib/v2/woshipm/latest.js +0 -27
  9256. package/lib/v2/woshipm/maintainer.js +0 -7
  9257. package/lib/v2/woshipm/popular.js +0 -33
  9258. package/lib/v2/woshipm/radar.js +0 -39
  9259. package/lib/v2/woshipm/router.js +0 -7
  9260. package/lib/v2/woshipm/user_article.js +0 -37
  9261. package/lib/v2/woshipm/utils.js +0 -21
  9262. package/lib/v2/woshipm/wen.js +0 -36
  9263. package/lib/v2/wp-china/maintainer.js +0 -3
  9264. package/lib/v2/wp-china/news.js +0 -56
  9265. package/lib/v2/wp-china/radar.js +0 -13
  9266. package/lib/v2/wp-china/router.js +0 -3
  9267. package/lib/v2/wsj/maintainer.js +0 -3
  9268. package/lib/v2/wsj/news.js +0 -51
  9269. package/lib/v2/wsj/radar.js +0 -21
  9270. package/lib/v2/wsj/router.js +0 -3
  9271. package/lib/v2/wsj/utils.js +0 -121
  9272. package/lib/v2/wsyu/maintainer.js +0 -3
  9273. package/lib/v2/wsyu/news.js +0 -85
  9274. package/lib/v2/wsyu/radar.js +0 -25
  9275. package/lib/v2/wsyu/router.js +0 -3
  9276. package/lib/v2/wxkol/maintainer.js +0 -3
  9277. package/lib/v2/wxkol/radar.js +0 -13
  9278. package/lib/v2/wxkol/router.js +0 -3
  9279. package/lib/v2/wxkol/show.js +0 -80
  9280. package/lib/v2/wyzxwk/article.js +0 -64
  9281. package/lib/v2/wyzxwk/maintainer.js +0 -3
  9282. package/lib/v2/wyzxwk/radar.js +0 -13
  9283. package/lib/v2/wyzxwk/router.js +0 -3
  9284. package/lib/v2/wzu/maintainer.js +0 -3
  9285. package/lib/v2/wzu/news.js +0 -84
  9286. package/lib/v2/wzu/radar.js +0 -11
  9287. package/lib/v2/wzu/router.js +0 -3
  9288. package/lib/v2/x6d/index.js +0 -59
  9289. package/lib/v2/x6d/maintainer.js +0 -3
  9290. package/lib/v2/x6d/radar.js +0 -13
  9291. package/lib/v2/x6d/router.js +0 -3
  9292. package/lib/v2/xaufe/jiaowu.js +0 -72
  9293. package/lib/v2/xaufe/maintainer.js +0 -3
  9294. package/lib/v2/xaufe/radar.js +0 -11
  9295. package/lib/v2/xaufe/router.js +0 -3
  9296. package/lib/v2/xaut/index.js +0 -72
  9297. package/lib/v2/xaut/jwc.js +0 -65
  9298. package/lib/v2/xaut/maintainer.js +0 -5
  9299. package/lib/v2/xaut/radar.js +0 -23
  9300. package/lib/v2/xaut/router.js +0 -5
  9301. package/lib/v2/xaut/rsc.js +0 -67
  9302. package/lib/v2/xiaohongshu/board.js +0 -30
  9303. package/lib/v2/xiaohongshu/maintainer.js +0 -5
  9304. package/lib/v2/xiaohongshu/radar.js +0 -25
  9305. package/lib/v2/xiaohongshu/router.js +0 -4
  9306. package/lib/v2/xiaohongshu/user.js +0 -30
  9307. package/lib/v2/xiaohongshu/util.js +0 -71
  9308. package/lib/v2/xiaomiyoupin/crowdfunding.js +0 -43
  9309. package/lib/v2/xiaomiyoupin/latest.js +0 -15
  9310. package/lib/v2/xiaomiyoupin/maintainer.js +0 -4
  9311. package/lib/v2/xiaomiyoupin/radar.js +0 -19
  9312. package/lib/v2/xiaomiyoupin/router.js +0 -4
  9313. package/lib/v2/xiaomiyoupin/utils.js +0 -21
  9314. package/lib/v2/xiaoyuzhou/maintainer.js +0 -4
  9315. package/lib/v2/xiaoyuzhou/pickup.js +0 -96
  9316. package/lib/v2/xiaoyuzhou/podcast.js +0 -36
  9317. package/lib/v2/xiaoyuzhou/radar.js +0 -19
  9318. package/lib/v2/xiaoyuzhou/router.js +0 -4
  9319. package/lib/v2/xiaozhuanlan/column.js +0 -52
  9320. package/lib/v2/xiaozhuanlan/maintainer.js +0 -3
  9321. package/lib/v2/xiaozhuanlan/radar.js +0 -13
  9322. package/lib/v2/xiaozhuanlan/router.js +0 -3
  9323. package/lib/v2/xidian/jwc.js +0 -54
  9324. package/lib/v2/xidian/maintainer.js +0 -3
  9325. package/lib/v2/xidian/radar.js +0 -13
  9326. package/lib/v2/xidian/router.js +0 -3
  9327. package/lib/v2/xjtu/2yuan/news.js +0 -61
  9328. package/lib/v2/xjtu/dean.js +0 -83
  9329. package/lib/v2/xjtu/dyyy/index.js +0 -44
  9330. package/lib/v2/xjtu/ee.js +0 -44
  9331. package/lib/v2/xjtu/gs/tzgg.js +0 -39
  9332. package/lib/v2/xjtu/international.js +0 -51
  9333. package/lib/v2/xjtu/job.js +0 -81
  9334. package/lib/v2/xjtu/maintainer.js +0 -10
  9335. package/lib/v2/xjtu/radar.js +0 -61
  9336. package/lib/v2/xjtu/router.js +0 -10
  9337. package/lib/v2/xjtu/std.js +0 -58
  9338. package/lib/v2/xkb/index.js +0 -54
  9339. package/lib/v2/xkb/maintainer.js +0 -3
  9340. package/lib/v2/xkb/radar.js +0 -13
  9341. package/lib/v2/xkb/router.js +0 -3
  9342. package/lib/v2/xkb/templates/description.art +0 -3
  9343. package/lib/v2/xmanhua/index.js +0 -74
  9344. package/lib/v2/xmanhua/maintainer.js +0 -3
  9345. package/lib/v2/xmanhua/radar.js +0 -13
  9346. package/lib/v2/xmanhua/router.js +0 -3
  9347. package/lib/v2/xmnn/epaper.js +0 -85
  9348. package/lib/v2/xmnn/maintainer.js +0 -3
  9349. package/lib/v2/xmnn/radar.js +0 -13
  9350. package/lib/v2/xmnn/router.js +0 -3
  9351. package/lib/v2/xsijishe/forum.js +0 -61
  9352. package/lib/v2/xsijishe/maintainer.js +0 -3
  9353. package/lib/v2/xsijishe/radar.js +0 -19
  9354. package/lib/v2/xsijishe/router.js +0 -3
  9355. package/lib/v2/xueqiu/column.js +0 -42
  9356. package/lib/v2/xueqiu/favorite.js +0 -38
  9357. package/lib/v2/xueqiu/fund.js +0 -50
  9358. package/lib/v2/xueqiu/hots.js +0 -45
  9359. package/lib/v2/xueqiu/maintainer.js +0 -12
  9360. package/lib/v2/xueqiu/radar.js +0 -72
  9361. package/lib/v2/xueqiu/router.js +0 -12
  9362. package/lib/v2/xueqiu/snb.js +0 -45
  9363. package/lib/v2/xueqiu/stock_comments.js +0 -45
  9364. package/lib/v2/xueqiu/stock_info.js +0 -72
  9365. package/lib/v2/xueqiu/today.js +0 -65
  9366. package/lib/v2/xueqiu/user.js +0 -75
  9367. package/lib/v2/xueqiu/user_stock.js +0 -48
  9368. package/lib/v2/xunhupay/index.js +0 -24
  9369. package/lib/v2/xunhupay/maintainer.js +0 -3
  9370. package/lib/v2/xunhupay/radar.js +0 -13
  9371. package/lib/v2/xunhupay/router.js +0 -3
  9372. package/lib/v2/xwlb/index.js +0 -40
  9373. package/lib/v2/xwlb/maintainer.js +0 -4
  9374. package/lib/v2/xwlb/radar.js +0 -13
  9375. package/lib/v2/xwlb/router.js +0 -4
  9376. package/lib/v2/xys/maintainer.js +0 -3
  9377. package/lib/v2/xys/new.js +0 -74
  9378. package/lib/v2/xys/radar.js +0 -13
  9379. package/lib/v2/xys/router.js +0 -3
  9380. package/lib/v2/xyzrank/index.js +0 -111
  9381. package/lib/v2/xyzrank/maintainer.js +0 -6
  9382. package/lib/v2/xyzrank/radar.js +0 -31
  9383. package/lib/v2/xyzrank/router.js +0 -3
  9384. package/lib/v2/yahoo/maintainer.js +0 -3
  9385. package/lib/v2/yahoo/news/index.js +0 -46
  9386. package/lib/v2/yahoo/radar.js +0 -13
  9387. package/lib/v2/yahoo/router.js +0 -3
  9388. package/lib/v2/yaohuo/index.js +0 -30
  9389. package/lib/v2/yaohuo/maintainer.js +0 -3
  9390. package/lib/v2/yaohuo/radar.js +0 -13
  9391. package/lib/v2/yaohuo/router.js +0 -3
  9392. package/lib/v2/ycwb/index.js +0 -82
  9393. package/lib/v2/ycwb/maintainer.js +0 -3
  9394. package/lib/v2/ycwb/radar.js +0 -12
  9395. package/lib/v2/ycwb/router.js +0 -3
  9396. package/lib/v2/yicai/author.js +0 -26
  9397. package/lib/v2/yicai/brief.js +0 -28
  9398. package/lib/v2/yicai/feed.js +0 -26
  9399. package/lib/v2/yicai/headline.js +0 -13
  9400. package/lib/v2/yicai/latest.js +0 -13
  9401. package/lib/v2/yicai/maintainer.js +0 -10
  9402. package/lib/v2/yicai/news.js +0 -39
  9403. package/lib/v2/yicai/radar.js +0 -55
  9404. package/lib/v2/yicai/router.js +0 -10
  9405. package/lib/v2/yicai/templates/description.art +0 -11
  9406. package/lib/v2/yicai/utils.js +0 -51
  9407. package/lib/v2/yicai/video.js +0 -39
  9408. package/lib/v2/yicai/vip.js +0 -26
  9409. package/lib/v2/ymgal/article.js +0 -61
  9410. package/lib/v2/ymgal/game.js +0 -41
  9411. package/lib/v2/ymgal/maintainer.js +0 -4
  9412. package/lib/v2/ymgal/radar.js +0 -31
  9413. package/lib/v2/ymgal/router.js +0 -4
  9414. package/lib/v2/yoasobi-music/info.js +0 -68
  9415. package/lib/v2/yoasobi-music/jsonpHelper.js +0 -19
  9416. package/lib/v2/yoasobi-music/live.js +0 -52
  9417. package/lib/v2/yoasobi-music/maintainer.js +0 -5
  9418. package/lib/v2/yoasobi-music/media.js +0 -59
  9419. package/lib/v2/yoasobi-music/radar.js +0 -31
  9420. package/lib/v2/yoasobi-music/router.js +0 -5
  9421. package/lib/v2/yomiuri/maintainer.js +0 -3
  9422. package/lib/v2/yomiuri/news.js +0 -129
  9423. package/lib/v2/yomiuri/radar.js +0 -13
  9424. package/lib/v2/yomiuri/router.js +0 -3
  9425. package/lib/v2/youku/channel.js +0 -56
  9426. package/lib/v2/youku/maintainer.js +0 -3
  9427. package/lib/v2/youku/radar.js +0 -13
  9428. package/lib/v2/youku/router.js +0 -3
  9429. package/lib/v2/youtube/channel.js +0 -39
  9430. package/lib/v2/youtube/charts.js +0 -97
  9431. package/lib/v2/youtube/community.js +0 -56
  9432. package/lib/v2/youtube/custom.js +0 -45
  9433. package/lib/v2/youtube/maintainer.js +0 -9
  9434. package/lib/v2/youtube/playlist.js +0 -33
  9435. package/lib/v2/youtube/radar.js +0 -51
  9436. package/lib/v2/youtube/router.js +0 -9
  9437. package/lib/v2/youtube/subscriptions.js +0 -56
  9438. package/lib/v2/youtube/user.js +0 -47
  9439. package/lib/v2/youtube/utils.js +0 -143
  9440. package/lib/v2/youzhiyouxing/maintainer.js +0 -3
  9441. package/lib/v2/youzhiyouxing/materials.js +0 -56
  9442. package/lib/v2/youzhiyouxing/radar.js +0 -73
  9443. package/lib/v2/youzhiyouxing/router.js +0 -3
  9444. package/lib/v2/yunspe/maintainer.js +0 -3
  9445. package/lib/v2/yunspe/newsflash.js +0 -42
  9446. package/lib/v2/yunspe/radar.js +0 -13
  9447. package/lib/v2/yunspe/router.js +0 -3
  9448. package/lib/v2/yuque/book.js +0 -93
  9449. package/lib/v2/yuque/maintainer.js +0 -3
  9450. package/lib/v2/yuque/radar.js +0 -13
  9451. package/lib/v2/yuque/router.js +0 -3
  9452. package/lib/v2/yuque/utils.js +0 -50
  9453. package/lib/v2/yxdown/maintainer.js +0 -4
  9454. package/lib/v2/yxdown/news.js +0 -57
  9455. package/lib/v2/yxdown/radar.js +0 -19
  9456. package/lib/v2/yxdown/recommend.js +0 -54
  9457. package/lib/v2/yxdown/router.js +0 -4
  9458. package/lib/v2/yxdown/utils.js +0 -17
  9459. package/lib/v2/yxdzqb/index.js +0 -53
  9460. package/lib/v2/yxdzqb/maintainer.js +0 -3
  9461. package/lib/v2/yxdzqb/radar.js +0 -13
  9462. package/lib/v2/yxdzqb/router.js +0 -3
  9463. package/lib/v2/yxrb/home.js +0 -61
  9464. package/lib/v2/yxrb/maintainer.js +0 -3
  9465. package/lib/v2/yxrb/radar.js +0 -13
  9466. package/lib/v2/yxrb/router.js +0 -3
  9467. package/lib/v2/yyets/article.js +0 -45
  9468. package/lib/v2/yyets/maintainer.js +0 -4
  9469. package/lib/v2/yyets/radar.js +0 -19
  9470. package/lib/v2/yyets/router.js +0 -4
  9471. package/lib/v2/yyets/today.js +0 -37
  9472. package/lib/v2/yystv/category.js +0 -65
  9473. package/lib/v2/yystv/docs.js +0 -34
  9474. package/lib/v2/yystv/maintainer.js +0 -4
  9475. package/lib/v2/yystv/radar.js +0 -49
  9476. package/lib/v2/yystv/router.js +0 -4
  9477. package/lib/v2/zagg/maintainer.js +0 -3
  9478. package/lib/v2/zagg/new-arrivals.js +0 -52
  9479. package/lib/v2/zagg/radar.js +0 -16
  9480. package/lib/v2/zagg/router.js +0 -3
  9481. package/lib/v2/zaker/index.js +0 -65
  9482. package/lib/v2/zaker/maintainer.js +0 -3
  9483. package/lib/v2/zaker/radar.js +0 -19
  9484. package/lib/v2/zaker/router.js +0 -3
  9485. package/lib/v2/zaobao/index.js +0 -17
  9486. package/lib/v2/zaobao/interactive.js +0 -15
  9487. package/lib/v2/zaobao/maintainer.js +0 -6
  9488. package/lib/v2/zaobao/radar.js +0 -28
  9489. package/lib/v2/zaobao/realtime.js +0 -30
  9490. package/lib/v2/zaobao/router.js +0 -6
  9491. package/lib/v2/zaobao/util.js +0 -178
  9492. package/lib/v2/zaobao/znews.js +0 -32
  9493. package/lib/v2/zaozao/article.js +0 -36
  9494. package/lib/v2/zaozao/maintainer.js +0 -3
  9495. package/lib/v2/zaozao/radar.js +0 -13
  9496. package/lib/v2/zaozao/router.js +0 -3
  9497. package/lib/v2/zcmu/jwc/index.js +0 -41
  9498. package/lib/v2/zcmu/maintainer.js +0 -4
  9499. package/lib/v2/zcmu/radar.js +0 -87
  9500. package/lib/v2/zcmu/router.js +0 -4
  9501. package/lib/v2/zcmu/yxy/index.js +0 -42
  9502. package/lib/v2/zcool/discover.js +0 -152
  9503. package/lib/v2/zcool/locations.js +0 -6829
  9504. package/lib/v2/zcool/maintainer.js +0 -7
  9505. package/lib/v2/zcool/radar.js +0 -55
  9506. package/lib/v2/zcool/router.js +0 -5
  9507. package/lib/v2/zcool/top.js +0 -51
  9508. package/lib/v2/zcool/user.js +0 -52
  9509. package/lib/v2/zcool/utils.js +0 -14
  9510. package/lib/v2/zhangyoubao/index.js +0 -42
  9511. package/lib/v2/zhangyoubao/maintainer.js +0 -3
  9512. package/lib/v2/zhangyoubao/radar.js +0 -13
  9513. package/lib/v2/zhangyoubao/router.js +0 -3
  9514. package/lib/v2/zhangyoubao/templates/article.art +0 -1
  9515. package/lib/v2/zhibo8/forum.js +0 -46
  9516. package/lib/v2/zhibo8/luxiang.js +0 -38
  9517. package/lib/v2/zhibo8/maintainer.js +0 -6
  9518. package/lib/v2/zhibo8/more.js +0 -77
  9519. package/lib/v2/zhibo8/post.js +0 -49
  9520. package/lib/v2/zhibo8/radar.js +0 -35
  9521. package/lib/v2/zhibo8/router.js +0 -6
  9522. package/lib/v2/zhihu/activities.js +0 -142
  9523. package/lib/v2/zhihu/answers.js +0 -63
  9524. package/lib/v2/zhihu/bookstore/newest.js +0 -30
  9525. package/lib/v2/zhihu/collection.js +0 -77
  9526. package/lib/v2/zhihu/daily.js +0 -80
  9527. package/lib/v2/zhihu/daily_section.js +0 -49
  9528. package/lib/v2/zhihu/execlib/x-zse-96_v3.js +0 -122
  9529. package/lib/v2/zhihu/hot.js +0 -38
  9530. package/lib/v2/zhihu/hotlist.js +0 -47
  9531. package/lib/v2/zhihu/maintainer.js +0 -19
  9532. package/lib/v2/zhihu/pin/daily.js +0 -18
  9533. package/lib/v2/zhihu/pin/hotlist.js +0 -18
  9534. package/lib/v2/zhihu/pin/people.js +0 -19
  9535. package/lib/v2/zhihu/pin/utils.js +0 -68
  9536. package/lib/v2/zhihu/posts.js +0 -53
  9537. package/lib/v2/zhihu/question.js +0 -80
  9538. package/lib/v2/zhihu/radar.js +0 -107
  9539. package/lib/v2/zhihu/router.js +0 -19
  9540. package/lib/v2/zhihu/timeline.js +0 -100
  9541. package/lib/v2/zhihu/topic.js +0 -68
  9542. package/lib/v2/zhihu/utils.js +0 -48
  9543. package/lib/v2/zhihu/weekly.js +0 -31
  9544. package/lib/v2/zhihu/zhuanlan.js +0 -92
  9545. package/lib/v2/zhitongcaijing/index.js +0 -118
  9546. package/lib/v2/zhitongcaijing/maintainer.js +0 -3
  9547. package/lib/v2/zhitongcaijing/radar.js +0 -17
  9548. package/lib/v2/zhitongcaijing/router.js +0 -3
  9549. package/lib/v2/zhiy/letter.js +0 -34
  9550. package/lib/v2/zhiy/maintainer.js +0 -4
  9551. package/lib/v2/zhiy/post.js +0 -69
  9552. package/lib/v2/zhiy/radar.js +0 -19
  9553. package/lib/v2/zhiy/router.js +0 -4
  9554. package/lib/v2/zhiy/utils.js +0 -13
  9555. package/lib/v2/zhubai/index.js +0 -33
  9556. package/lib/v2/zhubai/maintainer.js +0 -3
  9557. package/lib/v2/zhubai/radar.js +0 -12
  9558. package/lib/v2/zhubai/router.js +0 -3
  9559. package/lib/v2/zjgtjy/index.js +0 -46
  9560. package/lib/v2/zjgtjy/maintainer.js +0 -3
  9561. package/lib/v2/zjgtjy/radar.js +0 -31
  9562. package/lib/v2/zjgtjy/router.js +0 -3
  9563. package/lib/v2/zjol/maintainer.js +0 -3
  9564. package/lib/v2/zjol/paper.js +0 -88
  9565. package/lib/v2/zjol/radar.js +0 -61
  9566. package/lib/v2/zjol/router.js +0 -3
  9567. package/lib/v2/zju/career/index.js +0 -43
  9568. package/lib/v2/zju/cst/custom.js +0 -45
  9569. package/lib/v2/zju/cst/index.js +0 -90
  9570. package/lib/v2/zju/grs/index.js +0 -44
  9571. package/lib/v2/zju/list.js +0 -66
  9572. package/lib/v2/zju/maintainer.js +0 -8
  9573. package/lib/v2/zju/physics/index.js +0 -52
  9574. package/lib/v2/zju/radar.js +0 -139
  9575. package/lib/v2/zju/router.js +0 -8
  9576. package/lib/v2/zodgame/forum.js +0 -54
  9577. package/lib/v2/zodgame/maintainer.js +0 -3
  9578. package/lib/v2/zodgame/radar.js +0 -18
  9579. package/lib/v2/zodgame/router.js +0 -3
  9580. package/lib/v2/zodgame/templates/forum.art +0 -1
  9581. package/lib/v2/zooTeam/blog.js +0 -32
  9582. package/lib/v2/zooTeam/maintainer.js +0 -4
  9583. package/lib/v2/zooTeam/radar.js +0 -21
  9584. package/lib/v2/zooTeam/router.js +0 -4
  9585. package/lib/v2/zooTeam/weekly.js +0 -34
  9586. package/lib/v2/zotero/maintainer.js +0 -3
  9587. package/lib/v2/zotero/radar.js +0 -13
  9588. package/lib/v2/zotero/router.js +0 -3
  9589. package/lib/v2/zotero/versions.js +0 -36
  9590. package/lib/v2/zuel/maintainer.js +0 -3
  9591. package/lib/v2/zuel/notice.js +0 -52
  9592. package/lib/v2/zuel/radar.js +0 -13
  9593. package/lib/v2/zuel/router.js +0 -3
  9594. package/lib/v2/zuvio/boards.js +0 -14
  9595. package/lib/v2/zuvio/maintainer.js +0 -4
  9596. package/lib/v2/zuvio/radar.js +0 -13
  9597. package/lib/v2/zuvio/router.js +0 -4
  9598. package/lib/v2/zuvio/student5.js +0 -58
  9599. package/lib/v2/zuvio/utils.js +0 -61
  9600. package/lib/v2/zuzhirenshi/index.js +0 -87
  9601. package/lib/v2/zuzhirenshi/maintainer.js +0 -3
  9602. package/lib/v2/zuzhirenshi/radar.js +0 -13
  9603. package/lib/v2/zuzhirenshi/router.js +0 -3
  9604. package/lib/v2/zyshow/index.js +0 -46
  9605. package/lib/v2/zyshow/maintainer.js +0 -3
  9606. package/lib/v2/zyshow/radar.js +0 -17
  9607. package/lib/v2/zyshow/router.js +0 -3
  9608. package/lib/v2router.js +0 -17
  9609. package/lib/views/atom.art +0 -86
  9610. package/lib/views/error.art +0 -61
  9611. package/lib/views/json.js +0 -46
  9612. package/lib/views/rss.art +0 -60
  9613. package/lib/views/welcome.art +0 -114
  9614. /package/lib/{favicon.png → assets/favicon.png} +0 -0
  9615. /package/lib/{v2 → routes}/12306/templates/train.art +0 -0
  9616. /package/lib/{v2 → routes}/163/templates/ds.art +0 -0
  9617. /package/lib/{v2 → routes}/163/templates/dy.art +0 -0
  9618. /package/lib/{v2 → routes}/163/templates/exclusive.art +0 -0
  9619. /package/lib/{v2 → routes}/163/templates/music/djradio-content.art +0 -0
  9620. /package/lib/{v2 → routes}/163/templates/music/playlist.art +0 -0
  9621. /package/lib/{v2 → routes}/163/templates/music/userevents.art +0 -0
  9622. /package/lib/{v2 → routes}/163/templates/music/userplaylist.art +0 -0
  9623. /package/lib/{v2 → routes}/163/templates/music/userplayrecords.art +0 -0
  9624. /package/lib/{v2 → routes}/163/templates/open.art +0 -0
  9625. /package/lib/{v2 → routes}/1point3acres/templates/image.art +0 -0
  9626. /package/lib/{v2 → routes}/1point3acres/templates/offer.art +0 -0
  9627. /package/lib/{v2 → routes}/2048/templates/download.art +0 -0
  9628. /package/lib/{v2 → routes}/500px/templates/tribeSet.art +0 -0
  9629. /package/lib/{v2 → routes}/500px/templates/user.art +0 -0
  9630. /package/lib/{v2 → routes}/591/templates/house.art +0 -0
  9631. /package/lib/{v2 → routes}/78dm/templates/image.art +0 -0
  9632. /package/lib/{v2 → routes}/7mmtv/templates/description.art +0 -0
  9633. /package/lib/{v2 → routes}/91porn/templates/index.art +0 -0
  9634. /package/lib/{v2 → routes}/95mm/templates/description.art +0 -0
  9635. /package/lib/{v2 → routes}/acs/templates/description.art +0 -0
  9636. /package/lib/{v2 → routes}/aeaweb/templates/description.art +0 -0
  9637. /package/lib/{v2 → routes}/aicaijing/templates/description.art +0 -0
  9638. /package/lib/{v2/scitation → routes/aip}/templates/description.art +0 -0
  9639. /package/lib/{v2 → routes}/aljazeera/templates/description.art +0 -0
  9640. /package/lib/{v2 → routes}/amazon/templates/software-description.art +0 -0
  9641. /package/lib/{v2 → routes}/apnews/templates/description.art +0 -0
  9642. /package/lib/{v2 → routes}/app-center/templates/description.art +0 -0
  9643. /package/lib/{v2 → routes}/arcteryx/templates/product-description.art +0 -0
  9644. /package/lib/{v2 → routes}/arcteryx/templates/regear-product-description.art +0 -0
  9645. /package/lib/{v2 → routes}/asus/templates/bios.art +0 -0
  9646. /package/lib/{v2 → routes}/baidu/templates/forum.art +0 -0
  9647. /package/lib/{v2 → routes}/baidu/templates/gushitong.art +0 -0
  9648. /package/lib/{v2 → routes}/baidu/templates/post.art +0 -0
  9649. /package/lib/{v2 → routes}/baidu/templates/top.art +0 -0
  9650. /package/lib/{v2 → routes}/bandcamp/templates/weekly.art +0 -0
  9651. /package/lib/{v2 → routes}/bangumi/templates/online/image.art +0 -0
  9652. /package/lib/{v2 → routes}/bangumi/templates/tv/ep.art +0 -0
  9653. /package/lib/{v2 → routes}/bangumi/templates/tv/today.art +0 -0
  9654. /package/lib/{v2 → routes}/baozimh/templates/desc.art +0 -0
  9655. /package/lib/{v2 → routes}/bdys/templates/desc.art +0 -0
  9656. /package/lib/{v2 → routes}/bgmlist/templates/description.art +0 -0
  9657. /package/lib/{v2 → routes}/bloomberg/templates/audio_media.art +0 -0
  9658. /package/lib/{v2 → routes}/bloomberg/templates/lede_media.art +0 -0
  9659. /package/lib/{v2 → routes}/bloomberg/templates/video_media.art +0 -0
  9660. /package/lib/{v2 → routes}/btzj/templates/torrents.art +0 -0
  9661. /package/lib/{v2/agirls → routes/caai}/templates/description.art +0 -0
  9662. /package/lib/{v2 → routes}/caareviews/templates/utils.art +0 -0
  9663. /package/lib/{v2 → routes}/cahkms/templates/description.art +0 -0
  9664. /package/lib/{v2 → routes}/cankaoxiaoxi/templates/description.art +0 -0
  9665. /package/lib/{v2 → routes}/cartoonmad/templates/chapter.art +0 -0
  9666. /package/lib/{v2 → routes}/ccf/templates/ccfcv/description.art +0 -0
  9667. /package/lib/{v2/caai/templates → routes/ccf/templates/tfbd}/description.art +0 -0
  9668. /package/lib/{v2 → routes}/cde/templates/xxgk/breakthroughCure.art +0 -0
  9669. /package/lib/{v2 → routes}/cde/templates/xxgk/cliniCal.art +0 -0
  9670. /package/lib/{v2 → routes}/cde/templates/xxgk/priorityApproval.art +0 -0
  9671. /package/lib/{v2 → routes}/cdzjryb/templates/projectList.art +0 -0
  9672. /package/lib/{v2 → routes}/cebbank/templates/allDes.art +0 -0
  9673. /package/lib/{v2 → routes}/cebbank/templates/historyDes.art +0 -0
  9674. /package/lib/{v2 → routes}/chaincatcher/templates/home.art +0 -0
  9675. /package/lib/{v2 → routes}/changba/templates/work_description.art +0 -0
  9676. /package/lib/{v2 → routes}/chaoxing/templates/description.art +0 -0
  9677. /package/lib/{v2 → routes}/chinadegrees/templates/description.art +0 -0
  9678. /package/lib/{v2 → routes}/cngal/templates/entry-description.art +0 -0
  9679. /package/lib/{v2 → routes}/cngal/templates/weekly-description.art +0 -0
  9680. /package/lib/{v2 → routes}/cnjxol/templates/description.art +0 -0
  9681. /package/lib/{v2 → routes}/cnki/templates/desc.art +0 -0
  9682. /package/lib/{v2 → routes}/cntv/templates/column.art +0 -0
  9683. /package/lib/{v2 → routes}/codeforces/templates/contest.art +0 -0
  9684. /package/lib/{v2 → routes}/comicskingdom/templates/desc.art +0 -0
  9685. /package/lib/{v2 → routes}/creative-comic/templates/chapter.art +0 -0
  9686. /package/lib/{v2 → routes}/cztv/templates/daily.art +0 -0
  9687. /package/lib/{v2 → routes}/cztv/templates/zjxwlb.art +0 -0
  9688. /package/lib/{v2 → routes}/dcfever/templates/trading.art +0 -0
  9689. /package/lib/{v2 → routes}/dedao/templates/knowledge.art +0 -0
  9690. /package/lib/{v2 → routes}/dedao/templates/user.art +0 -0
  9691. /package/lib/{v2 → routes}/diershoubing/templates/news.art +0 -0
  9692. /package/lib/{v2 → routes}/discord/templates/message.art +0 -0
  9693. /package/lib/{v2 → routes}/dlsite/templates/description.art +0 -0
  9694. /package/lib/{v2 → routes}/douban/templates/explore.art +0 -0
  9695. /package/lib/{v2 → routes}/douban/templates/list_description.art +0 -0
  9696. /package/lib/{v2 → routes}/douban/templates/weekly_best.art +0 -0
  9697. /package/lib/{v2 → routes}/douyin/templates/cover.art +0 -0
  9698. /package/lib/{v2 → routes}/douyin/templates/desc.art +0 -0
  9699. /package/lib/{v2 → routes}/douyin/templates/iframe.art +0 -0
  9700. /package/lib/{v2 → routes}/douyu/templates/description.art +0 -0
  9701. /package/lib/{v2 → routes}/dushu/fuzhou/templates/message.art +0 -0
  9702. /package/lib/{v2 → routes}/e-hentai/templates/images.art +0 -0
  9703. /package/lib/{v2 → routes}/ecnu/templates/description.art +0 -0
  9704. /package/lib/{v2 → routes}/elsevier/templates/description.art +0 -0
  9705. /package/lib/{v2 → routes}/eprice/templates/image.art +0 -0
  9706. /package/lib/{v2 → routes}/fastbull/templates/description.art +0 -0
  9707. /package/lib/{v2 → routes}/feng/templates/deleted.art +0 -0
  9708. /package/lib/{v2 → routes}/feng/templates/img.art +0 -0
  9709. /package/lib/{v2 → routes}/ff14/templates/description.art +0 -0
  9710. /package/lib/{v2 → routes}/fffdm/templates/manhua.art +0 -0
  9711. /package/lib/{v2 → routes}/firefox/templates/description.art +0 -0
  9712. /package/lib/{v2 → routes}/fisher-spb/templates/image.art +0 -0
  9713. /package/lib/{v2 → routes}/fisher-spb/templates/video.art +0 -0
  9714. /package/lib/{v2 → routes}/focustaiwan/templates/article.art +0 -0
  9715. /package/lib/{v2 → routes}/fosshub/templates/description.art +0 -0
  9716. /package/lib/{v2 → routes}/furstar/templates/author.art +0 -0
  9717. /package/lib/{v2 → routes}/furstar/templates/description.art +0 -0
  9718. /package/lib/{v2 → routes}/gameapps/templates/description.art +0 -0
  9719. /package/lib/{v2 → routes}/gcores/templates/content.art +0 -0
  9720. /package/lib/{v2 → routes}/gelonghui/templates/live.art +0 -0
  9721. /package/lib/{v2 → routes}/geocaching/templates/blogs.art +0 -0
  9722. /package/lib/{v2 → routes}/gettr/templates/post.art +0 -0
  9723. /package/lib/{v2 → routes}/github/templates/comments-description.art +0 -0
  9724. /package/lib/{v2 → routes}/github/templates/trending-description.art +0 -0
  9725. /package/lib/{v2 → routes}/gitpod/templates/description.art +0 -0
  9726. /package/lib/{v2 → routes}/google/templates/fonts.art +0 -0
  9727. /package/lib/{v2 → routes}/google/templates/news.art +0 -0
  9728. /package/lib/{v2 → routes}/gov/cmse/templates/description.art +0 -0
  9729. /package/lib/{v2 → routes}/gov/csrc/templates/attachment.art +0 -0
  9730. /package/lib/{v2 → routes}/gov/general/templates/zcjdpt.art +0 -0
  9731. /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/sncsyjxh.art +0 -0
  9732. /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/tfxtq.art +0 -0
  9733. /package/lib/{v2/gov/shanghai → routes/gov/sh}/rsj/templates/ksxm.art +0 -0
  9734. /package/lib/{v2 → routes}/gov/sichuan/deyang/templates/govPublicInfo.art +0 -0
  9735. /package/lib/{v2 → routes}/gov/sichuan/deyang/templates/mztoday.art +0 -0
  9736. /package/lib/{v2 → routes}/gov/stats/templates/description.art +0 -0
  9737. /package/lib/{v2 → routes}/guduodata/templates/daily.art +0 -0
  9738. /package/lib/{v2 → routes}/gumroad/templates/products.art +0 -0
  9739. /package/lib/{v2/gz-cmc → routes/gzdaily}/templates/description.art +0 -0
  9740. /package/lib/{v2 → routes}/hafu/templates/hafu.art +0 -0
  9741. /package/lib/{v2 → routes}/hashnode/templates/description.art +0 -0
  9742. /package/lib/{v2 → routes}/hellogithub/templates/description.art +0 -0
  9743. /package/lib/{v2 → routes}/hellogithub/templates/report.art +0 -0
  9744. /package/lib/{v2 → routes}/hellogithub/templates/volume.art +0 -0
  9745. /package/lib/{v2 → routes}/hk01/templates/description.art +0 -0
  9746. /package/lib/{v2 → routes}/hkej/templates/articleImg.art +0 -0
  9747. /package/lib/{v2 → routes}/hkej/templates/description.art +0 -0
  9748. /package/lib/{v2 → routes}/houxu/templates/events.art +0 -0
  9749. /package/lib/{v2 → routes}/houxu/templates/lives.art +0 -0
  9750. /package/lib/{v2 → routes}/houxu/templates/memory.art +0 -0
  9751. /package/lib/{v2/ccf/templates/tfbd → routes/hrbust/templates}/description.art +0 -0
  9752. /package/lib/{v2 → routes}/hupu/templates/description.art +0 -0
  9753. /package/lib/{v2 → routes}/hupu/templates/match.art +0 -0
  9754. /package/lib/{v2 → routes}/ifeng/templates/description.art +0 -0
  9755. /package/lib/{v2 → routes}/ikea/templates/cn/product.art +0 -0
  9756. /package/lib/{v2 → routes}/ikea/templates/new.art +0 -0
  9757. /package/lib/{v2 → routes}/ikea/templates/offer.art +0 -0
  9758. /package/lib/{v2 → routes}/informs/templates/content.art +0 -0
  9759. /package/lib/{v2 → routes}/iqiyi/templates/album.art +0 -0
  9760. /package/lib/{v2 → routes}/iresearch/templates/report.art +0 -0
  9761. /package/lib/{v2 → routes}/iresearch/templates/weekly.art +0 -0
  9762. /package/lib/{v2 → routes}/itch/templates/description.art +0 -0
  9763. /package/lib/{v2 → routes}/ixigua/templates/userVideo.art +0 -0
  9764. /package/lib/{v2 → routes}/jandan/templates/description.art +0 -0
  9765. /package/lib/{v2 → routes}/javbus/templates/description.art +0 -0
  9766. /package/lib/{v2 → routes}/javlibrary/templates/description.art +0 -0
  9767. /package/lib/{v2 → routes}/jd/templates/description.art +0 -0
  9768. /package/lib/{v2 → routes}/jin10/templates/description.art +0 -0
  9769. /package/lib/{v2 → routes}/jump/templates/discount.art +0 -0
  9770. /package/lib/{v2 → routes}/kcna/templates/news.art +0 -0
  9771. /package/lib/{v2 → routes}/keep/templates/user.art +0 -0
  9772. /package/lib/{v2 → routes}/kemono/templates/discord.art +0 -0
  9773. /package/lib/{v2 → routes}/kyodonews/templates/article.art +0 -0
  9774. /package/lib/{v2 → routes}/lang/templates/room.art +0 -0
  9775. /package/lib/{v2 → routes}/lanqiao/templates/courseDesc.art +0 -0
  9776. /package/lib/{v2 → routes}/learnku/templates/topic.art +0 -0
  9777. /package/lib/{v2 → routes}/leetcode/templates/question-description.art +0 -0
  9778. /package/lib/{v2 → routes}/lfsyd/templates/card.art +0 -0
  9779. /package/lib/{v2 → routes}/lfsyd/templates/video.art +0 -0
  9780. /package/lib/{v2 → routes}/linkedin/templates/cn/posting.art +0 -0
  9781. /package/lib/{v2 → routes}/lkong/templates/content.art +0 -0
  9782. /package/lib/{v2 → routes}/lkong/templates/quote.art +0 -0
  9783. /package/lib/{v2 → routes}/logonews/templates/description.art +0 -0
  9784. /package/lib/{v2 → routes}/loltw/templates/news.art +0 -0
  9785. /package/lib/{v2 → routes}/lovelive-anime/templates/description.art +0 -0
  9786. /package/lib/{v2 → routes}/lovelive-anime/templates/scheduleDesc.art +0 -0
  9787. /package/lib/{v2 → routes}/lvv2/templates/outlink.art +0 -0
  9788. /package/lib/{v2 → routes}/lxixsxa/templates/disco.art +0 -0
  9789. /package/lib/{v2 → routes}/lxixsxa/templates/info.art +0 -0
  9790. /package/lib/{v2 → routes}/magazinelib/templates/magazine-description.art +0 -0
  9791. /package/lib/{v2 → routes}/manhuagui/templates/manga.art +0 -0
  9792. /package/lib/{v2 → routes}/meteor/templates/desc.art +0 -0
  9793. /package/lib/{v2 → routes}/mihoyo/templates/description.art +0 -0
  9794. /package/lib/{v2/pmthinking/templates/description.art → routes/mihoyo/templates/ys.art} +0 -0
  9795. /package/lib/{v2 → routes}/mindmeister/templates/image.art +0 -0
  9796. /package/lib/{v2 → routes}/mingpao/templates/description.art +0 -0
  9797. /package/lib/{v2 → routes}/misskey/templates/note.art +0 -0
  9798. /package/lib/{v2 → routes}/modelscope/templates/community.art +0 -0
  9799. /package/lib/{v2 → routes}/modelscope/templates/desc.art +0 -0
  9800. /package/lib/{v2 → routes}/myfigurecollection/templates/activity.art +0 -0
  9801. /package/lib/{v2 → routes}/myfigurecollection/templates/description.art +0 -0
  9802. /package/lib/{v2 → routes}/natgeo/templates/dailyPhoto.art +0 -0
  9803. /package/lib/{v2 → routes}/nautil/templates/description.art +0 -0
  9804. /package/lib/{v2 → routes}/nber/template/description.art +0 -0
  9805. /package/lib/{v2 → routes}/nhentai/templates/desc.art +0 -0
  9806. /package/lib/{v2 → routes}/nhk/templates/news.art +0 -0
  9807. /package/lib/{v2 → routes}/nikkei/templates/news.art +0 -0
  9808. /package/lib/{v2 → routes}/nintendo/templates/direct.art +0 -0
  9809. /package/lib/{v2 → routes}/nintendo/templates/eshop_cn.art +0 -0
  9810. /package/lib/{v2 → routes}/nintendo/templates/eshop_hk.art +0 -0
  9811. /package/lib/{v2 → routes}/nintendo/templates/eshop_jp.art +0 -0
  9812. /package/lib/{v2 → routes}/nintendo/templates/eshop_us.art +0 -0
  9813. /package/lib/{v2 → routes}/nmtv/templates/description.art +0 -0
  9814. /package/lib/{v2 → routes}/npm/templates/package.art +0 -0
  9815. /package/lib/{v2 → routes}/nytimes/templates/image.art +0 -0
  9816. /package/lib/{v2 → routes}/oceanengine/templates/content.art +0 -0
  9817. /package/lib/{v2/ycwb → routes/oeeee}/templates/description.art +0 -0
  9818. /package/lib/{v2 → routes}/oncc/templates/article.art +0 -0
  9819. /package/lib/{v2 → routes}/oncc/templates/money18.art +0 -0
  9820. /package/lib/{v2 → routes}/openai/templates/article.art +0 -0
  9821. /package/lib/{v2 → routes}/orcid/templates/description.art +0 -0
  9822. /package/lib/{v2 → routes}/oreno3d/templates/description.art +0 -0
  9823. /package/lib/{v2 → routes}/oshwhub/templates/description.art +0 -0
  9824. /package/lib/{v2 → routes}/oup/templates/article.art +0 -0
  9825. /package/lib/{v2 → routes}/patagonia/templates/product-description.art +0 -0
  9826. /package/lib/{v2 → routes}/penguin-random-house/templates/articleHeader.art +0 -0
  9827. /package/lib/{v2 → routes}/penguin-random-house/templates/book.art +0 -0
  9828. /package/lib/{v2 → routes}/picuki/templates/post.art +0 -0
  9829. /package/lib/{v2 → routes}/pixabay/templates/img.art +0 -0
  9830. /package/lib/{v2 → routes}/pnas/templates/article.art +0 -0
  9831. /package/lib/{v2 → routes}/producthunt/templates/descImg.art +0 -0
  9832. /package/lib/{v2 → routes}/pts/templates/description.art +0 -0
  9833. /package/lib/{v2 → routes}/pts/templates/live.art +0 -0
  9834. /package/lib/{v2 → routes}/pubmed/templates/description.art +0 -0
  9835. /package/lib/{v2 → routes}/qidian/templates/description.art +0 -0
  9836. /package/lib/{v2 → routes}/qoo-app/templates/comment.art +0 -0
  9837. /package/lib/{v2 → routes}/qoo-app/templates/note.art +0 -0
  9838. /package/lib/{v2 → routes}/qq/ac/templates/description.art +0 -0
  9839. /package/lib/{v2 → routes}/qq/templates/article.art +0 -0
  9840. /package/lib/{v2 → routes}/qweather/templates/now.art +0 -0
  9841. /package/lib/{v2 → routes}/radio/templates/description.art +0 -0
  9842. /package/lib/{v2 → routes}/saraba1st/templates/digest.art +0 -0
  9843. /package/lib/{v2 → routes}/science/templates/article.art +0 -0
  9844. /package/lib/{v2 → routes}/science/templates/cover.art +0 -0
  9845. /package/lib/{v2 → routes}/sctv/templates/description.art +0 -0
  9846. /package/lib/{v2 → routes}/sensortower/templates/description.art +0 -0
  9847. /package/lib/{v2 → routes}/shiep/templates/description.art +0 -0
  9848. /package/lib/{v2 → routes}/shmtu/templates/portal.art +0 -0
  9849. /package/lib/{v2 → routes}/simpleinfo/templates/description.art +0 -0
  9850. /package/lib/{v2 → routes}/sinchew/templates/images.art +0 -0
  9851. /package/lib/{v2 → routes}/snowpeak/templates/new-arrivals.art +0 -0
  9852. /package/lib/{v2 → routes}/sony/templates/software-description.art +0 -0
  9853. /package/lib/{v2 → routes}/southcn/templates/description.art +0 -0
  9854. /package/lib/{v2 → routes}/sse/templates/inquire.art +0 -0
  9855. /package/lib/{v2 → routes}/sse/templates/renewal.art +0 -0
  9856. /package/lib/{v2 → routes}/ssm/templates/news.art +0 -0
  9857. /package/lib/{v2 → routes}/stdaily/templates/description.art +0 -0
  9858. /package/lib/{v2 → routes}/swjtu/templates/job_desc.art +0 -0
  9859. /package/lib/{v2 → routes}/swjtu/templates/job_detail.art +0 -0
  9860. /package/lib/{v2 → routes}/szse/templates/description.art +0 -0
  9861. /package/lib/{v2 → routes}/szse/templates/inquire.art +0 -0
  9862. /package/lib/{v2 → routes}/taobao/templates/zhongchou.art +0 -0
  9863. /package/lib/{v2 → routes}/taptap/templates/imagePost.art +0 -0
  9864. /package/lib/{v2 → routes}/taptap/templates/videoPost.art +0 -0
  9865. /package/lib/{v2 → routes}/telegram/templates/video.art +0 -0
  9866. /package/lib/{v2 → routes}/tencent/templates/coronavirus/chinaTotal.art +0 -0
  9867. /package/lib/{v2 → routes}/tencent/templates/coronavirus/data.art +0 -0
  9868. /package/lib/{v2 → routes}/theatlantic/templates/article-description.art +0 -0
  9869. /package/lib/{v2 → routes}/themoviedb/templates/description.art +0 -0
  9870. /package/lib/{v2 → routes}/thenewslens/templates/description.art +0 -0
  9871. /package/lib/{v2 → routes}/thepaper/templates/factpaper.art +0 -0
  9872. /package/lib/{v2 → routes}/thepaper/templates/image_detail.art +0 -0
  9873. /package/lib/{v2 → routes}/thepaper/templates/video_detail.art +0 -0
  9874. /package/lib/{v2 → routes}/trending/templates/content.art +0 -0
  9875. /package/lib/{v2 → routes}/tribalfootball/templates/plus_header.art +0 -0
  9876. /package/lib/{v2 → routes}/tvb/templates/description.art +0 -0
  9877. /package/lib/{v2 → routes}/txrjy/templates/fornumtopic.art +0 -0
  9878. /package/lib/{v2 → routes}/udn/templates/figure.art +0 -0
  9879. /package/lib/{v2 → routes}/uptimerobot/templates/rss.art +0 -0
  9880. /package/lib/{v2 → routes}/urbandictionary/templates/definition.art +0 -0
  9881. /package/lib/{v2 → routes}/vcb-s/templates/post.art +0 -0
  9882. /package/lib/{v2 → routes}/vimeo/templates/description.art +0 -0
  9883. /package/lib/{v2 → routes}/wallpaperhub/templates/description.art +0 -0
  9884. /package/lib/{v2 → routes}/wallstreetcn/templates/description.art +0 -0
  9885. /package/lib/{v2 → routes}/warthunder/templates/description.art +0 -0
  9886. /package/lib/{v2/gzh360 → routes/wechat}/_README +0 -0
  9887. /package/lib/{v2 → routes}/wise/templates/description.art +0 -0
  9888. /package/lib/{v2 → routes}/wsj/templates/article-description.art +0 -0
  9889. /package/lib/{v2 → routes}/xiaomiyoupin/templates/goods.art +0 -0
  9890. /package/lib/{v2 → routes}/xjtu/templates/attachments.art +0 -0
  9891. /package/lib/{v2 → routes}/xjtu/templates/std.art +0 -0
  9892. /package/lib/{v2/gzdaily → routes/xkb}/templates/description.art +0 -0
  9893. /package/lib/{v2 → routes}/xueqiu/templates/comments_description.art +0 -0
  9894. /package/lib/{v2 → routes}/xys/templates/desc.art +0 -0
  9895. /package/lib/{v2 → routes}/xyzrank/templates/description.art +0 -0
  9896. /package/lib/{v2 → routes}/ymgal/templates/description.art +0 -0
  9897. /package/lib/{v2 → routes}/yoasobi-music/templates/info.art +0 -0
  9898. /package/lib/{v2 → routes}/yoasobi-music/templates/live.art +0 -0
  9899. /package/lib/{v2 → routes}/yoasobi-music/templates/media.art +0 -0
  9900. /package/lib/{v2 → routes}/youku/templates/channel.art +0 -0
  9901. /package/lib/{v2 → routes}/youtube/templates/community.art +0 -0
  9902. /package/lib/{v2 → routes}/youtube/templates/description.art +0 -0
  9903. /package/lib/{v2 → routes}/yxdzqb/templates/description.art +0 -0
  9904. /package/lib/{v2 → routes}/zagg/templates/new-arrivals.art +0 -0
  9905. /package/lib/{v2 → routes}/zaobao/templates/zaobao.art +0 -0
  9906. /package/lib/{v2 → routes}/zcool/templates/description.art +0 -0
  9907. /package/lib/{v2 → routes}/zcool/templates/work.art +0 -0
  9908. /package/lib/{v2 → routes}/zhitongcaijing/templates/description.art +0 -0
  9909. /package/lib/{v2 → routes}/zhiy/templates/post.art +0 -0
  9910. /package/lib/{v2 → routes}/zuvio/templates/img.art +0 -0
  9911. /package/lib/{v2 → routes}/zuvio/templates/link.art +0 -0
  9912. /package/lib/{v2 → routes}/zuvio/templates/ref_article.art +0 -0
  9913. /package/lib/{v2 → routes}/zuvio/templates/rss.art +0 -0
  9914. /package/lib/{v2 → routes}/zuvio/templates/youtube.art +0 -0
  9915. /package/lib/{v2 → routes}/zyshow/templates/description.art +0 -0
  9916. /package/lib/{routes → routes-deprecated}/199it/index.js +0 -0
  9917. /package/lib/{routes → routes-deprecated}/aflcio/blog.js +0 -0
  9918. /package/lib/{routes → routes-deprecated}/algocasts/all.js +0 -0
  9919. /package/lib/{routes → routes-deprecated}/allpoetry/order.js +0 -0
  9920. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/fresh.js +0 -0
  9921. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/top.js +0 -0
  9922. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/updated.js +0 -0
  9923. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/utils.js +0 -0
  9924. /package/lib/{routes → routes-deprecated}/anime1/anime.js +0 -0
  9925. /package/lib/{routes → routes-deprecated}/anime1/search.js +0 -0
  9926. /package/lib/{routes → routes-deprecated}/anytxt/release-notes.js +0 -0
  9927. /package/lib/{routes → routes-deprecated}/aqicn/index.js +0 -0
  9928. /package/lib/{routes → routes-deprecated}/arxiv/query.js +0 -0
  9929. /package/lib/{routes → routes-deprecated}/asml/press-releases.js +0 -0
  9930. /package/lib/{routes → routes-deprecated}/av01/actor.js +0 -0
  9931. /package/lib/{routes → routes-deprecated}/av01/tag.js +0 -0
  9932. /package/lib/{routes → routes-deprecated}/bahamut/creation.js +0 -0
  9933. /package/lib/{routes → routes-deprecated}/banyuetan/byt.js +0 -0
  9934. /package/lib/{routes/blogs/jingwei_link.js → routes-deprecated/blogs/jingwei-link.js} +0 -0
  9935. /package/lib/{routes → routes-deprecated}/blogs/leemeng.js +0 -0
  9936. /package/lib/{routes → routes-deprecated}/blogs/wang54.js +0 -0
  9937. /package/lib/{routes → routes-deprecated}/bookwalkertw/news.js +0 -0
  9938. /package/lib/{routes → routes-deprecated}/bsblog123/index.js +0 -0
  9939. /package/lib/{routes → routes-deprecated}/cbndata/information.js +0 -0
  9940. /package/lib/{routes → routes-deprecated}/centbrowser/history.js +0 -0
  9941. /package/lib/{routes → routes-deprecated}/checkra1n/releases.js +0 -0
  9942. /package/lib/{routes → routes-deprecated}/chinadaily/english.js +0 -0
  9943. /package/lib/{routes → routes-deprecated}/chinafile/index.js +0 -0
  9944. /package/lib/{routes → routes-deprecated}/chouti/index.js +0 -0
  9945. /package/lib/{routes → routes-deprecated}/chuapp/index.js +0 -0
  9946. /package/lib/{routes → routes-deprecated}/chuhaibiji/index.js +0 -0
  9947. /package/lib/{routes → routes-deprecated}/clb/commentary.js +0 -0
  9948. /package/lib/{routes → routes-deprecated}/cninfo/announcement.js +0 -0
  9949. /package/lib/{routes → routes-deprecated}/coolbuy/newest.js +0 -0
  9950. /package/lib/{routes → routes-deprecated}/cowlevel/element.js +0 -0
  9951. /package/lib/{routes → routes-deprecated}/creaders/headline.js +0 -0
  9952. /package/lib/{routes → routes-deprecated}/ctei/news.js +0 -0
  9953. /package/lib/{routes → routes-deprecated}/ctfhub/search.js +0 -0
  9954. /package/lib/{routes → routes-deprecated}/ctfhub/upcoming.js +0 -0
  9955. /package/lib/{routes → routes-deprecated}/dailyart/index.js +0 -0
  9956. /package/lib/{routes → routes-deprecated}/daodu/index.js +0 -0
  9957. /package/lib/{routes → routes-deprecated}/dbaplus/activity.js +0 -0
  9958. /package/lib/{routes → routes-deprecated}/dbaplus/tab.js +0 -0
  9959. /package/lib/{routes → routes-deprecated}/dcinside/board.js +0 -0
  9960. /package/lib/{routes → routes-deprecated}/dekudeals/index.js +0 -0
  9961. /package/lib/{routes → routes-deprecated}/deloitte/industries.js +0 -0
  9962. /package/lib/{routes/dgtle/whale_rank.js → routes-deprecated/dgtle/whale-rank.js} +0 -0
  9963. /package/lib/{routes → routes-deprecated}/dgtle/whale.js +0 -0
  9964. /package/lib/{routes → routes-deprecated}/ditto/changes.js +0 -0
  9965. /package/lib/{routes → routes-deprecated}/dw/index.js +0 -0
  9966. /package/lib/{routes → routes-deprecated}/dykszx/news.js +0 -0
  9967. /package/lib/{routes → routes-deprecated}/dytt/index.js +0 -0
  9968. /package/lib/{routes → routes-deprecated}/ebb/index.js +0 -0
  9969. /package/lib/{routes → routes-deprecated}/etoland/board.js +0 -0
  9970. /package/lib/{routes → routes-deprecated}/europapress/index.js +0 -0
  9971. /package/lib/{routes → routes-deprecated}/eztv/imdb.js +0 -0
  9972. /package/lib/{routes → routes-deprecated}/fanfou/trends.js +0 -0
  9973. /package/lib/{routes → routes-deprecated}/fgo/news.js +0 -0
  9974. /package/lib/{routes → routes-deprecated}/fnal/news.js +0 -0
  9975. /package/lib/{routes → routes-deprecated}/furaffinity/browse.js +0 -0
  9976. /package/lib/{routes → routes-deprecated}/furaffinity/commissions.js +0 -0
  9977. /package/lib/{routes → routes-deprecated}/furaffinity/favorites.js +0 -0
  9978. /package/lib/{routes → routes-deprecated}/furaffinity/gallery.js +0 -0
  9979. /package/lib/{routes/furaffinity/journal_comments.js → routes-deprecated/furaffinity/journal-comments.js} +0 -0
  9980. /package/lib/{routes → routes-deprecated}/furaffinity/journals.js +0 -0
  9981. /package/lib/{routes → routes-deprecated}/furaffinity/scraps.js +0 -0
  9982. /package/lib/{routes → routes-deprecated}/furaffinity/search.js +0 -0
  9983. /package/lib/{routes → routes-deprecated}/furaffinity/shouts.js +0 -0
  9984. /package/lib/{routes/furaffinity/submission_comments.js → routes-deprecated/furaffinity/submission-comments.js} +0 -0
  9985. /package/lib/{routes → routes-deprecated}/furaffinity/watchers.js +0 -0
  9986. /package/lib/{routes → routes-deprecated}/furaffinity/watching.js +0 -0
  9987. /package/lib/{routes → routes-deprecated}/gab/user.js +0 -0
  9988. /package/lib/{routes → routes-deprecated}/game4399/forum.js +0 -0
  9989. /package/lib/{routes → routes-deprecated}/gameres/hot.js +0 -0
  9990. /package/lib/{routes → routes-deprecated}/gameres/list.js +0 -0
  9991. /package/lib/{routes → routes-deprecated}/gameres/utils.js +0 -0
  9992. /package/lib/{routes → routes-deprecated}/gamersky/news.js +0 -0
  9993. /package/lib/{routes → routes-deprecated}/gaoqing/latest.js +0 -0
  9994. /package/lib/{routes → routes-deprecated}/geekpark/breakingnews.js +0 -0
  9995. /package/lib/{routes → routes-deprecated}/geektime/column.js +0 -0
  9996. /package/lib/{routes → routes-deprecated}/gitlab/common.js +0 -0
  9997. /package/lib/{routes → routes-deprecated}/gnn/gnn.js +0 -0
  9998. /package/lib/{routes → routes-deprecated}/gov/caict/bps.js +0 -0
  9999. /package/lib/{routes → routes-deprecated}/gov/caict/caictgd.js +0 -0
  10000. /package/lib/{routes → routes-deprecated}/gov/caict/qwsj.js +0 -0
  10001. /package/lib/{routes → routes-deprecated}/gov/chongqing/ljxq/dwgk.js +0 -0
  10002. /package/lib/{routes → routes-deprecated}/gov/city/index.js +0 -0
  10003. /package/lib/{routes → routes-deprecated}/gov/province/index.js +0 -0
  10004. /package/lib/{routes → routes-deprecated}/gov/shanxi/rst.js +0 -0
  10005. /package/lib/{routes → routes-deprecated}/gov/shuju/index.js +0 -0
  10006. /package/lib/{routes → routes-deprecated}/gov/statecouncil/briefing.js +0 -0
  10007. /package/lib/{routes → routes-deprecated}/grandchallenge/challenges.js +0 -0
  10008. /package/lib/{routes → routes-deprecated}/grandchallenge/user.js +0 -0
  10009. /package/lib/{routes → routes-deprecated}/guardian/utils.js +0 -0
  10010. /package/lib/{routes → routes-deprecated}/gushiwen/recommend.js +0 -0
  10011. /package/lib/{routes → routes-deprecated}/hainanu/ssszs.js +0 -0
  10012. /package/lib/{routes → routes-deprecated}/hanime/video.js +0 -0
  10013. /package/lib/{routes → routes-deprecated}/hatena/anonymous_diary/archive.js +0 -0
  10014. /package/lib/{routes → routes-deprecated}/hentai-cosplays/porn-images-xxx.js +0 -0
  10015. /package/lib/{routes → routes-deprecated}/hentaimama/videos.js +0 -0
  10016. /package/lib/{routes → routes-deprecated}/hko/weather.js +0 -0
  10017. /package/lib/{routes → routes-deprecated}/hudongba/index.js +0 -0
  10018. /package/lib/{routes → routes-deprecated}/ichunqiu/index.js +0 -0
  10019. /package/lib/{routes → routes-deprecated}/iciba/index.js +0 -0
  10020. /package/lib/{routes → routes-deprecated}/icity/index.js +0 -0
  10021. /package/lib/{routes → routes-deprecated}/ieee/author.js +0 -0
  10022. /package/lib/{routes/interesting-sky/astronomical_events.js → routes-deprecated/interesting-sky/astronomical-events.js} +0 -0
  10023. /package/lib/{routes → routes-deprecated}/interesting-sky/index.js +0 -0
  10024. /package/lib/{routes → routes-deprecated}/interesting-sky/recent-interesting.js +0 -0
  10025. /package/lib/{routes → routes-deprecated}/invisionapp/inside-design.js +0 -0
  10026. /package/lib/{routes → routes-deprecated}/iplay/home.js +0 -0
  10027. /package/lib/{routes → routes-deprecated}/itslaw/judgements.js +0 -0
  10028. /package/lib/{routes → routes-deprecated}/kaoyan/kaoyan.js +0 -0
  10029. /package/lib/{routes → routes-deprecated}/kchuhai/index.js +0 -0
  10030. /package/lib/{routes → routes-deprecated}/kenshin/index.js +0 -0
  10031. /package/lib/{routes → routes-deprecated}/keyakizaka46/blog.js +0 -0
  10032. /package/lib/{routes → routes-deprecated}/keyakizaka46/news.js +0 -0
  10033. /package/lib/{routes → routes-deprecated}/kingarthur/index.js +0 -0
  10034. /package/lib/{routes/konachan/post_popular_recent.js → routes-deprecated/konachan/post-popular-recent.js} +0 -0
  10035. /package/lib/{routes → routes-deprecated}/kongfz/people.js +0 -0
  10036. /package/lib/{routes → routes-deprecated}/kotaku/story.js +0 -0
  10037. /package/lib/{routes → routes-deprecated}/lagou/jobs.js +0 -0
  10038. /package/lib/{routes → routes-deprecated}/laosiji/hot.js +0 -0
  10039. /package/lib/{routes → routes-deprecated}/latexstudio/home.js +0 -0
  10040. /package/lib/{routes → routes-deprecated}/letterboxd/followingdiary.js +0 -0
  10041. /package/lib/{routes → routes-deprecated}/letterboxd/userdiary.js +0 -0
  10042. /package/lib/{routes → routes-deprecated}/lizhi/user.js +0 -0
  10043. /package/lib/{routes → routes-deprecated}/lolapp/recommend.js +0 -0
  10044. /package/lib/{routes → routes-deprecated}/ltaaa/index.js +0 -0
  10045. /package/lib/{routes → routes-deprecated}/mafengwo/ziyouxing.js +0 -0
  10046. /package/lib/{routes → routes-deprecated}/mamibuy/index.js +0 -0
  10047. /package/lib/{routes → routes-deprecated}/manhuadb/comics.js +0 -0
  10048. /package/lib/{routes → routes-deprecated}/manictime/releases.js +0 -0
  10049. /package/lib/{routes → routes-deprecated}/maoyan/hot.js +0 -0
  10050. /package/lib/{routes → routes-deprecated}/maoyan/upcoming.js +0 -0
  10051. /package/lib/{routes → routes-deprecated}/marginnote/tag.js +0 -0
  10052. /package/lib/{routes → routes-deprecated}/mathpix/blog.js +0 -0
  10053. /package/lib/{routes → routes-deprecated}/mathunion/fields-medal.js +0 -0
  10054. /package/lib/{routes → routes-deprecated}/mcbbs/forum.js +0 -0
  10055. /package/lib/{routes → routes-deprecated}/mcbbs/post.js +0 -0
  10056. /package/lib/{routes → routes-deprecated}/mcbbs/utils.js +0 -0
  10057. /package/lib/{routes → routes-deprecated}/meipai/user.js +0 -0
  10058. /package/lib/{routes → routes-deprecated}/meipai/utils.js +0 -0
  10059. /package/lib/{routes → routes-deprecated}/melon/chart.js +0 -0
  10060. /package/lib/{routes → routes-deprecated}/micmicidol/latest.js +0 -0
  10061. /package/lib/{routes → routes-deprecated}/micmicidol/parse.js +0 -0
  10062. /package/lib/{routes → routes-deprecated}/micmicidol/search.js +0 -0
  10063. /package/lib/{routes → routes-deprecated}/mofish/index.js +0 -0
  10064. /package/lib/{routes → routes-deprecated}/mofish/templates/description.art +0 -0
  10065. /package/lib/{routes → routes-deprecated}/monotype/article.js +0 -0
  10066. /package/lib/{routes → routes-deprecated}/mubu/explore.js +0 -0
  10067. /package/lib/{routes → routes-deprecated}/muchong/index.js +0 -0
  10068. /package/lib/{routes → routes-deprecated}/nace/blog.js +0 -0
  10069. /package/lib/{routes → routes-deprecated}/navisec/index.js +0 -0
  10070. /package/lib/{routes → routes-deprecated}/nosetime/comment.js +0 -0
  10071. /package/lib/{routes → routes-deprecated}/nosetime/home.js +0 -0
  10072. /package/lib/{routes → routes-deprecated}/now/rank.js +0 -0
  10073. /package/lib/{routes → routes-deprecated}/nvidia/webdriverupdate.js +0 -0
  10074. /package/lib/{routes → routes-deprecated}/nwpu/index.js +0 -0
  10075. /package/lib/{routes → routes-deprecated}/ofweek/news.js +0 -0
  10076. /package/lib/{routes → routes-deprecated}/onejav/one.js +0 -0
  10077. /package/lib/{routes → routes-deprecated}/onenotegem/release.js +0 -0
  10078. /package/lib/{routes → routes-deprecated}/ornl/news.js +0 -0
  10079. /package/lib/{routes → routes-deprecated}/paidai/bbs.js +0 -0
  10080. /package/lib/{routes → routes-deprecated}/paidai/index.js +0 -0
  10081. /package/lib/{routes → routes-deprecated}/paidai/news.js +0 -0
  10082. /package/lib/{routes → routes-deprecated}/parcel/hermesuk.js +0 -0
  10083. /package/lib/{routes → routes-deprecated}/patchwork.kernel.org/cache.js +0 -0
  10084. /package/lib/{routes → routes-deprecated}/phrack/index.js +0 -0
  10085. /package/lib/{routes → routes-deprecated}/polimi/news.js +0 -0
  10086. /package/lib/{routes → routes-deprecated}/proletar/index.js +0 -0
  10087. /package/lib/{routes → routes-deprecated}/psnine/news.js +0 -0
  10088. /package/lib/{routes → routes-deprecated}/psnine/node.js +0 -0
  10089. /package/lib/{routes → routes-deprecated}/qnap/release-notes.js +0 -0
  10090. /package/lib/{routes → routes-deprecated}/qttabbar/change-log.js +0 -0
  10091. /package/lib/{routes → routes-deprecated}/queshu/book.js +0 -0
  10092. /package/lib/{routes → routes-deprecated}/queshu/sale.js +0 -0
  10093. /package/lib/{routes → routes-deprecated}/qzcea/index.js +0 -0
  10094. /package/lib/{routes → routes-deprecated}/rf/article.js +0 -0
  10095. /package/lib/{routes → routes-deprecated}/rmlt/idea.js +0 -0
  10096. /package/lib/{routes → routes-deprecated}/ruby-china/constants.js +0 -0
  10097. /package/lib/{routes → routes-deprecated}/ruby-china/jobs.js +0 -0
  10098. /package/lib/{routes → routes-deprecated}/ruby-china/topics.js +0 -0
  10099. /package/lib/{routes → routes-deprecated}/ruby-china/utils.js +0 -0
  10100. /package/lib/{routes → routes-deprecated}/samsungmembers/latest.js +0 -0
  10101. /package/lib/{routes → routes-deprecated}/secshi/index.js +0 -0
  10102. /package/lib/{routes → routes-deprecated}/security/pulses.js +0 -0
  10103. /package/lib/{routes → routes-deprecated}/semiconductors/latest-news.js +0 -0
  10104. /package/lib/{routes/sesame/release_notes.js → routes-deprecated/sesame/release-notes.js} +0 -0
  10105. /package/lib/{routes → routes-deprecated}/simonsfoundation/recommend.js +0 -0
  10106. /package/lib/{routes → routes-deprecated}/simpread/notice.js +0 -0
  10107. /package/lib/{routes → routes-deprecated}/siren/index.js +0 -0
  10108. /package/lib/{routes → routes-deprecated}/sketch/beta.js +0 -0
  10109. /package/lib/{routes → routes-deprecated}/soul/index.js +0 -0
  10110. /package/lib/{routes → routes-deprecated}/soundcloud/tracks.js +0 -0
  10111. /package/lib/{routes → routes-deprecated}/souyun/today.js +0 -0
  10112. /package/lib/{routes → routes-deprecated}/ssydt/article.js +0 -0
  10113. /package/lib/{routes → routes-deprecated}/steam/steamgifts/discussions.js +0 -0
  10114. /package/lib/{routes → routes-deprecated}/sznews/press.js +0 -0
  10115. /package/lib/{routes → routes-deprecated}/sznews/ranking.js +0 -0
  10116. /package/lib/{routes → routes-deprecated}/tanchinese/index.js +0 -0
  10117. /package/lib/{routes → routes-deprecated}/technologyreview/index.js +0 -0
  10118. /package/lib/{routes → routes-deprecated}/tencent/qcloud/mlvb/changelog.js +0 -0
  10119. /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/announce.js +0 -0
  10120. /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/question.js +0 -0
  10121. /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/pay/announce.js +0 -0
  10122. /package/lib/{routes → routes-deprecated}/testerhome/newest.js +0 -0
  10123. /package/lib/{routes → routes-deprecated}/thebrain/blog.js +0 -0
  10124. /package/lib/{routes → routes-deprecated}/thunderbird/release.js +0 -0
  10125. /package/lib/{routes → routes-deprecated}/tingdiantz/nanjing.js +0 -0
  10126. /package/lib/{routes → routes-deprecated}/tingshen/tingshen.js +0 -0
  10127. /package/lib/{routes → routes-deprecated}/titsguru/category.js +0 -0
  10128. /package/lib/{routes → routes-deprecated}/titsguru/daily.js +0 -0
  10129. /package/lib/{routes → routes-deprecated}/titsguru/home.js +0 -0
  10130. /package/lib/{routes → routes-deprecated}/topbook/overview.js +0 -0
  10131. /package/lib/{routes → routes-deprecated}/topbook/today.js +0 -0
  10132. /package/lib/{routes → routes-deprecated}/trakt/collection.js +0 -0
  10133. /package/lib/{routes → routes-deprecated}/ui-cn/user.js +0 -0
  10134. /package/lib/{routes → routes-deprecated}/uisdc/hangye.js +0 -0
  10135. /package/lib/{routes → routes-deprecated}/umass/amherst/csnews.js +0 -0
  10136. /package/lib/{routes → routes-deprecated}/umass/amherst/ecenews.js +0 -0
  10137. /package/lib/{routes → routes-deprecated}/umass/amherst/eceseminar.js +0 -0
  10138. /package/lib/{routes → routes-deprecated}/umass/amherst/ipoevents.js +0 -0
  10139. /package/lib/{routes → routes-deprecated}/umass/amherst/ipostories.js +0 -0
  10140. /package/lib/{routes → routes-deprecated}/un/scveto.js +0 -0
  10141. /package/lib/{routes → routes-deprecated}/universities/ahau/cs_news/index.js +0 -0
  10142. /package/lib/{routes → routes-deprecated}/universities/ahau/jwc/index.js +0 -0
  10143. /package/lib/{routes → routes-deprecated}/universities/ahau/main/index.js +0 -0
  10144. /package/lib/{routes → routes-deprecated}/universities/bwu/news.js +0 -0
  10145. /package/lib/{routes → routes-deprecated}/universities/cczu/jwc.js +0 -0
  10146. /package/lib/{routes → routes-deprecated}/universities/cczu/news.js +0 -0
  10147. /package/lib/{routes → routes-deprecated}/universities/cqu/news/jzyg.js +0 -0
  10148. /package/lib/{routes → routes-deprecated}/universities/cqust/jw.js +0 -0
  10149. /package/lib/{routes → routes-deprecated}/universities/cqust/lib.js +0 -0
  10150. /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-libnews.js +0 -0
  10151. /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-news.js +0 -0
  10152. /package/lib/{routes → routes-deprecated}/universities/cug/graduate.js +0 -0
  10153. /package/lib/{routes → routes-deprecated}/universities/cug/undergraduate.js +0 -0
  10154. /package/lib/{routes → routes-deprecated}/universities/cug/xgxy.js +0 -0
  10155. /package/lib/{routes → routes-deprecated}/universities/dgut/jwc.js +0 -0
  10156. /package/lib/{routes → routes-deprecated}/universities/dgut/xsc.js +0 -0
  10157. /package/lib/{routes → routes-deprecated}/universities/dlmu/grs/zsgz.js +0 -0
  10158. /package/lib/{routes → routes-deprecated}/universities/dpu/jiaowu/news.js +0 -0
  10159. /package/lib/{routes → routes-deprecated}/universities/dpu/wlfw/news.js +0 -0
  10160. /package/lib/{routes/universities/fzu/news_min.js → routes-deprecated/universities/fzu/news-min.js} +0 -0
  10161. /package/lib/{routes → routes-deprecated}/universities/fzu/news.js +0 -0
  10162. /package/lib/{routes → routes-deprecated}/universities/gdou/jwc/jwtz.js +0 -0
  10163. /package/lib/{routes → routes-deprecated}/universities/gzmtu/jwc/index.js +0 -0
  10164. /package/lib/{routes → routes-deprecated}/universities/gzmtu/tsg/index.js +0 -0
  10165. /package/lib/{routes → routes-deprecated}/universities/hbut/cs.js +0 -0
  10166. /package/lib/{routes → routes-deprecated}/universities/hbut/news.js +0 -0
  10167. /package/lib/{routes → routes-deprecated}/universities/henu/news.js +0 -0
  10168. /package/lib/{routes → routes-deprecated}/universities/hfut/tzgg.js +0 -0
  10169. /package/lib/{routes → routes-deprecated}/universities/hnust/art/index.js +0 -0
  10170. /package/lib/{routes → routes-deprecated}/universities/hnust/chem/index.js +0 -0
  10171. /package/lib/{routes → routes-deprecated}/universities/hnust/computer/index.js +0 -0
  10172. /package/lib/{routes → routes-deprecated}/universities/hnust/jwc/index.js +0 -0
  10173. /package/lib/{routes → routes-deprecated}/universities/hubu/news.js +0 -0
  10174. /package/lib/{routes → routes-deprecated}/universities/jgsu/jwc.js +0 -0
  10175. /package/lib/{routes → routes-deprecated}/universities/jlbtc/index.js +0 -0
  10176. /package/lib/{routes → routes-deprecated}/universities/jlbtc/jwc.js +0 -0
  10177. /package/lib/{routes → routes-deprecated}/universities/jlbtc/kyc.js +0 -0
  10178. /package/lib/{routes → routes-deprecated}/universities/jlu/oa.js +0 -0
  10179. /package/lib/{routes → routes-deprecated}/universities/jnu/xysx/index.js +0 -0
  10180. /package/lib/{routes → routes-deprecated}/universities/ju/jwc.js +0 -0
  10181. /package/lib/{routes → routes-deprecated}/universities/lyu/news/index.js +0 -0
  10182. /package/lib/{routes → routes-deprecated}/universities/mit/csail/news.js +0 -0
  10183. /package/lib/{routes → routes-deprecated}/universities/mit/ocw-top.js +0 -0
  10184. /package/lib/{routes → routes-deprecated}/universities/nchu/jwc.js +0 -0
  10185. /package/lib/{routes → routes-deprecated}/universities/nku/jwc/index.js +0 -0
  10186. /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/context.js +0 -0
  10187. /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/index.js +0 -0
  10188. /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/context.js +0 -0
  10189. /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/index.js +0 -0
  10190. /package/lib/{routes → routes-deprecated}/universities/scu/jwc.js +0 -0
  10191. /package/lib/{routes → routes-deprecated}/universities/scu/xg.js +0 -0
  10192. /package/lib/{routes → routes-deprecated}/universities/slu/csggxy.js +0 -0
  10193. /package/lib/{routes → routes-deprecated}/universities/slu/jwc.js +0 -0
  10194. /package/lib/{routes → routes-deprecated}/universities/slu/kjxy.js +0 -0
  10195. /package/lib/{routes → routes-deprecated}/universities/slu/tyyjkxy.js +0 -0
  10196. /package/lib/{routes → routes-deprecated}/universities/slu/tzgg.js +0 -0
  10197. /package/lib/{routes → routes-deprecated}/universities/slu/xsc.js +0 -0
  10198. /package/lib/{routes → routes-deprecated}/universities/thu/career.js +0 -0
  10199. /package/lib/{routes → routes-deprecated}/universities/wzbc/news.js +0 -0
  10200. /package/lib/{routes → routes-deprecated}/universities/xmu/aero.js +0 -0
  10201. /package/lib/{routes → routes-deprecated}/universities/xynu/zkb/index.js +0 -0
  10202. /package/lib/{routes → routes-deprecated}/universities/ynu/grs/qttz.js +0 -0
  10203. /package/lib/{routes → routes-deprecated}/universities/ynu/grs/zytz.js +0 -0
  10204. /package/lib/{routes → routes-deprecated}/universities/ynu/home/main.js +0 -0
  10205. /package/lib/{routes → routes-deprecated}/universities/ynu/jwc/zytz.js +0 -0
  10206. /package/lib/{routes → routes-deprecated}/universities/zjgsu/gsgg/scripts.js +0 -0
  10207. /package/lib/{routes → routes-deprecated}/universities/zjgsu/tzgg/scripts.js +0 -0
  10208. /package/lib/{routes → routes-deprecated}/universities/zjgsu/xszq/scripts.js +0 -0
  10209. /package/lib/{routes → routes-deprecated}/universities/zzuli/campus/index.js +0 -0
  10210. /package/lib/{routes → routes-deprecated}/universities/zzuli/yjsc/index.js +0 -0
  10211. /package/lib/{routes → routes-deprecated}/us/cia/foia-annual-report.js +0 -0
  10212. /package/lib/{routes → routes-deprecated}/us/treasury/press-releases.js +0 -0
  10213. /package/lib/{routes → routes-deprecated}/us/ustr/press-releases.js +0 -0
  10214. /package/lib/{routes → routes-deprecated}/vgn/index.js +0 -0
  10215. /package/lib/{routes → routes-deprecated}/vocus/user.js +0 -0
  10216. /package/lib/{routes → routes-deprecated}/vscode/marketplace.js +0 -0
  10217. /package/lib/{routes → routes-deprecated}/vulture/index.js +0 -0
  10218. /package/lib/{routes → routes-deprecated}/wainao/index.js +0 -0
  10219. /package/lib/{routes → routes-deprecated}/wegene/newest.js +0 -0
  10220. /package/lib/{routes → routes-deprecated}/wenxuecity/bbs.js +0 -0
  10221. /package/lib/{routes → routes-deprecated}/wenxuecity/blog.js +0 -0
  10222. /package/lib/{routes → routes-deprecated}/wenxuecity/hot.js +0 -0
  10223. /package/lib/{routes → routes-deprecated}/wenxuecity/news.js +0 -0
  10224. /package/lib/{routes → routes-deprecated}/wikipedia/mainland.js +0 -0
  10225. /package/lib/{routes → routes-deprecated}/worldhappiness/archive.js +0 -0
  10226. /package/lib/{routes → routes-deprecated}/worldhappiness/blog.js +0 -0
  10227. /package/lib/{routes → routes-deprecated}/x410/news.js +0 -0
  10228. /package/lib/{routes → routes-deprecated}/xclient/app.js +0 -0
  10229. /package/lib/{routes → routes-deprecated}/xiachufang/popular.js +0 -0
  10230. /package/lib/{routes → routes-deprecated}/xiachufang/user/cooked.js +0 -0
  10231. /package/lib/{routes → routes-deprecated}/xiachufang/user/created.js +0 -0
  10232. /package/lib/{routes → routes-deprecated}/xiaomieu/releases.js +0 -0
  10233. /package/lib/{routes → routes-deprecated}/xinwenlianbo/index.js +0 -0
  10234. /package/lib/{routes → routes-deprecated}/xmind/mindmap.js +0 -0
  10235. /package/lib/{routes/xuetangx/course_info.js → routes-deprecated/xuetangx/course-info.js} +0 -0
  10236. /package/lib/{routes → routes-deprecated}/yahoo-author/index.js +0 -0
  10237. /package/lib/{routes → routes-deprecated}/yidoutang/case.js +0 -0
  10238. /package/lib/{routes → routes-deprecated}/yidoutang/guide.js +0 -0
  10239. /package/lib/{routes → routes-deprecated}/yidoutang/mtest.js +0 -0
  10240. /package/lib/{routes → routes-deprecated}/youzan/goods.js +0 -0
  10241. /package/lib/{routes → routes-deprecated}/yuanliao/index.js +0 -0
  10242. /package/lib/{routes → routes-deprecated}/zhimap/index.js +0 -0
  10243. /package/lib/{routes → routes-deprecated}/zongheng/chapter.js +0 -0
package/lib/router.js CHANGED
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line n/no-extraneous-require
1
2
  const Router = require('@koa/router');
2
3
  const router = new Router();
3
4
 
@@ -16,309 +17,79 @@ const lazyloadRouteHandler = (routeHandlerPath) => (ctx) => {
16
17
 
17
18
  // Deprecated: DO NOT ADD ANY NEW ROUTES HERE
18
19
 
19
- // RSSHub migrated to v2
20
- // router.get('/rsshub/rss', lazyloadRouteHandler('./routes/rsshub/routes')); // 弃用
21
- // router.get('/rsshub/routes', lazyloadRouteHandler('./routes/rsshub/routes'));
22
- // router.get('/rsshub/sponsors', lazyloadRouteHandler('./routes/rsshub/sponsors'));
23
-
24
- // 1draw
25
- router.get('/1draw', lazyloadRouteHandler('./routes/1draw/index'));
26
-
27
- // quicker
28
- // router.get('/quicker/qa', lazyloadRouteHandler('./routes/quicker/qa.js'));
29
- // router.get('/quicker/update', lazyloadRouteHandler('./routes/quicker/update.js'));
30
- // router.get('/quicker/user/action/:uid/:person', lazyloadRouteHandler('./routes/quicker/person.js'));
31
- // router.get('/quicker/user/:uid/:person', lazyloadRouteHandler('./routes/quicker/person.js'));
32
-
33
20
  // Benedict Evans
34
21
  router.get('/benedictevans', lazyloadRouteHandler('./routes/benedictevans/recent.js'));
35
22
 
36
- // bangumi
37
- // router.get('/bangumi/calendar/today', lazyloadRouteHandler('./routes/bangumi/calendar/today'));
38
- // router.get('/bangumi/subject/:id/:type', lazyloadRouteHandler('./routes/bangumi/subject'));
39
- // router.get('/bangumi/person/:id', lazyloadRouteHandler('./routes/bangumi/person'));
40
- // router.get('/bangumi/topic/:id', lazyloadRouteHandler('./routes/bangumi/group/reply'));
41
- // router.get('/bangumi/group/:id', lazyloadRouteHandler('./routes/bangumi/group/topic'));
42
- // router.get('/bangumi/subject/:id', lazyloadRouteHandler('./routes/bangumi/subject'));
43
- // router.get('/bangumi/user/blog/:id', lazyloadRouteHandler('./routes/bangumi/user/blog'));
44
-
45
- // 報導者 migrated to v2
46
- // router.get('/twreporter/newest', lazyloadRouteHandler('./routes/twreporter/newest'));
47
- // router.get('/twreporter/photography', lazyloadRouteHandler('./routes/twreporter/photography'));
48
- // router.get('/twreporter/category/:cid', lazyloadRouteHandler('./routes/twreporter/category'));
49
-
50
- // 微博 migrated to v2
51
- // router.get('/weibo/user/:uid/:routeParams?', lazyloadRouteHandler('./routes/weibo/user'));
52
- // router.get('/weibo/keyword/:keyword/:routeParams?', lazyloadRouteHandler('./routes/weibo/keyword'));
53
- // router.get('/weibo/search/hot', lazyloadRouteHandler('./routes/weibo/search/hot'));
54
- // router.get('/weibo/super_index/:id/:type?/:routeParams?', lazyloadRouteHandler('./routes/weibo/super_index'));
55
- // router.get('/weibo/oasis/user/:userid', lazyloadRouteHandler('./routes/weibo/oasis/user'));
56
-
57
- // 贴吧 migrated to v2
58
- // router.get('/tieba/forum/:kw', lazyloadRouteHandler('./routes/tieba/forum'));
59
- // router.get('/tieba/forum/good/:kw/:cid?', lazyloadRouteHandler('./routes/tieba/forum'));
60
- // router.get('/tieba/post/:id', lazyloadRouteHandler('./routes/tieba/post'));
61
- // router.get('/tieba/post/lz/:id', lazyloadRouteHandler('./routes/tieba/post'));
62
- // router.get('/tieba/user/:uid', lazyloadRouteHandler('./routes/tieba/user'));
63
-
64
- // 网易云音乐
65
- // router.get('/ncm/playlist/:id', lazyloadRouteHandler('./routes/ncm/playlist'));
66
- // router.get('/ncm/user/playlist/:uid', lazyloadRouteHandler('./routes/ncm/userplaylist'));
67
- // router.get('/ncm/artist/:id', lazyloadRouteHandler('./routes/ncm/artist'));
68
- // router.get('/ncm/djradio/:id', lazyloadRouteHandler('./routes/ncm/djradio'));
69
- // router.get('/ncm/user/playrecords/:uid/:type?', lazyloadRouteHandler('./routes/ncm/userplayrecords'));
70
-
71
- // 掘金 migrated to v2
72
- // router.get('/juejin/category/:category', lazyloadRouteHandler('./routes/juejin/category'));
73
- // router.get('/juejin/tag/:tag', lazyloadRouteHandler('./routes/juejin/tag'));
74
- // router.get('/juejin/trending/:category/:type', lazyloadRouteHandler('./routes/juejin/trending'));
75
- // router.get('/juejin/books', lazyloadRouteHandler('./routes/juejin/books'));
76
- // router.get('/juejin/pins/:type?', lazyloadRouteHandler('./routes/juejin/pins'));
77
- // router.get('/juejin/posts/:id', lazyloadRouteHandler('./routes/juejin/posts'));
78
- // router.get('/juejin/news/:id', lazyloadRouteHandler('./routes/juejin/news'));
79
- // router.get('/juejin/collections/:userId', lazyloadRouteHandler('./routes/juejin/favorites'));
80
- // router.get('/juejin/collection/:collectionId', lazyloadRouteHandler('./routes/juejin/collection'));
81
- // router.get('/juejin/shares/:userId', lazyloadRouteHandler('./routes/juejin/shares'));
82
- // router.get('/juejin/column/:id', lazyloadRouteHandler('./routes/juejin/column'));
83
-
84
- // 自如
85
- router.get('/ziroom/room/:city/:iswhole/:room/:keyword', lazyloadRouteHandler('./routes/ziroom/room'));
86
-
87
23
  // 简书
88
- router.get('/jianshu/home', lazyloadRouteHandler('./routes/jianshu/home'));
89
- router.get('/jianshu/trending/:timeframe', lazyloadRouteHandler('./routes/jianshu/trending'));
90
- router.get('/jianshu/collection/:id', lazyloadRouteHandler('./routes/jianshu/collection'));
91
- router.get('/jianshu/user/:id', lazyloadRouteHandler('./routes/jianshu/user'));
92
-
93
- // 知乎 migrated to v2
94
- // router.get('/zhihu/collection/:id/:getAll?', lazyloadRouteHandler('./routes/zhihu/collection'));
95
- // router.get('/zhihu/people/activities/:id', lazyloadRouteHandler('./routes/zhihu/activities'));
96
- // router.get('/zhihu/people/answers/:id', lazyloadRouteHandler('./routes/zhihu/answers'));
97
- // router.get('/zhihu/posts/:usertype/:id', lazyloadRouteHandler('./routes/zhihu/posts'));
98
- // router.get('/zhihu/zhuanlan/:id', lazyloadRouteHandler('./routes/zhihu/zhuanlan'));
99
- // router.get('/zhihu/daily', lazyloadRouteHandler('./routes/zhihu/daily'));
100
- // router.get('/zhihu/daily/section/:sectionId', lazyloadRouteHandler('./routes/zhihu/daily_section'));
101
- // router.get('/zhihu/hotlist', lazyloadRouteHandler('./routes/zhihu/hotlist'));
102
- // router.get('/zhihu/pin/hotlist', lazyloadRouteHandler('./routes/zhihu/pin/hotlist'));
103
- // router.get('/zhihu/question/:questionId', lazyloadRouteHandler('./routes/zhihu/question'));
104
- // router.get('/zhihu/topic/:topicId', lazyloadRouteHandler('./routes/zhihu/topic'));
105
- // router.get('/zhihu/people/pins/:id', lazyloadRouteHandler('./routes/zhihu/pin/people'));
106
- // router.get('/zhihu/bookstore/newest', lazyloadRouteHandler('./routes/zhihu/bookstore/newest'));
107
- // router.get('/zhihu/pin/daily', lazyloadRouteHandler('./routes/zhihu/pin/daily'));
108
- // router.get('/zhihu/weekly', lazyloadRouteHandler('./routes/zhihu/weekly'));
109
- // router.get('/zhihu/timeline', lazyloadRouteHandler('./routes/zhihu/timeline'));
110
- // router.get('/zhihu/hot/:category?', lazyloadRouteHandler('./routes/zhihu/hot'));
111
-
112
- // 妹子图
113
- router.get('/mzitu/home/:type?', lazyloadRouteHandler('./routes/mzitu/home'));
114
- router.get('/mzitu/tags', lazyloadRouteHandler('./routes/mzitu/tags'));
115
- router.get('/mzitu/category/:category', lazyloadRouteHandler('./routes/mzitu/category'));
116
- router.get('/mzitu/post/:id', lazyloadRouteHandler('./routes/mzitu/post'));
117
- router.get('/mzitu/tag/:tag', lazyloadRouteHandler('./routes/mzitu/tag'));
118
-
119
- // pixiv migrated to v2
120
- // router.get('/pixiv/user/bookmarks/:id', lazyloadRouteHandler('./routes/pixiv/bookmarks'));
121
- // router.get('/pixiv/user/illustfollows', lazyloadRouteHandler('./routes/pixiv/illustfollow'));
122
- // router.get('/pixiv/user/:id', lazyloadRouteHandler('./routes/pixiv/user'));
123
- // router.get('/pixiv/ranking/:mode/:date?', lazyloadRouteHandler('./routes/pixiv/ranking'));
124
- // router.get('/pixiv/search/:keyword/:order?/:mode?', lazyloadRouteHandler('./routes/pixiv/search'));
125
-
126
- // pixiv-fanbox
127
- router.get('/fanbox/:user?', lazyloadRouteHandler('./routes/fanbox/main'));
128
-
129
- // 法律白話文運動
130
- router.get('/plainlaw/archives', lazyloadRouteHandler('./routes/plainlaw/archives.js'));
131
-
132
- // 煎蛋
133
- // router.get('/jandan/article', lazyloadRouteHandler('./routes/jandan/article'));
134
- // router.get('/jandan/:sub_model', lazyloadRouteHandler('./routes/jandan/pic'));
135
-
136
- // 喷嚏
137
- // router.get('/dapenti/tugua', lazyloadRouteHandler('./routes/dapenti/tugua'));
138
- // router.get('/dapenti/subject/:id', lazyloadRouteHandler('./routes/dapenti/subject'));
139
-
140
- // Dockone
141
- router.get('/dockone/weekly', lazyloadRouteHandler('./routes/dockone/weekly'));
142
-
143
- // 众成翻译
144
- router.get('/zcfy', lazyloadRouteHandler('./routes/zcfy/index'));
145
- router.get('/zcfy/index', lazyloadRouteHandler('./routes/zcfy/index')); // 废弃
146
- router.get('/zcfy/hot', lazyloadRouteHandler('./routes/zcfy/hot'));
147
-
148
- // 今日头条
149
- router.get('/jinritoutiao/keyword/:keyword', lazyloadRouteHandler('./routes/jinritoutiao/keyword'));
24
+ // router.get('/jianshu/home', lazyloadRouteHandler('./routes/jianshu/home'));
25
+ // router.get('/jianshu/collection/:id', lazyloadRouteHandler('./routes/jianshu/collection'));
26
+ // router.get('/jianshu/user/:id', lazyloadRouteHandler('./routes/jianshu/user'));
150
27
 
151
28
  // Disqus
152
29
  router.get('/disqus/posts/:forum', lazyloadRouteHandler('./routes/disqus/posts'));
153
30
 
154
- // Twitter
155
- // router.get('/twitter/user/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/user'));
156
- // router.get('/twitter/list/:id/:name/:routeParams?', lazyloadRouteHandler('./routes/twitter/list'));
157
- // router.get('/twitter/likes/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/likes'));
158
- // router.get('/twitter/followings/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/followings'));
159
- // router.get('/twitter/keyword/:keyword/:routeParams?/:limit?', lazyloadRouteHandler('./routes/twitter/keyword'));
160
- // router.get('/twitter/trends/:woeid?', lazyloadRouteHandler('./routes/twitter/trends'));
161
- // router.get('/twitter/media/:id/:routeParams?', lazyloadRouteHandler('./routes/twitter/media'));
162
-
163
- // YouTube migrated to v2
164
- // router.get('/youtube/user/:username/:embed?', lazyloadRouteHandler('./routes/youtube/user'));
165
- // router.get('/youtube/channel/:id/:embed?', lazyloadRouteHandler('./routes/youtube/channel'));
166
- // router.get('/youtube/playlist/:id/:embed?', lazyloadRouteHandler('./routes/youtube/playlist'));
167
-
168
31
  // 极客时间
169
32
  router.get('/geektime/column/:cid', lazyloadRouteHandler('./routes/geektime/column'));
170
- router.get('/geektime/news', lazyloadRouteHandler('./routes/geektime/news'));
171
-
172
- // 界面新闻
173
- // router.get('/jiemian/list/:cid', lazyloadRouteHandler('./routes/jiemian/list.js'));
174
-
175
- // 好奇心日报
176
- // router.get('/qdaily/:type/:id', lazyloadRouteHandler('./routes/qdaily/index'));
177
-
178
- // 爱奇艺
179
- // router.get('/iqiyi/dongman/:id', lazyloadRouteHandler('./routes/iqiyi/dongman'));
180
- // router.get('/iqiyi/user/video/:uid', lazyloadRouteHandler('./routes/iqiyi/video'));
181
-
182
- // 南方周末
183
- router.get('/infzm/:id', lazyloadRouteHandler('./routes/infzm/news'));
184
33
 
185
34
  // Dribbble
186
- router.get('/dribbble/popular/:timeframe?', lazyloadRouteHandler('./routes/dribbble/popular'));
187
- router.get('/dribbble/user/:name', lazyloadRouteHandler('./routes/dribbble/user'));
188
- router.get('/dribbble/keyword/:keyword', lazyloadRouteHandler('./routes/dribbble/keyword'));
189
-
190
- // 斗鱼
191
- // router.get('/douyu/room/:id', lazyloadRouteHandler('./routes/douyu/room'));
35
+ // router.get('/dribbble/popular/:timeframe?', lazyloadRouteHandler('./routes/dribbble/popular'));
36
+ // router.get('/dribbble/user/:name', lazyloadRouteHandler('./routes/dribbble/user'));
37
+ // router.get('/dribbble/keyword/:keyword', lazyloadRouteHandler('./routes/dribbble/keyword'));
192
38
 
193
39
  // 虎牙
194
40
  router.get('/huya/live/:id', lazyloadRouteHandler('./routes/huya/live'));
195
41
 
196
- // 浪Play(原kingkong)直播
197
- // router.get('/kingkong/room/:id', lazyloadRouteHandler('./routes/langlive/room'));
198
- // router.get('/langlive/room/:id', lazyloadRouteHandler('./routes/langlive/room'));
199
-
200
- // SHOWROOM直播
201
- router.get('/showroom/room/:id', lazyloadRouteHandler('./routes/showroom/room'));
202
-
203
42
  // v2ex
204
- router.get('/v2ex/topics/:type', lazyloadRouteHandler('./routes/v2ex/topics'));
205
- router.get('/v2ex/post/:postid', lazyloadRouteHandler('./routes/v2ex/post'));
206
- router.get('/v2ex/tab/:tabid', lazyloadRouteHandler('./routes/v2ex/tab'));
207
-
208
- // Readhub migrated to v2
209
- // router.get('/readhub/category/:category?', lazyloadRouteHandler('./routes/readhub/index'));
210
- // router.get('/readhub/:category?', lazyloadRouteHandler('./routes/readhub/index'));
43
+ // router.get('/v2ex/topics/:type', lazyloadRouteHandler('./routes/v2ex/topics'));
44
+ // router.get('/v2ex/post/:postid', lazyloadRouteHandler('./routes/v2ex/post'));
45
+ // router.get('/v2ex/tab/:tabid', lazyloadRouteHandler('./routes/v2ex/tab'));
211
46
 
212
47
  // f-droid
213
- router.get('/fdroid/apprelease/:app', lazyloadRouteHandler('./routes/fdroid/apprelease'));
48
+ // router.get('/fdroid/apprelease/:app', lazyloadRouteHandler('./routes/fdroid/apprelease'));
214
49
 
215
50
  // konachan
216
- router.get('/konachan/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
217
- router.get('/konachan.com/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
218
- router.get('/konachan.net/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
219
- router.get('/konachan/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
220
- router.get('/konachan.com/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
221
- router.get('/konachan.net/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
51
+ router.get('/konachan/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
52
+ router.get('/konachan.com/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
53
+ router.get('/konachan.net/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
54
+ router.get('/konachan/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
55
+ router.get('/konachan.com/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
56
+ router.get('/konachan.net/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
222
57
 
223
58
  // PornHub
224
- router.get('/pornhub/category/:caty', lazyloadRouteHandler('./routes/pornhub/category'));
225
- router.get('/pornhub/search/:keyword', lazyloadRouteHandler('./routes/pornhub/search'));
226
- router.get('/pornhub/:language?/category_url/:url?', lazyloadRouteHandler('./routes/pornhub/category_url'));
227
- router.get('/pornhub/:language?/users/:username', lazyloadRouteHandler('./routes/pornhub/users'));
228
- router.get('/pornhub/:language?/model/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/model'));
229
- router.get('/pornhub/:language?/pornstar/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/pornstar'));
230
-
231
- // Prestige migrated to v2
232
- // router.get('/prestige-av/series/:mid/:sort?', lazyloadRouteHandler('./routes/prestige-av/series'));
233
-
234
- // yande.re
235
- router.get('/yande.re/post/popular_recent', lazyloadRouteHandler('./routes/yande.re/post_popular_recent'));
236
- router.get('/yande.re/post/popular_recent/:period', lazyloadRouteHandler('./routes/yande.re/post_popular_recent'));
237
-
238
- // 纽约时报 migrated to v2
239
- // router.get('/nytimes/daily_briefing_chinese', lazyloadRouteHandler('./routes/nytimes/daily_briefing_chinese'));
240
- // router.get('/nytimes/book/:category?', lazyloadRouteHandler('./routes/nytimes/book.js'));
241
- // router.get('/nytimes/author/:byline', lazyloadRouteHandler('./routes/nytimes/author.js'));
242
- // router.get('/nytimes/:lang?', lazyloadRouteHandler('./routes/nytimes/index'));
243
-
244
- // 3dm
245
- router.get('/3dm/:name/:type', lazyloadRouteHandler('./routes/3dm/game'));
246
- router.get('/3dm/news', lazyloadRouteHandler('./routes/3dm/news_center'));
247
-
248
- // 喜马拉雅
249
- router.get('/ximalaya/:type/:id/:all?', lazyloadRouteHandler('./routes/ximalaya/album'));
250
- router.get('/ximalaya/:type/:id/:all/:shownote?', lazyloadRouteHandler('./routes/ximalaya/album'));
59
+ // router.get('/pornhub/category/:caty', lazyloadRouteHandler('./routes/pornhub/category'));
60
+ // router.get('/pornhub/search/:keyword', lazyloadRouteHandler('./routes/pornhub/search'));
61
+ // router.get('/pornhub/:language?/category_url/:url?', lazyloadRouteHandler('./routes/pornhub/category_url'));
62
+ // router.get('/pornhub/:language?/users/:username', lazyloadRouteHandler('./routes/pornhub/users'));
63
+ // router.get('/pornhub/:language?/model/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/model'));
64
+ // router.get('/pornhub/:language?/pornstar/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/pornstar'));
251
65
 
252
66
  // EZTV
253
67
  router.get('/eztv/torrents/:imdb_id', lazyloadRouteHandler('./routes/eztv/imdb'));
254
68
 
255
- // 什么值得买
256
- // router.get('/smzdm/keyword/:keyword', lazyloadRouteHandler('./routes/smzdm/keyword'));
257
- // router.get('/smzdm/ranking/:rank_type/:rank_id/:hour', lazyloadRouteHandler('./routes/smzdm/ranking'));
258
- // router.get('/smzdm/haowen/:day?', lazyloadRouteHandler('./routes/smzdm/haowen'));
259
- // router.get('/smzdm/haowen/fenlei/:name/:sort?', lazyloadRouteHandler('./routes/smzdm/haowen_fenlei'));
260
- // router.get('/smzdm/article/:uid', lazyloadRouteHandler('./routes/smzdm/article'));
261
- // router.get('/smzdm/baoliao/:uid', lazyloadRouteHandler('./routes/smzdm/baoliao'));
262
-
263
69
  // 新京报
264
70
  router.get('/bjnews/:cat', lazyloadRouteHandler('./routes/bjnews/news'));
265
- router.get('/bjnews/epaper/:cat', lazyloadRouteHandler('./routes/bjnews/epaper'));
266
-
267
- // 停水通知 migrated to v2
268
- // router.get('/tingshuitz/hangzhou', lazyloadRouteHandler('./routes/tingshuitz/hangzhou'));
269
- // router.get('/tingshuitz/xiaoshan', lazyloadRouteHandler('./routes/tingshuitz/xiaoshan'));
270
- // router.get('/tingshuitz/dalian', lazyloadRouteHandler('./routes/tingshuitz/dalian'));
271
- // router.get('/tingshuitz/guangzhou', lazyloadRouteHandler('./routes/tingshuitz/guangzhou'));
272
- // router.get('/tingshuitz/dongguan', lazyloadRouteHandler('./routes/tingshuitz/dongguan'));
273
- // router.get('/tingshuitz/xian', lazyloadRouteHandler('./routes/tingshuitz/xian'));
274
- // router.get('/tingshuitz/yangjiang', lazyloadRouteHandler('./routes/tingshuitz/yangjiang'));
275
- // router.get('/tingshuitz/nanjing', lazyloadRouteHandler('./routes/tingshuitz/nanjing'));
276
- // router.get('/tingshuitz/wuhan', lazyloadRouteHandler('./routes/tingshuitz/wuhan'));
277
71
 
278
72
  // 米哈游
279
73
  router.get('/mihoyo/bh3/:type', lazyloadRouteHandler('./routes/mihoyo/bh3'));
280
74
  router.get('/mihoyo/bh2/:type', lazyloadRouteHandler('./routes/mihoyo/bh2'));
281
75
 
282
- // 新闻联播 migrated to v2
283
- // router.get('/cctv/xwlb', lazyloadRouteHandler('./routes/cctv/xwlb'));
284
- // 央视新闻
285
- // router.get('/cctv/lm/:id?', lazyloadRouteHandler('./routes/cctv/lm'));
286
- // router.get('/cctv/:category', lazyloadRouteHandler('./routes/cctv/category'));
287
- // router.get('/cctv/photo/jx', lazyloadRouteHandler('./routes/cctv/jx'));
288
- // router.get('/cctv-special/:id?', lazyloadRouteHandler('./routes/cctv/special'));
289
-
290
- // 财新博客
291
- // router.get('/caixin/blog/:column', lazyloadRouteHandler('./routes/caixin/blog'));
292
- // router.get('/caixin/article', lazyloadRouteHandler('./routes/caixin/article'));
293
- // router.get('/caixin/database', lazyloadRouteHandler('./routes/caixin/database'));
294
- // router.get('/caixin/yxnews', lazyloadRouteHandler('./routes/caixin/yxnews'));
295
- // router.get('/caixin/:column/:category', lazyloadRouteHandler('./routes/caixin/category'));
296
-
297
76
  // 草榴社区
298
- router.get('/t66y/post/:tid', lazyloadRouteHandler('./routes/t66y/post'));
299
- router.get('/t66y/:id/:type?', lazyloadRouteHandler('./routes/t66y/index'));
77
+ // router.get('/t66y/post/:tid', lazyloadRouteHandler('./routes/t66y/post'));
78
+ // router.get('/t66y/:id/:type?', lazyloadRouteHandler('./routes/t66y/index'));
300
79
 
301
80
  // 色中色
302
81
  router.get('/sexinsex/:id/:type?', lazyloadRouteHandler('./routes/sexinsex/index'));
303
82
 
304
- // 国家地理 migrated to v2
305
- // router.get('/natgeo/dailyselection', lazyloadRouteHandler('./routes/natgeo/dailyselection'));
306
- // router.get('/natgeo/dailyphoto', lazyloadRouteHandler('./routes/natgeo/dailyphoto'));
307
- // router.get('/natgeo/:cat/:type?', lazyloadRouteHandler('./routes/natgeo/natgeo'));
308
-
309
83
  // 一个
310
84
  router.get('/one', lazyloadRouteHandler('./routes/one/index'));
311
85
 
312
86
  // Firefox
313
- router.get('/firefox/release/:platform', lazyloadRouteHandler('./routes/firefox/release'));
314
- router.get('/firefox/addons/:id', lazyloadRouteHandler('./routes/firefox/addons'));
87
+ // router.get('/firefox/release/:platform', lazyloadRouteHandler('./routes/firefox/release'));
88
+ // router.get('/firefox/addons/:id', lazyloadRouteHandler('./routes/firefox/addons'));
315
89
 
316
90
  // Thunderbird
317
91
  router.get('/thunderbird/release', lazyloadRouteHandler('./routes/thunderbird/release'));
318
92
 
319
- // tuicool
320
- router.get('/tuicool/mags/:type', lazyloadRouteHandler('./routes/tuicool/mags'));
321
-
322
93
  // Hexo
323
94
  router.get('/hexo/next/:url', lazyloadRouteHandler('./routes/hexo/next'));
324
95
  router.get('/hexo/yilia/:url', lazyloadRouteHandler('./routes/hexo/yilia'));
@@ -328,176 +99,60 @@ router.get('/hexo/fluid/:url', lazyloadRouteHandler('./routes/hexo/fluid'));
328
99
  router.get('/cpython/:pre?', lazyloadRouteHandler('./routes/cpython'));
329
100
 
330
101
  // 小米
331
- router.get('/mi/golden', lazyloadRouteHandler('./routes/mi/golden'));
332
- router.get('/mi/crowdfunding', lazyloadRouteHandler('./routes/mi/crowdfunding'));
102
+ // router.get('/mi/golden', lazyloadRouteHandler('./routes/mi/golden'));
103
+ // router.get('/mi/crowdfunding', lazyloadRouteHandler('./routes/mi/crowdfunding'));
333
104
  // router.get('/mi/youpin/crowdfunding', lazyloadRouteHandler('./routes/mi/youpin/crowdfunding'));
334
105
  // router.get('/mi/youpin/new/:sort?', lazyloadRouteHandler('./routes/mi/youpin/new'));
335
- router.get('/miui/:device/:type?/:region?', lazyloadRouteHandler('./routes/mi/miui/index'));
336
- router.get('/mi/bbs/board/:boardId', lazyloadRouteHandler('./routes/mi/board'));
337
-
338
- // Keep
339
- // router.get('/keep/user/:id', lazyloadRouteHandler('./routes/keep/user'));
340
-
341
- // 起点 migrated to v2
342
- // router.get('/qidian/chapter/:id', lazyloadRouteHandler('./routes/qidian/chapter'));
343
- // router.get('/qidian/forum/:id', lazyloadRouteHandler('./routes/qidian/forum'));
344
- // router.get('/qidian/free/:type?', lazyloadRouteHandler('./routes/qidian/free'));
345
- // router.get('/qidian/free-next/:type?', lazyloadRouteHandler('./routes/qidian/free-next'));
106
+ // router.get('/miui/:device/:type?/:region?', lazyloadRouteHandler('./routes/mi/miui/index'));
346
107
 
347
108
  // 纵横
348
109
  router.get('/zongheng/chapter/:id', lazyloadRouteHandler('./routes/zongheng/chapter'));
349
110
 
350
- // 刺猬猫
351
- router.get('/ciweimao/chapter/:id', lazyloadRouteHandler('./routes/ciweimao/chapter'));
352
-
353
- // 中国美术馆
354
- router.get('/namoc/announcement', lazyloadRouteHandler('./routes/namoc/announcement'));
355
- router.get('/namoc/news', lazyloadRouteHandler('./routes/namoc/news'));
356
- router.get('/namoc/media', lazyloadRouteHandler('./routes/namoc/media'));
357
- router.get('/namoc/exhibition', lazyloadRouteHandler('./routes/namoc/exhibition'));
358
- router.get('/namoc/specials', lazyloadRouteHandler('./routes/namoc/specials'));
359
-
360
- // 懂球帝 migrated to v2
361
- // router.get('/dongqiudi/daily', lazyloadRouteHandler('./routes/dongqiudi/daily'));
362
- // router.get('/dongqiudi/result/:team', lazyloadRouteHandler('./routes/dongqiudi/result'));
363
- // router.get('/dongqiudi/team_news/:team', lazyloadRouteHandler('./routes/dongqiudi/team_news'));
364
- // router.get('/dongqiudi/player_news/:id', lazyloadRouteHandler('./routes/dongqiudi/player_news'));
365
- // router.get('/dongqiudi/special/:id', lazyloadRouteHandler('./routes/dongqiudi/special'));
366
- // router.get('/dongqiudi/top_news/:id?', lazyloadRouteHandler('./routes/dongqiudi/top_news'));
367
-
368
111
  // 维基百科 Wikipedia
369
112
  router.get('/wikipedia/mainland', lazyloadRouteHandler('./routes/wikipedia/mainland'));
370
113
 
371
114
  // 联合国 United Nations
372
115
  router.get('/un/scveto', lazyloadRouteHandler('./routes/un/scveto'));
373
116
 
374
- // e 公司
375
- router.get('/egsea/flash', lazyloadRouteHandler('./routes/egsea/flash'));
376
-
377
117
  // 选股宝
378
118
  router.get('/xuangubao/subject/:subject_id', lazyloadRouteHandler('./routes/xuangubao/subject'));
379
119
 
380
- // 雪球 migrated to v2
381
- // router.get('/xueqiu/user/:id/:type?', lazyloadRouteHandler('./routes/xueqiu/user'));
382
- // router.get('/xueqiu/favorite/:id', lazyloadRouteHandler('./routes/xueqiu/favorite'));
383
- // router.get('/xueqiu/user_stock/:id', lazyloadRouteHandler('./routes/xueqiu/user_stock'));
384
- // router.get('/xueqiu/fund/:id', lazyloadRouteHandler('./routes/xueqiu/fund'));
385
- // router.get('/xueqiu/stock_info/:id/:type?', lazyloadRouteHandler('./routes/xueqiu/stock_info'));
386
- // router.get('/xueqiu/snb/:id', lazyloadRouteHandler('./routes/xueqiu/snb'));
387
- // router.get('/xueqiu/hots', lazyloadRouteHandler('./routes/xueqiu/hots'));
388
- // router.get('/xueqiu/stock_comments/:id/:titleLength?', lazyloadRouteHandler('./routes/xueqiu/stock_comments'));
389
-
390
- // Greasy Fork migrated to v2
391
- // router.get('/greasyfork/:language/:domain?', lazyloadRouteHandler('./routes/greasyfork/scripts'));
392
-
393
120
  // Gwern Bran­wen
394
121
  router.get('/gwern/:category', lazyloadRouteHandler('./routes/gwern/category'));
395
122
 
396
- // LinkedKeeper
397
- router.get('/linkedkeeper/:type/:id?', lazyloadRouteHandler('./routes/linkedkeeper/index'));
398
-
399
- // 开源中国 migrated to v2
400
- // router.get('/oschina/news/:category?', lazyloadRouteHandler('./routes/oschina/news'));
401
- // router.get('/oschina/user/:id', lazyloadRouteHandler('./routes/oschina/user'));
402
- // router.get('/oschina/u/:id', lazyloadRouteHandler('./routes/oschina/u'));
403
- // router.get('/oschina/topic/:topic', lazyloadRouteHandler('./routes/oschina/topic'));
404
-
405
123
  // MIT Technology Review
406
124
  router.get('/technologyreview', lazyloadRouteHandler('./routes/technologyreview/index'));
407
125
  router.get('/technologyreview/:category_name', lazyloadRouteHandler('./routes/technologyreview/topic'));
408
126
 
409
- // 安全客
410
- // router.get('/aqk/vul', lazyloadRouteHandler('./routes/aqk/vul'));
411
- // router.get('/aqk/:category', lazyloadRouteHandler('./routes/aqk/category'));
412
-
413
- // 腾讯游戏开发者社区
414
- router.get('/gameinstitute/community/:tag?', lazyloadRouteHandler('./routes/tencent/gameinstitute/community'));
415
-
416
127
  // 腾讯视频 SDK
417
128
  router.get('/qcloud/mlvb/changelog', lazyloadRouteHandler('./routes/tencent/qcloud/mlvb/changelog'));
418
129
 
419
130
  // 腾讯吐个槽
420
131
  router.get('/tucaoqq/post/:project/:key', lazyloadRouteHandler('./routes/tencent/tucaoqq/post'));
421
132
 
422
- // Bugly SDK
423
- router.get('/bugly/changelog/:platform', lazyloadRouteHandler('./routes/tencent/bugly/changelog'));
424
-
425
- // wechat migrated to v2
426
- // router.get('/wechat/wemp/:id', lazyloadRouteHandler('./routes/tencent/wechat/wemp'));
427
- // router.get('/wechat/ce/:id', lazyloadRouteHandler('./routes/tencent/wechat/ce'));
428
- // router.get('/wechat/announce', lazyloadRouteHandler('./routes/tencent/wechat/announce'));
133
+ // wechat
429
134
  router.get('/wechat/miniprogram/plugins', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/plugins'));
430
- // router.get('/wechat/tgchannel/:id/:mpName?/:searchQueryType?', lazyloadRouteHandler('./routes/tencent/wechat/tgchannel'));
431
- // router.get('/wechat/uread/:userid', lazyloadRouteHandler('./routes/tencent/wechat/uread'));
432
- // router.get('/wechat/ershicimi/:id', lazyloadRouteHandler('./routes/tencent/wechat/ershcimi'));
433
- // router.get('/wechat/wxnmh/:id', lazyloadRouteHandler('./routes/tencent/wechat/wxnmh'));
434
- // router.get('/wechat/mp/homepage/:biz/:hid/:cid?', lazyloadRouteHandler('./routes/tencent/wechat/mp'));
435
- // router.get('/wechat/mp/msgalbum/:biz/:aid', lazyloadRouteHandler('./routes/tencent/wechat/msgalbum'));
436
- // router.get('/wechat/feeds/:id', lazyloadRouteHandler('./routes/tencent/wechat/feeds'));
437
-
438
- // All the Flight Deals
439
- router.get('/atfd/:locations/:nearby?', lazyloadRouteHandler('./routes/atfd/index'));
440
-
441
- // Fir
442
- router.get('/fir/update/:id', lazyloadRouteHandler('./routes/fir/update'));
443
135
 
444
136
  // Nvidia Web Driver
445
137
  router.get('/nvidia/webdriverupdate', lazyloadRouteHandler('./routes/nvidia/webdriverupdate'));
446
138
 
447
- // 每日环球展览 iMuseum
448
- router.get('/imuseum/:city/:type?', lazyloadRouteHandler('./routes/imuseum'));
449
-
450
- // Hopper
451
- router.get('/hopper/:lowestOnly/:from/:to?', lazyloadRouteHandler('./routes/hopper/index'));
452
-
453
139
  // 马蜂窝
454
140
  router.get('/mafengwo/note/:type', lazyloadRouteHandler('./routes/mafengwo/note'));
455
141
  router.get('/mafengwo/ziyouxing/:code', lazyloadRouteHandler('./routes/mafengwo/ziyouxing'));
456
142
 
457
- // 中国地震局震情速递(与地震台网同步更新)migrated to v2
458
- // router.get('/earthquake/:region?', lazyloadRouteHandler('./routes/earthquake'));
459
- // 中国地震台网
460
- // router.get('/earthquake/ceic/:type', lazyloadRouteHandler('./routes/earthquake/ceic'));
461
-
462
143
  // 小说
463
144
  // router.get('/novel/biquge/:id', lazyloadRouteHandler('./routes/novel/biquge'));
464
145
  // router.get('/novel/biqugeinfo/:id/:limit?', lazyloadRouteHandler('./routes/novel/biqugeinfo'));
465
146
  router.get('/novel/uukanshu/:uid', lazyloadRouteHandler('./routes/novel/uukanshu'));
466
- router.get('/novel/wenxuemi/:id1/:id2', lazyloadRouteHandler('./routes/novel/wenxuemi'));
467
- router.get('/novel/booksky/:id', lazyloadRouteHandler('./routes/novel/booksky'));
468
- router.get('/novel/ptwxz/:id1/:id2', lazyloadRouteHandler('./routes/novel/ptwxz'));
469
- router.get('/novel/zhaishuyuan/:id', lazyloadRouteHandler('./routes/novel/zhaishuyuan'));
470
147
 
471
148
  // 中国气象网
472
- router.get('/weatheralarm/:province?', lazyloadRouteHandler('./routes/weatheralarm'));
149
+ // router.get('/weatheralarm/:province?', lazyloadRouteHandler('./routes/weatheralarm'));
473
150
 
474
151
  // Gitlab
475
152
  router.get('/gitlab/explore/:type/:host?', lazyloadRouteHandler('./routes/gitlab/explore'));
476
153
  router.get('/gitlab/release/:namespace/:project/:host?', lazyloadRouteHandler('./routes/gitlab/release'));
477
154
  router.get('/gitlab/tag/:namespace/:project/:host?', lazyloadRouteHandler('./routes/gitlab/tag'));
478
155
 
479
- // 忧郁的loli
480
- router.get('/mygalgame', lazyloadRouteHandler('./routes/galgame/hhgal')); // 废弃
481
- router.get('/mmgal', lazyloadRouteHandler('./routes/galgame/hhgal')); // 废弃
482
- router.get('/hhgal', lazyloadRouteHandler('./routes/galgame/hhgal'));
483
-
484
- // say花火
485
- router.get('/sayhuahuo', lazyloadRouteHandler('./routes/galgame/sayhuahuo'));
486
-
487
- // 终点分享
488
- router.get('/zdfx', lazyloadRouteHandler('./routes/galgame/zdfx'));
489
-
490
- // 北京林业大学 migrated to v2
491
- // router.get('/bjfu/grs', lazyloadRouteHandler('./routes/universities/bjfu/grs'));
492
- // router.get('/bjfu/kjc', lazyloadRouteHandler('./routes/universities/bjfu/kjc'));
493
- // router.get('/bjfu/jwc/:type', lazyloadRouteHandler('./routes/universities/bjfu/jwc/index'));
494
- // router.get('/bjfu/news/:type', lazyloadRouteHandler('./routes/universities/bjfu/news/index'));
495
- // router.get('/bjfu/it/:type', lazyloadRouteHandler('./routes/universities/bjfu/it/index'));
496
-
497
- // 北京理工大学
498
- // router.get('/bit/jwc', lazyloadRouteHandler('./routes/universities/bit/jwc/jwc'));
499
- // router.get('/bit/cs', lazyloadRouteHandler('./routes/universities/bit/cs/cs'));
500
-
501
156
  // 北京交通大学
502
157
  router.get('/bjtu/gs/:type', lazyloadRouteHandler('./routes/universities/bjtu/gs'));
503
158
 
@@ -505,51 +160,18 @@ router.get('/bjtu/gs/:type', lazyloadRouteHandler('./routes/universities/bjtu/gs
505
160
  router.get('/dpu/jiaowu/news/:type?', lazyloadRouteHandler('./routes/universities/dpu/jiaowu/news'));
506
161
  router.get('/dpu/wlfw/news/:type?', lazyloadRouteHandler('./routes/universities/dpu/wlfw/news'));
507
162
 
508
- // 大连理工大学
509
- // router.get('/dut/:subsite/:type', lazyloadRouteHandler('./routes/universities/dut/index'));
510
-
511
- // 东南大学
512
- router.get('/seu/radio/academic', lazyloadRouteHandler('./routes/universities/seu/radio/academic'));
513
- router.get('/seu/yzb/:type', lazyloadRouteHandler('./routes/universities/seu/yzb'));
514
- router.get('/seu/cse/:type?', lazyloadRouteHandler('./routes/universities/seu/cse'));
515
-
516
163
  // 南京工业大学
517
164
  router.get('/njtech/jwc', lazyloadRouteHandler('./routes/universities/njtech/jwc'));
518
165
 
519
- // 南京航空航天大学 migrated to v2
520
- // router.get('/nuaa/jwc/:type/:getDescription?', lazyloadRouteHandler('./routes/universities/nuaa/jwc/jwc'));
521
- // router.get('/nuaa/cs/:type/:getDescription?', lazyloadRouteHandler('./routes/universities/nuaa/cs/index'));
522
- // router.get('/nuaa/yjsy/:type?', lazyloadRouteHandler('./routes/universities/nuaa/yjsy/yjsy'));
523
-
524
166
  // 河海大学
525
- router.get('/hhu/libNews', lazyloadRouteHandler('./routes/universities/hhu/libNews'));
167
+ router.get('/hhu/libNews', lazyloadRouteHandler('./routes/universities/hhu/lib-news'));
526
168
  // 河海大学常州校区
527
- router.get('/hhu/libNewsc', lazyloadRouteHandler('./routes/universities/hhu/libNewsc'));
528
-
529
- // 哈尔滨工业大学 migrated to v2
530
- // router.get('/hit/jwc', lazyloadRouteHandler('./routes/universities/hit/jwc'));
531
- // router.get('/hit/today/:category', lazyloadRouteHandler('./routes/universities/hit/today'));
532
-
533
- // 哈尔滨工业大学(深圳)
534
- // router.get('/hitsz/article/:category?', lazyloadRouteHandler('./routes/universities/hitsz/article'));
535
-
536
- // 哈尔滨工业大学(威海)
537
- // router.get('/hitwh/today', lazyloadRouteHandler('./routes/universities/hitwh/today'));
169
+ router.get('/hhu/libNewsc', lazyloadRouteHandler('./routes/universities/hhu/lib-newsc'));
538
170
 
539
171
  // 上海科技大学
540
172
  router.get('/shanghaitech/activity', lazyloadRouteHandler('./routes/universities/shanghaitech/activity'));
541
173
  router.get('/shanghaitech/sist/activity', lazyloadRouteHandler('./routes/universities/shanghaitech/sist/activity'));
542
174
 
543
- // 上海交通大学
544
- router.get('/sjtu/seiee/academic', lazyloadRouteHandler('./routes/universities/sjtu/seiee/academic'));
545
- router.get('/sjtu/seiee/bjwb/:type', lazyloadRouteHandler('./routes/universities/sjtu/seiee/bjwb'));
546
- router.get('/sjtu/seiee/xsb/:type?', lazyloadRouteHandler('./routes/universities/sjtu/seiee/xsb'));
547
-
548
- router.get('/sjtu/gs/tzgg/:type?', lazyloadRouteHandler('./routes/universities/sjtu/gs/tzgg'));
549
- router.get('/sjtu/jwc/:type?', lazyloadRouteHandler('./routes/universities/sjtu/jwc'));
550
- router.get('/sjtu/tongqu/:type?', lazyloadRouteHandler('./routes/universities/sjtu/tongqu/activity'));
551
- router.get('/sjtu/yzb/zkxx/:type', lazyloadRouteHandler('./routes/universities/sjtu/yzb/zkxx'));
552
-
553
175
  // 江南大学
554
176
  router.get('/ju/jwc/:type?', lazyloadRouteHandler('./routes/universities/ju/jwc'));
555
177
 
@@ -562,42 +184,14 @@ router.get('/lit/tw/:name?', lazyloadRouteHandler('./routes/universities/lit/tw'
562
184
  router.get('/thu/career', lazyloadRouteHandler('./routes/universities/thu/career'));
563
185
  router.get('/thu/:type', lazyloadRouteHandler('./routes/universities/thu/index'));
564
186
 
565
- // 北京大学 migrated to v2
566
- // router.get('/pku/eecs/:type?', lazyloadRouteHandler('./routes/universities/pku/eecs'));
567
- // router.get('/pku/rccp/mzyt', lazyloadRouteHandler('./routes/universities/pku/rccp/mzyt'));
568
- // router.get('/pku/cls/lecture', lazyloadRouteHandler('./routes/universities/pku/cls/lecture'));
569
- // router.get('/pku/bbs/hot', lazyloadRouteHandler('./routes/universities/pku/bbs/hot'));
570
- // router.get('/pku/scc/recruit/:type?', lazyloadRouteHandler('./routes/universities/pku/scc/recruit'));
571
-
572
- // 上海海事大学 migrated to v2
573
- // router.get('/shmtu/www/:type', lazyloadRouteHandler('./routes/universities/shmtu/www'));
574
- // router.get('/shmtu/jwc/:type', lazyloadRouteHandler('./routes/universities/shmtu/jwc'));
575
-
576
187
  // 上海海洋大学
577
188
  router.get('/shou/www/:type', lazyloadRouteHandler('./routes/universities/shou/www'));
578
189
 
579
190
  // 西南科技大学
580
- router.get('/swust/jwc/news', lazyloadRouteHandler('./routes/universities/swust/jwc_news'));
581
- router.get('/swust/jwc/notice/:type?', lazyloadRouteHandler('./routes/universities/swust/jwc_notice'));
191
+ router.get('/swust/jwc/news', lazyloadRouteHandler('./routes/universities/swust/jwc-news'));
192
+ router.get('/swust/jwc/notice/:type?', lazyloadRouteHandler('./routes/universities/swust/jwc-notice'));
582
193
  router.get('/swust/cs/:type?', lazyloadRouteHandler('./routes/universities/swust/cs'));
583
194
 
584
- // 华南师范大学
585
- // router.get('/scnu/jw', lazyloadRouteHandler('./routes/universities/scnu/jw'));
586
- // router.get('/scnu/library', lazyloadRouteHandler('./routes/universities/scnu/library'));
587
- // router.get('/scnu/cs/match', lazyloadRouteHandler('./routes/universities/scnu/cs/match'));
588
-
589
- // 广东工业大学
590
- // router.get('/gdut/news', lazyloadRouteHandler('./routes/universities/gdut/news'));
591
-
592
- // 中国科学院
593
- // router.get('/cas/sim/academic', lazyloadRouteHandler('./routes/universities/cas/sim/academic'));
594
- // router.get('/cas/mesalab/kb', lazyloadRouteHandler('./routes/universities/cas/mesalab/kb'));
595
- // router.get('/cas/iee/kydt', lazyloadRouteHandler('./routes/universities/cas/iee/kydt'));
596
- // router.get('/cas/cg/:caty?', lazyloadRouteHandler('./routes/universities/cas/cg/index'));
597
-
598
- // 中国传媒大学
599
- // router.get('/cuc/yz', lazyloadRouteHandler('./v2/cuc/yz'));
600
-
601
195
  // UTdallas ISSO
602
196
  router.get('/utdallas/isso', lazyloadRouteHandler('./routes/universities/utdallas/isso'));
603
197
 
@@ -612,16 +206,6 @@ router.get('/cqu/youth/:category', lazyloadRouteHandler('./routes/universities/c
612
206
  router.get('/cqu/sci/:category', lazyloadRouteHandler('./routes/universities/cqu/sci/info'));
613
207
  router.get('/cqu/net/:category', lazyloadRouteHandler('./routes/universities/cqu/net/info'));
614
208
 
615
- // 南京信息工程大学
616
- // router.get('/nuist/bulletin/:category?', lazyloadRouteHandler('./routes/universities/nuist/bulletin'));
617
- // router.get('/nuist/jwc/:category?', lazyloadRouteHandler('./routes/universities/nuist/jwc'));
618
- // router.get('/nuist/yjs/:category?', lazyloadRouteHandler('./routes/universities/nuist/yjs'));
619
- // router.get('/nuist/xgc', lazyloadRouteHandler('./routes/universities/nuist/xgc'));
620
- // router.get('/nuist/scs/:category?', lazyloadRouteHandler('./routes/universities/nuist/scs'));
621
- // router.get('/nuist/lib', lazyloadRouteHandler('./routes/universities/nuist/library/lib'));
622
- // router.get('/nuist/sese/:category?', lazyloadRouteHandler('./routes/universities/nuist/sese'));
623
- // router.get('/nuist/cas/:category?', lazyloadRouteHandler('./routes/universities/nuist/cas'));
624
-
625
209
  // 成都信息工程大学
626
210
  router.get('/cuit/cxxww/:type?', lazyloadRouteHandler('./routes/universities/cuit/cxxww'));
627
211
 
@@ -647,27 +231,6 @@ router.get('/sctu/xgxy/:id', lazyloadRouteHandler('./routes/universities/sctu/in
647
231
  router.get('/sctu/jwc/:type?', lazyloadRouteHandler('./routes/universities/sctu/jwc/index'));
648
232
  router.get('/sctu/jwc/:type/:id', lazyloadRouteHandler('./routes/universities/sctu/jwc/context'));
649
233
 
650
- // 电子科技大学
651
- // router.get('/uestc/jwc/:type?', lazyloadRouteHandler('./routes/universities/uestc/jwc'));
652
- // router.get('/uestc/is/:type?', lazyloadRouteHandler('./routes/universities/uestc/is'));
653
- // router.get('/uestc/news/:type?', lazyloadRouteHandler('./routes/universities/uestc/news'));
654
- // router.get('/uestc/auto/:type?', lazyloadRouteHandler('./routes/universities/uestc/auto'));
655
- // router.get('/uestc/cs/:type?', lazyloadRouteHandler('./routes/universities/uestc/cs'));
656
- // router.get('/uestc/cqe/:type?', lazyloadRouteHandler('./routes/universities/uestc/cqe'));
657
- // router.get('/uestc/gr', lazyloadRouteHandler('./routes/universities/uestc/gr'));
658
- // router.get('/uestc/sice', lazyloadRouteHandler('./routes/universities/uestc/sice'));
659
-
660
- // 西北农林科技大学
661
- router.get('/nwafu/news', lazyloadRouteHandler('./routes/universities/nwafu/news'));
662
- router.get('/nwafu/jiaowu', lazyloadRouteHandler('./routes/universities/nwafu/jiaowu'));
663
- router.get('/nwafu/gs', lazyloadRouteHandler('./routes/universities/nwafu/gs'));
664
- router.get('/nwafu/lib', lazyloadRouteHandler('./routes/universities/nwafu/lib'));
665
- router.get('/nwafu/nic', lazyloadRouteHandler('./routes/universities/nwafu/nic'));
666
- router.get('/nwafu/54youth', lazyloadRouteHandler('./routes/universities/nwafu/54youth'));
667
- router.get('/nwafu/jcc', lazyloadRouteHandler('./routes/universities/nwafu/jcc'));
668
- router.get('/nwafu/yjshy', lazyloadRouteHandler('./routes/universities/nwafu/yjshy'));
669
- router.get('/nwafu/cie', lazyloadRouteHandler('./routes/universities/nwafu/cie'));
670
-
671
234
  // 云南大学
672
235
  router.get('/ynu/grs/zytz', lazyloadRouteHandler('./routes/universities/ynu/grs/zytz'));
673
236
  router.get('/ynu/grs/qttz/:category', lazyloadRouteHandler('./routes/universities/ynu/grs/qttz'));
@@ -683,32 +246,12 @@ router.get('/kmust/job/careers/:type?', lazyloadRouteHandler('./routes/universit
683
246
  router.get('/kmust/job/jobfairs', lazyloadRouteHandler('./routes/universities/kmust/job/jobfairs'));
684
247
 
685
248
  // 武汉大学
686
- router.get('/whu/cs/:type', lazyloadRouteHandler('./routes/universities/whu/cs'));
687
- router.get('/whu/news/:type?', lazyloadRouteHandler('./routes/universities/whu/news'));
688
-
689
- // 潍坊学院 migrated to v2
690
- // router.get('/wfu/news/:type?', require('./routes/universities/wfu/news'));
691
- // router.get('/wfu/jwc', require('./routes/universities/wfu/jwc'));
692
-
693
- // 华中科技大学
694
- // router.get('/hust/auto/notice/:type?', lazyloadRouteHandler('./routes/universities/hust/aia/notice'));
695
- // router.get('/hust/auto/news', lazyloadRouteHandler('./routes/universities/hust/aia/news'));
696
- // router.get('/hust/aia/news', lazyloadRouteHandler('./routes/universities/hust/aia/news'));
697
- // router.get('/hust/aia/notice/:type?', lazyloadRouteHandler('./routes/universities/hust/aia/notice'));
249
+ // router.get('/whu/cs/:type', lazyloadRouteHandler('./routes/universities/whu/cs'));
250
+ // router.get('/whu/news/:type?', lazyloadRouteHandler('./routes/universities/whu/news'));
698
251
 
699
252
  // 井冈山大学
700
253
  router.get('/jgsu/jwc', lazyloadRouteHandler('./routes/universities/jgsu/jwc'));
701
254
 
702
- // 山东大学 migrated to v2
703
- // router.get('/sdu/sc/:type?', lazyloadRouteHandler('./routes/universities/sdu/sc'));
704
- // router.get('/sdu/cs/:type?', lazyloadRouteHandler('./routes/universities/sdu/cs'));
705
- // router.get('/sdu/cmse/:type?', lazyloadRouteHandler('./routes/universities/sdu/cmse'));
706
- // router.get('/sdu/mech/:type?', lazyloadRouteHandler('./routes/universities/sdu/mech'));
707
- // router.get('/sdu/epe/:type?', lazyloadRouteHandler('./routes/universities/sdu/epe'));
708
-
709
- // 中国海洋大学
710
- // router.get('/ouc/it/:type?', lazyloadRouteHandler('./routes/universities/ouc/it'));
711
-
712
255
  // 大连大学
713
256
  router.get('/dlu/jiaowu/news', lazyloadRouteHandler('./routes/universities/dlu/jiaowu/news'));
714
257
 
@@ -716,53 +259,22 @@ router.get('/dlu/jiaowu/news', lazyloadRouteHandler('./routes/universities/dlu/j
716
259
  router.get('/dgut/jwc/:type?', lazyloadRouteHandler('./routes/universities/dgut/jwc'));
717
260
  router.get('/dgut/xsc/:type?', lazyloadRouteHandler('./routes/universities/dgut/xsc'));
718
261
 
719
- // 同济大学
720
- // router.get('/tju/sse/:type?', lazyloadRouteHandler('./routes/universities/tju/sse/notice'));
721
-
722
- // 华南理工大学
723
- // router.get('/scut/jwc/notice/:category?', lazyloadRouteHandler('./routes/universities/scut/jwc/notice'));
724
- // router.get('/scut/jwc/school/:category?', lazyloadRouteHandler('./routes/universities/scut/jwc/school'));
725
- // router.get('/scut/jwc/news', lazyloadRouteHandler('./routes/universities/scut/jwc/news'));
726
-
727
262
  // 温州商学院
728
263
  router.get('/wzbc/:type?', lazyloadRouteHandler('./routes/universities/wzbc/news'));
729
264
 
730
265
  // 河南大学
731
266
  router.get('/henu/:type?', lazyloadRouteHandler('./routes/universities/henu/news'));
732
267
 
733
- // 天津大学 migrated to v2
734
- // router.get('/tju/oaa/:type?', lazyloadRouteHandler('./routes/universities/tju/oaa'));
735
-
736
268
  // 南开大学
737
269
  router.get('/nku/jwc/:type?', lazyloadRouteHandler('./routes/universities/nku/jwc/index'));
738
270
 
739
271
  // 北京航空航天大学
740
- router.get('/buaa/news/:type', lazyloadRouteHandler('./routes/universities/buaa/news/index'));
272
+ // router.get('/buaa/news/:type', lazyloadRouteHandler('./routes/universities/buaa/news/index'));
741
273
 
742
274
  // 浙江工业大学
743
275
  router.get('/zjut/:type', lazyloadRouteHandler('./routes/universities/zjut/index'));
744
276
  router.get('/zjut/design/:type', lazyloadRouteHandler('./routes/universities/zjut/design'));
745
277
 
746
- // 上海大学
747
- router.get('/shu/:type?', lazyloadRouteHandler('./routes/universities/shu/index'));
748
- router.get('/shu/jwc/:type?', lazyloadRouteHandler('./routes/universities/shu/jwc'));
749
-
750
- // 北京科技大学天津学院
751
- router.get('/ustb/tj/news/:type?', lazyloadRouteHandler('./routes/universities/ustb/tj/news'));
752
-
753
- // 深圳大学
754
- // router.get('/szu/yz/:type?', lazyloadRouteHandler('./routes/universities/szu/yz'));
755
-
756
- // 中国石油大学(华东)
757
- // router.get('/upc/main/:type?', lazyloadRouteHandler('./routes/universities/upc/main'));
758
- // router.get('/upc/jsj/:type?', lazyloadRouteHandler('./routes/universities/upc/jsj'));
759
-
760
- // 华北水利水电大学
761
- // router.get('/ncwu/notice', lazyloadRouteHandler('./routes/universities/ncwu/notice'));
762
-
763
- // 太原师范学院
764
- // router.get('/tynu', lazyloadRouteHandler('./routes/universities/tynu/tynu'));
765
-
766
278
  // 中北大学
767
279
  router.get('/nuc/:type', lazyloadRouteHandler('./routes/universities/nuc/index'));
768
280
 
@@ -787,7 +299,7 @@ router.get('/lyu/news/:type', lazyloadRouteHandler('./routes/universities/lyu/ne
787
299
 
788
300
  // 福州大学
789
301
  router.get('/fzu/:type', lazyloadRouteHandler('./routes/universities/fzu/news'));
790
- router.get('/fzu_min/:type', lazyloadRouteHandler('./routes/universities/fzu/news_min'));
302
+ router.get('/fzu_min/:type', lazyloadRouteHandler('./routes/universities/fzu/news-min'));
791
303
 
792
304
  // 厦门大学
793
305
  router.get('/xmu/aero/:type', lazyloadRouteHandler('./routes/universities/xmu/aero'));
@@ -795,33 +307,8 @@ router.get('/xmu/aero/:type', lazyloadRouteHandler('./routes/universities/xmu/ae
795
307
  // ifanr
796
308
  router.get('/ifanr/:channel?', lazyloadRouteHandler('./routes/ifanr/index'));
797
309
 
798
- // 果壳网
799
- // router.get('/guokr/scientific', lazyloadRouteHandler('./routes/guokr/scientific'));
800
- // router.get('/guokr/:channel', lazyloadRouteHandler('./routes/guokr/calendar'));
801
-
802
- // 联合早报 已经迁移至v2模板
803
- // router.get('/zaobao/realtime/:section?', require('./routes/zaobao/realtime'));
804
- // router.get('/zaobao/znews/:section?', require('./routes/zaobao/znews'));
805
- // router.get('/zaobao/:type/:section', lazyloadRouteHandler('./routes/zaobao/index'));
806
- // router.get('/zaobao/interactive-graphics', lazyloadRouteHandler('./routes/zaobao/interactive'));
807
-
808
310
  // IPSW.me
809
- router.get('/ipsw/index/:ptype/:pname', lazyloadRouteHandler('./routes/ipsw/index'));
810
-
811
- // Minecraft CurseForge
812
- router.get('/curseforge/files/:project', lazyloadRouteHandler('./routes/curseforge/files'));
813
-
814
- // 少数派 sspai migrated to v2
815
- // router.get('/sspai/index', lazyloadRouteHandler('./routes/sspai/index'));
816
- // router.get('/sspai/series', lazyloadRouteHandler('./routes/sspai/series'));
817
- // router.get('/sspai/shortcuts', lazyloadRouteHandler('./routes/sspai/shortcutsGallery'));
818
- // router.get('/sspai/matrix', lazyloadRouteHandler('./routes/sspai/matrix'));
819
- // router.get('/sspai/column/:id', lazyloadRouteHandler('./routes/sspai/column'));
820
- // router.get('/sspai/author/:id', lazyloadRouteHandler('./routes/sspai/author'));
821
- // router.get('/sspai/topics', lazyloadRouteHandler('./routes/sspai/topics'));
822
- // router.get('/sspai/topic/:id', lazyloadRouteHandler('./routes/sspai/topic'));
823
- // router.get('/sspai/tag/:keyword', lazyloadRouteHandler('./routes/sspai/tag'));
824
- // router.get('/sspai/activity/:slug', lazyloadRouteHandler('./routes/sspai/activity'));
311
+ // router.get('/ipsw/index/:ptype/:pname', lazyloadRouteHandler('./routes/ipsw/index'));
825
312
 
826
313
  // 异次元软件世界
827
314
  router.get('/iplay/home', lazyloadRouteHandler('./routes/iplay/home'));
@@ -829,67 +316,18 @@ router.get('/iplay/home', lazyloadRouteHandler('./routes/iplay/home'));
829
316
  // xclient.info
830
317
  router.get('/xclient/app/:name', lazyloadRouteHandler('./routes/xclient/app'));
831
318
 
832
- // 中国驻外使领事馆 migrated to v2
833
- // router.get('/embassy/:country/:city?', lazyloadRouteHandler('./routes/embassy/index'));
834
-
835
- // 澎湃新闻
836
- // router.get('/thepaper/featured', lazyloadRouteHandler('./routes/thepaper/featured'));
837
- // router.get('/thepaper/channel/:id', lazyloadRouteHandler('./routes/thepaper/channel'));
838
- // router.get('/thepaper/list/:id', lazyloadRouteHandler('./routes/thepaper/list'));
839
-
840
- // 澎湃美数课
841
- // router.get('/thepaper/839studio', lazyloadRouteHandler('./routes/thepaper/839studio/studio.js'));
842
- // router.get('/thepaper/839studio/:id', lazyloadRouteHandler('./routes/thepaper/839studio/category.js'));
843
-
844
- // 电影首发站
845
- router.get('/dysfz', lazyloadRouteHandler('./routes/dysfz/index'));
846
- router.get('/dysfz/index', lazyloadRouteHandler('./routes/dysfz/index')); // 废弃
847
-
848
- // きららファンタジア
849
- router.get('/kirara/news', lazyloadRouteHandler('./routes/kirara/news'));
850
-
851
319
  // 电影天堂
852
320
  router.get('/dytt', lazyloadRouteHandler('./routes/dytt/index'));
853
321
  router.get('/dytt/index', lazyloadRouteHandler('./routes/dytt/index')); // 废弃
854
322
 
855
- // BT之家
856
- // router.get('/btzj/:type?', lazyloadRouteHandler('./routes/btzj/index'));
857
-
858
- // 人生05电影网
859
- router.get('/rs05/rs05', lazyloadRouteHandler('./routes/rs05/rs05'));
860
-
861
- // 人人影视 (评测推荐) migrated to v2
862
- // router.get('/rrys/review', lazyloadRouteHandler('./routes/rrys/review'));
863
- // 人人影视(每日更新)
864
- // router.get('/yyets/todayfilelist', lazyloadRouteHandler('./routes/yyets/todayfilelist'));
865
-
866
323
  // 趣头条
867
324
  router.get('/qutoutiao/category/:cid', lazyloadRouteHandler('./routes/qutoutiao/category'));
868
325
 
869
- // NHK NEW WEB EASY migrated to v2
870
- // router.get('/nhk/news_web_easy', lazyloadRouteHandler('./routes/nhk/news_web_easy'));
871
-
872
326
  // BBC
873
- router.get('/bbc/:site?/:channel?', lazyloadRouteHandler('./routes/bbc/index'));
874
-
875
- // Financial Times migrated to v2
876
- // router.get('/ft/myft/:key', lazyloadRouteHandler('./routes/ft/myft'));
877
- // router.get('/ft/:language/:channel?', lazyloadRouteHandler('./routes/ft/channel'));
878
-
879
- // The Verge
880
- // router.get('/verge', lazyloadRouteHandler('./routes/verge/index'));
327
+ // router.get('/bbc/:site?/:channel?', lazyloadRouteHandler('./routes/bbc/index'));
881
328
 
882
329
  // 看雪
883
- router.get('/pediy/topic/:category?/:type?', lazyloadRouteHandler('./routes/pediy/topic'));
884
-
885
- // 知晓程序
886
- router.get('/miniapp/article/:category', lazyloadRouteHandler('./routes/miniapp/article'));
887
- router.get('/miniapp/store/newest', lazyloadRouteHandler('./routes/miniapp/store/newest'));
888
-
889
- // 后续
890
- // router.get('/houxu/live/:id/:timeline?', lazyloadRouteHandler('./routes/houxu/live'));
891
- // router.get('/houxu/events', lazyloadRouteHandler('./routes/houxu/events'));
892
- // router.get('/houxu/lives/:type', lazyloadRouteHandler('./routes/houxu/lives'));
330
+ // router.get('/pediy/topic/:category?/:type?', lazyloadRouteHandler('./routes/pediy/topic'));
893
331
 
894
332
  // 老司机
895
333
  router.get('/laosiji/hot', lazyloadRouteHandler('./routes/laosiji/hot'));
@@ -905,16 +343,13 @@ router.get('/99percentinvisible/transcript', lazyloadRouteHandler('./routes/99pe
905
343
  // 青空文庫
906
344
  router.get('/aozora/newbook/:count?', lazyloadRouteHandler('./routes/aozora/newbook'));
907
345
 
908
- // solidot migrated to v2
909
- // router.get('/solidot/:type?', lazyloadRouteHandler('./routes/solidot/main'));
910
-
911
346
  // Hermes UK
912
347
  router.get('/parcel/hermesuk/:tracking', lazyloadRouteHandler('./routes/parcel/hermesuk'));
913
348
 
914
349
  // 数字尾巴
915
350
  router.get('/dgtle', lazyloadRouteHandler('./routes/dgtle/index'));
916
351
  router.get('/dgtle/whale/category/:category', lazyloadRouteHandler('./routes/dgtle/whale'));
917
- router.get('/dgtle/whale/rank/:type/:rule', lazyloadRouteHandler('./routes/dgtle/whale_rank'));
352
+ router.get('/dgtle/whale/rank/:type/:rule', lazyloadRouteHandler('./routes/dgtle/whale-rank'));
918
353
  router.get('/dgtle/trade/:typeId?', lazyloadRouteHandler('./routes/dgtle/trade'));
919
354
  router.get('/dgtle/trade/search/:keyword', lazyloadRouteHandler('./routes/dgtle/keyword'));
920
355
 
@@ -922,61 +357,26 @@ router.get('/dgtle/trade/search/:keyword', lazyloadRouteHandler('./routes/dgtle/
922
357
  router.get('/chouti/top/:hour?', lazyloadRouteHandler('./routes/chouti/top'));
923
358
  router.get('/chouti/:subject?', lazyloadRouteHandler('./routes/chouti'));
924
359
 
925
- // 西安电子科技大学 migrated to v2
926
- // router.get('/xidian/jwc/:category?', lazyloadRouteHandler('./routes/universities/xidian/jwc'));
927
-
928
- // Westore
929
- router.get('/westore/new', lazyloadRouteHandler('./routes/westore/new'));
930
-
931
- // nHentai
932
- // router.get('/nhentai/search/:keyword/:mode?', lazyloadRouteHandler('./routes/nhentai/search'));
933
- // router.get('/nhentai/:key/:keyword/:mode?', lazyloadRouteHandler('./routes/nhentai/other'));
934
-
935
360
  // 龙腾网
936
361
  router.get('/ltaaa/:category?', lazyloadRouteHandler('./routes/ltaaa/index'));
937
362
 
938
- // AcFun migrated to v2
939
- // router.get('/acfun/bangumi/:id', lazyloadRouteHandler('./routes/acfun/bangumi'));
940
- // router.get('/acfun/user/video/:uid', lazyloadRouteHandler('./routes/acfun/video'));
941
-
942
363
  // Auto Trader
943
364
  router.get('/autotrader/:query', lazyloadRouteHandler('./routes/autotrader'));
944
365
 
945
366
  // 极客公园
946
367
  router.get('/geekpark/breakingnews', lazyloadRouteHandler('./routes/geekpark/breakingnews'));
947
368
 
948
- // 百度
949
- router.get('/baidu/doodles', lazyloadRouteHandler('./routes/baidu/doodles'));
950
- // router.get('/baidu/topwords/:boardId?', lazyloadRouteHandler('./routes/baidu/topwords'));
951
- router.get('/baidu/daily', lazyloadRouteHandler('./routes/baidu/daily'));
952
-
953
369
  // 搜狗
954
- router.get('/sogou/doodles', lazyloadRouteHandler('./routes/sogou/doodles'));
370
+ // router.get('/sogou/doodles', lazyloadRouteHandler('./routes/sogou/doodles'));
955
371
 
956
372
  // 香港天文台
957
373
  router.get('/hko/weather', lazyloadRouteHandler('./routes/hko/weather'));
958
374
 
959
- // sankakucomplex
960
- router.get('/sankakucomplex/post', lazyloadRouteHandler('./routes/sankakucomplex/post'));
961
-
962
- // 技术头条
963
- router.get('/blogread/newest', lazyloadRouteHandler('./routes/blogread/newest'));
964
-
965
375
  // gnn游戏新闻
966
376
  router.get('/gnn/gnn', lazyloadRouteHandler('./routes/gnn/gnn'));
967
377
 
968
378
  // a9vg游戏新闻
969
- router.get('/a9vg/a9vg', lazyloadRouteHandler('./routes/a9vg/a9vg'));
970
-
971
- // IT桔子
972
- router.get('/itjuzi/invest', lazyloadRouteHandler('./routes/itjuzi/invest'));
973
- router.get('/itjuzi/merge', lazyloadRouteHandler('./routes/itjuzi/merge'));
974
-
975
- // 探物
976
- router.get('/tanwu/products', lazyloadRouteHandler('./routes/tanwu/products'));
977
-
978
- // GitChat
979
- router.get('/gitchat/newest/:category?/:selected?', lazyloadRouteHandler('./routes/gitchat/newest'));
379
+ // router.get('/a9vg/a9vg', lazyloadRouteHandler('./routes/a9vg/a9vg'));
980
380
 
981
381
  // The Guardian
982
382
  router.get('/guardian/:type', lazyloadRouteHandler('./routes/guardian/guardian'));
@@ -989,22 +389,6 @@ router.get('/xiachufang/popular/:timeframe?', lazyloadRouteHandler('./routes/xia
989
389
  // 经济观察报
990
390
  router.get('/eeo/:column?/:category?', lazyloadRouteHandler('./routes/eeo/index'));
991
391
 
992
- // 腾讯视频
993
- router.get('/tencentvideo/playlist/:id', lazyloadRouteHandler('./routes/tencent/video/playlist'));
994
-
995
- // 看漫画 migrated to v2
996
- // router.get('/manhuagui/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/manhuagui/comic'));
997
- // router.get('/mhgui/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/mhgui/comic'));
998
- // router.get('/twmanhuagui/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/twmanhuagui/comic'));
999
-
1000
- // 拷贝漫画
1001
- // router.get('/copymanga/comic/:id/:chapterCnt?', lazyloadRouteHandler('./routes/copymanga/comic'));
1002
-
1003
- // 拷贝漫画
1004
- // router.get('/copymanga/comic/:id', lazyloadRouteHandler('./routes/copymanga/comic'));
1005
-
1006
- // 動漫狂
1007
- // router.get('/cartoonmad/comic/:id', lazyloadRouteHandler('./routes/cartoonmad/comic'));
1008
392
  // Vol
1009
393
  router.get('/vol/:mode?', lazyloadRouteHandler('./routes/vol/lastupdate'));
1010
394
  // 咚漫
@@ -1019,104 +403,33 @@ router.get('/tits-guru/daily', lazyloadRouteHandler('./routes/titsguru/daily'));
1019
403
  router.get('/tits-guru/category/:type', lazyloadRouteHandler('./routes/titsguru/category'));
1020
404
  router.get('/tits-guru/model/:name', lazyloadRouteHandler('./routes/titsguru/model'));
1021
405
 
1022
- // typora
1023
- // router.get('/typora/changelog', lazyloadRouteHandler('./routes/typora/changelog'));
1024
- // router.get('/typora/changelog-dev/:os?', lazyloadRouteHandler('./routes/typora/changelog-dev'));
1025
-
1026
- // TSSstatus
1027
- router.get('/tssstatus/:board/:build', lazyloadRouteHandler('./routes/tssstatus'));
1028
-
1029
406
  // Anime1
1030
407
  router.get('/anime1/anime/:time/:name', lazyloadRouteHandler('./routes/anime1/anime'));
1031
408
  router.get('/anime1/search/:keyword', lazyloadRouteHandler('./routes/anime1/search'));
1032
409
 
1033
- // Global UDN
1034
- // router.get('/udn/global/:tid', lazyloadRouteHandler('./routes/udn/global'));
1035
-
1036
- // gitea
1037
- router.get('/gitea/blog', lazyloadRouteHandler('./routes/gitea/blog'));
1038
-
1039
410
  // iDownloadBlog
1040
411
  router.get('/idownloadblog', lazyloadRouteHandler('./routes/idownloadblog/index'));
1041
412
 
1042
- // 9to5
1043
- // router.get('/9to5/:subsite/:tag?', lazyloadRouteHandler('./routes/9to5/subsite'));
1044
-
1045
413
  // TesterHome
1046
414
  router.get('/testerhome/newest', lazyloadRouteHandler('./routes/testerhome/newest'));
1047
415
 
1048
- // 刷屏
1049
- router.get('/weseepro/newest', lazyloadRouteHandler('./routes/weseepro/newest'));
1050
- router.get('/weseepro/newest-direct', lazyloadRouteHandler('./routes/weseepro/newest-direct'));
1051
- router.get('/weseepro/circle', lazyloadRouteHandler('./routes/weseepro/circle'));
1052
-
1053
416
  // 玩物志
1054
417
  router.get('/coolbuy/newest', lazyloadRouteHandler('./routes/coolbuy/newest'));
1055
418
 
1056
- // MiniFlux
1057
- router.get('/miniflux/subscription/:parameters?', lazyloadRouteHandler('./routes/miniflux/get_feeds'));
1058
- router.get('/miniflux/:feeds/:parameters?', lazyloadRouteHandler('./routes/miniflux/get_entries'));
1059
-
1060
- // NGA migrated to v2
1061
- // router.get('/nga/forum/:fid/:recommend?', lazyloadRouteHandler('./routes/nga/forum'));
1062
- // router.get('/nga/post/:tid', lazyloadRouteHandler('./routes/nga/post'));
1063
-
1064
- // Nautilus
1065
- // router.get('/nautilus/topic/:tid', lazyloadRouteHandler('./routes/nautilus/topics'));
1066
-
1067
- // JavBus migrated to v2
1068
- // router.get('/javbus/home', lazyloadRouteHandler('./routes/javbus/home'));
1069
- // router.get('/javbus/genre/:gid', lazyloadRouteHandler('./routes/javbus/genre'));
1070
- // router.get('/javbus/star/:sid', lazyloadRouteHandler('./routes/javbus/star'));
1071
- // router.get('/javbus/series/:seriesid', lazyloadRouteHandler('./routes/javbus/series'));
1072
- // router.get('/javbus/studio/:studioid', lazyloadRouteHandler('./routes/javbus/studio'));
1073
- // router.get('/javbus/label/:labelid', lazyloadRouteHandler('./routes/javbus/label'));
1074
- // router.get('/javbus/uncensored/home', lazyloadRouteHandler('./routes/javbus/uncensored/home'));
1075
- // router.get('/javbus/uncensored/genre/:gid', lazyloadRouteHandler('./routes/javbus/uncensored/genre'));
1076
- // router.get('/javbus/uncensored/star/:sid', lazyloadRouteHandler('./routes/javbus/uncensored/star'));
1077
- // router.get('/javbus/uncensored/series/:seriesid', lazyloadRouteHandler('./routes/javbus/uncensored/series'));
1078
- // router.get('/javbus/western/home', lazyloadRouteHandler('./routes/javbus/western/home'));
1079
- // router.get('/javbus/western/genre/:gid', lazyloadRouteHandler('./routes/javbus/western/genre'));
1080
- // router.get('/javbus/western/star/:sid', lazyloadRouteHandler('./routes/javbus/western/star'));
1081
- // router.get('/javbus/western/series/:seriesid', lazyloadRouteHandler('./routes/javbus/western/series'));
1082
-
1083
- // 中山大学
1084
- // router.get('/sysu/cse', lazyloadRouteHandler('./routes/universities/sysu/cse'));
1085
-
1086
419
  // 動畫瘋
1087
- router.get('/anigamer/new_anime', lazyloadRouteHandler('./routes/anigamer/new_anime'));
1088
- router.get('/anigamer/anime/:sn', lazyloadRouteHandler('./routes/anigamer/anime'));
1089
-
1090
- // Apkpure
1091
- // router.get('/apkpure/versions/:region/:pkg', lazyloadRouteHandler('./routes/apkpure/versions'));
1092
-
1093
- // 豆瓣美女 migrated to v2
1094
- // router.get('/dbmv/:category?', lazyloadRouteHandler('./routes/dbmv/index'));
420
+ // router.get('/anigamer/new_anime', lazyloadRouteHandler('./routes/anigamer/new-anime'));
421
+ // router.get('/anigamer/anime/:sn', lazyloadRouteHandler('./routes/anigamer/anime'));
1095
422
 
1096
423
  // 中国药科大学
1097
424
  router.get('/cpu/home', lazyloadRouteHandler('./routes/universities/cpu/home'));
1098
425
  router.get('/cpu/jwc', lazyloadRouteHandler('./routes/universities/cpu/jwc'));
1099
426
  router.get('/cpu/yjsy', lazyloadRouteHandler('./routes/universities/cpu/yjsy'));
1100
427
 
1101
- // 字幕组
1102
- router.get('/zimuzu/resource/:id?', lazyloadRouteHandler('./routes/zimuzu/resource'));
1103
- router.get('/zimuzu/top/:range/:type', lazyloadRouteHandler('./routes/zimuzu/top'));
1104
-
1105
428
  // 字幕库
1106
429
  router.get('/zimuku/:type?', lazyloadRouteHandler('./routes/zimuku/index'));
1107
430
 
1108
- // SubHD.tv
1109
- // router.get('/subhd/newest', lazyloadRouteHandler('./routes/subhd/newest'));
1110
-
1111
- // 虎嗅 migrated to v2
1112
- // router.get('/huxiu/tag/:id', lazyloadRouteHandler('./routes/huxiu/tag'));
1113
- // router.get('/huxiu/search/:keyword', lazyloadRouteHandler('./routes/huxiu/search'));
1114
- // router.get('/huxiu/author/:id', lazyloadRouteHandler('./routes/huxiu/author'));
1115
- // router.get('/huxiu/article', lazyloadRouteHandler('./routes/huxiu/article'));
1116
- // router.get('/huxiu/collection/:id', lazyloadRouteHandler('./routes/huxiu/collection'));
1117
-
1118
431
  // Steam
1119
- router.get('/steam/search/:params', lazyloadRouteHandler('./routes/steam/search'));
432
+ // router.get('/steam/search/:params', lazyloadRouteHandler('./routes/steam/search'));
1120
433
 
1121
434
  // Steamgifts
1122
435
  router.get('/steamgifts/discussions/:category?', lazyloadRouteHandler('./routes/steam/steamgifts/discussions'));
@@ -1125,27 +438,13 @@ router.get('/steamgifts/discussions/:category?', lazyloadRouteHandler('./routes/
1125
438
  router.get('/shanbay/checkin/:id', lazyloadRouteHandler('./routes/shanbay/checkin'));
1126
439
  router.get('/shanbay/footprints/:category?', lazyloadRouteHandler('./routes/shanbay/footprints'));
1127
440
 
1128
- // Facebook
1129
- router.get('/facebook/page/:id', lazyloadRouteHandler('./routes/facebook/page'));
1130
-
1131
- // 币乎
1132
- router.get('/bihu/activaties/:id', lazyloadRouteHandler('./routes/bihu/activaties'));
1133
-
1134
441
  // 停电通知
1135
442
  router.get('/tingdiantz/nanjing', lazyloadRouteHandler('./routes/tingdiantz/nanjing'));
1136
443
  router.get('/tingdiantz/95598/:province/:city/:district?', lazyloadRouteHandler('./routes/tingdiantz/95598'));
1137
444
 
1138
- // 36kr migrated to v2
1139
- // router.get('/36kr/search/article/:keyword', lazyloadRouteHandler('./routes/36kr/search/article'));
1140
- // router.get('/36kr/newsflashes', lazyloadRouteHandler('./routes/36kr/newsflashes'));
1141
- // router.get('/36kr/news/:category?', lazyloadRouteHandler('./routes/36kr/news'));
1142
- // router.get('/36kr/user/:uid', lazyloadRouteHandler('./routes/36kr/user'));
1143
- // router.get('/36kr/motif/:mid', lazyloadRouteHandler('./routes/36kr/motif'));
1144
-
1145
445
  // PMCAFF
1146
446
  router.get('/pmcaff/list/:typeid', lazyloadRouteHandler('./routes/pmcaff/list'));
1147
447
  router.get('/pmcaff/feed/:typeid', lazyloadRouteHandler('./routes/pmcaff/feed'));
1148
- router.get('/pmcaff/user/:userid', lazyloadRouteHandler('./routes/pmcaff/user'));
1149
448
 
1150
449
  // icourse163
1151
450
  router.get('/icourse163/newest', lazyloadRouteHandler('./routes/icourse163/newest'));
@@ -1153,22 +452,12 @@ router.get('/icourse163/newest', lazyloadRouteHandler('./routes/icourse163/newes
1153
452
  // patchwork.kernel.org
1154
453
  router.get('/patchwork.kernel.org/comments/:id', lazyloadRouteHandler('./routes/patchwork.kernel.org/comments'));
1155
454
 
1156
- // 京东众筹
1157
- router.get('/jingdong/zhongchou/:type/:status/:sort', lazyloadRouteHandler('./routes/jingdong/zhongchou'));
1158
-
1159
455
  // All Poetry
1160
456
  router.get('/allpoetry/:order?', lazyloadRouteHandler('./routes/allpoetry/order'));
1161
457
 
1162
- // 华尔街见闻
1163
- // router.get('/wallstreetcn/news/global', lazyloadRouteHandler('./routes/wallstreetcn/news'));
1164
- // router.get('/wallstreetcn/live/:channel?', lazyloadRouteHandler('./routes/wallstreetcn/live'));
1165
-
1166
- // 多抓鱼搜索
1167
- router.get('/duozhuayu/search/:wd', lazyloadRouteHandler('./routes/duozhuayu/search'));
1168
-
1169
458
  // 创业邦
1170
- router.get('/cyzone/author/:id', lazyloadRouteHandler('./routes/cyzone/author'));
1171
- router.get('/cyzone/label/:name', lazyloadRouteHandler('./routes/cyzone/label'));
459
+ // router.get('/cyzone/author/:id', lazyloadRouteHandler('./routes/cyzone/author'));
460
+ // router.get('/cyzone/label/:name', lazyloadRouteHandler('./routes/cyzone/label'));
1172
461
 
1173
462
  // 政府
1174
463
  // router.get('/gov/zhengce/zuixin', lazyloadRouteHandler('./routes/gov/zhengce/zuixin'));
@@ -1182,11 +471,8 @@ router.get('/gov/shuju/:caty/:item', lazyloadRouteHandler('./routes/gov/shuju'))
1182
471
  router.get('/gov/xinwen/tujie/:caty', lazyloadRouteHandler('./routes/gov/xinwen/tujie'));
1183
472
 
1184
473
  // 苏州
1185
- router.get('/gov/suzhou/news/:uid', lazyloadRouteHandler('./routes/gov/suzhou/news'));
1186
- router.get('/gov/suzhou/doc', lazyloadRouteHandler('./routes/gov/suzhou/doc'));
1187
-
1188
- // 江苏
1189
- // router.get('/gov/jiangsu/eea/:type?', lazyloadRouteHandler('./routes/gov/jiangsu/eea'));
474
+ // router.get('/gov/suzhou/news/:uid', lazyloadRouteHandler('./routes/gov/suzhou/news'));
475
+ // router.get('/gov/suzhou/doc', lazyloadRouteHandler('./routes/gov/suzhou/doc'));
1190
476
 
1191
477
  // 山西
1192
478
  router.get('/gov/shanxi/rst/:category', lazyloadRouteHandler('./routes/gov/shanxi/rst'));
@@ -1195,16 +481,7 @@ router.get('/gov/shanxi/rst/:category', lazyloadRouteHandler('./routes/gov/shanx
1195
481
  router.get('/gov/hunan/notice/:type', lazyloadRouteHandler('./routes/gov/hunan/notice'));
1196
482
 
1197
483
  // 中华人民共和国国家发展和改革委员会
1198
- router.get('/gov/ndrc/xwdt/:caty?', lazyloadRouteHandler('./routes/gov/ndrc/xwdt'));
1199
-
1200
- // 中华人民共和国-海关总署 migrated to v2
1201
- // router.get('/gov/customs/list/:gchannel', lazyloadRouteHandler('./routes/gov/customs/list'));
1202
-
1203
- // 中华人民共和国教育部
1204
- // router.get('/gov/moe/:type', lazyloadRouteHandler('./routes/gov/moe/moe'));
1205
-
1206
- // 中华人民共和国外交部
1207
- // router.get('/gov/fmprc/fyrbt', lazyloadRouteHandler('./routes/gov/fmprc/fyrbt'));
484
+ // router.get('/gov/ndrc/xwdt/:caty?', lazyloadRouteHandler('./routes/gov/ndrc/xwdt'));
1208
485
 
1209
486
  // 中华人民共和国住房和城乡建设部
1210
487
  router.get('/gov/mohurd/policy', lazyloadRouteHandler('./routes/gov/mohurd/policy'));
@@ -1228,50 +505,13 @@ router.get('/gov/guangdong/edu/:caty', lazyloadRouteHandler('./routes/gov/guangd
1228
505
  // 广东省教育考试院
1229
506
  router.get('/gov/guangdong/eea/:caty', lazyloadRouteHandler('./routes/gov/guangdong/eea'));
1230
507
 
1231
- // 广东省深圳市
1232
- // router.get('/gov/shenzhen/xxgk/zfxxgj/:caty', lazyloadRouteHandler('./routes/gov/shenzhen/xxgk/zfxxgj'));
1233
-
1234
508
  // 日本国外務省記者会見
1235
509
  router.get('/go.jp/mofa', lazyloadRouteHandler('./routes/go.jp/mofa/main'));
1236
-
1237
- // 小黑盒
1238
- router.get('/xiaoheihe/user/:id', lazyloadRouteHandler('./routes/xiaoheihe/user'));
1239
- router.get('/xiaoheihe/news', lazyloadRouteHandler('./routes/xiaoheihe/news'));
1240
- router.get('/xiaoheihe/discount/:platform?', lazyloadRouteHandler('./routes/xiaoheihe/discount'));
1241
-
1242
- // 惠誉评级
1243
- router.get('/fitchratings/site/:type', lazyloadRouteHandler('./routes/fitchratings/site'));
1244
-
1245
- // 移动支付 migrated to v2
1246
- // router.get('/mpaypass/news', lazyloadRouteHandler('./routes/mpaypass/news'));
1247
- // router.get('/mpaypass/main/:type?', lazyloadRouteHandler('./routes/mpaypass/main'));
1248
-
1249
- // 新浪科技探索
1250
- router.get('/sina/discovery/:type', lazyloadRouteHandler('./routes/sina/discovery'));
1251
-
1252
- // 新浪科技滚动新闻
1253
- router.get('/sina/rollnews', lazyloadRouteHandler('./routes/sina/rollnews'));
1254
-
1255
- // 新浪体育
1256
- router.get('/sina/sports/:type', lazyloadRouteHandler('./routes/sina/sports'));
1257
-
1258
- // 新浪专栏创事记
1259
- router.get('/sina/csj', lazyloadRouteHandler('./routes/sina/chuangshiji'));
1260
-
1261
- // 新浪财经-国內
1262
- router.get('/sina/finance', lazyloadRouteHandler('./routes/sina/finance'));
1263
-
1264
- // Animen
1265
- router.get('/animen/news/:type', lazyloadRouteHandler('./routes/animen/news'));
1266
-
1267
- // D2 资源库
1268
- router.get('/d2/daily', lazyloadRouteHandler('./routes/d2/daily'));
1269
-
1270
510
  // ebb
1271
511
  router.get('/ebb', lazyloadRouteHandler('./routes/ebb'));
1272
512
 
1273
513
  // Indienova
1274
- router.get('/indienova/:type', lazyloadRouteHandler('./routes/indienova/article'));
514
+ // router.get('/indienova/:type', lazyloadRouteHandler('./routes/indienova/article'));
1275
515
 
1276
516
  // JPMorgan Chase Institute
1277
517
  router.get('/jpmorganchase', lazyloadRouteHandler('./routes/jpmorganchase/research'));
@@ -1282,45 +522,9 @@ router.get('/meipai/user/:uid', lazyloadRouteHandler('./routes/meipai/user'));
1282
522
  // 多知网
1283
523
  router.get('/duozhi', lazyloadRouteHandler('./routes/duozhi'));
1284
524
 
1285
- // 人人都是产品经理
1286
- // router.get('/woshipm/popular', lazyloadRouteHandler('./routes/woshipm/popular'));
1287
- // router.get('/woshipm/wen', lazyloadRouteHandler('./routes/woshipm/wen'));
1288
- // router.get('/woshipm/bookmarks/:id', lazyloadRouteHandler('./routes/woshipm/bookmarks'));
1289
- // router.get('/woshipm/user_article/:id', lazyloadRouteHandler('./routes/woshipm/user_article'));
1290
- // router.get('/woshipm/latest', lazyloadRouteHandler('./routes/woshipm/latest'));
1291
-
1292
525
  // 高清电台
1293
526
  router.get('/gaoqing/latest', lazyloadRouteHandler('./routes/gaoqing/latest'));
1294
527
 
1295
- // 鲸跃汽车
1296
- router.get('/whalegogo/home', lazyloadRouteHandler('./routes/whalegogo/home'));
1297
- router.get('/whalegogo/portal/:type_id/:tagid?', lazyloadRouteHandler('./routes/whalegogo/portal'));
1298
-
1299
- // 爱思想
1300
- router.get('/aisixiang/column/:id', lazyloadRouteHandler('./routes/aisixiang/column'));
1301
- router.get('/aisixiang/ranking/:type?/:range?', lazyloadRouteHandler('./routes/aisixiang/ranking'));
1302
- router.get('/aisixiang/thinktank/:name/:type?', lazyloadRouteHandler('./routes/aisixiang/thinktank'));
1303
-
1304
- // Hacker News
1305
- // router.get('/hackernews/:section/:type?', lazyloadRouteHandler('./routes/hackernews/story'));
1306
-
1307
- // LeetCode
1308
- // router.get('/leetcode/articles', lazyloadRouteHandler('./routes/leetcode/articles'));
1309
- router.get('/leetcode/submission/us/:user', lazyloadRouteHandler('./routes/leetcode/check-us'));
1310
- router.get('/leetcode/submission/cn/:user', lazyloadRouteHandler('./routes/leetcode/check-cn'));
1311
-
1312
- // 虎扑
1313
- // router.get('/hupu/bxj/:id/:order?', lazyloadRouteHandler('./routes/hupu/bbs'));
1314
- // router.get('/hupu/bbs/:id/:order?', lazyloadRouteHandler('./routes/hupu/bbs'));
1315
- // router.get('/hupu/all/:caty', lazyloadRouteHandler('./routes/hupu/all'));
1316
- // router.get('/hupu/dept/:dept', lazyloadRouteHandler('./routes/hupu/dept'));
1317
-
1318
- // 牛客网 migrated to v2
1319
- // router.get('/nowcoder/discuss/:type/:order', lazyloadRouteHandler('./routes/nowcoder/discuss'));
1320
- // router.get('/nowcoder/schedule/:propertyId?/:typeId?', lazyloadRouteHandler('./routes/nowcoder/schedule'));
1321
- // router.get('/nowcoder/recommend', lazyloadRouteHandler('./routes/nowcoder/recommend'));
1322
- // router.get('/nowcoder/jobcenter/:recruitType?/:city?/:type?/:order?/:latest?', lazyloadRouteHandler('./routes/nowcoder/jobcenter'));
1323
-
1324
528
  // Xiaomi.eu
1325
529
  router.get('/xiaomieu/releases', lazyloadRouteHandler('./routes/xiaomieu/releases'));
1326
530
 
@@ -1331,40 +535,17 @@ router.get('/sketch/updates', lazyloadRouteHandler('./routes/sketch/updates'));
1331
535
  // 每日安全
1332
536
  router.get('/security/pulses', lazyloadRouteHandler('./routes/security/pulses'));
1333
537
 
1334
- // DoNews
1335
- router.get('/donews/:column?', lazyloadRouteHandler('./routes/donews/index'));
1336
-
1337
538
  // WeGene
1338
539
  router.get('/wegene/column/:type/:category', lazyloadRouteHandler('./routes/wegene/column'));
1339
540
  router.get('/wegene/newest', lazyloadRouteHandler('./routes/wegene/newest'));
1340
541
 
1341
- // instapaper
1342
- router.get('/instapaper/person/:name', lazyloadRouteHandler('./routes/instapaper/person'));
1343
-
1344
542
  // UI 中国
1345
543
  router.get('/ui-cn/article', lazyloadRouteHandler('./routes/ui-cn/article'));
1346
544
  router.get('/ui-cn/user/:id', lazyloadRouteHandler('./routes/ui-cn/user'));
1347
545
 
1348
- // Dcard
1349
- // router.get('/dcard/:section/:type?', lazyloadRouteHandler('./routes/dcard/section'));
1350
-
1351
- // 北京天文馆每日一图
1352
- // router.get('/bjp/apod', lazyloadRouteHandler('./routes/bjp/apod'));
1353
-
1354
- // 洛谷
1355
- // router.get('/luogu/daily/:id?', lazyloadRouteHandler('./routes/luogu/daily'));
1356
- // router.get('/luogu/contest', lazyloadRouteHandler('./routes/luogu/contest'));
1357
- // router.get('/luogu/user/feed/:uid', lazyloadRouteHandler('./routes/luogu/userFeed'));
1358
-
1359
- // 决胜网
1360
- router.get('/juesheng', lazyloadRouteHandler('./routes/juesheng'));
1361
-
1362
- // 播客IBCラジオ イヤーマイッタマイッタ
1363
- router.get('/maitta', lazyloadRouteHandler('./routes/maitta'));
1364
-
1365
546
  // 一些博客
1366
547
  // 敬维-以认真的态度做完美的事情: https://jingwei.link/
1367
- router.get('/blogs/jingwei.link', lazyloadRouteHandler('./routes/blogs/jingwei_link'));
548
+ router.get('/blogs/jingwei.link', lazyloadRouteHandler('./routes/blogs/jingwei-link'));
1368
549
 
1369
550
  // 王垠的博客-当然我在扯淡
1370
551
  router.get('/blogs/wangyin', lazyloadRouteHandler('./routes/blogs/wangyin'));
@@ -1375,30 +556,8 @@ router.get('/blogs/wang54/:id?', lazyloadRouteHandler('./routes/blogs/wang54'));
1375
556
  // WordPress
1376
557
  router.get('/blogs/wordpress/:domain/:https?', lazyloadRouteHandler('./routes/blogs/wordpress'));
1377
558
 
1378
- // 裏垢女子まとめ migrated to v2
1379
- // router.get('/uraaka-joshi', lazyloadRouteHandler('./routes/uraaka-joshi/uraaka-joshi'));
1380
- // router.get('/uraaka-joshi/:id', lazyloadRouteHandler('./routes/uraaka-joshi/uraaka-joshi-user'));
1381
-
1382
- // 西祠胡同
1383
- router.get('/xici/:id?', lazyloadRouteHandler('./routes/xici'));
1384
-
1385
- // 淘股吧论坛
1386
- // router.get('/taoguba/index', lazyloadRouteHandler('./routes/taoguba/index'));
1387
- // router.get('/taoguba/user/:uid', lazyloadRouteHandler('./routes/taoguba/user'));
1388
-
1389
- // 今日热榜
1390
- router.get('/tophub/:id', lazyloadRouteHandler('./routes/tophub'));
1391
-
1392
- // 游戏时光
1393
- router.get('/vgtime/news', lazyloadRouteHandler('./routes/vgtime/news.js'));
1394
- router.get('/vgtime/release', lazyloadRouteHandler('./routes/vgtime/release'));
1395
- router.get('/vgtime/keyword/:keyword', lazyloadRouteHandler('./routes/vgtime/keyword'));
1396
-
1397
- // MP4吧
1398
- router.get('/mp4ba/:param', lazyloadRouteHandler('./routes/mp4ba'));
1399
-
1400
- // anitama
1401
- router.get('/anitama/:channel?', lazyloadRouteHandler('./routes/anitama/channel'));
559
+ // 今日热榜 migrated to v2
560
+ // router.get('/tophub/:id', lazyloadRouteHandler('./routes/tophub'));
1402
561
 
1403
562
  // 親子王國
1404
563
  router.get('/babykingdom/:id/:order?', lazyloadRouteHandler('./routes/babykingdom'));
@@ -1412,33 +571,14 @@ router.get('/zjgsu/tzgg', lazyloadRouteHandler('./routes/universities/zjgsu/tzgg
1412
571
  router.get('/zjgsu/gsgg', lazyloadRouteHandler('./routes/universities/zjgsu/gsgg/scripts'));
1413
572
  router.get('/zjgsu/xszq', lazyloadRouteHandler('./routes/universities/zjgsu/xszq/scripts'));
1414
573
 
1415
- // 大众点评
1416
- router.get('/dianping/user/:id?', lazyloadRouteHandler('./routes/dianping/user'));
1417
-
1418
574
  // 半月谈
1419
575
  router.get('/banyuetan/byt/:time?', lazyloadRouteHandler('./routes/banyuetan/byt'));
1420
576
  router.get('/banyuetan/:name', lazyloadRouteHandler('./routes/banyuetan'));
1421
577
 
1422
- // 人民网
1423
- // router.get('/people/opinion/:id', lazyloadRouteHandler('./routes/people/opinion'));
1424
- // router.get('/people/env/:id', lazyloadRouteHandler('./routes/people/env'));
1425
- // router.get('/people/xjpjh/:keyword?/:year?', lazyloadRouteHandler('./routes/people/xjpjh'));
1426
- // router.get('/people/cpc/24h', lazyloadRouteHandler('./routes/people/cpc/24h'));
1427
-
1428
- // 北极星电力网 migrated to v2
1429
- // router.get('/bjx/huanbao', lazyloadRouteHandler('./routes/bjx/huanbao'));
1430
-
1431
578
  // gamersky
1432
579
  router.get('/gamersky/news', lazyloadRouteHandler('./routes/gamersky/news'));
1433
580
  router.get('/gamersky/ent/:category', lazyloadRouteHandler('./routes/gamersky/ent'));
1434
581
 
1435
- // 游研社
1436
- // router.get('/yystv/category/:category', lazyloadRouteHandler('./routes/yystv/category'));
1437
- // router.get('/yystv/docs', lazyloadRouteHandler('./routes/yystv/docs'));
1438
-
1439
- // konami
1440
- router.get('/konami/pesmobile/:lang?/:os?', lazyloadRouteHandler('./routes/konami/pesmobile'));
1441
-
1442
582
  // psnine
1443
583
  router.get('/psnine/index', lazyloadRouteHandler('./routes/psnine/index'));
1444
584
  router.get('/psnine/shuzhe', lazyloadRouteHandler('./routes/psnine/shuzhe'));
@@ -1447,50 +587,16 @@ router.get('/psnine/game', lazyloadRouteHandler('./routes/psnine/game'));
1447
587
  router.get('/psnine/news/:order?', lazyloadRouteHandler('./routes/psnine/news'));
1448
588
  router.get('/psnine/node/:id?/:order?', lazyloadRouteHandler('./routes/psnine/node'));
1449
589
 
1450
- // 浙江大学 migrated to v2
1451
- // router.get('/zju/list/:type', lazyloadRouteHandler('./routes/universities/zju/list'));
1452
- // router.get('/zju/physics/:type', lazyloadRouteHandler('./routes/universities/zju/physics'));
1453
- // router.get('/zju/grs/:type', lazyloadRouteHandler('./routes/universities/zju/grs'));
1454
- // router.get('/zju/career/:type', lazyloadRouteHandler('./routes/universities/zju/career'));
1455
- // router.get('/zju/cst/:type', lazyloadRouteHandler('./routes/universities/zju/cst'));
1456
- // router.get('/zju/cst/custom/:id', lazyloadRouteHandler('./routes/universities/zju/cst/custom'));
1457
-
1458
590
  // 浙江大学城市学院
1459
591
  router.get('/zucc/news/latest', lazyloadRouteHandler('./routes/universities/zucc/news'));
1460
592
  router.get('/zucc/cssearch/latest/:webVpn/:key', lazyloadRouteHandler('./routes/universities/zucc/cssearch'));
1461
593
 
1462
- // 华中师范大学
1463
- // router.get('/ccnu/career', lazyloadRouteHandler('./routes/universities/ccnu/career'));
1464
-
1465
- // Infoq
1466
- // router.get('/infoq/recommend', lazyloadRouteHandler('./routes/infoq/recommend'));
1467
- // router.get('/infoq/topic/:id', lazyloadRouteHandler('./routes/infoq/topic'));
1468
-
1469
594
  // checkee
1470
595
  router.get('/checkee/:dispdate', lazyloadRouteHandler('./routes/checkee/index'));
1471
596
 
1472
- // ZAKER migrated to v2
1473
- // router.get('/zaker/:type/:id', lazyloadRouteHandler('./routes/zaker/source'));
1474
- // router.get('/zaker/focusread', lazyloadRouteHandler('./routes/zaker/focusread'));
1475
-
1476
- // Matters
1477
- router.get('/matters/latest/:type?', lazyloadRouteHandler('./routes/matters/latest'));
1478
- router.redirect('/matters/hot', '/matters/latest/heat'); // Deprecated
1479
- router.get('/matters/tags/:tid', lazyloadRouteHandler('./routes/matters/tags'));
1480
- router.get('/matters/author/:uid', lazyloadRouteHandler('./routes/matters/author'));
1481
-
1482
- // MobData
1483
- router.get('/mobdata/report', lazyloadRouteHandler('./routes/mobdata/report'));
1484
-
1485
- // 谷雨
1486
- router.get('/tencent/guyu/channel/:name', lazyloadRouteHandler('./routes/tencent/guyu/channel'));
1487
-
1488
597
  // 古诗文网
1489
598
  router.get('/gushiwen/recommend/:annotation?', lazyloadRouteHandler('./routes/gushiwen/recommend'));
1490
599
 
1491
- // 电商在线
1492
- router.get('/imaijia/category/:category', lazyloadRouteHandler('./routes/imaijia/category'));
1493
-
1494
600
  // 21财经
1495
601
  router.get('/21caijing/channel/:name', lazyloadRouteHandler('./routes/21caijing/channel'));
1496
602
 
@@ -1501,53 +607,12 @@ router.get('/bupt/portal', lazyloadRouteHandler('./routes/universities/bupt/port
1501
607
  router.get('/bupt/news', lazyloadRouteHandler('./routes/universities/bupt/news'));
1502
608
  router.get('/bupt/funbox', lazyloadRouteHandler('./routes/universities/bupt/funbox'));
1503
609
 
1504
- // VOCUS 方格子
1505
- // router.get('/vocus/publication/:id', lazyloadRouteHandler('./routes/vocus/publication'));
1506
- // router.get('/vocus/user/:id', lazyloadRouteHandler('./routes/vocus/user'));
1507
-
1508
- // 一亩三分地 1point3acres
1509
- // router.get('/1point3acres/blog/:category?', lazyloadRouteHandler('./routes/1point3acres/blog'));
1510
- // router.get('/1point3acres/user/:id/threads', lazyloadRouteHandler('./routes/1point3acres/threads'));
1511
- // router.get('/1point3acres/user/:id/posts', lazyloadRouteHandler('./routes/1point3acres/posts'));
1512
- // router.get('/1point3acres/offer/:year?/:major?/:school?', lazyloadRouteHandler('./routes/1point3acres/offer'));
1513
- // router.get('/1point3acres/post/:category', lazyloadRouteHandler('./routes/1point3acres/post'));
1514
-
1515
610
  // 广东海洋大学
1516
611
  router.get('/gdoujwc', lazyloadRouteHandler('./routes/universities/gdou/jwc/jwtz'));
1517
612
 
1518
- // 中国高清网
1519
- router.get('/gaoqingla/:tag?', lazyloadRouteHandler('./routes/gaoqingla/latest'));
1520
-
1521
- // 马良行
1522
- router.get('/mlhang', lazyloadRouteHandler('./routes/mlhang/latest'));
1523
-
1524
- // PlayStation Store
1525
- router.get('/ps/list/:gridName', lazyloadRouteHandler('./routes/ps/list'));
1526
- router.get('/ps/trophy/:id', lazyloadRouteHandler('./routes/ps/trophy'));
1527
- router.get('/ps/ps4updates', lazyloadRouteHandler('./routes/ps/ps4updates'));
1528
- router.get('/ps/:lang?/product/:gridName', lazyloadRouteHandler('./routes/ps/product'));
1529
-
1530
613
  // Quanta Magazine
1531
614
  router.get('/quantamagazine/archive', lazyloadRouteHandler('./routes/quantamagazine/archive'));
1532
615
 
1533
- // Nintendo migrated to v2
1534
- // router.get('/nintendo/eshop/jp', lazyloadRouteHandler('./routes/nintendo/eshop_jp'));
1535
- // router.get('/nintendo/eshop/hk', lazyloadRouteHandler('./routes/nintendo/eshop_hk'));
1536
- // router.get('/nintendo/eshop/us', lazyloadRouteHandler('./routes/nintendo/eshop_us'));
1537
- // router.get('/nintendo/eshop/cn', lazyloadRouteHandler('./routes/nintendo/eshop_cn'));
1538
- // router.get('/nintendo/news', lazyloadRouteHandler('./routes/nintendo/news'));
1539
- // router.get('/nintendo/news/china', lazyloadRouteHandler('./routes/nintendo/news_china'));
1540
- // router.get('/nintendo/direct', lazyloadRouteHandler('./routes/nintendo/direct'));
1541
- // router.get('/nintendo/system-update', lazyloadRouteHandler('./routes/nintendo/system-update'));
1542
-
1543
- // 世界卫生组织 migrated to v2
1544
- // router.get('/who/news-room/:category?/:language?', lazyloadRouteHandler('./routes/who/news-room'));
1545
- // router.get('/who/speeches/:language?', lazyloadRouteHandler('./routes/who/speeches'));
1546
- // router.get('/who/news/:language?', lazyloadRouteHandler('./routes/who/news'));
1547
-
1548
- // 福利资源-met.red
1549
- router.get('/metred/fuli', lazyloadRouteHandler('./routes/metred/fuli'));
1550
-
1551
616
  // MIT
1552
617
  router.get('/mit/graduateadmissions/:type/:name', lazyloadRouteHandler('./routes/universities/mit/graduateadmissions'));
1553
618
  router.get('/mit/ocw-top', lazyloadRouteHandler('./routes/universities/mit/ocw-top'));
@@ -1556,115 +621,42 @@ router.get('/mit/csail/news', lazyloadRouteHandler('./routes/universities/mit/cs
1556
621
  // 毕马威
1557
622
  router.get('/kpmg/insights', lazyloadRouteHandler('./routes/kpmg/insights'));
1558
623
 
1559
- // Saraba1st
1560
- // router.get('/saraba1st/thread/:tid', lazyloadRouteHandler('./routes/saraba1st/thread'));
1561
-
1562
- // gradcafe
1563
- router.get('/gradcafe/result/:type', lazyloadRouteHandler('./routes/gradcafe/result'));
1564
- router.get('/gradcafe/result', lazyloadRouteHandler('./routes/gradcafe/result'));
1565
-
1566
- // The Economist migrated to v2
1567
- // router.get('/the-economist/download', lazyloadRouteHandler('./routes/the-economist/download'));
1568
- // router.get('/the-economist/gre-vocabulary', lazyloadRouteHandler('./routes/the-economist/gre-vocabulary'));
1569
- // router.get('/the-economist/:endpoint', lazyloadRouteHandler('./routes/the-economist/full'));
1570
-
1571
- // 鼠绘漫画
1572
- router.get('/shuhui/comics/:id', lazyloadRouteHandler('./routes/shuhui/comics'));
1573
-
1574
624
  // 朝日新闻
1575
- router.get('/asahi/area/:id', lazyloadRouteHandler('./routes/asahi/area'));
1576
625
  router.get('/asahi/:genre?/:category?', lazyloadRouteHandler('./routes/asahi/index'));
1577
626
 
1578
- // 7x24小时快讯
1579
- router.get('/fx678/kx', lazyloadRouteHandler('./routes/fx678/kx'));
1580
-
1581
627
  // SoundCloud
1582
628
  router.get('/soundcloud/tracks/:user', lazyloadRouteHandler('./routes/soundcloud/tracks'));
1583
629
 
1584
- // dilidili
1585
- router.get('/dilidili/fanju/:id', lazyloadRouteHandler('./routes/dilidili/fanju'));
1586
-
1587
- // 且听风吟福利
1588
- router.get('/qtfyfl/:category', lazyloadRouteHandler('./routes/qtfyfl/category'));
1589
-
1590
630
  // 派代
1591
631
  router.get('/paidai', lazyloadRouteHandler('./routes/paidai/index'));
1592
632
  router.get('/paidai/bbs', lazyloadRouteHandler('./routes/paidai/bbs'));
1593
633
  router.get('/paidai/news', lazyloadRouteHandler('./routes/paidai/news'));
1594
634
 
1595
635
  // 中国银行
1596
- router.get('/boc/whpj/:format?', lazyloadRouteHandler('./routes/boc/whpj'));
636
+ // router.get('/boc/whpj/:format?', lazyloadRouteHandler('./routes/boc/whpj'));
1597
637
 
1598
638
  // 漫画db
1599
639
  router.get('/manhuadb/comics/:id', lazyloadRouteHandler('./routes/manhuadb/comics'));
1600
640
 
1601
- // 装备前线
1602
- router.get('/zfrontier/postlist/:type', lazyloadRouteHandler('./routes/zfrontier/postlist'));
1603
- router.get('/zfrontier/board/:boardId', lazyloadRouteHandler('./routes/zfrontier/board_postlist'));
1604
-
1605
- // 观察者网
1606
- // router.get('/guancha/headline', lazyloadRouteHandler('./routes/guancha/headline'));
1607
- // router.get('/guancha/topic/:id/:order?', lazyloadRouteHandler('./routes/guancha/topic'));
1608
- // router.get('/guancha/member/:caty?', lazyloadRouteHandler('./routes/guancha/member'));
1609
- // router.get('/guancha/personalpage/:uid', lazyloadRouteHandler('./routes/guancha/personalpage'));
1610
- // router.get('/guancha/:caty?', lazyloadRouteHandler('./routes/guancha/index'));
1611
-
1612
- // router.get('/guanchazhe/topic/:id/:order?', lazyloadRouteHandler('./routes/guancha/topic'));
1613
- // router.get('/guanchazhe/personalpage/:uid', lazyloadRouteHandler('./routes/guancha/personalpage'));
1614
- // router.get('/guanchazhe/index/:caty?', lazyloadRouteHandler('./routes/guancha/index'));
1615
-
1616
- // Hpoi 手办维基
1617
- router.get('/hpoi/info/:type?', lazyloadRouteHandler('./routes/hpoi/info'));
1618
- router.get('/hpoi/:category/:words', lazyloadRouteHandler('./routes/hpoi'));
1619
- router.get('/hpoi/user/:user_id/:caty', lazyloadRouteHandler('./routes/hpoi/user'));
1620
-
1621
- // 通用CurseForge
1622
- router.get('/curseforge/:gameid/:catagoryid/:projectid/files', lazyloadRouteHandler('./routes/curseforge/generalfiles'));
1623
-
1624
641
  // 西南财经大学
1625
642
  router.get('/swufe/seie/:type?', lazyloadRouteHandler('./routes/universities/swufe/seie'));
1626
643
 
1627
- // Wired
1628
- router.get('/wired/tag/:tag', lazyloadRouteHandler('./routes/wired/tag'));
1629
-
1630
- // 语雀文档
1631
- // router.get('/yuque/doc/:repo_id', lazyloadRouteHandler('./routes/yuque/doc'));
1632
-
1633
644
  // 飞地
1634
645
  router.get('/enclavebooks/category/:id?', lazyloadRouteHandler('./routes/enclavebooks/category'));
1635
646
  router.get('/enclavebooks/user/:uid', lazyloadRouteHandler('./routes/enclavebooks/user.js'));
1636
647
  router.get('/enclavebooks/collection/:uid', lazyloadRouteHandler('./routes/enclavebooks/collection.js'));
1637
648
 
1638
- // 色花堂
1639
- // router.get('/dsndsht23/picture/:subforumid', lazyloadRouteHandler('./routes/dsndsht23/index'));
1640
- // router.get('/dsndsht23/bt/:subforumid?', lazyloadRouteHandler('./routes/dsndsht23/index'));
1641
- // router.get('/dsndsht23/:subforumid?/:type?', lazyloadRouteHandler('./routes/dsndsht23/index'));
1642
- // router.get('/dsndsht23/:subforumid?', lazyloadRouteHandler('./routes/dsndsht23/index'));
1643
- // router.get('/dsndsht23', lazyloadRouteHandler('./routes/dsndsht23/index'));
1644
-
1645
649
  // 数英网最新文章
1646
650
  router.get('/digitaling/index', lazyloadRouteHandler('./routes/digitaling/index'));
1647
651
 
1648
652
  // 数英网文章专题
1649
- router.get('/digitaling/articles/:category/:subcate', lazyloadRouteHandler('./routes/digitaling/article'));
653
+ router.get('/digitaling/articles/:category/:subcate?', lazyloadRouteHandler('./routes/digitaling/article'));
1650
654
 
1651
655
  // 数英网项目专题
1652
656
  router.get('/digitaling/projects/:category', lazyloadRouteHandler('./routes/digitaling/project'));
1653
657
 
1654
658
  // Bing壁纸
1655
- router.get('/bing', lazyloadRouteHandler('./routes/bing/index'));
1656
-
1657
- // Maxjia News - DotA 2
1658
- router.get('/maxnews/dota2', lazyloadRouteHandler('./routes/maxnews/dota2'));
1659
-
1660
- // 柠檬 - 私房歌
1661
- router.get('/ningmeng/song', lazyloadRouteHandler('./routes/ningmeng/song'));
1662
-
1663
- // 紫竹张先生
1664
- router.get('/zzz/:category?/:language?', lazyloadRouteHandler('./routes/zzz'));
1665
-
1666
- // AEON
1667
- router.get('/aeon/:cid', lazyloadRouteHandler('./routes/aeon/category'));
659
+ // router.get('/bing', lazyloadRouteHandler('./routes/bing/index'));
1668
660
 
1669
661
  // AlgoCasts
1670
662
  router.get('/algocasts', lazyloadRouteHandler('./routes/algocasts/all'));
@@ -1675,11 +667,7 @@ router.get('/aqicn/:city/:pollution?', lazyloadRouteHandler('./routes/aqicn/inde
1675
667
  // 猫眼电影
1676
668
  router.get('/maoyan/hot', lazyloadRouteHandler('./routes/maoyan/hot'));
1677
669
  router.get('/maoyan/upcoming', lazyloadRouteHandler('./routes/maoyan/upcoming'));
1678
- router.get('/maoyan/hotComplete/:orderby?/:ascOrDesc?/:top?', lazyloadRouteHandler('./routes/maoyan/hotComplete'));
1679
-
1680
- // cnBeta
1681
- // router.get('/cnbeta', lazyloadRouteHandler('./routes/cnbeta/home'));
1682
- // router.get('/cnbeta/topic/:topic_id', lazyloadRouteHandler('./routes/cnbeta/topic'));
670
+ router.get('/maoyan/hotComplete/:orderby?/:ascOrDesc?/:top?', lazyloadRouteHandler('./routes/maoyan/hot-complete'));
1683
671
 
1684
672
  // 国家退伍士兵信息
1685
673
  router.get('/gov/veterans/:type', lazyloadRouteHandler('./routes/gov/veterans/china'));
@@ -1687,12 +675,6 @@ router.get('/gov/veterans/:type', lazyloadRouteHandler('./routes/gov/veterans/ch
1687
675
  // 河北省退伍士兵信息
1688
676
  router.get('/gov/veterans/hebei/:type', lazyloadRouteHandler('./routes/gov/veterans/hebei'));
1689
677
 
1690
- // Dilbert Comic Strip
1691
- router.get('/dilbert/strip', lazyloadRouteHandler('./routes/dilbert/strip'));
1692
-
1693
- // 游戏打折情报
1694
- // router.get('/yxdzqb/:type', lazyloadRouteHandler('./routes/yxdzqb'));
1695
-
1696
678
  // 怪物猎人
1697
679
  router.get('/monsterhunter/update', lazyloadRouteHandler('./routes/mhw/update'));
1698
680
  router.get('/mhw/update', lazyloadRouteHandler('./routes/mhw/update'));
@@ -1707,26 +689,11 @@ router.get('/polimi/news/:language?', lazyloadRouteHandler('./routes/polimi/news
1707
689
  // dekudeals
1708
690
  router.get('/dekudeals/:type', lazyloadRouteHandler('./routes/dekudeals'));
1709
691
 
1710
- // 直播吧 migrated to v2
1711
- // router.get('/zhibo8/forum/:id', lazyloadRouteHandler('./routes/zhibo8/forum'));
1712
- // router.get('/zhibo8/post/:id', lazyloadRouteHandler('./routes/zhibo8/post'));
1713
- // router.get('/zhibo8/more/:category?', lazyloadRouteHandler('./routes/zhibo8/more'));
1714
-
1715
- // 东方网 migrated to v2
1716
- // router.get('/eastday/sh', require('./routes/eastday/sh'));
1717
- // router.get('/eastday/24/:category?', require('./routes/eastday/24'));
1718
-
1719
692
  // Metacritic
1720
- router.get('/metacritic/release/:platform/:type/:sort?', lazyloadRouteHandler('./routes/metacritic/release'));
693
+ // router.get('/metacritic/release/:platform/:type/:sort?', lazyloadRouteHandler('./routes/metacritic/release'));
1721
694
 
1722
695
  // 快科技(原驱动之家)
1723
- router.get('/kkj/news', lazyloadRouteHandler('./routes/kkj/news'));
1724
-
1725
- // Outage.Report
1726
- // router.get('/outagereport/:name/:count?', lazyloadRouteHandler('./routes/outagereport/service'));
1727
-
1728
- // sixthtone
1729
- router.get('/sixthtone/news', lazyloadRouteHandler('./routes/sixthtone/news'));
696
+ // router.get('/kkj/news', lazyloadRouteHandler('./routes/kkj/news'));
1730
697
 
1731
698
  // AI研习社
1732
699
  router.get('/aiyanxishe/:id/:sort?', lazyloadRouteHandler('./routes/aiyanxishe/home'));
@@ -1734,30 +701,6 @@ router.get('/aiyanxishe/:id/:sort?', lazyloadRouteHandler('./routes/aiyanxishe/h
1734
701
  // 活动行
1735
702
  router.get('/huodongxing/explore', lazyloadRouteHandler('./routes/hdx/explore'));
1736
703
 
1737
- // 飞客茶馆优惠信息
1738
- // router.get('/flyert/preferential', lazyloadRouteHandler('./routes/flyert/preferential'));
1739
- // router.get('/flyert/creditcard/:bank', lazyloadRouteHandler('./routes/flyert/creditcard'));
1740
- // router.get('/flyertea/preferential', lazyloadRouteHandler('./routes/flyert/preferential'));
1741
- // router.get('/flyertea/creditcard/:bank', lazyloadRouteHandler('./routes/flyert/creditcard'));
1742
-
1743
- // 中国广播
1744
- // router.get('/radio/:channelname/:name', lazyloadRouteHandler('./routes/radio/radio'));
1745
-
1746
- // TOPYS
1747
- // router.get('/topys/:category', lazyloadRouteHandler('./routes/topys/article'));
1748
-
1749
- // 巴比特作者专栏
1750
- router.get('/8btc/:authorid', lazyloadRouteHandler('./routes/8btc/author'));
1751
- router.get('/8btc/news/flash', lazyloadRouteHandler('./routes/8btc/news/flash'));
1752
-
1753
- // VueVlog
1754
- router.get('/vuevideo/:userid', lazyloadRouteHandler('./routes/vuevideo/user'));
1755
-
1756
- // 证监会
1757
- // router.get('/csrc/news/:suffix?', lazyloadRouteHandler('./routes/csrc/news'));
1758
- // router.get('/csrc/fashenwei', lazyloadRouteHandler('./routes/csrc/fashenwei'));
1759
- // router.get('/csrc/auditstatus/:apply_id', lazyloadRouteHandler('./routes/csrc/auditstatus'));
1760
-
1761
704
  // LWN.net Alerts
1762
705
  router.get('/lwn/alerts/:distributor', lazyloadRouteHandler('./routes/lwn/alerts'));
1763
706
 
@@ -1771,9 +714,6 @@ router.get('/lolapp/article/:uuid', lazyloadRouteHandler('./routes/lolapp/articl
1771
714
  // 左岸读书
1772
715
  router.get('/zreading', lazyloadRouteHandler('./routes/zreading/home'));
1773
716
 
1774
- // NBA
1775
- router.get('/nba/app_news', lazyloadRouteHandler('./routes/nba/app_news'));
1776
-
1777
717
  // 天津产权交易中心
1778
718
  router.get('/tprtc/cqzr', lazyloadRouteHandler('./routes/tprtc/cqzr'));
1779
719
  router.get('/tprtc/qyzc', lazyloadRouteHandler('./routes/tprtc/qyzc'));
@@ -1782,94 +722,46 @@ router.get('/tprtc/news', lazyloadRouteHandler('./routes/tprtc/news'));
1782
722
  // ArchDaily
1783
723
  router.get('/archdaily', lazyloadRouteHandler('./routes/archdaily/home'));
1784
724
 
1785
- // aptonic Dropzone actions
1786
- router.get('/aptonic/action/:untested?', lazyloadRouteHandler('./routes/aptonic/action'));
1787
-
1788
- // 印记中文周刊
1789
- // router.get('/docschina/jsweekly', lazyloadRouteHandler('./routes/docschina/jsweekly'));
1790
-
1791
725
  // im2maker
1792
726
  router.get('/im2maker/:channel?', lazyloadRouteHandler('./routes/im2maker/index'));
1793
727
 
1794
728
  // 巨潮资讯
1795
729
  router.get('/cninfo/announcement/:column/:code/:orgId/:category?/:search?', lazyloadRouteHandler('./routes/cninfo/announcement'));
1796
730
 
1797
- // 金十数据
1798
- // router.get('/jinshi/index', lazyloadRouteHandler('./routes/jinshi/index'));
1799
-
1800
731
  // 中华人民共和国农业农村部
1801
- router.get('/gov/moa/sjzxfb', lazyloadRouteHandler('./routes/gov/moa/sjzxfb'));
1802
- router.get('/gov/moa/:suburl(.*)', lazyloadRouteHandler('./routes/gov/moa/moa'));
732
+ // router.get('/gov/moa/sjzxfb', lazyloadRouteHandler('./routes/gov/moa/sjzxfb'));
733
+ // router.get('/gov/moa/:suburl(.*)', lazyloadRouteHandler('./routes/gov/moa/moa'));
1803
734
 
1804
735
  // 香水时代
1805
736
  router.get('/nosetime/:id/:type/:sort?', lazyloadRouteHandler('./routes/nosetime/comment'));
1806
737
  router.get('/nosetime/home', lazyloadRouteHandler('./routes/nosetime/home'));
1807
738
 
1808
- // 涂鸦王国
1809
- router.get('/gracg/:user/:love?', lazyloadRouteHandler('./routes/gracg/user'));
1810
-
1811
739
  // 大侠阿木
1812
740
  router.get('/daxiaamu/home', lazyloadRouteHandler('./routes/daxiaamu/home'));
1813
741
 
1814
- // 美团技术团队
1815
- router.get('/meituan/tech/home', lazyloadRouteHandler('./routes//meituan/tech/home'));
1816
-
1817
- // 码农网
1818
- router.get('/codeceo/home', lazyloadRouteHandler('./routes/codeceo/home'));
1819
- router.get('/codeceo/:type/:category?', lazyloadRouteHandler('./routes/codeceo/category'));
1820
-
1821
- // BOF
1822
- router.get('/bof/home', lazyloadRouteHandler('./routes/bof/home'));
1823
-
1824
742
  // 爱发电
1825
- router.get('/afdian/explore/:type?/:category?', lazyloadRouteHandler('./routes/afdian/explore'));
1826
- router.get('/afdian/dynamic/:uid', lazyloadRouteHandler('./routes/afdian/dynamic'));
743
+ // router.get('/afdian/explore/:type?/:category?', lazyloadRouteHandler('./routes/afdian/explore'));
744
+ // router.get('/afdian/dynamic/:uid', lazyloadRouteHandler('./routes/afdian/dynamic'));
1827
745
 
1828
746
  // Simons Foundation
1829
747
  router.get('/simonsfoundation/articles', lazyloadRouteHandler('./routes/simonsfoundation/articles'));
1830
748
  router.get('/simonsfoundation/recommend', lazyloadRouteHandler('./routes/simonsfoundation/recommend'));
1831
749
 
1832
- // 王者荣耀
1833
- // router.get('/tencent/pvp/newsindex/:type', lazyloadRouteHandler('./routes/tencent/pvp/newsindex'));
1834
-
1835
- // 《明日方舟》游戏 (migrated to v2)
1836
- // router.get('/arknights/news', lazyloadRouteHandler('./routes/arknights/news'));
1837
- // アークナイツ(明日方舟日服) (migrated to v2)
1838
- // router.get('/arknights/japan', lazyloadRouteHandler('./routes/arknights/japan'));
1839
750
  // 塞壬唱片
1840
751
  router.get('/siren/news', lazyloadRouteHandler('./routes/siren/index'));
1841
752
 
1842
- // ff14 migrated to v2
1843
- // router.get('/ff14/ff14_zh/:type', lazyloadRouteHandler('./routes/ff14/ff14_zh'));
1844
- // router.get('/ff14/ff14_global/:lang/:type', lazyloadRouteHandler('./routes/ff14/ff14_global'));
1845
-
1846
753
  // 学堂在线
1847
- router.get('/xuetangx/course/:cid/:type', lazyloadRouteHandler('./routes/xuetangx/course_info'));
1848
- router.get('/xuetangx/course/list/:mode/:credential/:status/:type?', lazyloadRouteHandler('./routes/xuetangx/course_list'));
1849
-
1850
- // wikihow
1851
- router.get('/wikihow/index', lazyloadRouteHandler('./routes/wikihow/index.js'));
1852
- router.get('/wikihow/category/:category/:type', lazyloadRouteHandler('./routes/wikihow/category.js'));
754
+ router.get('/xuetangx/course/:cid/:type', lazyloadRouteHandler('./routes/xuetangx/course-info'));
755
+ router.get('/xuetangx/course/list/:mode/:credential/:status/:type?', lazyloadRouteHandler('./routes/xuetangx/course-list'));
1853
756
 
1854
757
  // 正版中国
1855
- router.get('/getitfree/category/:category?', lazyloadRouteHandler('./routes/getitfree/category.js'));
1856
- router.get('/getitfree/search/:keyword?', lazyloadRouteHandler('./routes/getitfree/search.js'));
758
+ // router.get('/getitfree/category/:category?', lazyloadRouteHandler('./routes/getitfree/category.js'));
759
+ // router.get('/getitfree/search/:keyword?', lazyloadRouteHandler('./routes/getitfree/search.js'));
1857
760
 
1858
761
  // 万联网
1859
762
  router.get('/10000link/news/:category?', lazyloadRouteHandler('./routes/10000link/news'));
1860
763
 
1861
- // 站酷
1862
- // router.get('/zcool/discover/:query?/:subCate?/:hasVideo?/:city?/:collage?/:recommendLevel?/:sort?', lazyloadRouteHandler('./routes/zcool/discover'));
1863
- // router.get('/zcool/recommend/:query?/:subCate?/:hasVideo?/:city?/:collage?/:recommendLevel?/:sort?', lazyloadRouteHandler('./routes/zcool/discover')); // 兼容老版本
1864
- // router.get('/zcool/top/:type', lazyloadRouteHandler('./routes/zcool/top'));
1865
- // router.get('/zcool/top', lazyloadRouteHandler('./routes/zcool/top')); // 兼容老版本
1866
- // router.get('/zcool/user/:uid', lazyloadRouteHandler('./routes/zcool/user'));
1867
-
1868
- // 第一财经
1869
- // router.get('/yicai/brief', lazyloadRouteHandler('./routes/yicai/brief.js'));
1870
-
1871
764
  // 一兜糖
1872
- router.get('/yidoutang/index', lazyloadRouteHandler('./routes/yidoutang/index.js'));
1873
765
  router.get('/yidoutang/guide', lazyloadRouteHandler('./routes/yidoutang/guide.js'));
1874
766
  router.get('/yidoutang/mtest', lazyloadRouteHandler('./routes/yidoutang/mtest.js'));
1875
767
  router.get('/yidoutang/case/:type', lazyloadRouteHandler('./routes/yidoutang/case.js'));
@@ -1877,31 +769,14 @@ router.get('/yidoutang/case/:type', lazyloadRouteHandler('./routes/yidoutang/cas
1877
769
  // 开眼
1878
770
  router.get('/kaiyan/index', lazyloadRouteHandler('./routes/kaiyan/index'));
1879
771
 
1880
- // 龙空
1881
- // router.get('/lkong/forum/:id/:digest?', lazyloadRouteHandler('./routes/lkong/forum'));
1882
- // router.get('/lkong/thread/:id', lazyloadRouteHandler('./routes/lkong/thread'));
1883
- // router.get('/lkong/user/:id', lazyloadRouteHandler('./routes/lkong/user'));
1884
-
1885
772
  // 坂道系列资讯
1886
773
  // 坂道系列官网新闻
1887
774
  router.get('/keyakizaka46/news', lazyloadRouteHandler('./routes/keyakizaka46/news'));
1888
- router.get('/hinatazaka46/news', lazyloadRouteHandler('./routes/hinatazaka46/news'));
775
+ // router.get('/hinatazaka46/news', lazyloadRouteHandler('./routes/hinatazaka46/news'));
1889
776
  router.get('/keyakizaka46/blog', lazyloadRouteHandler('./routes/keyakizaka46/blog'));
1890
- router.get('/hinatazaka46/blog', lazyloadRouteHandler('./routes/hinatazaka46/blog'));
777
+ // router.get('/hinatazaka46/blog', lazyloadRouteHandler('./routes/hinatazaka46/blog'));
1891
778
  // router.get('/sakurazaka46/blog', lazyloadRouteHandler('./routes/sakurazaka46/blog'));
1892
779
 
1893
- // 酷安 migrated to v2
1894
- // router.get('/coolapk/tuwen/:type?', lazyloadRouteHandler('./routes/coolapk/tuwen'));
1895
- // router.get('/coolapk/tuwen-xinxian', lazyloadRouteHandler('./routes/coolapk/tuwen'));
1896
- // router.get('/coolapk/toutiao/:type?', lazyloadRouteHandler('./routes/coolapk/toutiao'));
1897
- // router.get('/coolapk/huati/:tag', lazyloadRouteHandler('./routes/coolapk/huati'));
1898
- // router.get('/coolapk/user/:uid/dynamic', lazyloadRouteHandler('./routes/coolapk/userDynamic'));
1899
- // router.get('/coolapk/dyh/:dyhId', lazyloadRouteHandler('./routes/coolapk/dyh'));
1900
- // router.get('/coolapk/hot/:type?/:period?', lazyloadRouteHandler('./routes/coolapk/hot'));
1901
-
1902
- // 模型网
1903
- router.get('/moxingnet', lazyloadRouteHandler('./routes/moxingnet'));
1904
-
1905
780
  // 湖北大学
1906
781
  router.get('/hubu/news/:type', lazyloadRouteHandler('./routes/universities/hubu/news'));
1907
782
 
@@ -1916,37 +791,9 @@ router.get('/socialclub/events/:game?', lazyloadRouteHandler('./routes/socialclu
1916
791
  router.get('/ctfhub/upcoming/:limit?', lazyloadRouteHandler('./routes/ctfhub/upcoming'));
1917
792
  router.get('/ctfhub/search/:limit?/:form?/:class?/:title?', lazyloadRouteHandler('./routes/ctfhub/search'));
1918
793
 
1919
- // 阿里云 migrated to v2
1920
- // router.get('/aliyun/database_month', lazyloadRouteHandler('./routes/aliyun/database_month'));
1921
- // router.get('/aliyun/notice/:type?', lazyloadRouteHandler('./routes/aliyun/notice'));
1922
- // router.get('/aliyun/developer/group/:type', lazyloadRouteHandler('./routes/aliyun/developer/group'));
1923
-
1924
- // 礼物说
1925
- router.get('/liwushuo/index', lazyloadRouteHandler('./routes/liwushuo/index.js'));
1926
-
1927
- // 故事fm
1928
- router.get('/storyfm/index', lazyloadRouteHandler('./routes/storyfm/index.js'));
1929
-
1930
794
  // 中国日报
1931
795
  router.get('/chinadaily/english/:category', lazyloadRouteHandler('./routes/chinadaily/english.js'));
1932
796
 
1933
- // leboncoin
1934
- router.get('/leboncoin/ad/:query', lazyloadRouteHandler('./routes/leboncoin/ad.js'));
1935
-
1936
- // DHL
1937
- router.get('/dhl/:id', lazyloadRouteHandler('./routes/dhl/shipment-tracking'));
1938
-
1939
- // Japanpost
1940
- router.get('/japanpost/track/:reqCode/:locale?', lazyloadRouteHandler('./routes/japanpost/track'));
1941
-
1942
- // 中华人民共和国商务部 migrated to v2
1943
- // router.get('/mofcom/article/:suffix', lazyloadRouteHandler('./routes/mofcom/article'));
1944
-
1945
- // 品玩
1946
- // router.get('/pingwest/status', lazyloadRouteHandler('./routes/pingwest/status'));
1947
- // router.get('/pingwest/tag/:tag/:type/:option?', lazyloadRouteHandler('./routes/pingwest/tag'));
1948
- // router.get('/pingwest/user/:uid/:type?/:option?', lazyloadRouteHandler('./routes/pingwest/user'));
1949
-
1950
797
  // Hanime
1951
798
  router.get('/hanime/video', lazyloadRouteHandler('./routes/hanime/video'));
1952
799
 
@@ -1957,14 +804,8 @@ router.get('/soul/posts/hot/:pid*', lazyloadRouteHandler('./routes/soul/hot'));
1957
804
  // 单向空间
1958
805
  router.get('/owspace/read/:type?', lazyloadRouteHandler('./routes/owspace/read'));
1959
806
 
1960
- // 天涯论坛
1961
- router.get('/tianya/index/:type', lazyloadRouteHandler('./routes/tianya/index'));
1962
- router.get('/tianya/user/:userid', lazyloadRouteHandler('./routes/tianya/user'));
1963
- router.get('/tianya/comments/:userid', lazyloadRouteHandler('./routes/tianya/comments'));
1964
-
1965
807
  // eleme
1966
808
  router.get('/eleme/open/announce', lazyloadRouteHandler('./routes/eleme/open/announce'));
1967
- router.get('/eleme/open-be/announce', lazyloadRouteHandler('./routes/eleme/open-be/announce'));
1968
809
 
1969
810
  // 美团开放平台
1970
811
  router.get('/meituan/open/announce', lazyloadRouteHandler('./routes/meituan/open/announce'));
@@ -1981,91 +822,29 @@ router.get('/weidian/goods/:id', lazyloadRouteHandler('./routes/weidian/goods'))
1981
822
  // 有赞
1982
823
  router.get('/youzan/goods/:id', lazyloadRouteHandler('./routes/youzan/goods'));
1983
824
 
1984
- // 币世界快讯
1985
- router.get('/bishijie/kuaixun', lazyloadRouteHandler('./routes/bishijie/kuaixun'));
1986
-
1987
- // 顺丰丰桥
1988
- router.get('/sf/sffq-announce', lazyloadRouteHandler('./routes/sf/sffq-announce'));
1989
-
1990
825
  // 缺书网
1991
826
  router.get('/queshu/sale', lazyloadRouteHandler('./routes/queshu/sale'));
1992
827
  router.get('/queshu/book/:bookid', lazyloadRouteHandler('./routes/queshu/book'));
1993
828
 
1994
- // MITRE
1995
- router.get('/mitre/publications', lazyloadRouteHandler('./routes/mitre/publications'));
1996
-
1997
- // SANS
1998
- router.get('/sans/summit_archive', lazyloadRouteHandler('./routes/sans/summit_archive'));
1999
-
2000
829
  // LaTeX 开源小屋
2001
830
  router.get('/latexstudio/home', lazyloadRouteHandler('./routes/latexstudio/home'));
2002
831
 
2003
- // 上证债券信息网 - 可转换公司债券公告
2004
- // router.get('/sse/convert/:query?', lazyloadRouteHandler('./routes/sse/convert'));
2005
- // router.get('/sse/renewal', lazyloadRouteHandler('./routes/sse/renewal'));
2006
- // router.get('/sse/inquire', lazyloadRouteHandler('./routes/sse/inquire'));
2007
-
2008
- // 上海证券交易所
2009
- // router.get('/sse/disclosure/:query?', lazyloadRouteHandler('./routes/sse/disclosure'));
2010
-
2011
- // 深圳证券交易所
2012
- // router.get('/szse/notice', lazyloadRouteHandler('./routes/szse/notice'));
2013
- // router.get('/szse/inquire/:type', lazyloadRouteHandler('./routes/szse/inquire'));
2014
- // router.get('/szse/projectdynamic/:type?/:stage?/:status?', lazyloadRouteHandler('./routes/szse/projectdynamic'));
2015
-
2016
- // 前端艺术家每日整理&&飞冰早报
2017
- router.get('/jskou/:type?', lazyloadRouteHandler('./routes/jskou/index'));
2018
-
2019
- // 国家应急广播
2020
- router.get('/cneb/yjxx', lazyloadRouteHandler('./routes/cneb/yjxx'));
2021
- router.get('/cneb/guoneinews', lazyloadRouteHandler('./routes/cneb/guoneinews'));
2022
-
2023
832
  // 邮箱
2024
- router.get('/mail/imap/:email', lazyloadRouteHandler('./routes/mail/imap'));
2025
-
2026
- // 好队友
2027
- router.get('/network360/jobs', lazyloadRouteHandler('./routes/network360/jobs'));
2028
-
2029
- // 智联招聘
2030
- router.get('/zhilian/:city/:keyword', lazyloadRouteHandler('./routes/zhilian/index'));
2031
-
2032
- // 电鸭社区
2033
- // router.get('/eleduck/jobs', lazyloadRouteHandler('./routes/eleduck/jobs'));
833
+ // router.get('/mail/imap/:email/:folder*', lazyloadRouteHandler('./routes/mail/imap'));
2034
834
 
2035
835
  // 北华航天工业学院 - 新闻
2036
836
  router.get('/nciae/news', lazyloadRouteHandler('./routes/universities/nciae/news'));
2037
-
2038
837
  // 北华航天工业学院 - 通知公告
2039
838
  router.get('/nciae/tzgg', lazyloadRouteHandler('./routes/universities/nciae/tzgg'));
2040
-
2041
839
  // 北华航天工业学院 - 学术信息
2042
840
  router.get('/nciae/xsxx', lazyloadRouteHandler('./routes/universities/nciae/xsxx'));
2043
841
 
2044
842
  // cfan
2045
843
  router.get('/cfan/news', lazyloadRouteHandler('./routes/cfan/news'));
2046
844
 
2047
- // 腾讯企鹅号 migrated to v2
2048
- // router.get('/tencent/news/author/:mid', lazyloadRouteHandler('./routes/tencent/news/author'));
2049
-
2050
- // 奈菲影视
2051
- router.get('/nfmovies/:id?', lazyloadRouteHandler('./routes/nfmovies/index'));
2052
-
2053
- // 书友社区
2054
- router.get('/andyt/:view?', lazyloadRouteHandler('./routes/andyt/index'));
2055
-
2056
- // 品途商业评论
2057
- router.get('/pintu360/:type?', lazyloadRouteHandler('./routes/pintu360/index'));
2058
-
2059
- // engadget中国版
2060
- router.get('/engadget-cn', lazyloadRouteHandler('./routes/engadget/home'));
2061
-
2062
845
  // engadget
2063
846
  router.get('/engadget/:lang?', lazyloadRouteHandler('./routes/engadget/home'));
2064
847
 
2065
- // 吹牛部落
2066
- router.get('/chuiniu/column/:id', lazyloadRouteHandler('./routes/chuiniu/column'));
2067
- router.get('/chuiniu/column_list', lazyloadRouteHandler('./routes/chuiniu/column_list'));
2068
-
2069
848
  // leemeng
2070
849
  router.get('/leemeng', lazyloadRouteHandler('./routes/blogs/leemeng'));
2071
850
 
@@ -2076,24 +855,6 @@ router.get('/cug/xgxy', lazyloadRouteHandler('./routes/universities/cug/xgxy'));
2076
855
  router.get('/cug/news', lazyloadRouteHandler('./routes/universities/cug/news'));
2077
856
  router.get('/cug/gcxy/:type?', lazyloadRouteHandler('./routes/universities/cug/gcxy/index'));
2078
857
 
2079
- // 海猫吧
2080
- router.get('/haimaoba/:id?', lazyloadRouteHandler('./routes/haimaoba/comics'));
2081
-
2082
- // 蒲公英
2083
- router.get('/pgyer/:app?', lazyloadRouteHandler('./routes/pgyer/app'));
2084
-
2085
- // 微博个人时间线
2086
- // router.get('/weibo/timeline/:uid/:feature?/:routeParams?', lazyloadRouteHandler('./routes/weibo/timeline'));
2087
-
2088
- // TAPTAP migrated to v2
2089
- // router.get('/taptap/topic/:id/:label?', lazyloadRouteHandler('./routes/taptap/topic'));
2090
- // router.get('/taptap/changelog/:id', lazyloadRouteHandler('./routes/taptap/changelog'));
2091
- // router.get('/taptap/review/:id/:order?/:lang?', lazyloadRouteHandler('./routes/taptap/review'));
2092
-
2093
- // lofter migrated to v2
2094
- // router.get('/lofter/tag/:name?/:type?', lazyloadRouteHandler('./routes/lofter/tag'));
2095
- // router.get('/lofter/user/:name?', lazyloadRouteHandler('./routes/lofter/user'));
2096
-
2097
858
  // 米坛社区表盘
2098
859
  router.get('/watchface/:watch_type?/:list_type?', lazyloadRouteHandler('./routes/watchface/update'));
2099
860
 
@@ -2101,45 +862,22 @@ router.get('/watchface/:watch_type?/:list_type?', lazyloadRouteHandler('./routes
2101
862
  router.get('/cnu/selected', lazyloadRouteHandler('./routes/cnu/selected'));
2102
863
  router.get('/cnu/discovery/:type?/:category?', lazyloadRouteHandler('./routes/cnu/discovery'));
2103
864
 
2104
- // 战旗直播
2105
- router.get('/zhanqi/room/:id', lazyloadRouteHandler('./routes/zhanqi/room'));
2106
-
2107
- // 酒云网
2108
- router.get('/wineyun/:category', lazyloadRouteHandler('./routes/wineyun'));
2109
-
2110
- // 小红书 migrated to v2
2111
- // router.get('/xiaohongshu/user/:user_id/:category', lazyloadRouteHandler('./routes/xiaohongshu/user'));
2112
- // router.get('/xiaohongshu/board/:board_id', lazyloadRouteHandler('./routes/xiaohongshu/board'));
2113
-
2114
- // 每经网
2115
- // router.get('/nbd/daily', lazyloadRouteHandler('./routes/nbd/article'));
2116
- // router.get('/nbd/:id?', lazyloadRouteHandler('./routes/nbd/index'));
2117
-
2118
- // 快知
2119
- router.get('/kzfeed/topic/:id', lazyloadRouteHandler('./routes/kzfeed/topic'));
2120
-
2121
- // 腾讯新闻较真查证平台
2122
- // router.get('/factcheck', lazyloadRouteHandler('./routes/tencent/factcheck'));
2123
-
2124
865
  // X-MOL化学资讯平台
2125
- router.get('/x-mol/news/:tag?', lazyloadRouteHandler('./routes/x-mol/news.js'));
2126
- router.get('/x-mol/paper/:type/:magazine', lazyloadRouteHandler('./routes/x-mol/paper'));
866
+ // router.get('/x-mol/news/:tag?', lazyloadRouteHandler('./routes/x-mol/news.js'));
867
+ // router.get('/x-mol/paper/:type/:magazine', lazyloadRouteHandler('./routes/x-mol/paper'));
2127
868
 
2128
869
  // 知识分子
2129
870
  router.get('/zhishifenzi/news/:type?', lazyloadRouteHandler('./routes/zhishifenzi/news'));
2130
871
  router.get('/zhishifenzi/depth', lazyloadRouteHandler('./routes/zhishifenzi/depth'));
2131
872
  router.get('/zhishifenzi/innovation/:type?', lazyloadRouteHandler('./routes/zhishifenzi/innovation'));
2132
873
 
2133
- // 電撃Online
2134
- router.get('/dengekionline/:type?', lazyloadRouteHandler('./routes/dengekionline/new'));
2135
-
2136
874
  // 4Gamers
2137
- router.get('/4gamers/category/:category', lazyloadRouteHandler('./routes/4gamers/category'));
2138
- router.get('/4gamers/tag/:tag', lazyloadRouteHandler('./routes/4gamers/tag'));
2139
- router.get('/4gamers/topic/:topic', lazyloadRouteHandler('./routes/4gamers/topic'));
875
+ // router.get('/4gamers/category/:category', lazyloadRouteHandler('./routes/4gamers/category'));
876
+ // router.get('/4gamers/tag/:tag', lazyloadRouteHandler('./routes/4gamers/tag'));
877
+ // router.get('/4gamers/topic/:topic', lazyloadRouteHandler('./routes/4gamers/topic'));
2140
878
 
2141
879
  // 大麦网
2142
- router.get('/damai/activity/:city/:category/:subcategory/:keyword?', lazyloadRouteHandler('./routes/damai/activity'));
880
+ // router.get('/damai/activity/:city/:category/:subcategory/:keyword?', lazyloadRouteHandler('./routes/damai/activity'));
2143
881
 
2144
882
  // 桂林电子科技大学新闻资讯
2145
883
  router.get('/guet/xwzx/:type?', lazyloadRouteHandler('./routes/guet/news'));
@@ -2147,20 +885,6 @@ router.get('/guet/xwzx/:type?', lazyloadRouteHandler('./routes/guet/news'));
2147
885
  // はてな匿名ダイアリー
2148
886
  router.get('/hatena/anonymous_diary/archive', lazyloadRouteHandler('./routes/hatena/anonymous_diary/archive'));
2149
887
 
2150
- // kaggle
2151
- router.get('/kaggle/discussion/:forumId/:sort?', lazyloadRouteHandler('./routes/kaggle/discussion'));
2152
- router.get('/kaggle/competitions/:category?', lazyloadRouteHandler('./routes/kaggle/competitions'));
2153
- router.get('/kaggle/user/:user', lazyloadRouteHandler('./routes/kaggle/user'));
2154
-
2155
- // PubMed Trending
2156
- // router.get('/pubmed/trending', lazyloadRouteHandler('./routes/pubmed/trending'));
2157
-
2158
- // 领科 (linkresearcher.com)
2159
- // router.get('/linkresearcher/:params', lazyloadRouteHandler('./routes/linkresearcher/index'));
2160
-
2161
- // eLife [Sci Journal]
2162
- router.get('/elife/:tid', lazyloadRouteHandler('./routes/elife/index'));
2163
-
2164
888
  // IEEE Xplore [Sci Journal]
2165
889
  router.get('/ieee/author/:aid/:sortType/:count?', lazyloadRouteHandler('./routes/ieee/author'));
2166
890
 
@@ -2171,41 +895,12 @@ router.get('/ieee/author/:aid/:sortType/:count?', lazyloadRouteHandler('./routes
2171
895
  router.get('/cell/cell/:category', lazyloadRouteHandler('./routes/cell/cell/index'));
2172
896
  router.get('/cell/cover', lazyloadRouteHandler('./routes/cell/cover'));
2173
897
 
2174
- // nature + nature 子刊 [Sci Journal] migrated to v2
2175
- // router.get('/nature/research/:journal?', lazyloadRouteHandler('./routes/nature/research'));
2176
- // router.get('/nature/news-and-comment/:journal?', lazyloadRouteHandler('./routes/nature/news-and-comment'));
2177
- // router.get('/nature/cover', lazyloadRouteHandler('./routes/nature/cover'));
2178
- // router.get('/nature/news', lazyloadRouteHandler('./routes/nature/news'));
2179
- // router.get('/nature/highlight/:year?', lazyloadRouteHandler('./routes/nature/highlight'));
2180
-
2181
- // science [Sci Journal]
2182
- // router.get('/sciencemag/current/:journal?', lazyloadRouteHandler('./routes/sciencemag/current'));
2183
- // router.get('/sciencemag/cover', lazyloadRouteHandler('./routes/sciencemag/cover'));
2184
- // router.get('/sciencemag/early/science', lazyloadRouteHandler('./routes/sciencemag/early'));
2185
-
2186
- // dlsite
2187
- // router.get('/dlsite/new/:type', lazyloadRouteHandler('./routes/dlsite/new'));
2188
- // router.get('/dlsite/campaign/:type/:free?', lazyloadRouteHandler('./routes/dlsite/campaign'));
2189
-
2190
898
  // mcbbs
2191
899
  router.get('/mcbbs/forum/:type', lazyloadRouteHandler('./routes/mcbbs/forum'));
2192
900
  router.get('/mcbbs/post/:tid/:authorid?', lazyloadRouteHandler('./routes/mcbbs/post'));
2193
901
 
2194
- // Pocket
2195
- router.get('/pocket/trending', lazyloadRouteHandler('./routes/pocket/trending'));
2196
-
2197
- // HK01
2198
- // router.get('/hk01/zone/:id', lazyloadRouteHandler('./routes/hk01/zone'));
2199
- // router.get('/hk01/channel/:id', lazyloadRouteHandler('./routes/hk01/channel'));
2200
- // router.get('/hk01/issue/:id', lazyloadRouteHandler('./routes/hk01/issue'));
2201
- // router.get('/hk01/tag/:id', lazyloadRouteHandler('./routes/hk01/tag'));
2202
- // router.get('/hk01/hot', lazyloadRouteHandler('./routes/hk01/hot'));
2203
-
2204
- // 码农周刊
2205
- router.get('/manong-weekly', lazyloadRouteHandler('./routes/manong-weekly/issues'));
2206
-
2207
902
  // 每日猪价
2208
- router.get('/pork-price', lazyloadRouteHandler('./routes/pork-price'));
903
+ // router.get('/pork-price', lazyloadRouteHandler('./routes/pork-price'));
2209
904
 
2210
905
  // NOI 全国青少年信息学奥林匹克竞赛
2211
906
  router.get('/noi', lazyloadRouteHandler('./routes/noi'));
@@ -2216,59 +911,33 @@ router.get('/noi/rg-news', lazyloadRouteHandler('./routes/noi/rg-news'));
2216
911
  // 中国国家认证认可监管管理员会
2217
912
  router.get('/gov/cnca/jgdt', lazyloadRouteHandler('./routes/gov/cnca/jgdt'));
2218
913
  router.get('/gov/cnca/hydt', lazyloadRouteHandler('./routes/gov/cnca/hydt'));
2219
-
2220
914
  router.get('/gov/cnca/zxtz', lazyloadRouteHandler('./routes/gov/cnca/zxtz'));
2221
915
 
2222
- // clickme
2223
- // router.get('/clickme/:site/:grouping/:name', lazyloadRouteHandler('./routes/clickme'));
2224
-
2225
916
  // 文汇报
2226
917
  router.get('/whb/:category', lazyloadRouteHandler('./routes/whb/zhuzhan'));
2227
918
 
2228
- // 三界异次元
2229
- router.get('/3ycy/home', lazyloadRouteHandler('./routes/3ycy/home.js'));
2230
-
2231
919
  // Emi Nitta official website
2232
920
  router.get('/emi-nitta/:type', lazyloadRouteHandler('./routes/emi-nitta/home'));
2233
921
 
2234
- // Alter China
2235
- router.get('/alter-cn/news', lazyloadRouteHandler('./routes/alter-cn/news'));
2236
-
2237
922
  // Visual Studio Code Marketplace
2238
923
  router.get('/vscode/marketplace/:type?', lazyloadRouteHandler('./routes/vscode/marketplace'));
2239
924
 
2240
925
  // 饭否
2241
- router.get('/fanfou/user_timeline/:uid', lazyloadRouteHandler('./routes/fanfou/user_timeline'));
2242
- router.get('/fanfou/home_timeline', lazyloadRouteHandler('./routes/fanfou/home_timeline'));
926
+ router.get('/fanfou/user_timeline/:uid', lazyloadRouteHandler('./routes/fanfou/user-timeline'));
927
+ router.get('/fanfou/home_timeline', lazyloadRouteHandler('./routes/fanfou/home-timeline'));
2243
928
  router.get('/fanfou/favorites/:uid', lazyloadRouteHandler('./routes/fanfou/favorites'));
2244
929
  router.get('/fanfou/trends', lazyloadRouteHandler('./routes/fanfou/trends'));
2245
- router.get('/fanfou/public_timeline/:keyword', lazyloadRouteHandler('./routes/fanfou/public_timeline'));
2246
-
2247
- // ITSlide
2248
- router.get('/itslide/new', lazyloadRouteHandler('./routes/itslide/new'));
930
+ router.get('/fanfou/public_timeline/:keyword', lazyloadRouteHandler('./routes/fanfou/public-timeline'));
2249
931
 
2250
932
  // Remote Work
2251
933
  router.get('/remote-work/:caty?', lazyloadRouteHandler('./routes/remote-work/index'));
2252
934
 
2253
- // China Times
2254
- router.get('/chinatimes/:caty', lazyloadRouteHandler('./routes/chinatimes/index'));
2255
-
2256
- // TransferWise
2257
- // router.get('/transferwise/pair/:source/:target', lazyloadRouteHandler('./routes/transferwise/pair'));
2258
-
2259
935
  // chocolatey
2260
936
  router.get('/chocolatey/software/:name?', lazyloadRouteHandler('./routes/chocolatey/software'));
2261
937
 
2262
- // Nyaa migrated to v2
2263
- // router.get('/nyaa/search/:query?', lazyloadRouteHandler('./routes/nyaa/search'));
2264
-
2265
- // 片源网 migrated to v2
2266
- // router.get('/pianyuan/index/:media?', lazyloadRouteHandler('./routes/pianyuan/app'));
2267
- // router.get('/pianyuan/indexers/pianyuan/results/search/api', lazyloadRouteHandler('./routes/pianyuan/search'));
2268
-
2269
938
  // 巴哈姆特
2270
939
  router.get('/bahamut/creation/:author/:category?', lazyloadRouteHandler('./routes/bahamut/creation'));
2271
- router.get('/bahamut/creation_index/:category?/:subcategory?/:type?', lazyloadRouteHandler('./routes/bahamut/creation_index'));
940
+ router.get('/bahamut/creation_index/:category?/:subcategory?/:type?', lazyloadRouteHandler('./routes/bahamut/creation-index'));
2272
941
 
2273
942
  // CentBrowser
2274
943
  router.get('/centbrowser/history', lazyloadRouteHandler('./routes/centbrowser/history'));
@@ -2276,19 +945,6 @@ router.get('/centbrowser/history', lazyloadRouteHandler('./routes/centbrowser/hi
2276
945
  // 755
2277
946
  router.get('/755/user/:username', lazyloadRouteHandler('./routes/755/user'));
2278
947
 
2279
- // IKEA
2280
- // router.get('/ikea/uk/new', lazyloadRouteHandler('./routes/ikea/uk/new'));
2281
- // router.get('/ikea/uk/offer', lazyloadRouteHandler('./routes/ikea/uk/offer'));
2282
-
2283
- // Mastodon
2284
- router.get('/mastodon/timeline/:site/:only_media?', lazyloadRouteHandler('./routes/mastodon/timeline_local'));
2285
- router.get('/mastodon/remote/:site/:only_media?', lazyloadRouteHandler('./routes/mastodon/timeline_remote'));
2286
- router.get('/mastodon/account_id/:site/:account_id/statuses/:only_media?', lazyloadRouteHandler('./routes/mastodon/account_id'));
2287
- router.get('/mastodon/acct/:acct/statuses/:only_media?', lazyloadRouteHandler('./routes/mastodon/acct'));
2288
-
2289
- // Kernel Aliyun
2290
- router.get('/aliyun-kernel/index', lazyloadRouteHandler('./routes/aliyun-kernel/index'));
2291
-
2292
948
  // Vulture
2293
949
  router.get('/vulture/:tag/:excludetags?', lazyloadRouteHandler('./routes/vulture/index'));
2294
950
 
@@ -2296,33 +952,17 @@ router.get('/vulture/:tag/:excludetags?', lazyloadRouteHandler('./routes/vulture
2296
952
  router.get('/xinwenlianbo/index', lazyloadRouteHandler('./routes/xinwenlianbo/index'));
2297
953
 
2298
954
  // Paul Graham - Essays
2299
- router.get('/blogs/paulgraham', lazyloadRouteHandler('./routes/blogs/paulgraham'));
955
+ // router.get('/blogs/paulgraham', lazyloadRouteHandler('./routes/blogs/paulgraham'));
2300
956
 
2301
957
  // invisionapp
2302
958
  router.get('/invisionapp/inside-design', lazyloadRouteHandler('./routes/invisionapp/inside-design'));
2303
959
 
2304
- // mlog.club
2305
- router.get('/mlog-club/topics/:node', lazyloadRouteHandler('./routes/mlog-club/topics'));
2306
- router.get('/mlog-club/projects', lazyloadRouteHandler('./routes/mlog-club/projects'));
2307
-
2308
- // Chrome 网上应用店
2309
- router.get('/chrome/webstore/extensions/:id', lazyloadRouteHandler('./routes/chrome/extensions'));
2310
-
2311
960
  // RTHK
2312
961
  router.get('/rthk-news/:lang/:category', lazyloadRouteHandler('./routes/rthk-news/index'));
2313
962
 
2314
- // yahoo
2315
- // router.get('/yahoo-news/:region/:category?', lazyloadRouteHandler('./routes/yahoo-news/index'));
2316
-
2317
- // Yahoo!テレビ
2318
- router.get('/yahoo-jp-tv/:query', lazyloadRouteHandler('./routes/yahoo-jp-tv/index'));
2319
-
2320
963
  // Yahoo! by Author
2321
964
  router.get('/yahoo-author/:author', lazyloadRouteHandler('./routes/yahoo-author/index'));
2322
965
 
2323
- // 白鲸出海
2324
- // router.get('/baijing', lazyloadRouteHandler('./routes/baijing'));
2325
-
2326
966
  // 低端影视
2327
967
  router.get('/ddrk/update/:name/:season?', lazyloadRouteHandler('./routes/ddrk/index'));
2328
968
  router.get('/ddrk/tag/:tag', lazyloadRouteHandler('./routes/ddrk/list'));
@@ -2333,94 +973,36 @@ router.get('/ddrk/index', lazyloadRouteHandler('./routes/ddrk/list'));
2333
973
  router.get('/avgle/videos/:order?/:time?/:top?', lazyloadRouteHandler('./routes/avgle/videos.js'));
2334
974
  router.get('/avgle/search/:keyword/:order?/:time?/:top?', lazyloadRouteHandler('./routes/avgle/videos.js'));
2335
975
 
2336
- // 公主链接公告
2337
- router.get('/pcr/news', lazyloadRouteHandler('./routes/pcr/news'));
2338
- router.get('/pcr/news-tw', lazyloadRouteHandler('./routes/pcr/news-tw'));
2339
- router.get('/pcr/news-cn', lazyloadRouteHandler('./routes/pcr/news-cn'));
2340
-
2341
976
  // project-zero issues
2342
977
  router.get('/project-zero-issues', lazyloadRouteHandler('./routes/project-zero-issues/index'));
2343
978
 
2344
- // 平安银河实验室
2345
- router.get('/galaxylab', lazyloadRouteHandler('./routes/galaxylab/index'));
2346
-
2347
- // NOSEC 安全讯息平台
2348
- router.get('/nosec/:keykind?', lazyloadRouteHandler('./routes/nosec/index'));
2349
-
2350
- // Hex-Rays News migrated to v2
2351
- // router.get('/hex-rays/news', lazyloadRouteHandler('./routes/hex-rays/index'));
2352
-
2353
- // 新趣集
2354
- router.get('/xinquji/today', lazyloadRouteHandler('./routes/xinquji/today'));
2355
- router.get('/xinquji/today/internal', lazyloadRouteHandler('./routes/xinquji/internal'));
2356
-
2357
- // 英中协会
2358
- router.get('/gbcc/trust', lazyloadRouteHandler('./routes/gbcc/trust'));
2359
-
2360
- // Associated Press
2361
- // router.get('/apnews/topics/:topic', lazyloadRouteHandler('./routes/apnews/topics'));
979
+ // 平安银河实验室
980
+ router.get('/galaxylab', lazyloadRouteHandler('./routes/galaxylab/index'));
2362
981
 
2363
- // CBC
2364
- router.get('/cbc/topics/:topic?', lazyloadRouteHandler('./routes/cbc/topics'));
982
+ // NOSEC 安全讯息平台
983
+ // router.get('/nosec/:keykind?', lazyloadRouteHandler('./routes/nosec/index'));
2365
984
 
2366
985
  // discuz
2367
- router.get('/discuz/:ver([7|x])/:cid([0-9]{2})/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
2368
- router.get('/discuz/:ver([7|x])/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
2369
- router.get('/discuz/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
2370
-
2371
- // China Dialogue 中外对话
2372
- router.get('/chinadialogue/topics/:topic', lazyloadRouteHandler('./routes/chinadialogue/topics'));
2373
- router.get('/chinadialogue/:column', lazyloadRouteHandler('./routes/chinadialogue/column'));
986
+ // router.get('/discuz/:ver([7|x])/:cid([0-9]{2})/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
987
+ // router.get('/discuz/:ver([7|x])/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
988
+ // router.get('/discuz/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
2374
989
 
2375
990
  // 人民日报社 国际金融报
2376
991
  router.get('/ifnews/:cid', lazyloadRouteHandler('./routes/ifnews/column'));
2377
992
 
2378
- // Scala Blog
2379
- router.get('/scala/blog/:part?', lazyloadRouteHandler('./routes/scala-blog/scala-blog'));
2380
-
2381
- // Minecraft Java版游戏更新
2382
- // router.get('/minecraft/version', lazyloadRouteHandler('./routes/minecraft/version'));
2383
-
2384
993
  // 微信更新日志
2385
994
  router.get('/weixin/miniprogram/release', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/framework')); // 基础库更新日志
2386
995
  router.get('/weixin/miniprogram/framework', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/framework')); // 基础库更新日志
2387
996
  router.get('/weixin/miniprogram/devtools', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/devtools')); // 开发者工具更新日志
2388
997
  router.get('/weixin/miniprogram/wxcloud/:caty?', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/wxcloud')); // 云开发更新日志
2389
998
 
2390
- // 新冠肺炎疫情动态
2391
- router.get('/coronavirus/caixin', lazyloadRouteHandler('./routes/coronavirus/caixin'));
2392
- router.get('/coronavirus/dxy/data/:province?/:city?', lazyloadRouteHandler('./routes/coronavirus/dxy-data'));
2393
- router.get('/coronavirus/dxy', lazyloadRouteHandler('./routes/coronavirus/dxy'));
2394
- router.get('/coronavirus/scmp', lazyloadRouteHandler('./routes/coronavirus/scmp'));
2395
- router.get('/coronavirus/nhc', lazyloadRouteHandler('./routes/coronavirus/nhc'));
2396
- router.get('/coronavirus/mogov-2019ncov/:lang', lazyloadRouteHandler('./routes/coronavirus/mogov-2019ncov'));
2397
- router.get('/coronavirus/qq/fact', lazyloadRouteHandler('./routes/tencent/factcheck'));
2398
- router.get('/coronavirus/sg-moh', lazyloadRouteHandler('./routes/coronavirus/sg-moh'));
2399
- router.get('/coronavirus/yahoo-japan/:tdfk?', lazyloadRouteHandler('./routes/coronavirus/yahoo-japan'));
2400
-
2401
999
  // 南京林业大学教务处
2402
1000
  router.get('/njfu/jwc/:category?', lazyloadRouteHandler('./routes/universities/njfu/jwc'));
2403
1001
 
2404
- // 日本経済新聞
2405
- // router.get('/nikkei/index', lazyloadRouteHandler('./routes/nikkei/index'));
2406
- // router.get('/nikkei/:category/:article_type?', lazyloadRouteHandler('./routes/nikkei/news'));
2407
-
2408
- // MQube
2409
- router.get('/mqube/user/:user', lazyloadRouteHandler('./routes/mqube/user'));
2410
- router.get('/mqube/tag/:tag', lazyloadRouteHandler('./routes/mqube/tag'));
2411
- router.get('/mqube/latest', lazyloadRouteHandler('./routes/mqube/latest'));
2412
- router.get('/mqube/top', lazyloadRouteHandler('./routes/mqube/top'));
2413
-
2414
1002
  // Letterboxd
2415
1003
  router.get('/letterboxd/user/diary/:username', lazyloadRouteHandler('./routes/letterboxd/userdiary'));
2416
1004
  router.get('/letterboxd/user/followingdiary/:username', lazyloadRouteHandler('./routes/letterboxd/followingdiary'));
2417
1005
 
2418
- // javlibrary
2419
- // router.get('/javlibrary/users/:uid/:utype', lazyloadRouteHandler('./routes/javlibrary/users'));
2420
- // router.get('/javlibrary/videos/:vtype', lazyloadRouteHandler('./routes/javlibrary/videos'));
2421
- // router.get('/javlibrary/stars/:sid', lazyloadRouteHandler('./routes/javlibrary/stars'));
2422
- // router.get('/javlibrary/bestreviews', lazyloadRouteHandler('./routes/javlibrary/bestreviews'));
2423
-
2424
1006
  // Last.FM
2425
1007
  router.get('/lastfm/recent/:user', lazyloadRouteHandler('./routes/lastfm/recent'));
2426
1008
  router.get('/lastfm/loved/:user', lazyloadRouteHandler('./routes/lastfm/loved'));
@@ -2430,17 +1012,6 @@ router.get('/lastfm/top/:country?', lazyloadRouteHandler('./routes/lastfm/top'))
2430
1012
  router.get('/piapro/user/:pid', lazyloadRouteHandler('./routes/piapro/user'));
2431
1013
  router.get('/piapro/public/:type/:tag?/:category?', lazyloadRouteHandler('./routes/piapro/public'));
2432
1014
 
2433
- // 凤凰网 migrated to v2
2434
- // router.get('/ifeng/feng/:id/:type', lazyloadRouteHandler('./routes/ifeng/feng'));
2435
-
2436
- // 第一版主
2437
- router.get('/novel/d1bz/:category/:id', lazyloadRouteHandler('./routes/d1bz/novel'));
2438
-
2439
- // 爱下电子书
2440
- router.get('/axdzs/:novel', lazyloadRouteHandler('./routes/novel/axdzs'));
2441
- // deprecated
2442
- router.get('/axdzs/:id1/:id2', lazyloadRouteHandler('./routes/novel/axdzs'));
2443
-
2444
1015
  // HackerOne
2445
1016
  router.get('/hackerone/hacktivity', lazyloadRouteHandler('./routes/hackerone/hacktivity'));
2446
1017
  router.get('/hackerone/search/:search', lazyloadRouteHandler('./routes/hackerone/search'));
@@ -2448,62 +1019,21 @@ router.get('/hackerone/search/:search', lazyloadRouteHandler('./routes/hackerone
2448
1019
  // 奶牛关
2449
1020
  router.get('/cowlevel/element/:id', lazyloadRouteHandler('./routes/cowlevel/element'));
2450
1021
 
2451
- // 2048
2452
- // router.get('/2048/bbs/:fid', lazyloadRouteHandler('./routes/2048/bbs'));
2453
-
2454
- // Google News
2455
- // router.get('/google/news/:category/:locale', lazyloadRouteHandler('./routes/google/news'));
2456
-
2457
1022
  // 虛詞
2458
1023
  router.get('/p-articles/section/:section', lazyloadRouteHandler('./routes/p-articles/section'));
2459
1024
  router.get('/p-articles/contributors/:author', lazyloadRouteHandler('./routes/p-articles/contributors'));
2460
1025
 
2461
- // finviz
2462
-
2463
- // router.get('/finviz/news/:ticker', lazyloadRouteHandler('./routes/finviz/news'));
2464
-
2465
1026
  // 好好住
2466
1027
  router.get('/haohaozhu/whole-house/:keyword?', lazyloadRouteHandler('./routes/haohaozhu/whole-house'));
2467
1028
  router.get('/haohaozhu/discover/:keyword?', lazyloadRouteHandler('./routes/haohaozhu/discover'));
2468
1029
 
2469
- // 东北大学
2470
- // router.get('/neu/news/:type', lazyloadRouteHandler('./routes/universities/neu/news'));
2471
-
2472
- // 快递100
2473
- // router.get('/kuaidi100/track/:number/:id/:phone?', lazyloadRouteHandler('./routes/kuaidi100/index'));
2474
- // router.get('/kuaidi100/company', lazyloadRouteHandler('./routes/kuaidi100/supported_company'));
2475
-
2476
- // 稻草人书屋
2477
- router.get('/dcrsw/:name/:count?', lazyloadRouteHandler('./routes/novel/dcrsw'));
2478
-
2479
1030
  // 魔法纪录
2480
1031
  router.get('/magireco/announcements', lazyloadRouteHandler('./routes/magireco/announcements'));
2481
- router.get('/magireco/event_banner', lazyloadRouteHandler('./routes/magireco/event_banner'));
2482
-
2483
- // wolley
2484
- router.get('/wolley', lazyloadRouteHandler('./routes/wolley/index'));
2485
- router.get('/wolley/user/:id', lazyloadRouteHandler('./routes/wolley/user'));
2486
- router.get('/wolley/host/:host', lazyloadRouteHandler('./routes/wolley/host'));
2487
-
2488
- // 西安交大
2489
- // router.get('/xjtu/gs/tzgg', lazyloadRouteHandler('./routes/universities/xjtu/gs/tzgg'));
2490
- // router.get('/xjtu/dean/:subpath+', lazyloadRouteHandler('./routes/universities/xjtu/dean'));
2491
- // router.get('/xjtu/international/:subpath+', lazyloadRouteHandler('./routes/universities/xjtu/international'));
2492
- // router.get('/xjtu/job/:subpath?', lazyloadRouteHandler('./routes/universities/xjtu/job'));
2493
- // router.get('/xjtu/ee/:id?', lazyloadRouteHandler('./routes/universities/xjtu/ee'));
2494
-
2495
- // booksource
2496
- router.get('/booksource', lazyloadRouteHandler('./routes/booksource/index'));
2497
-
2498
- // ku
2499
- router.get('/ku/:name?', lazyloadRouteHandler('./routes/ku/index'));
1032
+ router.get('/magireco/event_banner', lazyloadRouteHandler('./routes/magireco/event-banner'));
2500
1033
 
2501
1034
  // 我有一片芝麻地
2502
1035
  router.get('/blogs/hedwig/:type', lazyloadRouteHandler('./routes/blogs/hedwig'));
2503
1036
 
2504
- // LoveHeaven
2505
- router.get('/loveheaven/update/:slug', lazyloadRouteHandler('./routes/loveheaven/update'));
2506
-
2507
1037
  // 拉勾
2508
1038
  router.get('/lagou/jobs/:position/:city', lazyloadRouteHandler('./routes/lagou/jobs'));
2509
1039
 
@@ -2511,116 +1041,29 @@ router.get('/lagou/jobs/:position/:city', lazyloadRouteHandler('./routes/lagou/j
2511
1041
  router.get('/yzu/home/:type', lazyloadRouteHandler('./routes/universities/yzu/home'));
2512
1042
  router.get('/yzu/yjszs/:type', lazyloadRouteHandler('./routes/universities/yzu/yjszs'));
2513
1043
 
2514
- // 德国新闻社卫健新闻
2515
- router.get('/krankenkassen', lazyloadRouteHandler('./routes/krankenkassen'));
2516
-
2517
1044
  // 桂林航天工业学院
2518
1045
  router.get('/guat/news/:type?', lazyloadRouteHandler('./routes/guat/news'));
2519
1046
 
2520
- // NEEA
2521
- // router.get('/neea/:type', lazyloadRouteHandler('./routes/neea'));
2522
-
2523
- // 中国农业大学
2524
- // router.get('/cauyjs', lazyloadRouteHandler('./routes/universities/cauyjs/cauyjs'));
2525
-
2526
- // 南方科技大学
2527
- // router.get('/sustyjs', lazyloadRouteHandler('./routes/universities/sustyjs/sustyjs'));
2528
- // router.get('/sustech/newshub-zh', lazyloadRouteHandler('./routes/universities/sustech/newshub-zh'));
2529
- // router.get('/sustech/bidding', lazyloadRouteHandler('./routes/universities/sustech/bidding'));
2530
-
2531
1047
  // 广州航海学院
2532
1048
  router.get('/gzmtu/jwc', lazyloadRouteHandler('./routes/universities/gzmtu/jwc'));
2533
1049
  router.get('/gzmtu/tsg', lazyloadRouteHandler('./routes/universities/gzmtu/tsg'));
2534
1050
 
2535
- // 广州大学
2536
- // router.get('/gzyjs', lazyloadRouteHandler('./routes/universities/gzyjs/gzyjs'));
2537
-
2538
1051
  // 暨南大学
2539
1052
  router.get('/jnu/xysx/:type', lazyloadRouteHandler('./routes/universities/jnu/xysx/index'));
2540
1053
  router.get('/jnu/yw/:type?', lazyloadRouteHandler('./routes/universities/jnu/yw/index'));
2541
1054
 
2542
- // 深圳大学
2543
- // router.get('/szuyjs', lazyloadRouteHandler('./routes/universities/szuyjs/szuyjs'));
2544
-
2545
- // 中国传媒大学
2546
- // router.get('/cucyjs', lazyloadRouteHandler('./routes/universities/cucyjs/cucyjs'));
2547
-
2548
- // 中国农业大学信电学院
2549
- // router.get('/cauele', lazyloadRouteHandler('./routes/universities/cauyjs/cauyjs'));
2550
-
2551
1055
  // moxingfans
2552
1056
  router.get('/moxingfans', lazyloadRouteHandler('./routes/moxingfans'));
2553
1057
 
2554
1058
  // Chiphell
2555
1059
  router.get('/chiphell/forum/:forumId?', lazyloadRouteHandler('./routes/chiphell/forum'));
2556
1060
 
2557
- // 华东理工大学研究生院
2558
- // router.get('/ecustyjs', lazyloadRouteHandler('./routes/universities/ecustyjs/ecustyjs'));
2559
-
2560
- // 同济大学研究生院
2561
- // router.get('/tjuyjs', lazyloadRouteHandler('./routes/universities/tjuyjs/tjuyjs'));
2562
-
2563
- // 中国石油大学研究生院
2564
- // router.get('/upcyjs', lazyloadRouteHandler('./routes/universities/upcyjs/upcyjs'));
2565
-
2566
- // 中国海洋大学研究生院
2567
- // router.get('/outyjs', lazyloadRouteHandler('./routes/universities/outyjs/outyjs'));
2568
-
2569
- // 中科院人工智能所
2570
- // router.get('/zkyai', lazyloadRouteHandler('./routes/universities/zkyai/zkyai'));
2571
-
2572
- // 中科院自动化所
2573
- // router.get('/zkyyjs', lazyloadRouteHandler('./routes/universities/zkyyjs/zkyyjs'));
2574
-
2575
- // 中国海洋大学信电学院
2576
- // router.get('/outele', lazyloadRouteHandler('./routes/universities/outele/outele'));
2577
-
2578
- // 华东师范大学研究生院 migrated to v2
2579
- // router.get('/ecnuyjs', lazyloadRouteHandler('./routes/universities/ecnuyjs/ecnuyjs'));
2580
-
2581
1061
  // 考研帮调剂信息
2582
1062
  router.get('/kaoyan', lazyloadRouteHandler('./routes/kaoyan/kaoyan'));
2583
1063
 
2584
- // 华中科技大学研究生院
2585
- // router.get('/hustyjs', lazyloadRouteHandler('./routes/universities/hustyjs/hustyjs'));
2586
-
2587
- // 华中师范大学研究生院
2588
- // router.get('/ccnuyjs', lazyloadRouteHandler('./routes/universities/ccnu/ccnuyjs'));
2589
-
2590
- // 华中师范大学计算机学院
2591
- // router.get('/ccnucs', lazyloadRouteHandler('./routes/universities/ccnu/ccnucs'));
2592
-
2593
- // 华中师范大学伍论贡学院
2594
- // router.get('/ccnuwu', lazyloadRouteHandler('./routes/universities/ccnu/ccnuwu'));
2595
-
2596
1064
  // WEEX
2597
1065
  router.get('/weexcn/news/:typeid', lazyloadRouteHandler('./routes/weexcn/index'));
2598
1066
 
2599
- // 天天基金 migrated to v2
2600
- // router.get('/eastmoney/ttjj/user/:uid', lazyloadRouteHandler('./routes/eastmoney/ttjj/user'));
2601
-
2602
- // 紳士漫畫
2603
- // router.get('/ssmh', lazyloadRouteHandler('./routes/ssmh'));
2604
- // router.get('/ssmh/category/:cid', lazyloadRouteHandler('./routes/ssmh/category'));
2605
-
2606
- // 华南师范大学研究生学院
2607
- // router.get('/scnuyjs', lazyloadRouteHandler('./routes/universities/scnu/scnuyjs'));
2608
-
2609
- // 华南师范大学软件学院
2610
- // router.get('/scnucs', lazyloadRouteHandler('./routes/universities/scnu/scnucs'));
2611
-
2612
- // 华南理工大学研究生院
2613
- // router.get('/scutyjs', lazyloadRouteHandler('./routes/universities/scut/scutyjs'));
2614
-
2615
- // 华南农业大学研究生院通知公告
2616
- // router.get('/scauyjs', lazyloadRouteHandler('./routes/universities/scauyjs/scauyjs'));
2617
-
2618
- // 北京大学研究生招生网通知公告 migrated to v2
2619
- // router.get('/pkuyjs', lazyloadRouteHandler('./routes/universities/pku/pkuyjs'));
2620
-
2621
- // 北京理工大学研究生通知公告
2622
- // router.get('/bityjs', lazyloadRouteHandler('./routes/universities/bit/bityjs'));
2623
-
2624
1067
  // 湖南科技大学教务处
2625
1068
  router.get('/hnust/jwc', lazyloadRouteHandler('./routes/universities/hnust/jwc/index'));
2626
1069
  router.get('/hnust/computer', lazyloadRouteHandler('./routes/universities/hnust/computer/index'));
@@ -2628,23 +1071,9 @@ router.get('/hnust/art', lazyloadRouteHandler('./routes/universities/hnust/art/i
2628
1071
  router.get('/hnust/chem', lazyloadRouteHandler('./routes/universities/hnust/chem/index'));
2629
1072
  router.get('/hnust/graduate/:type?', lazyloadRouteHandler('./routes/universities/hnust/graduate/index'));
2630
1073
 
2631
- // AGE动漫
2632
- // router.get('/agefans/detail/:id', lazyloadRouteHandler('./routes/agefans/detail'));
2633
- // router.get('/agefans/update', lazyloadRouteHandler('./routes/agefans/update'));
2634
-
2635
1074
  // Checkra1n
2636
1075
  router.get('/checkra1n/releases', lazyloadRouteHandler('./routes/checkra1n/releases'));
2637
1076
 
2638
- // 四川省科学技术厅
2639
- router.get('/sckjt/news/:type?', lazyloadRouteHandler('./routes/sckjt/news'));
2640
-
2641
- // 绝对领域
2642
- router.get('/jdlingyu/:type', lazyloadRouteHandler('./routes/jdlingyu/index'));
2643
-
2644
- // Hi, DIYgod
2645
- router.get('/blogs/diygod/animal-crossing', lazyloadRouteHandler('./routes/blogs/diygod/animal-crossing'));
2646
- router.get('/blogs/diygod/gk', lazyloadRouteHandler('./routes/blogs/diygod/gk'));
2647
-
2648
1077
  // 湖北工业大学
2649
1078
  router.get('/hbut/news/:type', lazyloadRouteHandler('./routes/universities/hbut/news'));
2650
1079
  router.get('/hbut/cs/:type', lazyloadRouteHandler('./routes/universities/hbut/cs'));
@@ -2653,14 +1082,7 @@ router.get('/hbut/cs/:type', lazyloadRouteHandler('./routes/universities/hbut/cs
2653
1082
  router.get('/acwifi', lazyloadRouteHandler('./routes/acwifi'));
2654
1083
 
2655
1084
  // MIT科技评论
2656
- router.get('/mittrchina/:type', lazyloadRouteHandler('./routes/mittrchina'));
2657
-
2658
- // iYouPort
2659
- router.get('/iyouport/article', lazyloadRouteHandler('./routes/iyouport'));
2660
- router.get('/iyouport/:category?', lazyloadRouteHandler('./routes/iyouport'));
2661
-
2662
- // girlimg
2663
- router.get('/girlimg/album/:tag?/:mode?', lazyloadRouteHandler('./routes/girlimg/album'));
1085
+ // router.get('/mittrchina/:type', lazyloadRouteHandler('./routes/mittrchina'));
2664
1086
 
2665
1087
  // etoland
2666
1088
  router.get('/etoland/:bo_table', lazyloadRouteHandler('./routes/etoland/board'));
@@ -2668,15 +1090,9 @@ router.get('/etoland/:bo_table', lazyloadRouteHandler('./routes/etoland/board'))
2668
1090
  // 辽宁工程技术大学教务在线公告
2669
1091
  router.get('/lntu/jwnews', lazyloadRouteHandler('./routes/universities/lntu/jwnews'));
2670
1092
 
2671
- // 51voa
2672
- router.get('/51voa/:channel', lazyloadRouteHandler('./routes/51voa/channel'));
2673
-
2674
1093
  // 追新番
2675
- router.get('/fanxinzhui', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
2676
- router.get('/zhuixinfan/list', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
2677
-
2678
- // scoresaber
2679
- router.get('/scoresaber/user/:id', lazyloadRouteHandler('./routes/scoresaber/user'));
1094
+ // router.get('/fanxinzhui', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
1095
+ // router.get('/zhuixinfan/list', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
2680
1096
 
2681
1097
  // blur-studio
2682
1098
  router.get('/blur-studio', lazyloadRouteHandler('./routes/blur-studio/index'));
@@ -2693,27 +1109,9 @@ router.get('/axis-studios/:type/:tag?', lazyloadRouteHandler('./routes/axis-stud
2693
1109
  // 人民邮电出版社
2694
1110
  router.get('/ptpress/book/:type?', lazyloadRouteHandler('./routes/ptpress/book'));
2695
1111
 
2696
- // uniqlo styling book
2697
- router.get('/uniqlo/stylingbook/:category?', lazyloadRouteHandler('./routes/uniqlo/stylingbook'));
2698
-
2699
- // 本地宝焦点资讯
2700
- // router.get('/bendibao/news/:city', lazyloadRouteHandler('./routes/bendibao/news'));
2701
-
2702
1112
  // unit-image
2703
1113
  router.get('/unit-image/films/:type?', lazyloadRouteHandler('./routes/unit-image/films'));
2704
1114
 
2705
- // digic-picture
2706
- router.get('/digic-pictures/:menu/:tags?', lazyloadRouteHandler('./routes/digic-pictures/index'));
2707
-
2708
- // cve.mitre.org
2709
- router.get('/cve/search/:keyword', lazyloadRouteHandler('./routes/cve/search'));
2710
-
2711
- // Xposed Module Repository
2712
- router.get('/xposed/module/:mod', lazyloadRouteHandler('./routes/xposed/module'));
2713
-
2714
- // Microsoft Edge
2715
- router.get('/edge/addon/:crxid', lazyloadRouteHandler('./routes/edge/addon'));
2716
-
2717
1115
  // Microsoft Store
2718
1116
  router.get('/microsoft-store/updates/:productid/:market?', lazyloadRouteHandler('./routes/microsoft-store/updates'));
2719
1117
 
@@ -2729,26 +1127,16 @@ router.get('/slu/csggxy/:id', lazyloadRouteHandler('./routes/universities/slu/cs
2729
1127
  router.get('/ruby-china/topics/:type?', lazyloadRouteHandler('./routes/ruby-china/topics'));
2730
1128
  router.get('/ruby-china/jobs', lazyloadRouteHandler('./routes/ruby-china/jobs'));
2731
1129
 
2732
- // 中国人事考试网
2733
- router.get('/cpta/notice', lazyloadRouteHandler('./routes/cpta/notice'));
2734
-
2735
1130
  // 广告网
2736
1131
  router.get('/adquan/:type?', lazyloadRouteHandler('./routes/adquan/index'));
2737
1132
 
2738
- // 齐鲁晚报
2739
- router.get('/qlwb/news', lazyloadRouteHandler('./routes/qlwb/news'));
2740
- router.get('/qlwb/city/:city', lazyloadRouteHandler('./routes/qlwb/city'));
2741
-
2742
- // 蜻蜓FM
2743
- // router.get('/qingting/channel/:id', lazyloadRouteHandler('./routes/qingting/channel'));
2744
-
2745
1133
  // 金色财经
2746
- router.get('/jinse/lives', lazyloadRouteHandler('./routes/jinse/lives'));
2747
- router.get('/jinse/timeline', lazyloadRouteHandler('./routes/jinse/timeline'));
2748
- router.get('/jinse/catalogue/:caty', lazyloadRouteHandler('./routes/jinse/catalogue'));
1134
+ // router.get('/jinse/lives', lazyloadRouteHandler('./routes/jinse/lives'));
1135
+ // router.get('/jinse/timeline', lazyloadRouteHandler('./routes/jinse/timeline'));
1136
+ // router.get('/jinse/catalogue/:caty', lazyloadRouteHandler('./routes/jinse/catalogue'));
2749
1137
 
2750
1138
  // deeplearning.ai
2751
- router.get('/deeplearningai/thebatch', lazyloadRouteHandler('./routes/deeplearningai/thebatch'));
1139
+ // router.get('/deeplearningai/thebatch', lazyloadRouteHandler('./routes/deeplearningai/thebatch'));
2752
1140
 
2753
1141
  // Fate Grand Order
2754
1142
  router.get('/fgo/news', lazyloadRouteHandler('./routes/fgo/news'));
@@ -2763,63 +1151,24 @@ router.get('/umass/amherst/csnews', lazyloadRouteHandler('./routes/umass/amherst
2763
1151
  router.get('/umass/amherst/ipoevents', lazyloadRouteHandler('./routes/umass/amherst/ipoevents'));
2764
1152
  router.get('/umass/amherst/ipostories', lazyloadRouteHandler('./routes/umass/amherst/ipostories'));
2765
1153
 
2766
- // 飘花电影网
2767
- router.get('/piaohua/hot', lazyloadRouteHandler('./routes/piaohua/hot'));
2768
-
2769
1154
  // 快媒体
2770
1155
  router.get('/kuai', lazyloadRouteHandler('./routes/kuai/index'));
2771
1156
  router.get('/kuai/:id', lazyloadRouteHandler('./routes/kuai/id'));
2772
1157
 
2773
- // 生物帮
2774
- router.get('/biobio/:id', lazyloadRouteHandler('./routes/biobio/index'));
2775
- router.get('/biobio/:column/:id', lazyloadRouteHandler('./routes/biobio/others'));
2776
-
2777
1158
  // 199it
2778
1159
  router.get('/199it', lazyloadRouteHandler('./routes/199it/index'));
2779
1160
  router.get('/199it/category/:caty', lazyloadRouteHandler('./routes/199it/category'));
2780
1161
  router.get('/199it/tag/:tag', lazyloadRouteHandler('./routes/199it/tag'));
2781
1162
 
2782
- // 唧唧堂
2783
- router.get('/jijitang/article/:id', lazyloadRouteHandler('./routes/jijitang/article'));
2784
- router.get('/jijitang/publication', lazyloadRouteHandler('./routes/jijitang/publication'));
2785
-
2786
- // 新闻联播
2787
- // router.get('/xwlb', lazyloadRouteHandler('./routes/xwlb/index'));
2788
-
2789
- // 端传媒
2790
- // router.get('/initium/:type?/:language?', lazyloadRouteHandler('./routes/initium/full'));
2791
- // router.get('/theinitium/:model/:type?/:language?', lazyloadRouteHandler('./routes/initium/full'));
2792
-
2793
1163
  // Grub Street
2794
- router.get('/grubstreet', lazyloadRouteHandler('./routes/grubstreet/index'));
2795
-
2796
- // 漫画堆
2797
- router.get('/manhuadui/manhua/:name/:serial?', lazyloadRouteHandler('./routes/manhuadui/manhua'));
2798
-
2799
- // 风之漫画
2800
- // router.get('/fzdm/manhua/:id', lazyloadRouteHandler('./routes/fzdm/manhua'));
2801
-
2802
- // Aljazeera 半岛网
2803
- // router.get('/aljazeera/news', lazyloadRouteHandler('./routes/aljazeera/news'));
2804
-
2805
- // CFD indices dividend adjustment
2806
- router.get('/cfd/gbp_div', lazyloadRouteHandler('./routes/cfd/gbp_div'));
1164
+ // router.get('/grubstreet', lazyloadRouteHandler('./routes/grubstreet/index'));
2807
1165
 
2808
1166
  // Monotype
2809
1167
  router.get('/monotype/article', lazyloadRouteHandler('./routes/monotype/article'));
2810
1168
 
2811
- // Stork
2812
- router.get('/stork/keyword/:trackID/:displayKey', lazyloadRouteHandler('./routes/stork/keyword'));
2813
-
2814
- // 致美化
2815
- router.get('/zhutix/latest', lazyloadRouteHandler('./routes/zhutix/latest'));
2816
-
2817
1169
  // arXiv
2818
1170
  router.get('/arxiv/:query', lazyloadRouteHandler('./routes/arxiv/query'));
2819
1171
 
2820
- // 生物谷
2821
- router.get('/shengwugu/:uid?', lazyloadRouteHandler('./routes/shengwugu/index'));
2822
-
2823
1172
  // 环球律师事务所文章
2824
1173
  router.get('/law/hq', lazyloadRouteHandler('./routes/law/hq'));
2825
1174
 
@@ -2850,77 +1199,26 @@ router.get('/law/jctd', lazyloadRouteHandler('./routes/law/jctd'));
2850
1199
  // 三星盖乐世社区
2851
1200
  router.get('/samsungmembers/latest', lazyloadRouteHandler('./routes/samsungmembers/latest'));
2852
1201
 
2853
- // 东莞教研网
2854
- // router.get('/dgjyw/:type', lazyloadRouteHandler('./routes/dgjyw/index'));
2855
-
2856
1202
  // 中国信息通信研究院
2857
1203
  router.get('/gov/caict/bps', lazyloadRouteHandler('./routes/gov/caict/bps'));
2858
1204
  router.get('/gov/caict/qwsj', lazyloadRouteHandler('./routes/gov/caict/qwsj'));
2859
1205
  router.get('/gov/caict/caictgd', lazyloadRouteHandler('./routes/gov/caict/caictgd'));
2860
1206
 
2861
1207
  // 中证网
2862
- router.get('/cs/news/:caty', lazyloadRouteHandler('./routes/cs/news'));
2863
-
2864
- // 财联社
2865
- // router.get('/cls/depth/:category?', lazyloadRouteHandler('./routes/cls/depth'));
2866
- // router.get('/cls/telegraph/:category?', lazyloadRouteHandler('./routes/cls/telegraph'));
1208
+ // router.get('/cs/news/:caty', lazyloadRouteHandler('./routes/cs/news'));
2867
1209
 
2868
1210
  // hentai-cosplays
2869
- router.get('/hentai-cosplays/:type?/:name?', lazyloadRouteHandler('./routes/hentai-cosplays/hentai-cosplays'));
2870
1211
  router.get('/porn-images-xxx/:type?/:name?', lazyloadRouteHandler('./routes/hentai-cosplays/porn-images-xxx'));
2871
1212
 
2872
1213
  // dcinside
2873
1214
  router.get('/dcinside/board/:id', lazyloadRouteHandler('./routes/dcinside/board'));
2874
1215
 
2875
- // 企鹅电竞
2876
- router.get('/egameqq/room/:id', lazyloadRouteHandler('./routes/tencent/egame/room'));
2877
-
2878
- // 国家税务总局
2879
- router.get('/gov/chinatax/latest', lazyloadRouteHandler('./routes/gov/chinatax/latest'));
2880
-
2881
1216
  // 荔枝FM
2882
1217
  router.get('/lizhi/user/:id', lazyloadRouteHandler('./routes/lizhi/user'));
2883
1218
 
2884
- // 富途牛牛
2885
- router.get('/futunn/highlights', lazyloadRouteHandler('./routes/futunn/highlights'));
2886
-
2887
- // 即刻 migrated to v2
2888
- // router.get('/jike/topic/:id', lazyloadRouteHandler('./routes/jike/topic'));
2889
- // router.get('/jike/topic/text/:id', lazyloadRouteHandler('./routes/jike/topicText'));
2890
- // router.get('/jike/user/:id', lazyloadRouteHandler('./routes/jike/user'));
2891
-
2892
- // 网易新闻
2893
- // router.get('/netease/news/rank/:category?/:type?/:time?', lazyloadRouteHandler('./routes/netease/news/rank'));
2894
- // router.get('/netease/news/special/:type?', lazyloadRouteHandler('./routes/netease/news/special'));
2895
-
2896
- // 网易 - 网易号
2897
- // router.get('/netease/dy/:id', lazyloadRouteHandler('./routes/netease/dy'));
2898
- // router.get('/netease/dy2/:id', lazyloadRouteHandler('./routes/netease/dy2'));
2899
-
2900
- // 网易大神
2901
- // router.get('/netease/ds/:id', lazyloadRouteHandler('./routes/netease/ds'));
2902
-
2903
- // 网易公开课
2904
- // router.get('/open163/vip', lazyloadRouteHandler('./routes/netease/open/vip'));
2905
- // router.get('/open163/latest', lazyloadRouteHandler('./routes/netease/open/latest'));
2906
-
2907
- // Boston.com
2908
- router.get('/boston/:tag?', lazyloadRouteHandler('./routes/boston/index'));
2909
-
2910
- // 场库
2911
- router.get('/changku', lazyloadRouteHandler('./routes/changku/index'));
2912
- router.get('/changku/cate/:postid', lazyloadRouteHandler('./routes/changku/index'));
2913
-
2914
- // SCMP
2915
- // router.get('/scmp/:category_id', lazyloadRouteHandler('./routes/scmp/index'));
2916
-
2917
1219
  // 上海市生态环境局
2918
1220
  router.get('/gov/shanghai/sthj', lazyloadRouteHandler('./routes/gov/shanghai/sthj'));
2919
1221
 
2920
- // 才符
2921
- router.get('/91ddcc/user/:user', lazyloadRouteHandler('./routes/91ddcc/user'));
2922
- router.get('/91ddcc/stage/:stage', lazyloadRouteHandler('./routes/91ddcc/stage'));
2923
-
2924
1222
  // BookwalkerTW热门新书
2925
1223
  router.get('/bookwalkertw/news', lazyloadRouteHandler('./routes/bookwalkertw/news'));
2926
1224
 
@@ -2937,32 +1235,9 @@ router.get('/amazfitwatchfaces/search/:model/:keyword?/:sortBy?', lazyloadRouteH
2937
1235
  router.get('/missevan/drama/latest', lazyloadRouteHandler('./routes/missevan/latest'));
2938
1236
  router.get('/missevan/drama/:id', lazyloadRouteHandler('./routes/missevan/drama'));
2939
1237
 
2940
- // Go语言爱好者周刊
2941
- // router.get('/go-weekly', lazyloadRouteHandler('./routes/go-weekly'));
2942
-
2943
- // popiask提问箱
2944
- router.get('/popiask/:sharecode/:pagesize?', lazyloadRouteHandler('./routes/popiask/questions'));
2945
-
2946
- // Tapechat提问箱
2947
- router.get('/tapechat/questionbox/:sharecode/:pagesize?', lazyloadRouteHandler('./routes/popiask/tapechat_questions'));
2948
-
2949
1238
  // AMD
2950
1239
  router.get('/amd/graphicsdrivers/:id/:rid?', lazyloadRouteHandler('./routes/amd/graphicsdrivers'));
2951
1240
 
2952
- // 二柄APP
2953
- // router.get('/erbingapp/news', lazyloadRouteHandler('./routes/erbingapp/news'));
2954
-
2955
- // 电商报
2956
- router.get('/dsb/area/:area', lazyloadRouteHandler('./routes/dsb/area'));
2957
-
2958
- // 靠谱新闻
2959
- router.get('/kaopunews/:language?', lazyloadRouteHandler('./routes/kaopunews'));
2960
-
2961
- // 格隆汇 migrated to v2
2962
- // router.get('/gelonghui/user/:id', lazyloadRouteHandler('./routes/gelonghui/user'));
2963
- // router.get('/gelonghui/subject/:id', lazyloadRouteHandler('./routes/gelonghui/subject'));
2964
- // router.get('/gelonghui/keyword/:keyword', lazyloadRouteHandler('./routes/gelonghui/keyword'));
2965
-
2966
1241
  // 光谷社区
2967
1242
  router.get('/guanggoo/:category?', lazyloadRouteHandler('./routes/guanggoo/index'));
2968
1243
 
@@ -2980,9 +1255,9 @@ router.get('/gov/chongqing/ljxq/zwgk/:caty', lazyloadRouteHandler('./routes/gov/
2980
1255
  router.get('/12379', lazyloadRouteHandler('./routes/12379/index'));
2981
1256
 
2982
1257
  // 鸟哥笔记
2983
- router.get('/ngbj', lazyloadRouteHandler('./routes/niaogebiji/index'));
2984
- router.get('/ngbj/today', lazyloadRouteHandler('./routes/niaogebiji/today'));
2985
- router.get('/ngbj/cat/:cat', lazyloadRouteHandler('./routes/niaogebiji/cat'));
1258
+ // router.get('/ngbj', lazyloadRouteHandler('./routes/niaogebiji/index'));
1259
+ // router.get('/ngbj/today', lazyloadRouteHandler('./routes/niaogebiji/today'));
1260
+ // router.get('/ngbj/cat/:cat', lazyloadRouteHandler('./routes/niaogebiji/cat'));
2986
1261
 
2987
1262
  // 梅花网
2988
1263
  router.get('/meihua/shots/:caty', lazyloadRouteHandler('./routes/meihua/shots'));
@@ -2993,109 +1268,34 @@ router.get('/kuaibao', lazyloadRouteHandler('./routes/kuaibao/index'));
2993
1268
 
2994
1269
  // SocialBeta
2995
1270
  router.get('/socialbeta/home', lazyloadRouteHandler('./routes/socialbeta/home'));
2996
- router.get('/socialbeta/hunt', lazyloadRouteHandler('./routes/socialbeta/hunt'));
2997
1271
 
2998
1272
  // 东方我乐多丛志
2999
1273
  router.get('/touhougarakuta/:language/:type', lazyloadRouteHandler('./routes/touhougarakuta'));
3000
1274
 
3001
- // 猎趣TV
3002
- router.get('/liequtv/room/:id', lazyloadRouteHandler('./routes/liequtv/room'));
3003
-
3004
1275
  // 北京物资学院
3005
1276
  router.get('/bwu/news', lazyloadRouteHandler('./routes/universities/bwu/news'));
3006
1277
 
3007
- // 新榜
3008
- // router.get('/newrank/wechat/:wxid', lazyloadRouteHandler('./routes/newrank/wechat'));
3009
- // router.get('/newrank/douyin/:dyid', lazyloadRouteHandler('./routes/newrank/douyin'));
3010
-
3011
1278
  // 漫小肆
3012
1279
  router.get('/manxiaosi/book/:id', lazyloadRouteHandler('./routes/manxiaosi/book'));
3013
1280
 
3014
1281
  // 吉林大学校内通知
3015
1282
  router.get('/jlu/oa', lazyloadRouteHandler('./routes/universities/jlu/oa'));
3016
1283
 
3017
- // 小宇宙 migrated to v2
3018
- // router.get('/xiaoyuzhou', lazyloadRouteHandler('./routes/xiaoyuzhou/pickup'));
3019
- // router.get('/xiaoyuzhou/podcast/:id', lazyloadRouteHandler('./routes/xiaoyuzhou/podcast'));
3020
-
3021
1284
  // 合肥工业大学
3022
1285
  router.get('/hfut/tzgg', lazyloadRouteHandler('./routes/universities/hfut/tzgg'));
3023
1286
 
3024
- // Darwin Awards
3025
- // router.get('/darwinawards/all', lazyloadRouteHandler('./routes/darwinawards/articles'));
3026
-
3027
- // 四川职业技术学院
3028
- // router.get('/scvtc/xygg', lazyloadRouteHandler('./routes/universities/scvtc/xygg'));
3029
-
3030
- // 华南理工大学土木与交通学院
3031
- // router.get('/scut/scet/notice', lazyloadRouteHandler('./routes/universities/scut/scet/notice'));
3032
-
3033
- // 华南理工大学电子与信息学院
3034
- // router.get('/scut/seie/news_center', lazyloadRouteHandler('./routes/universities/scut/seie/news_center'));
3035
-
3036
1287
  // OneJAV
3037
1288
  router.get('/onejav/:type/:key?', lazyloadRouteHandler('./routes/onejav/one'));
3038
1289
 
3039
- // 141jav
3040
- router.get('/141jav/:type/:key?', lazyloadRouteHandler('./routes/141jav/141jav'));
3041
-
3042
- // 141ppv
3043
- router.get('/141ppv/:type/:key?', lazyloadRouteHandler('./routes/141ppv/141ppv'));
3044
-
3045
- // CuriousCat
3046
- router.get('/curiouscat/user/:id', lazyloadRouteHandler('./routes/curiouscat/user'));
3047
-
3048
- // Telecompaper
3049
- router.get('/telecompaper/news/:caty/:year?/:country?/:type?', lazyloadRouteHandler('./routes/telecompaper/news'));
3050
- router.get('/telecompaper/search/:keyword?/:company?/:sort?/:period?', lazyloadRouteHandler('./routes/telecompaper/search'));
3051
-
3052
- // 水木社区
3053
- router.get('/newsmth/account/:id', lazyloadRouteHandler('./routes/newsmth/account'));
3054
- router.get('/newsmth/section/:section', lazyloadRouteHandler('./routes/newsmth/section'));
3055
-
3056
1290
  // Kotaku
3057
1291
  router.get('/kotaku/story/:type', lazyloadRouteHandler('./routes/kotaku/story'));
3058
1292
 
3059
1293
  // 梅斯医学
3060
1294
  router.get('/medsci/recommend', lazyloadRouteHandler('./routes/medsci/recommend'));
3061
1295
 
3062
- // Wallpaperhub migrated to v2
3063
- // router.get('/wallpaperhub', lazyloadRouteHandler('./routes/wallpaperhub/index'));
3064
-
3065
- // 悟空问答
3066
- router.get('/wukong/user/:id/:type?', lazyloadRouteHandler('./routes/wukong/user'));
3067
-
3068
- // 腾讯大数据
3069
- router.get('/tencent/bigdata', lazyloadRouteHandler('./routes/tencent/bigdata/index'));
3070
-
3071
1296
  // 搜韵网
3072
1297
  router.get('/souyun/today', lazyloadRouteHandler('./routes/souyun/today'));
3073
1298
 
3074
- // 生物谷
3075
- router.get('/bioon/latest', lazyloadRouteHandler('./routes/bioon/latest'));
3076
-
3077
- // soomal
3078
- router.get('/soomal/topics/:category/:language?', lazyloadRouteHandler('./routes/soomal/topics'));
3079
-
3080
- // NASA
3081
- router.get('/nasa/apod', lazyloadRouteHandler('./routes/nasa/apod'));
3082
- router.get('/nasa/apod-ncku', lazyloadRouteHandler('./routes/nasa/apod-ncku'));
3083
- router.get('/nasa/apod-cn', lazyloadRouteHandler('./routes/nasa/apod-cn'));
3084
-
3085
- // 爱Q生活网
3086
- // router.get('/iqshw/latest', lazyloadRouteHandler('./routes/3k8/latest'));
3087
- // router.get('/3k8/latest', lazyloadRouteHandler('./routes/3k8/latest'));
3088
-
3089
- // JustRun
3090
- router.get('/justrun', lazyloadRouteHandler('./routes/justrun/index'));
3091
-
3092
- // 上海电力大学 migrated to v2
3093
- // router.get('/shiep/:type/:id?', lazyloadRouteHandler('./routes/universities/shiep/index'));
3094
-
3095
- // 福建新闻
3096
- router.get('/fjnews/:city/:limit', lazyloadRouteHandler('./routes/fjnews/fznews'));
3097
- router.get('/fjnews/jjnews', lazyloadRouteHandler('./routes/fjnews/jjnews'));
3098
-
3099
1299
  // 中山网新闻
3100
1300
  router.get('/zsnews/index/:cateid', lazyloadRouteHandler('./routes/zsnews/index'));
3101
1301
 
@@ -3106,21 +1306,9 @@ router.get('/kongfz/shop/:id/:cat?', lazyloadRouteHandler('./routes/kongfz/shop'
3106
1306
  // XMind
3107
1307
  router.get('/xmind/mindmap/:lang?', lazyloadRouteHandler('./routes/xmind/mindmap'));
3108
1308
 
3109
- // 小刀娱乐网
3110
- // router.get('/x6d/:id?', lazyloadRouteHandler('./routes/x6d/index'));
3111
-
3112
1309
  // 思维导图社区
3113
1310
  router.get('/edrawsoft/mindmap/:classId?/:order?/:sort?/:lang?/:price?/:search?', lazyloadRouteHandler('./routes/edrawsoft/mindmap'));
3114
1311
 
3115
- // 它惠网
3116
- router.get('/tahui/rptlist', lazyloadRouteHandler('./routes/tahui/rptlist'));
3117
-
3118
- // Guiltfree
3119
- router.get('/guiltfree/onsale', lazyloadRouteHandler('./routes/guiltfree/onsale'));
3120
-
3121
- // 消费明鉴
3122
- router.get('/mingjian', lazyloadRouteHandler('./routes/mingjian/index'));
3123
-
3124
1312
  // hentaimama
3125
1313
  router.get('/hentaimama/videos', lazyloadRouteHandler('./routes/hentaimama/videos'));
3126
1314
 
@@ -3133,9 +1321,6 @@ router.get('/wenxuecity/bbs/:cat/:elite?', lazyloadRouteHandler('./routes/wenxue
3133
1321
  router.get('/wenxuecity/hot/:cid', lazyloadRouteHandler('./routes/wenxuecity/hot'));
3134
1322
  router.get('/wenxuecity/news', lazyloadRouteHandler('./routes/wenxuecity/news'));
3135
1323
 
3136
- // 不安全
3137
- router.get('/buaq', lazyloadRouteHandler('./routes/buaq/index'));
3138
-
3139
1324
  // 快出海
3140
1325
  router.get('/kchuhai', lazyloadRouteHandler('./routes/kchuhai/index'));
3141
1326
 
@@ -3154,124 +1339,49 @@ router.get('/secshi', lazyloadRouteHandler('./routes/secshi/index'));
3154
1339
  // 出海笔记
3155
1340
  router.get('/chuhaibiji', lazyloadRouteHandler('./routes/chuhaibiji/index'));
3156
1341
 
3157
- // 建宁闲谈
3158
- router.get('/blogs/jianning', lazyloadRouteHandler('./routes/blogs/jianning'));
3159
-
3160
- // 妖火网
3161
- // router.get('/yaohuo/:type?', lazyloadRouteHandler('./routes/yaohuo/index'));
3162
-
3163
1342
  // 互动吧
3164
1343
  router.get('/hudongba/:city/:id', lazyloadRouteHandler('./routes/hudongba/index'));
3165
1344
 
3166
- // 飞雪娱乐网
3167
- router.get('/feixuew/:id?', lazyloadRouteHandler('./routes/feixuew/index'));
3168
-
3169
1345
  // 1X
3170
1346
  router.get('/1x/:category?', lazyloadRouteHandler('./routes/1x/index'));
3171
1347
 
3172
1348
  // 剑网3
3173
1349
  router.get('/jx3/:caty?', lazyloadRouteHandler('./routes/jx3/news'));
3174
1350
 
3175
- // GQ
3176
- // router.get('/gq/tw/:caty?/:subcaty?', lazyloadRouteHandler('./routes/gq/tw/index'));
3177
-
3178
1351
  // 泉州市跨境电子商务协会
3179
1352
  router.get('/qzcea/:caty?', lazyloadRouteHandler('./routes/qzcea/index'));
3180
1353
 
3181
- // 福利年
3182
- router.get('/fulinian/:caty?', lazyloadRouteHandler('./routes/fulinian/index'));
3183
-
3184
1354
  // CGTN
3185
- router.get('/cgtn/top', lazyloadRouteHandler('./routes/cgtn/top'));
3186
1355
  router.get('/cgtn/most/:type?/:time?', lazyloadRouteHandler('./routes/cgtn/most'));
3187
-
3188
- router.get('/cgtn/pick', lazyloadRouteHandler('./routes/cgtn/pick'));
3189
-
3190
1356
  router.get('/cgtn/opinions', lazyloadRouteHandler('./routes/cgtn/opinions'));
3191
1357
 
3192
1358
  // AppSales
3193
1359
  router.get('/appsales/:caty?/:time?', lazyloadRouteHandler('./routes/appsales/index'));
3194
1360
 
3195
- // Academy of Management
3196
- router.get('/aom/journal/:id', lazyloadRouteHandler('./routes/aom/journal'));
3197
-
3198
- // 巴哈姆特電玩資訊站 migrated to v2
3199
- // router.get('/gamer/hot/:bsn', lazyloadRouteHandler('./routes/gamer/hot'));
3200
-
3201
1361
  // iCity
3202
1362
  router.get('/icity/:id', lazyloadRouteHandler('./routes/icity/index'));
3203
1363
 
3204
- // Anki
3205
- router.get('/anki/changes', lazyloadRouteHandler('./routes/anki/changes'));
3206
-
3207
1364
  // ABC News
3208
- router.get('/abc/:id?', lazyloadRouteHandler('./routes/abc'));
1365
+ // router.get('/abc/:id?', lazyloadRouteHandler('./routes/abc'));
3209
1366
 
3210
1367
  // 台湾中央通讯社
3211
- router.get('/cna/:id?', lazyloadRouteHandler('./routes/cna/index'));
3212
-
3213
- // 华为心声社区
3214
- router.get('/huawei/xinsheng/:caty?/:order?/:keyword?', lazyloadRouteHandler('./routes/huawei/xinsheng/index'));
3215
-
3216
- // 守望先锋
3217
- router.get('/ow/patch', lazyloadRouteHandler('./routes/ow/patch'));
3218
-
3219
- // MM范
3220
- // router.get('/95mm/tab/:tab?', lazyloadRouteHandler('./routes/95mm/tab'));
3221
- // router.get('/95mm/tag/:tag', lazyloadRouteHandler('./routes/95mm/tag'));
3222
- // router.get('/95mm/category/:category', lazyloadRouteHandler('./routes/95mm/category'));
3223
-
3224
- // 中国工程科技知识中心
3225
- router.get('/cktest/app/:ctgroup?/:domain?', lazyloadRouteHandler('./routes/cktest/app'));
3226
- router.get('/cktest/policy', lazyloadRouteHandler('./routes/cktest/policy'));
1368
+ // router.get('/cna/:id?', lazyloadRouteHandler('./routes/cna/index'));
3227
1369
 
3228
1370
  // 妈咪帮
3229
1371
  router.get('/mamibuy/:caty?/:age?/:sort?', lazyloadRouteHandler('./routes/mamibuy/index'));
3230
1372
 
3231
- // Mercari
3232
- router.get('/mercari/:type/:id', lazyloadRouteHandler('./routes/mercari/index'));
3233
-
3234
- // notefolio
3235
- router.get('/notefolio/:caty?/:order?/:time?/:query?', lazyloadRouteHandler('./routes/notefolio/index'));
3236
-
3237
- // JavDB
3238
- // router.get('/javdb/home/:category?/:sort?/:filter?', lazyloadRouteHandler('./routes/javdb'));
3239
- // router.get('/javdb/search/:keyword?/:filter?', lazyloadRouteHandler('./routes/javdb/search'));
3240
- // router.get('/javdb/tags/:query?/:caty?', lazyloadRouteHandler('./routes/javdb/tags'));
3241
- // router.get('/javdb/actors/:id/:filter?', lazyloadRouteHandler('./routes/javdb/actors'));
3242
- // router.get('/javdb/makers/:id/:filter?', lazyloadRouteHandler('./routes/javdb/makers'));
3243
- // router.get('/javdb/series/:id/:filter?', lazyloadRouteHandler('./routes/javdb/series'));
3244
- // router.get('/javdb/rankings/:caty?/:time?', lazyloadRouteHandler('./routes/javdb/rankings'));
3245
- // router.get('/javdb/:category?/:sort?/:filter?', lazyloadRouteHandler('./routes/javdb'));
3246
-
3247
- // World Economic Forum
3248
- router.get('/weforum/report/:lang?/:year?/:platform?', lazyloadRouteHandler('./routes/weforum/report'));
3249
-
3250
1373
  // Nobel Prize
3251
1374
  router.get('/nobelprize/:caty?', lazyloadRouteHandler('./routes/nobelprize/index'));
3252
1375
 
3253
1376
  // 中華民國國防部
3254
1377
  router.get('/gov/taiwan/mnd', lazyloadRouteHandler('./routes/gov/taiwan/mnd'));
3255
1378
 
3256
- // 読売新聞 to v2
3257
- // router.get('/yomiuri/:category', lazyloadRouteHandler('./routes/yomiuri/news'));
3258
-
3259
- // 巴哈姆特
3260
- // GNN新闻 migrated to v2
3261
- // router.get('/gamer/gnn/:category?', lazyloadRouteHandler('./routes/gamer/gnn_index'));
3262
-
3263
1379
  // 中国人大网
3264
- router.get('/npc/:caty', lazyloadRouteHandler('./routes/npc/index'));
1380
+ // router.get('/npc/:caty', lazyloadRouteHandler('./routes/npc/index'));
3265
1381
 
3266
1382
  // 高科技行业门户
3267
1383
  router.get('/ofweek/news', lazyloadRouteHandler('./routes/ofweek/news'));
3268
1384
 
3269
- // 八阕
3270
- router.get('/popyard/:caty?', lazyloadRouteHandler('./routes/popyard/index'));
3271
-
3272
- // 原神 migrated to v2
3273
- // router.get('/yuanshen/:location?/:category?', lazyloadRouteHandler('./routes/yuanshen/index'));
3274
-
3275
1385
  // World Trade Organization
3276
1386
  router.get('/wto/dispute-settlement/:year?', lazyloadRouteHandler('./routes/wto/dispute-settlement'));
3277
1387
 
@@ -3281,17 +1391,6 @@ router.get('/forum4399/:mtag', lazyloadRouteHandler('./routes/game4399/forum'));
3281
1391
  // 国防科技大学
3282
1392
  router.get('/nudt/yjszs/:id?', lazyloadRouteHandler('./routes/universities/nudt/yjszs'));
3283
1393
 
3284
- // 全现在
3285
- router.get('/allnow/column/:id', lazyloadRouteHandler('./routes/allnow/column'));
3286
- router.get('/allnow/tag/:id', lazyloadRouteHandler('./routes/allnow/tag'));
3287
- router.get('/allnow/user/:id', lazyloadRouteHandler('./routes/allnow/user'));
3288
- router.get('/allnow', lazyloadRouteHandler('./routes/allnow/index'));
3289
-
3290
- // 证券时报网
3291
- // router.get('/stcn/news/:id?', lazyloadRouteHandler('./routes/stcn/news'));
3292
- // router.get('/stcn/data/:id?', lazyloadRouteHandler('./routes/stcn/data'));
3293
- // router.get('/stcn/kuaixun/:id?', lazyloadRouteHandler('./routes/stcn/kuaixun'));
3294
-
3295
1394
  // dev.to
3296
1395
  router.get('/dev.to/top/:period', lazyloadRouteHandler('./routes/dev.to/top'));
3297
1396
 
@@ -3305,30 +1404,21 @@ router.get('/manictime/releases', lazyloadRouteHandler('./routes/manictime/relea
3305
1404
  // Deutsche Welle 德国之声
3306
1405
  router.get('/dw/:lang?/:caty?', lazyloadRouteHandler('./routes/dw/index'));
3307
1406
 
3308
- // Amazon
3309
- router.get('/amazon/ku/:type?', lazyloadRouteHandler('./routes/amazon/ku'));
3310
-
3311
1407
  // Citavi 中文网站论坛
3312
1408
  router.get('/citavi/:caty?', lazyloadRouteHandler('./routes/citavi/index'));
3313
1409
 
3314
1410
  // Sesame
3315
- router.get('/sesame/release_notes', lazyloadRouteHandler('./routes/sesame/release_notes'));
3316
-
3317
- // 佐川急便
3318
- router.get('/sagawa/:id', lazyloadRouteHandler('./routes/sagawa/index'));
1411
+ router.get('/sesame/release_notes', lazyloadRouteHandler('./routes/sesame/release-notes'));
3319
1412
 
3320
1413
  // QNAP
3321
1414
  router.get('/qnap/release-notes/:id', lazyloadRouteHandler('./routes/qnap/release-notes'));
3322
1415
 
3323
1416
  // Liquipedia
3324
- router.get('/liquipedia/dota2/matches/:id', lazyloadRouteHandler('./routes/liquipedia/dota2_matches.js'));
1417
+ // router.get('/liquipedia/dota2/matches/:id', lazyloadRouteHandler('./routes/liquipedia/dota2_matches.js'));
3325
1418
 
3326
1419
  // 哈尔滨市科技局
3327
1420
  router.get('/gov/harbin/kjj', lazyloadRouteHandler('./routes/gov/harbin/kjj'));
3328
1421
 
3329
- // WSJ migrated to v2
3330
- // router.get('/wsj/:lang/:category?', lazyloadRouteHandler('./routes/wsj/index'));
3331
-
3332
1422
  // China File
3333
1423
  router.get('/chinafile/:category?', lazyloadRouteHandler('./routes/chinafile/index'));
3334
1424
 
@@ -3343,39 +1433,10 @@ router.get('/grandchallenge/challenges', lazyloadRouteHandler('./routes/grandcha
3343
1433
  router.get('/nwpu/:column', lazyloadRouteHandler('./routes/nwpu/index'));
3344
1434
 
3345
1435
  // 美国联邦最高法院
3346
- router.get('/us/supremecourt/argument_audio/:year?', lazyloadRouteHandler('./routes/us/supremecourt/argument_audio'));
3347
-
3348
- // 得到
3349
- // router.get('/dedao/list/:caty?', lazyloadRouteHandler('./routes/dedao/list'));
3350
- // router.get('/dedao/knowledge/:topic?/:type?', lazyloadRouteHandler('./routes/dedao/knowledge'));
3351
- // router.get('/dedao/:caty?', lazyloadRouteHandler('./routes/dedao/index'));
3352
-
3353
- // 未名新闻
3354
- router.get('/mitbbs/:caty?', lazyloadRouteHandler('./routes/mitbbs/index'));
3355
-
3356
- // 8kcos migrated to v2
3357
- // router.get('/8kcos/', lazyloadRouteHandler('./routes/8kcos/latest'));
3358
- // router.get('/8kcos/cat/:cat*', lazyloadRouteHandler('./routes/8kcos/cat'));
3359
- // router.get('/8kcos/tag/:tag', lazyloadRouteHandler('./routes/8kcos/tag'));
3360
-
3361
- // 贾真的电商108将
3362
- router.get('/jiazhen108', lazyloadRouteHandler('./routes/jiazhen108/index'));
3363
-
3364
- // Instagram
3365
- // router.get('/instagram/:category/:key', lazyloadRouteHandler('./routes/instagram/index'));
1436
+ router.get('/us/supremecourt/argument_audio/:year?', lazyloadRouteHandler('./routes/us/supremecourt/argument-audio'));
3366
1437
 
3367
1438
  // 优设网
3368
- router.get('/uisdc/talk/:sort?', lazyloadRouteHandler('./routes/uisdc/talk'));
3369
1439
  router.get('/uisdc/hangye/:caty?', lazyloadRouteHandler('./routes/uisdc/hangye'));
3370
- router.get('/uisdc/news', lazyloadRouteHandler('./routes/uisdc/news'));
3371
- router.get('/uisdc/zt/:title?', lazyloadRouteHandler('./routes/uisdc/zt'));
3372
- router.get('/uisdc/topic/:title?/:sort?', lazyloadRouteHandler('./routes/uisdc/topic'));
3373
-
3374
- // 中国劳工观察
3375
- router.get('/chinalaborwatch/reports/:lang?/:industry?', lazyloadRouteHandler('./routes/chinalaborwatch/reports'));
3376
-
3377
- // Phoronix
3378
- // router.get('/phoronix/:page/:queryOrItem?', lazyloadRouteHandler('./routes/phoronix/index'));
3379
1440
 
3380
1441
  // 美国中央情报局
3381
1442
  router.get('/cia/foia-annual-report', lazyloadRouteHandler('./routes/us/cia/foia-annual-report'));
@@ -3386,18 +1447,9 @@ router.get('/everything/changes', lazyloadRouteHandler('./routes/everything/chan
3386
1447
  // 中国劳工通讯
3387
1448
  router.get('/clb/commentary/:lang?', lazyloadRouteHandler('./routes/clb/commentary'));
3388
1449
 
3389
- // 国际教育研究所
3390
- router.get('/iie/blog', lazyloadRouteHandler('./routes/iie/blog'));
3391
-
3392
- // McKinsey Greater China
3393
- // router.get('/mckinsey/:category?', lazyloadRouteHandler('./routes/mckinsey/index'));
3394
-
3395
1450
  // 超理论坛
3396
1451
  router.get('/chaoli/:channel?', lazyloadRouteHandler('./routes/chaoli/index'));
3397
1452
 
3398
- // Polar
3399
- router.get('/polar/blog', lazyloadRouteHandler('./routes/polar/blog'));
3400
-
3401
1453
  // XYplorer
3402
1454
  router.get('/xyplorer/whatsnew', lazyloadRouteHandler('./routes/xyplorer/whatsnew'));
3403
1455
 
@@ -3407,15 +1459,6 @@ router.get('/rescuetime/release-notes/:os?', lazyloadRouteHandler('./routes/resc
3407
1459
  // Total Commander
3408
1460
  router.get('/totalcommander/whatsnew', lazyloadRouteHandler('./routes/totalcommander/whatsnew'));
3409
1461
 
3410
- // Blizzard
3411
- router.get('/blizzard/news/:language?/:category?', lazyloadRouteHandler('./routes/blizzard/news'));
3412
-
3413
- // DeepMind
3414
- // router.get('/deepmind/blog/:category?', lazyloadRouteHandler('./routes/deepmind/blog'));
3415
-
3416
- // 东西智库
3417
- // router.get('/dx2025/:type?/:category?', lazyloadRouteHandler('./routes/dx2025/index'));
3418
-
3419
1462
  // DeepL
3420
1463
  router.get('/deepl/blog/:lang?', lazyloadRouteHandler('./routes/deepl/blog'));
3421
1464
 
@@ -3429,64 +1472,18 @@ router.get('/qstheory/:category?', lazyloadRouteHandler('./routes/qstheory/index
3429
1472
  // 生命时报
3430
1473
  router.get('/lifetimes/:category?', lazyloadRouteHandler('./routes/lifetimes/index'));
3431
1474
 
3432
- // MakeUseOf
3433
- router.get('/makeuseof/:category?', lazyloadRouteHandler('./routes/makeuseof/index'));
3434
-
3435
- // 瞬Matataki
3436
- // 热门作品
3437
- router.get('/matataki/posts/hot/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/scoreranking'));
3438
- // 最新作品
3439
- router.get('/matataki/posts/latest/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/timeranking'));
3440
- // 作者创作
3441
- router.get('/matataki/users/:authorId/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/author'));
3442
- // Fan票关联作品
3443
- router.get('/matataki/tokens/:id/posts/:filterCode/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/token'));
3444
- // 标签关联作品
3445
- router.get('/matataki/tags/:tagId/:tagName/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/tag'));
3446
- // 收藏夹
3447
- router.get('/matataki/users/:userId/favorites/:favoriteListId/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/favorite'));
3448
-
3449
- // SoBooks
3450
- // router.get('/sobooks/tag/:id?', lazyloadRouteHandler('./routes/sobooks/tag'));
3451
- // router.get('/sobooks/date/:date?', lazyloadRouteHandler('./routes/sobooks/date'));
3452
- // router.get('/sobooks/:category?', lazyloadRouteHandler('./routes/sobooks/index'));
3453
-
3454
1475
  // Zhimap 知识导图社区
3455
1476
  router.get('/zhimap/:categoryUuid?/:recommend?', lazyloadRouteHandler('./routes/zhimap/index'));
3456
1477
 
3457
- // Fantia
3458
- // router.get('/fantia/search/:type?/:caty?/:peroid?/:order?/:rating?/:keyword?', lazyloadRouteHandler('./routes/fantia/search'));
3459
- // router.get('/fantia/user/:id', lazyloadRouteHandler('./routes/fantia/user'));
3460
-
3461
- // i-Cable
3462
- router.get('/icable/:category/:option?', lazyloadRouteHandler('./routes/icable/category'));
3463
-
3464
- // ProcessOn
3465
- router.get('/processon/popular/:cate?/:sort?', lazyloadRouteHandler('./routes/processon/popular'));
3466
-
3467
1478
  // Mathpix
3468
1479
  router.get('/mathpix/blog', lazyloadRouteHandler('./routes/mathpix/blog'));
3469
1480
 
3470
1481
  // OneNote Gem Add-Ins
3471
1482
  router.get('/onenotegem/release', lazyloadRouteHandler('./routes/onenotegem/release'));
3472
1483
 
3473
- // Mind42
3474
- router.get('/mind42/tag/:id', lazyloadRouteHandler('./routes/mind42/tag'));
3475
- router.get('/mind42/search/:keyword', lazyloadRouteHandler('./routes/mind42/search'));
3476
- router.get('/mind42/:caty?', lazyloadRouteHandler('./routes/mind42/index'));
3477
-
3478
1484
  // 幕布网
3479
1485
  router.get('/mubu/explore/:category?/:title?', lazyloadRouteHandler('./routes/mubu/explore'));
3480
1486
 
3481
- // Esquirehk
3482
- router.get('/esquirehk/tag/:id', lazyloadRouteHandler('./routes/esquirehk/tag'));
3483
-
3484
- // 国家普通话测试 杭州市
3485
- router.get('/putonghua', lazyloadRouteHandler('./routes/putonghua/hangzhou'));
3486
-
3487
- // 国家自学考试 上海市 migrated to v2 /shmeea/self-study
3488
- // router.get('/self-study/shanghai', require('./routes/self-study/shanghai'));
3489
-
3490
1487
  // 有道云笔记
3491
1488
  router.get('/youdao/xueba', lazyloadRouteHandler('./routes/youdao/xueba'));
3492
1489
  router.get('/youdao/latest', lazyloadRouteHandler('./routes/youdao/latest'));
@@ -3498,48 +1495,27 @@ router.get('/yinxiang/card/:id', lazyloadRouteHandler('./routes/yinxiang/card'))
3498
1495
  router.get('/yinxiang/personal/:id', lazyloadRouteHandler('./routes/yinxiang/personal'));
3499
1496
  router.get('/yinxiang/category/:id', lazyloadRouteHandler('./routes/yinxiang/category'));
3500
1497
 
3501
- // 晚点LatePost
3502
- // router.get('/latepost/:proma?', lazyloadRouteHandler('./routes/latepost/index'));
3503
-
3504
- // 遠見 gvm.com.tw
3505
- router.get('/gvm/index/:category?', lazyloadRouteHandler('./routes/gvm/index'));
3506
-
3507
1498
  // 触乐
3508
1499
  router.get('/chuapp/index/:category?', lazyloadRouteHandler('./routes/chuapp/index'));
3509
1500
 
3510
1501
  // Deloitte
3511
1502
  router.get('/deloitte/industries/:category?', lazyloadRouteHandler('./routes/deloitte/industries'));
3512
1503
 
3513
- // 特斯拉系统更新
3514
- router.get('/tesla', lazyloadRouteHandler('./routes/tesla/update'));
3515
-
3516
1504
  // 复旦大学继续教育学院
3517
1505
  router.get('/fudan/cce', lazyloadRouteHandler('./routes/universities/fudan/cce'));
3518
1506
 
3519
- // LowEndTalk
3520
- router.get('/lowendtalk/discussion/:id?', lazyloadRouteHandler('./routes/lowendtalk/discussion'));
3521
-
3522
1507
  // 无产者评论
3523
1508
  router.get('/proletar/:type?/:id?', lazyloadRouteHandler('./routes/proletar/index'));
3524
1509
 
3525
1510
  // QTTabBar
3526
1511
  router.get('/qttabbar/change-log', lazyloadRouteHandler('./routes/qttabbar/change-log'));
3527
1512
 
3528
- // 酷18
3529
- // router.get('/cool18/:id?/:type?/:keyword?', lazyloadRouteHandler('./routes/cool18/index'));
3530
-
3531
1513
  // 美国贸易代表办公室
3532
1514
  router.get('/ustr/press-releases/:year?/:month?', lazyloadRouteHandler('./routes/us/ustr/press-releases'));
3533
1515
 
3534
1516
  // 游戏动力
3535
1517
  router.get('/vgn/:platform?', lazyloadRouteHandler('./routes/vgn/index'));
3536
1518
 
3537
- // 国际能源署
3538
- router.get('/iea/:category?', lazyloadRouteHandler('./routes/iea/index'));
3539
-
3540
- // 中国计算机学会
3541
- // router.get('/ccf/news/:category?', lazyloadRouteHandler('./routes/ccf/news'));
3542
-
3543
1519
  // The Brain
3544
1520
  router.get('/thebrain/:category?', lazyloadRouteHandler('./routes/thebrain/blog'));
3545
1521
 
@@ -3555,14 +1531,8 @@ router.get('/marginnote/tag/:id?', lazyloadRouteHandler('./routes/marginnote/tag
3555
1531
  // ASML
3556
1532
  router.get('/asml/press-releases', lazyloadRouteHandler('./routes/asml/press-releases'));
3557
1533
 
3558
- // 中国机械工程学会
3559
- router.get('/cmes/news/:category?', lazyloadRouteHandler('./routes/cmes/news'));
3560
-
3561
- // Craigslist
3562
- router.get('/craigslist/:location/:type', lazyloadRouteHandler('./routes/craigslist/search'));
3563
-
3564
1534
  // 有趣天文奇观
3565
- router.get('/interesting-sky/astronomical_events/:year?', lazyloadRouteHandler('./routes/interesting-sky/astronomical_events'));
1535
+ router.get('/interesting-sky/astronomical_events/:year?', lazyloadRouteHandler('./routes/interesting-sky/astronomical-events'));
3566
1536
  router.get('/interesting-sky/recent-interesting', lazyloadRouteHandler('./routes/interesting-sky/recent-interesting'));
3567
1537
  router.get('/interesting-sky', lazyloadRouteHandler('./routes/interesting-sky/index'));
3568
1538
 
@@ -3572,12 +1542,6 @@ router.get('/mathunion/fields-medal', lazyloadRouteHandler('./routes/mathunion/f
3572
1542
  // ACM
3573
1543
  router.get('/acm/amturingaward', lazyloadRouteHandler('./routes/acm/amturingaward'));
3574
1544
 
3575
- // 網路天文館
3576
- router.get('/tam/forecast', lazyloadRouteHandler('./routes/tam/forecast'));
3577
-
3578
- // Day One
3579
- router.get('/dayone/blog', lazyloadRouteHandler('./routes/dayone/blog'));
3580
-
3581
1545
  // 滴答清单
3582
1546
  router.get('/dida365/habit/checkins', lazyloadRouteHandler('./routes/dida365/habit-checkins'));
3583
1547
 
@@ -3585,10 +1549,7 @@ router.get('/dida365/habit/checkins', lazyloadRouteHandler('./routes/dida365/hab
3585
1549
  router.get('/ditto/changes/:type?', lazyloadRouteHandler('./routes/ditto/changes'));
3586
1550
 
3587
1551
  // iDaily 每日环球视野
3588
- router.get('/idaily/today', lazyloadRouteHandler('./routes/idaily/index'));
3589
-
3590
- // 北屋
3591
- router.get('/northhouse/:category?', lazyloadRouteHandler('./routes/northhouse/index'));
1552
+ // router.get('/idaily/today', lazyloadRouteHandler('./routes/idaily/index'));
3592
1553
 
3593
1554
  // Oak Ridge National Laboratory
3594
1555
  router.get('/ornl/news', lazyloadRouteHandler('./routes/ornl/news'));
@@ -3596,24 +1557,9 @@ router.get('/ornl/news', lazyloadRouteHandler('./routes/ornl/news'));
3596
1557
  // 信阳师范学院 自考办
3597
1558
  router.get('/xynu/zkb/:category', lazyloadRouteHandler('./routes/universities/xynu/zkb'));
3598
1559
 
3599
- // Bell Labs
3600
- router.get('/bell-labs/events-news/:category?', lazyloadRouteHandler('./routes/bell-labs/events-news.js'));
3601
-
3602
- // 中国科学院青年创新促进会
3603
- router.get('/yicas/blog', lazyloadRouteHandler('./routes/yicas/blog'));
3604
-
3605
- // 九三学社
3606
- router.get('/93/:category?', lazyloadRouteHandler('./routes/93/index'));
3607
-
3608
- // 科学网
3609
- // router.get('/sciencenet/blog/:type?/:time?/:sort?', lazyloadRouteHandler('./routes/sciencenet/blog'));
3610
-
3611
1560
  // DailyArt
3612
1561
  router.get('/dailyart/:language?', lazyloadRouteHandler('./routes/dailyart/index'));
3613
1562
 
3614
- // SCBOY
3615
- router.get('/scboy/thread/:tid', lazyloadRouteHandler('./routes/scboy/thread'));
3616
-
3617
1563
  // 猿料
3618
1564
  router.get('/yuanliao/:tag?/:sort?', lazyloadRouteHandler('./routes/yuanliao/index'));
3619
1565
 
@@ -3623,37 +1569,15 @@ router.get('/cppcc/:slug?', lazyloadRouteHandler('./routes/gov/cppcc/index'));
3623
1569
  // National Association of Colleges and Employers
3624
1570
  router.get('/nace/blog/:sort?', lazyloadRouteHandler('./routes/nace/blog'));
3625
1571
 
3626
- // Caixin Latest
3627
- // router.get('/caixin/latest', lazyloadRouteHandler('./routes/caixin/latest'));
3628
-
3629
1572
  // Semiconductor Industry Association
3630
1573
  router.get('/semiconductors/latest-news', lazyloadRouteHandler('./routes/semiconductors/latest-news'));
3631
1574
 
3632
- // VOA News
3633
- router.get('/voa/day-photos', lazyloadRouteHandler('./routes/voa/day-photos'));
3634
-
3635
1575
  // Voice of America
3636
1576
  router.get('/voa/:language/:channel?', lazyloadRouteHandler('./routes/voa/index'));
3637
1577
 
3638
- // 留园网
3639
- // router.get('/6park/:id?/:type?/:keyword?', lazyloadRouteHandler('./routes/6park/index'));
3640
-
3641
- // 哔嘀影视
3642
- // router.get('/mp4er/:type?/:caty?/:area?/:year?/:order?', lazyloadRouteHandler('./routes/mp4er/index'));
3643
- // router.get('/bde4/:type?/:caty?/:area?/:year?/:order?', lazyloadRouteHandler('./routes/mp4er/index'));
3644
-
3645
- // 上海证券交易所
3646
- // router.get('/sse/sserules/:slug?', lazyloadRouteHandler('./routes/sse/sserules'));
3647
-
3648
- // 游戏葡萄
3649
- router.get('/gamegrape/:id?', lazyloadRouteHandler('./routes/gamegrape/index'));
3650
-
3651
1578
  // 阳光高考
3652
1579
  router.get('/chsi/zszcgd/:category?', lazyloadRouteHandler('./routes/chsi/zszcgd'));
3653
1580
 
3654
- // 眾新聞
3655
- router.get('/hkcnews/news/:category?', lazyloadRouteHandler('./routes/hkcnews/news'));
3656
-
3657
1581
  // AnyTXT
3658
1582
  router.get('/anytxt/release-notes', lazyloadRouteHandler('./routes/anytxt/release-notes'));
3659
1583
 
@@ -3663,17 +1587,9 @@ router.get('/mofish/:id', lazyloadRouteHandler('./routes/mofish/index'));
3663
1587
  // Mcdonalds
3664
1588
  router.get('/mcdonalds/:category', lazyloadRouteHandler('./routes/mcdonalds/news'));
3665
1589
 
3666
- // Pincong 品葱 migrated to v2
3667
- // router.get('/pincong/category/:category?/:sort?', lazyloadRouteHandler('./routes/pincong/index'));
3668
- // router.get('/pincong/hot/:category?', lazyloadRouteHandler('./routes/pincong/hot'));
3669
- // router.get('/pincong/topic/:topic', lazyloadRouteHandler('./routes/pincong/topic'));
3670
-
3671
1590
  // GoComics
3672
1591
  router.get('/gocomics/:name', lazyloadRouteHandler('./routes/gocomics/index'));
3673
1592
 
3674
- // Comics Kingdom
3675
- // router.get('/comicskingdom/:name', lazyloadRouteHandler('./routes/comicskingdom/index'));
3676
-
3677
1593
  // Media Digest
3678
1594
  router.get('/mediadigest/:range/:category?', lazyloadRouteHandler('./routes/mediadigest/category'));
3679
1595
 
@@ -3688,23 +1604,12 @@ router.get('/simpread/changelog', lazyloadRouteHandler('./routes/simpread/change
3688
1604
  // booth.pm
3689
1605
  router.get('/booth.pm/shop/:subdomain', lazyloadRouteHandler('./routes/booth-pm/shop'));
3690
1606
 
3691
- // Minecraft feed the beast
3692
- router.get('/feed-the-beast/modpack/:modpackEntry', lazyloadRouteHandler('./routes/feed-the-beast/modpack'));
3693
-
3694
1607
  // Gab
3695
1608
  router.get('/gab/user/:username', lazyloadRouteHandler('./routes/gab/user'));
3696
- router.get('/gab/popular/:sort?', lazyloadRouteHandler('./routes/gab/explore'));
3697
-
3698
- // NEW 字幕组
3699
- // router.get('/newzmz/view/:id', lazyloadRouteHandler('./routes/newzmz/view'));
3700
- // router.get('/newzmz/:category?', lazyloadRouteHandler('./routes/newzmz/index'));
3701
1609
 
3702
1610
  // Phrack Magazine
3703
1611
  router.get('/phrack', lazyloadRouteHandler('./routes/phrack/index'));
3704
1612
 
3705
- // 通識·現代中國
3706
- // router.get('/chiculture/topic/:category?', lazyloadRouteHandler('./routes/chiculture/topic'));
3707
-
3708
1613
  // CQUT News
3709
1614
  router.get('/cqut/news', lazyloadRouteHandler('./routes/universities/cqut/cqut-news'));
3710
1615
  router.get('/cqut/libnews', lazyloadRouteHandler('./routes/universities/cqut/cqut-libnews'));
@@ -3712,66 +1617,27 @@ router.get('/cqut/libnews', lazyloadRouteHandler('./routes/universities/cqut/cqu
3712
1617
  // 城农 Growin' City
3713
1618
  router.get('/growincity/news/:id?', lazyloadRouteHandler('./routes/growincity/news'));
3714
1619
 
3715
- // Thrillist
3716
- router.get('/thrillist/:tag?', lazyloadRouteHandler('./routes/thrillist/index'));
3717
-
3718
- // 丁香园
3719
- router.get('/dxy/vaccine/:province?/:city?/:location?', lazyloadRouteHandler('./routes/dxy/vaccine'));
3720
-
3721
- // Wtu
3722
- router.get('/wtu/:type', lazyloadRouteHandler('./routes/universities/wtu'));
3723
-
3724
1620
  // 中国庭审公开网
3725
1621
  router.get('/tingshen', lazyloadRouteHandler('./routes/tingshen/tingshen'));
3726
1622
 
3727
1623
  // 中华人民共和国人力资源和社会保障部
3728
1624
  router.get('/gov/mohrss/sbjm/:category?', lazyloadRouteHandler('./routes/gov/mohrss/sbjm'));
3729
1625
 
3730
- // 深影译站
3731
- router.get('/shinybbs/latest', lazyloadRouteHandler('./routes/shinybbs/latest'));
3732
- router.get('/shinybbs/p/:id', lazyloadRouteHandler('./routes/shinybbs/p'));
3733
- router.get('/shinybbs/page/:id?', lazyloadRouteHandler('./routes/shinybbs/index'));
3734
- router.get('/shinybbs', lazyloadRouteHandler('./routes/shinybbs/index'));
3735
-
3736
1626
  // 天眼查
3737
1627
  router.get('/tianyancha/hot', lazyloadRouteHandler('./routes/tianyancha/hot'));
3738
1628
 
3739
1629
  // King Arthur
3740
1630
  router.get('/kingarthur/:type', lazyloadRouteHandler('./routes/kingarthur/index'));
3741
1631
 
3742
- // 新华网
3743
- // router.get('/news/whxw', lazyloadRouteHandler('./routes/news/whxw'));
3744
-
3745
- // 游讯网
3746
- // router.get('/yxdown/recommend', lazyloadRouteHandler('./routes/yxdown/recommend'));
3747
- // router.get('/yxdown/news/:category?', lazyloadRouteHandler('./routes/yxdown/news'));
3748
-
3749
- // BabeHub
3750
- router.get('/babehub/search/:keyword?', lazyloadRouteHandler('./routes/babehub/search'));
3751
- router.get('/babehub/:category?', lazyloadRouteHandler('./routes/babehub/index'));
3752
-
3753
1632
  // 深圳新闻网
3754
1633
  router.get('/sznews/press', lazyloadRouteHandler('./routes/sznews/press'));
3755
1634
  router.get('/sznews/ranking', lazyloadRouteHandler('./routes/sznews/ranking'));
3756
1635
 
3757
- // Shuax
3758
- router.get('/shuax/project/:name?', lazyloadRouteHandler('./routes/shuax/project'));
3759
-
3760
- // BioOne
3761
- // router.get('/bioone/featured', lazyloadRouteHandler('./routes/bioone/featured'));
3762
-
3763
- // Obsidian
3764
- router.get('/obsidian/announcements', lazyloadRouteHandler('./routes/obsidian/announcements'));
3765
-
3766
1636
  // 吉林工商学院
3767
1637
  router.get('/jlbtc/kyc/:category?', lazyloadRouteHandler('./routes/universities/jlbtc/kyc'));
3768
1638
  router.get('/jlbtc/jwc/:id?', lazyloadRouteHandler('./routes/universities/jlbtc/jwc'));
3769
1639
  router.get('/jlbtc/:category?', lazyloadRouteHandler('./routes/universities/jlbtc/index'));
3770
1640
 
3771
- // DT 财经 migrated to v2
3772
- // router.get('/dtcj/datahero/:category?', lazyloadRouteHandler('./routes/dtcj/datahero'));
3773
- // router.get('/dtcj/datainsight/:id?', lazyloadRouteHandler('./routes/dtcj/datainsight'));
3774
-
3775
1641
  // 劍心.回憶
3776
1642
  router.get('/kenshin/:category?/:type?', lazyloadRouteHandler('./routes/kenshin/index'));
3777
1643
 
@@ -3779,9 +1645,6 @@ router.get('/kenshin/:category?/:type?', lazyloadRouteHandler('./routes/kenshin/
3779
1645
  router.get('/av01/actor/:name/:type?', lazyloadRouteHandler('./routes/av01/actor'));
3780
1646
  router.get('/av01/tag/:name/:type?', lazyloadRouteHandler('./routes/av01/tag'));
3781
1647
 
3782
- // macked
3783
- router.get('/macked/app/:name', lazyloadRouteHandler('./routes/macked/app'));
3784
-
3785
1648
  // 美国劳工联合会-产业工会联合会
3786
1649
  router.get('/aflcio/blog', lazyloadRouteHandler('./routes/aflcio/blog'));
3787
1650
 
@@ -3799,22 +1662,8 @@ router.get('/furaffinity/journals/:username', lazyloadRouteHandler('./routes/fur
3799
1662
  router.get('/furaffinity/gallery/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/gallery'));
3800
1663
  router.get('/furaffinity/scraps/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/scraps'));
3801
1664
  router.get('/furaffinity/favorites/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/favorites'));
3802
- router.get('/furaffinity/submission_comments/:id', lazyloadRouteHandler('./routes/furaffinity/submission_comments'));
3803
- router.get('/furaffinity/journal_comments/:id', lazyloadRouteHandler('./routes/furaffinity/journal_comments'));
3804
-
3805
- // 亿欧网
3806
- router.get('/iyiou', lazyloadRouteHandler('./routes/iyiou'));
3807
-
3808
- // 香港商报
3809
- router.get('/hkcd/pdf', lazyloadRouteHandler('./routes/hkcd/pdf'));
3810
-
3811
- // 博客来
3812
- router.get('/bookscomtw/newbooks/:category', lazyloadRouteHandler('./routes/bookscomtw/newbooks'));
3813
-
3814
- // Elite Babes
3815
- router.get('/elitebabes/videos/:sort?', lazyloadRouteHandler('./routes/elitebabes/videos'));
3816
- router.get('/elitebabes/search/:keyword?', lazyloadRouteHandler('./routes/elitebabes/search'));
3817
- router.get('/elitebabes/:category?', lazyloadRouteHandler('./routes/elitebabes/index'));
1665
+ router.get('/furaffinity/submission_comments/:id', lazyloadRouteHandler('./routes/furaffinity/submission-comments'));
1666
+ router.get('/furaffinity/journal_comments/:id', lazyloadRouteHandler('./routes/furaffinity/journal-comments'));
3818
1667
 
3819
1668
  // Trakt.tv
3820
1669
  router.get('/trakt/collection/:username/:type?', lazyloadRouteHandler('./routes/trakt/collection'));
@@ -3822,21 +1671,6 @@ router.get('/trakt/collection/:username/:type?', lazyloadRouteHandler('./routes/
3822
1671
  // 全球化智库
3823
1672
  router.get('/ccg/:category?', lazyloadRouteHandler('./routes/ccg/index'));
3824
1673
 
3825
- // 少女前线
3826
- // router.get('/gf-cn/news/:category?', lazyloadRouteHandler('./routes/gf-cn/news'));
3827
-
3828
- // Eagle
3829
- // router.get('/eagle/changelog/:language?', lazyloadRouteHandler('./routes/eagle/changelog'));
3830
-
3831
- // ezone.hk
3832
- // router.get('/ezone/:category?', lazyloadRouteHandler('./routes/ezone/index'));
3833
-
3834
- // 中国橡胶网
3835
- router.get('/cria/news/:id?', lazyloadRouteHandler('./routes/cria/news'));
3836
-
3837
- // 灵异网
3838
- router.get('/lingyi/:category', lazyloadRouteHandler('./routes/lingyi/index'));
3839
-
3840
1674
  // 歪脑读
3841
1675
  router.get('/wainao-reads/all-articles', lazyloadRouteHandler('./routes/wainao/index'));
3842
1676
 
@@ -3853,13 +1687,6 @@ router.get('/liyuan-forums/threads/forum/:forum_id', lazyloadRouteHandler('./rou
3853
1687
  router.get('/liyuan-forums/threads/topic/:topic_id', lazyloadRouteHandler('./routes/liyuan-forums/threads'));
3854
1688
  router.get('/liyuan-forums/threads/user/:user_id', lazyloadRouteHandler('./routes/liyuan-forums/threads'));
3855
1689
 
3856
- // 集思录
3857
- // router.get('/jisilu/reply/:user', lazyloadRouteHandler('./routes/jisilu/reply'));
3858
- // router.get('/jisilu/topic/:user', lazyloadRouteHandler('./routes/jisilu/topic'));
3859
-
3860
- // Constitutional Court of Baden-Württemberg (Germany) migrated to v2
3861
- // router.get('/verfghbw/press/:keyword?', lazyloadRouteHandler('./routes/verfghbw/press'));
3862
-
3863
1690
  // Topbook
3864
1691
  router.get('/topbook/overview/:id?', lazyloadRouteHandler('./routes/topbook/overview'));
3865
1692
  router.get('/topbook/today', lazyloadRouteHandler('./routes/topbook/today'));
@@ -3867,37 +1694,12 @@ router.get('/topbook/today', lazyloadRouteHandler('./routes/topbook/today'));
3867
1694
  // Melon
3868
1695
  router.get('/melon/chart/:category?', lazyloadRouteHandler('./routes/melon/chart'));
3869
1696
 
3870
- // 弯弯字幕组
3871
- router.get('/wanwansub/info/:id', lazyloadRouteHandler('./routes/wanwansub/info'));
3872
- router.get('/wanwansub/:id?', lazyloadRouteHandler('./routes/wanwansub/index'));
3873
-
3874
1697
  // FIX 字幕侠
3875
- router.get('/zimuxia/portfolio/:id', lazyloadRouteHandler('./routes/zimuxia/portfolio'));
3876
- router.get('/zimuxia/:category?', lazyloadRouteHandler('./routes/zimuxia/index'));
3877
-
3878
- // Bandcamp migrated to v2
3879
- // router.get('/bandcamp/tag/:tag?', lazyloadRouteHandler('./routes/bandcamp/tag'));
3880
- // router.get('/bandcamp/weekly', lazyloadRouteHandler('./routes/bandcamp/weekly'));
3881
-
3882
- // Hugo 更新日志
3883
- router.get('/hugo/releases', lazyloadRouteHandler('./routes/hugo/releases'));
1698
+ // router.get('/zimuxia/portfolio/:id', lazyloadRouteHandler('./routes/zimuxia/portfolio'));
1699
+ // router.get('/zimuxia/:category?', lazyloadRouteHandler('./routes/zimuxia/index'));
3884
1700
 
3885
1701
  // 东立出版
3886
- router.get('/tongli/news/:type', lazyloadRouteHandler('./routes/tongli/news'));
3887
-
3888
- // OR
3889
- router.get('/or/:id?', lazyloadRouteHandler('./routes/or'));
3890
-
3891
- // e-hentai migrated to v2
3892
- // router.get('/ehentai/favorites/:favcat?/:order?/:page?/:routeParams?', lazyloadRouteHandler('./routes/ehentai/favorites'));
3893
- // router.get('/ehentai/search/:params?/:page?/:routeParams?', lazyloadRouteHandler('./routes/ehentai/search'));
3894
- // router.get('/ehentai/tag/:tag/:page?/:routeParams?', lazyloadRouteHandler('./routes/ehentai/tag'));
3895
-
3896
- // 字型故事
3897
- router.get('/fontstory', lazyloadRouteHandler('./routes/fontstory/tw'));
3898
-
3899
- // HKEPC migrated to v2
3900
- // router.get('/hkepc/:category?', lazyloadRouteHandler('./routes/hkepc/index'));
1702
+ // router.get('/tongli/news/:type', lazyloadRouteHandler('./routes/tongli/news'));
3901
1703
 
3902
1704
  // 海南大学
3903
1705
  router.get('/hainanu/ssszs', lazyloadRouteHandler('./routes/hainanu/ssszs'));
@@ -3905,26 +1707,17 @@ router.get('/hainanu/ssszs', lazyloadRouteHandler('./routes/hainanu/ssszs'));
3905
1707
  // 游戏年轮
3906
1708
  router.get('/bibgame/:category?/:type?', lazyloadRouteHandler('./routes/bibgame/category'));
3907
1709
 
3908
- // 澳門特別行政區政府各公共部門獎助貸學金服務平台
3909
- router.get('/macau-bolsas/:lang?', lazyloadRouteHandler('./routes/macau-bolsas/index'));
3910
-
3911
1710
  // PotPlayer
3912
1711
  router.get('/potplayer/update/:language?', lazyloadRouteHandler('./routes/potplayer/update'));
3913
1712
 
3914
- // 综艺秀
3915
- // router.get('/zyshow/:name', lazyloadRouteHandler('./routes/zyshow'));
3916
-
3917
1713
  // 加美财经
3918
- router.get('/caus/:category?', lazyloadRouteHandler('./routes/caus'));
1714
+ // router.get('/caus/:category?', lazyloadRouteHandler('./routes/caus'));
3919
1715
 
3920
1716
  // 摩点
3921
- router.get('/modian/zhongchou/:category?/:sort?/:status?', lazyloadRouteHandler('./routes/modian/zhongchou'));
3922
-
3923
- // MacWk
3924
- router.get('/macwk/soft/:name', lazyloadRouteHandler('./routes/macwk/soft'));
1717
+ // router.get('/modian/zhongchou/:category?/:sort?/:status?', lazyloadRouteHandler('./routes/modian/zhongchou'));
3925
1718
 
3926
1719
  // 世界计划 多彩舞台 feat.初音未来 (ProjectSekai)
3927
- router.get('/pjsk/news', lazyloadRouteHandler('./routes/pjsk/news'));
1720
+ // router.get('/pjsk/news', lazyloadRouteHandler('./routes/pjsk/news'));
3928
1721
 
3929
1722
  // 人民论坛网
3930
1723
  router.get('/rmlt/idea/:category?', lazyloadRouteHandler('./routes/rmlt/idea'));
@@ -3936,20 +1729,11 @@ router.get('/cbndata/information/:category?', lazyloadRouteHandler('./routes/cbn
3936
1729
  router.get('/tanchinese/:category?', lazyloadRouteHandler('./routes/tanchinese'));
3937
1730
 
3938
1731
  // Harvard
3939
- router.get('/harvard/health/blog', lazyloadRouteHandler('./routes/universities/harvard/health/blog'));
1732
+ // router.get('/harvard/health/blog', lazyloadRouteHandler('./routes/universities/harvard/health/blog'));
3940
1733
 
3941
1734
  // yuzu emulator
3942
1735
  router.get('/yuzu-emu/entry', lazyloadRouteHandler('./routes/yuzu-emu/entry'));
3943
1736
 
3944
- // Resources - The Partnership on AI
3945
- router.get('/partnershiponai/resources', lazyloadRouteHandler('./routes/partnershiponai/resources'));
3946
-
3947
- // Common App
3948
- router.get('/commonapp/blog', lazyloadRouteHandler('./routes/commonapp/blog'));
3949
-
3950
- // Sky Sports
3951
- // router.get('/skysports/news/:team', lazyloadRouteHandler('./routes/skysports/news'));
3952
-
3953
1737
  // Europa Press
3954
1738
  router.get('/europapress/:category?', lazyloadRouteHandler('./routes/europapress'));
3955
1739
 
@@ -3978,19 +1762,10 @@ router.get('/fnal/news/:category?', lazyloadRouteHandler('./routes/fnal/news'));
3978
1762
  // X410
3979
1763
  router.get('/x410/news', lazyloadRouteHandler('./routes/x410/news'));
3980
1764
 
3981
- // 恩山无线论坛
3982
- router.get('/right/forum/:id?', lazyloadRouteHandler('./routes/right/forum'));
3983
-
3984
- // 香港經濟日報 migrated to v2
3985
- // router.get('/hket/:category?', lazyloadRouteHandler('./routes/hket/index'));
3986
-
3987
1765
  // micmicidol
3988
1766
  router.get('/micmicidol', lazyloadRouteHandler('./routes/micmicidol/latest'));
3989
1767
  router.get('/micmicidol/search/:label', lazyloadRouteHandler('./routes/micmicidol/search'));
3990
1768
 
3991
- // 香港高登
3992
- router.get('/hkgolden/:id?/:limit?/:sort?', lazyloadRouteHandler('./routes/hkgolden'));
3993
-
3994
1769
  // 香港討論區
3995
1770
  router.get('/discuss/:fid', lazyloadRouteHandler('./routes/discuss'));
3996
1771
 
@@ -4000,9 +1775,6 @@ router.get('/uwants/:fid', lazyloadRouteHandler('./routes/uwants'));
4000
1775
  // Now新聞
4001
1776
  router.get('/now/news/rank', lazyloadRouteHandler('./routes/now/rank'));
4002
1777
 
4003
- // s-hentai
4004
- router.get('/s-hentai/:id?', lazyloadRouteHandler('./routes/s-hentai'));
4005
-
4006
1778
  // etherscan
4007
1779
  router.get('/etherscan/transactions/:address', lazyloadRouteHandler('./routes/etherscan/transactions'));
4008
1780
 
@@ -4012,26 +1784,8 @@ router.get('/blogs/foreverblog', lazyloadRouteHandler('./routes/blogs/foreverblo
4012
1784
  // Netflix
4013
1785
  router.get('/netflix/newsroom/:category?/:region?', lazyloadRouteHandler('./routes/netflix/newsroom'));
4014
1786
 
4015
- // SBS
4016
- router.get('/sbs/chinese/:category?/:id?/:dialect?/:language?', lazyloadRouteHandler('./routes/sbs/chinese'));
4017
-
4018
- // Asian to lick
4019
- // router.get('/asiantolick/:category?/:keyword?', lazyloadRouteHandler('./routes/asiantolick'));
4020
-
4021
- // Research Gate
4022
- // router.get('/researchgate/publications/:id', lazyloadRouteHandler('./routes/researchgate/publications'));
4023
-
4024
1787
  // QuestMobile
4025
- router.get('/questmobile/report/:category?/:label?', lazyloadRouteHandler('./routes/questmobile/report'));
4026
-
4027
- // RSS3
4028
- router.get('/rss3/blog', lazyloadRouteHandler('./routes/rss3/blog'));
4029
-
4030
- // 星球日报
4031
- // router.get('/odaily/activity', lazyloadRouteHandler('./routes/odaily/activity'));
4032
- // router.get('/odaily/newsflash', lazyloadRouteHandler('./routes/odaily/newsflash'));
4033
- // router.get('/odaily/user/:id', lazyloadRouteHandler('./routes/odaily/user'));
4034
- // router.get('/odaily/:id?', lazyloadRouteHandler('./routes/odaily/post'));
1788
+ // router.get('/questmobile/report/:category?/:label?', lazyloadRouteHandler('./routes/questmobile/report'));
4035
1789
 
4036
1790
  // Fashion Network
4037
1791
  router.get('/fashionnetwork/news/:sectors?/:categories?/:language?', lazyloadRouteHandler('./routes/fashionnetwork/news.js'));
@@ -4039,20 +1793,9 @@ router.get('/fashionnetwork/news/:sectors?/:categories?/:language?', lazyloadRou
4039
1793
  // dykszx
4040
1794
  router.get('/dykszx/news/:type?', lazyloadRouteHandler('./routes/dykszx/news'));
4041
1795
 
4042
- // 安全内参
4043
- // router.get('/secrss/category/:category?', lazyloadRouteHandler('./routes/secrss/category'));
4044
- // router.get('/secrss/author/:author?', lazyloadRouteHandler('./routes/secrss/author'));
4045
-
4046
1796
  // Fashion Network
4047
1797
  router.get('/fashionnetwork/headline/:country?', lazyloadRouteHandler('./routes/fashionnetwork/headline.js'));
4048
1798
 
4049
- // mirror.xyz
4050
- // router.get('/mirror/:id', lazyloadRouteHandler('./routes/mirror/entries'));
4051
-
4052
- // KBS migrated to v2
4053
- // router.get('/kbs/today/:language?', lazyloadRouteHandler('./routes/kbs/today'));
4054
- // router.get('/kbs/news/:category?/:language?', lazyloadRouteHandler('./routes/kbs/news'));
4055
-
4056
1799
  // Deprecated: DO NOT ADD ANY NEW ROUTES HERE
4057
1800
 
4058
1801
  module.exports = router;