rsshub 1.0.0-master.fee75c6 → 1.0.0-master.ff487f3
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.
- package/README.md +32 -43
 - package/lib/api/category/one.ts +54 -0
 - package/lib/api/index.ts +37 -0
 - package/lib/api/namespace/all.ts +17 -0
 - package/lib/api/namespace/one.ts +33 -0
 - package/lib/api/radar/rules/all.ts +59 -0
 - package/lib/api/radar/rules/one.ts +75 -0
 - package/lib/app.test.ts +11 -0
 - package/lib/app.tsx +57 -0
 - package/lib/assets/logo.png +0 -0
 - package/lib/config.test.ts +99 -0
 - package/lib/config.ts +730 -0
 - package/lib/errors/index.test.ts +88 -0
 - package/lib/errors/index.tsx +81 -0
 - package/lib/errors/types/config-not-found.ts +5 -0
 - package/lib/errors/types/invalid-parameter.ts +5 -0
 - package/lib/errors/types/not-found.ts +5 -0
 - package/lib/errors/types/reject.ts +5 -0
 - package/lib/errors/types/request-in-progress.ts +5 -0
 - package/lib/index.ts +25 -0
 - package/lib/middleware/access-control.test.ts +47 -0
 - package/lib/middleware/access-control.ts +25 -0
 - package/lib/middleware/anti-hotlink.test.ts +255 -0
 - package/lib/middleware/anti-hotlink.ts +139 -0
 - package/lib/middleware/cache.test.ts +189 -0
 - package/lib/middleware/cache.ts +76 -0
 - package/lib/middleware/debug.test.ts +40 -0
 - package/lib/middleware/debug.ts +37 -0
 - package/lib/middleware/filter-engine.test.ts +39 -0
 - package/lib/middleware/header.test.ts +39 -0
 - package/lib/middleware/header.ts +48 -0
 - package/lib/middleware/logger.ts +44 -0
 - package/lib/middleware/parameter.test.ts +445 -0
 - package/lib/middleware/parameter.ts +393 -0
 - package/lib/middleware/sentry.ts +27 -0
 - package/lib/middleware/template.test.ts +111 -0
 - package/lib/middleware/template.tsx +116 -0
 - package/lib/middleware/templates/iframe.art +14 -0
 - package/lib/middleware/trace.ts +25 -0
 - package/lib/pkg.test.ts +68 -0
 - package/lib/pkg.ts +21 -0
 - package/lib/registry.test.ts +32 -0
 - package/lib/registry.ts +116 -0
 - package/lib/router.js +132 -2515
 - package/lib/routes/005/index.ts +156 -0
 - package/lib/routes/005/namespace.ts +8 -0
 - package/lib/routes/005/templates/description.art +27 -0
 - package/lib/routes/0818tuan/index.ts +70 -0
 - package/lib/routes/0818tuan/namespace.ts +6 -0
 - package/lib/routes/0x80/index.ts +87 -0
 - package/lib/routes/0x80/namespace.ts +7 -0
 - package/lib/routes/12306/index.ts +132 -0
 - package/lib/routes/12306/namespace.ts +6 -0
 - package/lib/routes/12306/zxdt.ts +85 -0
 - package/lib/routes/12371/namespace.ts +7 -0
 - package/lib/routes/12371/zxfb.ts +64 -0
 - package/lib/routes/141jav/index.ts +121 -0
 - package/lib/routes/141jav/namespace.ts +9 -0
 - package/lib/routes/141jav/templates/description.art +47 -0
 - package/lib/routes/141ppv/index.ts +124 -0
 - package/lib/routes/141ppv/namespace.ts +9 -0
 - package/lib/routes/141ppv/templates/description.art +47 -0
 - package/lib/routes/163/ds.ts +60 -0
 - package/lib/routes/163/dy.ts +51 -0
 - package/lib/routes/163/dy2.ts +60 -0
 - package/lib/routes/163/exclusive.ts +194 -0
 - package/lib/routes/163/music/artist-songs.ts +61 -0
 - package/lib/routes/163/music/artist.ts +61 -0
 - package/lib/routes/163/music/djradio.ts +100 -0
 - package/lib/routes/163/music/playlist.ts +76 -0
 - package/lib/routes/163/music/userevents.ts +64 -0
 - package/lib/routes/163/music/userplaylist.ts +78 -0
 - package/lib/routes/163/music/userplayrecords.ts +83 -0
 - package/lib/routes/163/namespace.ts +9 -0
 - package/lib/routes/163/news/rank.ts +193 -0
 - package/lib/routes/163/news/special.ts +138 -0
 - package/lib/routes/163/open/vip.ts +92 -0
 - package/lib/routes/163/renjian.ts +105 -0
 - package/lib/routes/163/templates/ds.art +7 -0
 - package/lib/routes/163/templates/dy.art +6 -0
 - package/lib/routes/163/templates/exclusive.art +11 -0
 - package/lib/routes/163/templates/music/playlist.art +4 -0
 - package/lib/routes/163/templates/music/userevents.art +7 -0
 - package/lib/routes/163/templates/music/userplaylist.art +16 -0
 - package/lib/routes/163/templates/music/userplayrecords.art +7 -0
 - package/lib/routes/163/templates/open.art +12 -0
 - package/lib/routes/163/today.ts +85 -0
 - package/lib/routes/163/utils.ts +40 -0
 - package/lib/routes/18comic/album.ts +107 -0
 - package/lib/routes/18comic/blogs.ts +97 -0
 - package/lib/routes/18comic/index.ts +61 -0
 - package/lib/routes/18comic/namespace.ts +9 -0
 - package/lib/routes/18comic/search.ts +50 -0
 - package/lib/routes/18comic/templates/description.art +12 -0
 - package/lib/routes/18comic/utils.ts +88 -0
 - package/lib/routes/19lou/index.ts +114 -0
 - package/lib/routes/19lou/namespace.ts +6 -0
 - package/lib/routes/1lou/index.ts +147 -0
 - package/lib/routes/1lou/namespace.ts +8 -0
 - package/lib/routes/1point3acres/blog.ts +94 -0
 - package/lib/routes/1point3acres/category.ts +57 -0
 - package/lib/routes/1point3acres/namespace.ts +6 -0
 - package/lib/routes/1point3acres/offer.ts +106 -0
 - package/lib/routes/1point3acres/section.ts +77 -0
 - package/lib/routes/1point3acres/templates/image.art +1 -0
 - package/lib/routes/1point3acres/templates/offer.art +11 -0
 - package/lib/routes/1point3acres/thread.ts +37 -0
 - package/lib/routes/1point3acres/user/post.ts +45 -0
 - package/lib/routes/1point3acres/user/thread.ts +45 -0
 - package/lib/routes/1point3acres/utils.ts +79 -0
 - package/lib/routes/1x/index.ts +121 -0
 - package/lib/routes/1x/namespace.ts +8 -0
 - package/lib/routes/1x/templates/description.art +17 -0
 - package/lib/routes/2023game/index.ts +69 -0
 - package/lib/routes/2023game/namespace.ts +6 -0
 - package/lib/routes/2048/index.ts +173 -0
 - package/lib/routes/2048/namespace.ts +6 -0
 - package/lib/routes/2cycd/index.ts +66 -0
 - package/lib/routes/2cycd/namespace.ts +6 -0
 - package/lib/routes/36kr/hot-list.ts +88 -0
 - package/lib/routes/36kr/index.ts +75 -0
 - package/lib/routes/36kr/namespace.ts +6 -0
 - package/lib/routes/36kr/utils.ts +35 -0
 - package/lib/routes/3dmgame/game.ts +49 -0
 - package/lib/routes/3dmgame/namespace.ts +6 -0
 - package/lib/routes/3dmgame/news-center.ts +70 -0
 - package/lib/routes/3dmgame/utils.ts +28 -0
 - package/lib/routes/3kns/index.ts +121 -0
 - package/lib/routes/3kns/namespace.ts +6 -0
 - package/lib/routes/3kns/templates/description.art +9 -0
 - package/lib/routes/423down/index.ts +280 -0
 - package/lib/routes/423down/namespace.ts +8 -0
 - package/lib/routes/423down/templates/description.art +21 -0
 - package/lib/routes/4gamers/category.ts +47 -0
 - package/lib/routes/4gamers/namespace.ts +6 -0
 - package/lib/routes/4gamers/tag.ts +49 -0
 - package/lib/routes/4gamers/templates/description.art +3 -0
 - package/lib/routes/4gamers/templates/image.art +3 -0
 - package/lib/routes/4gamers/topic.ts +48 -0
 - package/lib/routes/4gamers/utils.ts +71 -0
 - package/lib/routes/4ksj/forum.ts +196 -0
 - package/lib/routes/4ksj/namespace.ts +6 -0
 - package/lib/routes/4ksj/templates/description.art +59 -0
 - package/lib/routes/500px/namespace.ts +6 -0
 - package/lib/routes/500px/templates/tribeSet.art +6 -0
 - package/lib/routes/500px/templates/user.art +3 -0
 - package/lib/routes/500px/tribe-set.ts +43 -0
 - package/lib/routes/500px/utils.ts +116 -0
 - package/lib/routes/50forum/namespace.ts +6 -0
 - package/lib/routes/50forum/zhuanjia.ts +67 -0
 - package/lib/routes/51cto/namespace.ts +6 -0
 - package/lib/routes/51cto/recommend.ts +52 -0
 - package/lib/routes/51cto/utils.ts +21 -0
 - package/lib/routes/51read/article.ts +82 -0
 - package/lib/routes/51read/namespace.ts +6 -0
 - package/lib/routes/52hrtt/index.ts +79 -0
 - package/lib/routes/52hrtt/namespace.ts +6 -0
 - package/lib/routes/52hrtt/symposium.ts +89 -0
 - package/lib/routes/56kog/class.ts +37 -0
 - package/lib/routes/56kog/namespace.ts +6 -0
 - package/lib/routes/56kog/templates/description.art +32 -0
 - package/lib/routes/56kog/top.ts +33 -0
 - package/lib/routes/56kog/util.ts +111 -0
 - package/lib/routes/591/list.ts +170 -0
 - package/lib/routes/591/namespace.ts +6 -0
 - package/lib/routes/591/templates/house.art +52 -0
 - package/lib/routes/5eplay/index.ts +126 -0
 - package/lib/routes/5eplay/namespace.ts +6 -0
 - package/lib/routes/5eplay/utils.ts +32 -0
 - package/lib/routes/69shu/article.ts +96 -0
 - package/lib/routes/69shu/namespace.ts +6 -0
 - package/lib/routes/6park/index.ts +80 -0
 - package/lib/routes/6park/namespace.ts +6 -0
 - package/lib/routes/6park/news.ts +89 -0
 - package/lib/routes/6v123/latest-movies.ts +39 -0
 - package/lib/routes/6v123/latest-tvseries.ts +39 -0
 - package/lib/routes/6v123/namespace.ts +6 -0
 - package/lib/routes/6v123/utils.ts +86 -0
 - package/lib/routes/78dm/index.ts +87 -0
 - package/lib/routes/78dm/namespace.ts +6 -0
 - package/lib/routes/78dm/templates/image.art +1 -0
 - package/lib/routes/7mmtv/index.ts +122 -0
 - package/lib/routes/7mmtv/namespace.ts +6 -0
 - package/lib/routes/7mmtv/templates/description.art +15 -0
 - package/lib/routes/81/81rc/index.ts +108 -0
 - package/lib/routes/81/namespace.ts +8 -0
 - package/lib/routes/8264/list.ts +172 -0
 - package/lib/routes/8264/namespace.ts +6 -0
 - package/lib/routes/8264/templates/description.art +5 -0
 - package/lib/routes/8kcos/article.ts +24 -0
 - package/lib/routes/8kcos/cat.ts +38 -0
 - package/lib/routes/8kcos/const.ts +4 -0
 - package/lib/routes/8kcos/latest.ts +50 -0
 - package/lib/routes/8kcos/namespace.ts +6 -0
 - package/lib/routes/8kcos/tag.ts +49 -0
 - package/lib/routes/8world/index.ts +67 -0
 - package/lib/routes/8world/namespace.ts +6 -0
 - package/lib/routes/91porn/author.ts +90 -0
 - package/lib/routes/91porn/index.ts +93 -0
 - package/lib/routes/91porn/namespace.ts +9 -0
 - package/lib/routes/91porn/templates/index.art +1 -0
 - package/lib/routes/91porn/utils.ts +11 -0
 - package/lib/routes/95mm/category.ts +48 -0
 - package/lib/routes/95mm/namespace.ts +6 -0
 - package/lib/routes/95mm/tab.ts +36 -0
 - package/lib/routes/95mm/tag.ts +34 -0
 - package/lib/routes/95mm/utils.ts +63 -0
 - package/lib/routes/9to5/namespace.ts +6 -0
 - package/lib/routes/9to5/subsite.ts +79 -0
 - package/lib/routes/9to5/utils.ts +34 -0
 - package/lib/routes/a9vg/a9vg.ts +45 -0
 - package/lib/routes/a9vg/namespace.ts +6 -0
 - package/lib/routes/aamacau/index.ts +93 -0
 - package/lib/routes/aamacau/namespace.ts +6 -0
 - package/lib/routes/abc/index.ts +191 -0
 - package/lib/routes/abc/namespace.ts +6 -0
 - package/lib/routes/abc/templates/description.art +21 -0
 - package/lib/routes/abmedia/category.ts +58 -0
 - package/lib/routes/abmedia/index.ts +51 -0
 - package/lib/routes/abmedia/namespace.ts +6 -0
 - package/lib/routes/abskoop/index.ts +63 -0
 - package/lib/routes/abskoop/namespace.ts +6 -0
 - package/lib/routes/abskoop/nsfw.ts +46 -0
 - package/lib/routes/academia/namespace.ts +6 -0
 - package/lib/routes/academia/topics.ts +49 -0
 - package/lib/routes/accessbriefing/index.ts +217 -0
 - package/lib/routes/accessbriefing/namespace.ts +8 -0
 - package/lib/routes/accessbriefing/templates/description.art +27 -0
 - package/lib/routes/acfun/article.ts +132 -0
 - package/lib/routes/acfun/bangumi.ts +51 -0
 - package/lib/routes/acfun/namespace.ts +6 -0
 - package/lib/routes/acfun/video.ts +63 -0
 - package/lib/routes/acg17/namespace.ts +6 -0
 - package/lib/routes/acg17/post.ts +45 -0
 - package/lib/routes/acpaa/index.ts +77 -0
 - package/lib/routes/acpaa/namespace.ts +6 -0
 - package/lib/routes/acs/journal.ts +91 -0
 - package/lib/routes/acs/namespace.ts +6 -0
 - package/lib/routes/acs/templates/description.art +2 -0
 - package/lib/routes/aeaweb/index.ts +115 -0
 - package/lib/routes/aeaweb/namespace.ts +6 -0
 - package/lib/routes/aeon/category.ts +51 -0
 - package/lib/routes/aeon/namespace.ts +6 -0
 - package/lib/routes/aeon/templates/essay.art +3 -0
 - package/lib/routes/aeon/templates/video.art +10 -0
 - package/lib/routes/aeon/type.ts +57 -0
 - package/lib/routes/aeon/utils.ts +55 -0
 - package/lib/routes/afdian/dynamic.ts +47 -0
 - package/lib/routes/afdian/explore.ts +78 -0
 - package/lib/routes/afdian/namespace.ts +6 -0
 - package/lib/routes/agefans/detail.ts +55 -0
 - package/lib/routes/agefans/namespace.ts +6 -0
 - package/lib/routes/agefans/update.ts +75 -0
 - package/lib/routes/agefans/utils.ts +3 -0
 - package/lib/routes/agirls/index.ts +60 -0
 - package/lib/routes/agirls/namespace.ts +6 -0
 - package/lib/routes/agirls/topic-list.ts +56 -0
 - package/lib/routes/agirls/topic.ts +56 -0
 - package/lib/routes/agirls/utils.ts +28 -0
 - package/lib/routes/agora0/index.ts +83 -0
 - package/lib/routes/agora0/namespace.ts +6 -0
 - package/lib/routes/agora0/pen0.ts +69 -0
 - package/lib/routes/ahjzu/namespace.ts +6 -0
 - package/lib/routes/ahjzu/news.ts +83 -0
 - package/lib/routes/aicaijing/index.ts +84 -0
 - package/lib/routes/aicaijing/namespace.ts +6 -0
 - package/lib/routes/aicaijing/templates/description.art +4 -0
 - package/lib/routes/aiea/index.ts +63 -0
 - package/lib/routes/aiea/namespace.ts +6 -0
 - package/lib/routes/aijishu/index.ts +50 -0
 - package/lib/routes/aijishu/namespace.ts +6 -0
 - package/lib/routes/aijishu/utils.ts +35 -0
 - package/lib/routes/ainvest/article.ts +67 -0
 - package/lib/routes/ainvest/namespace.ts +6 -0
 - package/lib/routes/ainvest/news.ts +64 -0
 - package/lib/routes/ainvest/utils.ts +68 -0
 - package/lib/routes/aip/journal-pupp.ts +62 -0
 - package/lib/routes/aip/journal.ts +84 -0
 - package/lib/routes/aip/namespace.ts +6 -0
 - package/lib/routes/aip/templates/description.art +8 -0
 - package/lib/routes/aip/utils.ts +29 -0
 - package/lib/routes/airchina/index.ts +64 -0
 - package/lib/routes/airchina/namespace.ts +6 -0
 - package/lib/routes/aisixiang/column.ts +65 -0
 - package/lib/routes/aisixiang/namespace.ts +6 -0
 - package/lib/routes/aisixiang/thinktank.ts +72 -0
 - package/lib/routes/aisixiang/toplist.ts +55 -0
 - package/lib/routes/aisixiang/utils.ts +39 -0
 - package/lib/routes/aisixiang/zhuanti.ts +68 -0
 - package/lib/routes/ajmide/index.ts +48 -0
 - package/lib/routes/ajmide/namespace.ts +6 -0
 - package/lib/routes/alipan/files.ts +80 -0
 - package/lib/routes/alipan/namespace.ts +7 -0
 - package/lib/routes/alipan/types.ts +62 -0
 - package/lib/routes/aliresearch/information.ts +86 -0
 - package/lib/routes/aliresearch/namespace.ts +6 -0
 - package/lib/routes/alistapart/index.ts +34 -0
 - package/lib/routes/alistapart/namespace.ts +6 -0
 - package/lib/routes/alistapart/topic.ts +93 -0
 - package/lib/routes/alistapart/utils.ts +22 -0
 - package/lib/routes/aliyun/database-month.ts +66 -0
 - package/lib/routes/aliyun/developer/group.ts +73 -0
 - package/lib/routes/aliyun/namespace.ts +6 -0
 - package/lib/routes/aliyun/notice.ts +83 -0
 - package/lib/routes/aljazeera/index.ts +103 -0
 - package/lib/routes/aljazeera/namespace.ts +6 -0
 - package/lib/routes/aljazeera/templates/description.art +8 -0
 - package/lib/routes/ally/namespace.ts +6 -0
 - package/lib/routes/ally/rail.ts +137 -0
 - package/lib/routes/alpinelinux/namespace.ts +11 -0
 - package/lib/routes/alpinelinux/pkgs.ts +104 -0
 - package/lib/routes/alternativeto/namespace.ts +6 -0
 - package/lib/routes/alternativeto/platform.ts +59 -0
 - package/lib/routes/alternativeto/software.ts +59 -0
 - package/lib/routes/alternativeto/utils.ts +21 -0
 - package/lib/routes/amazon/awsblogs.ts +35 -0
 - package/lib/routes/amazon/kindle-software-updates.ts +70 -0
 - package/lib/routes/amazon/namespace.ts +6 -0
 - package/lib/routes/amazon/templates/software-description.art +4 -0
 - package/lib/routes/android/namespace.ts +6 -0
 - package/lib/routes/android/platform-tools-releases.ts +72 -0
 - package/lib/routes/annualreviews/index.ts +99 -0
 - package/lib/routes/annualreviews/namespace.ts +6 -0
 - package/lib/routes/anquanke/category.ts +62 -0
 - package/lib/routes/anquanke/namespace.ts +9 -0
 - package/lib/routes/anquanke/vul.ts +36 -0
 - package/lib/routes/apache/apisix/blog.ts +51 -0
 - package/lib/routes/apache/namespace.ts +6 -0
 - package/lib/routes/apiseven/blog.ts +68 -0
 - package/lib/routes/apiseven/namespace.ts +6 -0
 - package/lib/routes/apkpure/namespace.ts +6 -0
 - package/lib/routes/apkpure/versions.ts +68 -0
 - package/lib/routes/apnews/namespace.ts +6 -0
 - package/lib/routes/apnews/rss.ts +47 -0
 - package/lib/routes/apnews/templates/description.art +14 -0
 - package/lib/routes/apnews/topics.ts +62 -0
 - package/lib/routes/apnews/utils.ts +47 -0
 - package/lib/routes/app-center/namespace.ts +6 -0
 - package/lib/routes/app-center/release.ts +151 -0
 - package/lib/routes/app-center/templates/description.art +24 -0
 - package/lib/routes/apple/apps.ts +159 -0
 - package/lib/routes/apple/exchange-repair.ts +73 -0
 - package/lib/routes/apple/namespace.ts +6 -0
 - package/lib/routes/apple/podcast.ts +64 -0
 - package/lib/routes/appleinsider/index.ts +88 -0
 - package/lib/routes/appleinsider/namespace.ts +6 -0
 - package/lib/routes/appstore/in-app-purchase.ts +80 -0
 - package/lib/routes/appstore/namespace.ts +6 -0
 - package/lib/routes/appstore/price.ts +82 -0
 - package/lib/routes/appstore/xianmian.ts +53 -0
 - package/lib/routes/appstorrent/namespace.ts +6 -0
 - package/lib/routes/appstorrent/programs.ts +91 -0
 - package/lib/routes/appstorrent/templates/description.art +22 -0
 - package/lib/routes/aqara/community.ts +51 -0
 - package/lib/routes/aqara/namespace.ts +6 -0
 - package/lib/routes/aqara/news.ts +62 -0
 - package/lib/routes/aqara/post.ts +104 -0
 - package/lib/routes/aqara/region.ts +18 -0
 - package/lib/routes/aqara/templates/figure.art +3 -0
 - package/lib/routes/aqicn/aqi.ts +82 -0
 - package/lib/routes/aqicn/namespace.ts +6 -0
 - package/lib/routes/arcteryx/namespace.ts +6 -0
 - package/lib/routes/arcteryx/new-arrivals.ts +77 -0
 - package/lib/routes/arcteryx/outlet.ts +79 -0
 - package/lib/routes/arcteryx/regear-new-arrivals.ts +77 -0
 - package/lib/routes/arcteryx/templates/product-description.art +12 -0
 - package/lib/routes/arcteryx/templates/regear-product-description.art +16 -0
 - package/lib/routes/arcteryx/utils.ts +21 -0
 - package/lib/routes/artstation/namespace.ts +6 -0
 - package/lib/routes/artstation/templates/description.art +17 -0
 - package/lib/routes/artstation/user.ts +126 -0
 - package/lib/routes/asiantolick/index.ts +132 -0
 - package/lib/routes/asiantolick/namespace.ts +6 -0
 - package/lib/routes/asiantolick/templates/description.art +9 -0
 - package/lib/routes/asmr-200/index.ts +66 -0
 - package/lib/routes/asmr-200/namespace.ts +6 -0
 - package/lib/routes/asmr-200/templates/work.art +7 -0
 - package/lib/routes/asmr-200/type.ts +96 -0
 - package/lib/routes/asus/bios.ts +67 -0
 - package/lib/routes/asus/gpu-tweak.ts +56 -0
 - package/lib/routes/asus/namespace.ts +6 -0
 - package/lib/routes/asus/templates/bios.art +6 -0
 - package/lib/routes/atcoder/contest.ts +103 -0
 - package/lib/routes/atcoder/namespace.ts +6 -0
 - package/lib/routes/atcoder/post.ts +57 -0
 - package/lib/routes/atptour/namespace.ts +7 -0
 - package/lib/routes/atptour/news.ts +52 -0
 - package/lib/routes/auto-stats/index.ts +88 -0
 - package/lib/routes/auto-stats/namespace.ts +6 -0
 - package/lib/routes/autocentre/index.ts +29 -0
 - package/lib/routes/autocentre/namespace.ts +7 -0
 - package/lib/routes/baai/events.ts +47 -0
 - package/lib/routes/baai/hub.ts +98 -0
 - package/lib/routes/baai/namespace.ts +6 -0
 - package/lib/routes/baai/utils.ts +42 -0
 - package/lib/routes/backlinko/blog.ts +70 -0
 - package/lib/routes/backlinko/namespace.ts +6 -0
 - package/lib/routes/bad/index.ts +67 -0
 - package/lib/routes/bad/namespace.ts +6 -0
 - package/lib/routes/baidu/gushitong/index.ts +56 -0
 - package/lib/routes/baidu/namespace.ts +6 -0
 - package/lib/routes/baidu/search.ts +77 -0
 - package/lib/routes/baidu/templates/description.art +6 -0
 - package/lib/routes/baidu/templates/forum.art +1 -0
 - package/lib/routes/baidu/templates/gushitong.art +9 -0
 - package/lib/routes/baidu/templates/post.art +4 -0
 - package/lib/routes/baidu/templates/tieba_search.art +1 -0
 - package/lib/routes/baidu/templates/top.art +9 -0
 - package/lib/routes/baidu/tieba/forum.ts +86 -0
 - package/lib/routes/baidu/tieba/post.ts +107 -0
 - package/lib/routes/baidu/tieba/search.ts +93 -0
 - package/lib/routes/baidu/tieba/user.ts +53 -0
 - package/lib/routes/baidu/top.ts +59 -0
 - package/lib/routes/bandcamp/live.ts +66 -0
 - package/lib/routes/bandcamp/namespace.ts +6 -0
 - package/lib/routes/bandcamp/tag.ts +72 -0
 - package/lib/routes/bandcamp/weekly.ts +57 -0
 - package/lib/routes/bangumi/moe/index.ts +109 -0
 - package/lib/routes/bangumi/namespace.ts +6 -0
 - package/lib/routes/bangumi/online/online.ts +56 -0
 - package/lib/routes/bangumi/templates/tv/ep.art +2 -0
 - package/lib/routes/bangumi/templates/tv/today.art +12 -0
 - package/lib/routes/bangumi/tv/calendar/_base.ts +38 -0
 - package/lib/routes/bangumi/tv/calendar/today.ts +92 -0
 - package/lib/routes/bangumi/tv/group/reply.ts +83 -0
 - package/lib/routes/bangumi/tv/group/topic.ts +64 -0
 - package/lib/routes/bangumi/tv/other/followrank.ts +80 -0
 - package/lib/routes/bangumi/tv/person/index.ts +62 -0
 - package/lib/routes/bangumi/tv/subject/comments.ts +48 -0
 - package/lib/routes/bangumi/tv/subject/ep.ts +36 -0
 - package/lib/routes/bangumi/tv/subject/index.ts +57 -0
 - package/lib/routes/bangumi/tv/subject/offcial-subject-api.ts +34 -0
 - package/lib/routes/bangumi/tv/subject/utils.ts +3 -0
 - package/lib/routes/bangumi/tv/user/blog.ts +68 -0
 - package/lib/routes/bangumi/tv/user/wish.ts +62 -0
 - package/lib/routes/baozimh/index.ts +80 -0
 - package/lib/routes/baozimh/namespace.ts +6 -0
 - package/lib/routes/barronschina/index.ts +100 -0
 - package/lib/routes/barronschina/namespace.ts +6 -0
 - package/lib/routes/bast/index.ts +84 -0
 - package/lib/routes/bast/namespace.ts +6 -0
 - package/lib/routes/bbc/index.ts +110 -0
 - package/lib/routes/bbc/namespace.ts +6 -0
 - package/lib/routes/bbc/utils.ts +35 -0
 - package/lib/routes/bbcnewslabs/namespace.ts +6 -0
 - package/lib/routes/bbcnewslabs/news.ts +56 -0
 - package/lib/routes/bc3ts/list.ts +72 -0
 - package/lib/routes/bc3ts/namespace.ts +7 -0
 - package/lib/routes/bc3ts/templates/media.art +10 -0
 - package/lib/routes/bc3ts/types.ts +118 -0
 - package/lib/routes/bdys/index.ts +187 -0
 - package/lib/routes/bdys/namespace.ts +9 -0
 - package/lib/routes/bdys/templates/desc.art +21 -0
 - package/lib/routes/behance/namespace.ts +6 -0
 - package/lib/routes/behance/user.ts +88 -0
 - package/lib/routes/beijingprice/index.ts +193 -0
 - package/lib/routes/beijingprice/namespace.ts +8 -0
 - package/lib/routes/bellroy/namespace.ts +6 -0
 - package/lib/routes/bellroy/new-releases.ts +51 -0
 - package/lib/routes/bendibao/namespace.ts +6 -0
 - package/lib/routes/bendibao/news.ts +146 -0
 - package/lib/routes/bgmlist/namespace.ts +6 -0
 - package/lib/routes/bgmlist/onair.ts +54 -0
 - package/lib/routes/bgmlist/templates/description.art +4 -0
 - package/lib/routes/bigquant/collections.ts +61 -0
 - package/lib/routes/bigquant/namespace.ts +6 -0
 - package/lib/routes/bilibili/api-interface.d.ts +492 -0
 - package/lib/routes/bilibili/app.ts +55 -0
 - package/lib/routes/bilibili/article.ts +62 -0
 - package/lib/routes/bilibili/audio.ts +61 -0
 - package/lib/routes/bilibili/bangumi.ts +65 -0
 - package/lib/routes/bilibili/cache.ts +263 -0
 - package/lib/routes/bilibili/coin.ts +60 -0
 - package/lib/routes/bilibili/danmaku.ts +78 -0
 - package/lib/routes/bilibili/dynamic.ts +386 -0
 - package/lib/routes/bilibili/fav.ts +60 -0
 - package/lib/routes/bilibili/followers.ts +87 -0
 - package/lib/routes/bilibili/followings-article.ts +80 -0
 - package/lib/routes/bilibili/followings-dynamic.ts +186 -0
 - package/lib/routes/bilibili/followings-video.ts +78 -0
 - package/lib/routes/bilibili/followings.ts +91 -0
 - package/lib/routes/bilibili/hot-search.ts +54 -0
 - package/lib/routes/bilibili/like.ts +60 -0
 - package/lib/routes/bilibili/link-news.ts +61 -0
 - package/lib/routes/bilibili/live-area.ts +86 -0
 - package/lib/routes/bilibili/live-room.ts +65 -0
 - package/lib/routes/bilibili/live-search.ts +67 -0
 - package/lib/routes/bilibili/mall-ip.ts +53 -0
 - package/lib/routes/bilibili/mall-new.ts +53 -0
 - package/lib/routes/bilibili/manga-followings.ts +71 -0
 - package/lib/routes/bilibili/manga-update.ts +57 -0
 - package/lib/routes/bilibili/namespace.ts +6 -0
 - package/lib/routes/bilibili/page.ts +55 -0
 - package/lib/routes/bilibili/partion-ranking.ts +76 -0
 - package/lib/routes/bilibili/partion.ts +168 -0
 - package/lib/routes/bilibili/platform.ts +77 -0
 - package/lib/routes/bilibili/popular.ts +48 -0
 - package/lib/routes/bilibili/ranking.ts +153 -0
 - package/lib/routes/bilibili/readlist.ts +50 -0
 - package/lib/routes/bilibili/reply.ts +57 -0
 - package/lib/routes/bilibili/user-bangumi.ts +61 -0
 - package/lib/routes/bilibili/user-channel.ts +88 -0
 - package/lib/routes/bilibili/user-collection.ts +80 -0
 - package/lib/routes/bilibili/user-fav.ts +62 -0
 - package/lib/routes/bilibili/utils.ts +125 -0
 - package/lib/routes/bilibili/video-all.ts +84 -0
 - package/lib/routes/bilibili/video.ts +78 -0
 - package/lib/routes/bilibili/vsearch.ts +94 -0
 - package/lib/routes/bilibili/watchlater.ts +76 -0
 - package/lib/routes/bilibili/weekly-recommend.ts +60 -0
 - package/lib/routes/binance/launchpool.ts +46 -0
 - package/lib/routes/binance/namespace.ts +6 -0
 - package/lib/routes/bing/daily-wallpaper.ts +80 -0
 - package/lib/routes/bing/namespace.ts +6 -0
 - package/lib/routes/bing/search.ts +54 -0
 - package/lib/routes/biodiscover/index.ts +59 -0
 - package/lib/routes/biodiscover/namespace.ts +6 -0
 - package/lib/routes/bioone/featured.ts +78 -0
 - package/lib/routes/bioone/journal.ts +86 -0
 - package/lib/routes/bioone/namespace.ts +6 -0
 - package/lib/routes/biquge/index.ts +110 -0
 - package/lib/routes/biquge/namespace.ts +27 -0
 - package/lib/routes/bit/cs/cs.ts +50 -0
 - package/lib/routes/bit/cs/utils.ts +51 -0
 - package/lib/routes/bit/jwc/jwc.ts +50 -0
 - package/lib/routes/bit/jwc/utils.ts +47 -0
 - package/lib/routes/bit/namespace.ts +6 -0
 - package/lib/routes/bit/rszhaopin.ts +55 -0
 - package/lib/routes/bit/yjs.ts +52 -0
 - package/lib/routes/bitbucket/commits.ts +64 -0
 - package/lib/routes/bitbucket/namespace.ts +6 -0
 - package/lib/routes/bitbucket/tags.ts +59 -0
 - package/lib/routes/bitmovin/blog.ts +52 -0
 - package/lib/routes/bitmovin/namespace.ts +6 -0
 - package/lib/routes/bjfu/grs.ts +77 -0
 - package/lib/routes/bjfu/it/index.ts +79 -0
 - package/lib/routes/bjfu/it/utils.ts +71 -0
 - package/lib/routes/bjfu/jwc/index.ts +78 -0
 - package/lib/routes/bjfu/jwc/utils.ts +58 -0
 - package/lib/routes/bjfu/kjc.ts +78 -0
 - package/lib/routes/bjfu/namespace.ts +6 -0
 - package/lib/routes/bjfu/news/index.ts +86 -0
 - package/lib/routes/bjfu/news/utils.ts +59 -0
 - package/lib/routes/bjnews/cat.ts +43 -0
 - package/lib/routes/bjnews/column.ts +43 -0
 - package/lib/routes/bjnews/namespace.ts +6 -0
 - package/lib/routes/bjnews/utils.ts +19 -0
 - package/lib/routes/bjp/apod.ts +69 -0
 - package/lib/routes/bjp/namespace.ts +6 -0
 - package/lib/routes/bjsk/index.ts +77 -0
 - package/lib/routes/bjsk/keti.ts +84 -0
 - package/lib/routes/bjsk/namespace.ts +6 -0
 - package/lib/routes/bjtu/gs.ts +224 -0
 - package/lib/routes/bjtu/namespace.ts +8 -0
 - package/lib/routes/bjwxdxh/index.ts +75 -0
 - package/lib/routes/bjwxdxh/namespace.ts +6 -0
 - package/lib/routes/bjx/fd.ts +63 -0
 - package/lib/routes/bjx/huanbao.ts +104 -0
 - package/lib/routes/bjx/namespace.ts +6 -0
 - package/lib/routes/bjx/types.ts +57 -0
 - package/lib/routes/blizzard/namespace.ts +6 -0
 - package/lib/routes/blizzard/news.ts +108 -0
 - package/lib/routes/blogread/index.ts +45 -0
 - package/lib/routes/blogread/namespace.ts +6 -0
 - package/lib/routes/bloomberg/authors.ts +77 -0
 - package/lib/routes/bloomberg/index.ts +65 -0
 - package/lib/routes/bloomberg/namespace.ts +6 -0
 - package/lib/routes/bloomberg/templates/audio_media.art +13 -0
 - package/lib/routes/bloomberg/templates/chart_media.art +21 -0
 - package/lib/routes/bloomberg/templates/image_figure.art +9 -0
 - package/lib/routes/bloomberg/templates/lede_media.art +14 -0
 - package/lib/routes/bloomberg/templates/video_media.art +25 -0
 - package/lib/routes/bloomberg/utils.ts +618 -0
 - package/lib/routes/bluearchive/namespace.ts +7 -0
 - package/lib/routes/bluearchive/news.ts +88 -0
 - package/lib/routes/bluestacks/namespace.ts +6 -0
 - package/lib/routes/bluestacks/release.ts +90 -0
 - package/lib/routes/bmkg/earthquake.ts +54 -0
 - package/lib/routes/bmkg/namespace.ts +6 -0
 - package/lib/routes/bmkg/news.ts +68 -0
 - package/lib/routes/bnu/bs.ts +81 -0
 - package/lib/routes/bnu/dwxgb.ts +78 -0
 - package/lib/routes/bnu/fdy.ts +50 -0
 - package/lib/routes/bnu/jwb.ts +56 -0
 - package/lib/routes/bnu/lib.ts +55 -0
 - package/lib/routes/bnu/mba.ts +202 -0
 - package/lib/routes/bnu/namespace.ts +6 -0
 - package/lib/routes/boc/namespace.ts +6 -0
 - package/lib/routes/boc/whpj.ts +129 -0
 - package/lib/routes/bookfere/category.ts +58 -0
 - package/lib/routes/bookfere/namespace.ts +6 -0
 - package/lib/routes/booru/mmda.ts +134 -0
 - package/lib/routes/booru/namespace.ts +6 -0
 - package/lib/routes/booru/templates/description.art +25 -0
 - package/lib/routes/bossdesign/index.ts +64 -0
 - package/lib/routes/bossdesign/namespace.ts +6 -0
 - package/lib/routes/brave/latest.ts +65 -0
 - package/lib/routes/brave/namespace.ts +6 -0
 - package/lib/routes/brooklynmuseum/exhibitions.ts +46 -0
 - package/lib/routes/brooklynmuseum/namespace.ts +6 -0
 - package/lib/routes/bse/index.ts +216 -0
 - package/lib/routes/bse/namespace.ts +6 -0
 - package/lib/routes/bsky/keyword.ts +41 -0
 - package/lib/routes/bsky/namespace.ts +6 -0
 - package/lib/routes/bsky/posts.ts +70 -0
 - package/lib/routes/bsky/templates/post.art +15 -0
 - package/lib/routes/bsky/utils.ts +48 -0
 - package/lib/routes/bt0/mv.ts +65 -0
 - package/lib/routes/bt0/namespace.ts +9 -0
 - package/lib/routes/bt0/tlist.ts +67 -0
 - package/lib/routes/bt0/util.ts +51 -0
 - package/lib/routes/btzj/index.ts +164 -0
 - package/lib/routes/btzj/namespace.ts +6 -0
 - package/lib/routes/buaa/jiaowu.ts +124 -0
 - package/lib/routes/buaa/namespace.ts +6 -0
 - package/lib/routes/buaa/news/index.ts +71 -0
 - package/lib/routes/buaa/sme.ts +101 -0
 - package/lib/routes/bugzilla/bug.ts +59 -0
 - package/lib/routes/bugzilla/namespace.ts +11 -0
 - package/lib/routes/bulianglin/namespace.ts +6 -0
 - package/lib/routes/bulianglin/rss.ts +48 -0
 - package/lib/routes/bupt/namespace.ts +6 -0
 - package/lib/routes/bupt/rczp.ts +77 -0
 - package/lib/routes/byau/namespace.ts +6 -0
 - package/lib/routes/byau/xinwen/index.ts +72 -0
 - package/lib/routes/byteclicks/index.ts +37 -0
 - package/lib/routes/byteclicks/namespace.ts +6 -0
 - package/lib/routes/byteclicks/tag.ts +55 -0
 - package/lib/routes/byteclicks/utils.ts +11 -0
 - package/lib/routes/bytes/bytes.ts +40 -0
 - package/lib/routes/bytes/namespace.ts +6 -0
 - package/lib/routes/c114/namespace.ts +6 -0
 - package/lib/routes/c114/roll.ts +83 -0
 - package/lib/routes/caai/index.ts +42 -0
 - package/lib/routes/caai/namespace.ts +6 -0
 - package/lib/routes/caai/utils.ts +49 -0
 - package/lib/routes/caam/index.ts +73 -0
 - package/lib/routes/caam/namespace.ts +6 -0
 - package/lib/routes/caareviews/book.ts +39 -0
 - package/lib/routes/caareviews/essay.ts +39 -0
 - package/lib/routes/caareviews/exhibition.ts +39 -0
 - package/lib/routes/caareviews/namespace.ts +6 -0
 - package/lib/routes/caareviews/templates/utils.art +2 -0
 - package/lib/routes/caareviews/utils.ts +49 -0
 - package/lib/routes/cahkms/index.ts +105 -0
 - package/lib/routes/cahkms/namespace.ts +6 -0
 - package/lib/routes/caijing/namespace.ts +6 -0
 - package/lib/routes/caijing/roll.ts +72 -0
 - package/lib/routes/caixin/article.ts +53 -0
 - package/lib/routes/caixin/blog.ts +103 -0
 - package/lib/routes/caixin/category.ts +94 -0
 - package/lib/routes/caixin/database.ts +77 -0
 - package/lib/routes/caixin/k.ts +59 -0
 - package/lib/routes/caixin/latest.ts +75 -0
 - package/lib/routes/caixin/namespace.ts +7 -0
 - package/lib/routes/caixin/templates/article.art +38 -0
 - package/lib/routes/caixin/utils.ts +49 -0
 - package/lib/routes/caixin/weekly.ts +77 -0
 - package/lib/routes/caixinglobal/latest.ts +90 -0
 - package/lib/routes/caixinglobal/namespace.ts +6 -0
 - package/lib/routes/camchina/index.ts +80 -0
 - package/lib/routes/camchina/namespace.ts +6 -0
 - package/lib/routes/cankaoxiaoxi/index.ts +112 -0
 - package/lib/routes/cankaoxiaoxi/namespace.ts +6 -0
 - package/lib/routes/cankaoxiaoxi/templates/description.art +5 -0
 - package/lib/routes/cara/constant.ts +5 -0
 - package/lib/routes/cara/likes.ts +56 -0
 - package/lib/routes/cara/namespace.ts +6 -0
 - package/lib/routes/cara/portfolio.ts +40 -0
 - package/lib/routes/cara/templates/post.art +6 -0
 - package/lib/routes/cara/timeline.ts +56 -0
 - package/lib/routes/cara/types.ts +45 -0
 - package/lib/routes/cara/utils.ts +62 -0
 - package/lib/routes/cartoonmad/comic.ts +98 -0
 - package/lib/routes/cartoonmad/namespace.ts +6 -0
 - package/lib/routes/cartoonmad/templates/chapter.art +1 -0
 - package/lib/routes/cas/cg/index.ts +80 -0
 - package/lib/routes/cas/genetics/index.ts +71 -0
 - package/lib/routes/cas/ia/yjs.ts +50 -0
 - package/lib/routes/cas/iee/kydt.ts +74 -0
 - package/lib/routes/cas/is/index.ts +53 -0
 - package/lib/routes/cas/mesalab/kb.ts +67 -0
 - package/lib/routes/cas/namespace.ts +6 -0
 - package/lib/routes/cas/sim/kyjz.ts +73 -0
 - package/lib/routes/casssp/namespace.ts +6 -0
 - package/lib/routes/casssp/news.ts +82 -0
 - package/lib/routes/cast/index.ts +115 -0
 - package/lib/routes/cast/namespace.ts +6 -0
 - package/lib/routes/cau/ele.ts +68 -0
 - package/lib/routes/cau/namespace.ts +6 -0
 - package/lib/routes/cau/yjs.ts +67 -0
 - package/lib/routes/caus/index.ts +111 -0
 - package/lib/routes/caus/namespace.ts +6 -0
 - package/lib/routes/cbaigui/index.ts +112 -0
 - package/lib/routes/cbaigui/namespace.ts +6 -0
 - package/lib/routes/cbaigui/templates/figure.art +3 -0
 - package/lib/routes/cbaigui/utils.ts +14 -0
 - package/lib/routes/cbc/namespace.ts +6 -0
 - package/lib/routes/cbc/topics.ts +85 -0
 - package/lib/routes/cbirc/index.ts +133 -0
 - package/lib/routes/cbirc/namespace.ts +6 -0
 - package/lib/routes/cbnweek/index.ts +62 -0
 - package/lib/routes/cbnweek/namespace.ts +6 -0
 - package/lib/routes/ccac/namespace.ts +6 -0
 - package/lib/routes/ccac/news.ts +82 -0
 - package/lib/routes/ccac/utils.ts +26 -0
 - package/lib/routes/cccfna/index.ts +82 -0
 - package/lib/routes/cccfna/namespace.ts +6 -0
 - package/lib/routes/ccf/ccfcv/index.ts +94 -0
 - package/lib/routes/ccf/namespace.ts +6 -0
 - package/lib/routes/ccf/news.ts +74 -0
 - package/lib/routes/ccf/templates/ccfcv/description.art +1 -0
 - package/lib/routes/ccf/tfbd/index.ts +47 -0
 - package/lib/routes/ccf/tfbd/utils.ts +50 -0
 - package/lib/routes/ccnu/career.ts +56 -0
 - package/lib/routes/ccnu/cs.ts +53 -0
 - package/lib/routes/ccnu/namespace.ts +6 -0
 - package/lib/routes/ccnu/wu.ts +52 -0
 - package/lib/routes/ccnu/yjs.ts +52 -0
 - package/lib/routes/ccreports/index.ts +67 -0
 - package/lib/routes/ccreports/namespace.ts +6 -0
 - package/lib/routes/cctv/category.ts +48 -0
 - package/lib/routes/cctv/jx.ts +77 -0
 - package/lib/routes/cctv/lm.ts +114 -0
 - package/lib/routes/cctv/namespace.ts +6 -0
 - package/lib/routes/cctv/utils/mzzlbg.ts +42 -0
 - package/lib/routes/cctv/utils/news.ts +109 -0
 - package/lib/routes/cctv/utils/xinwen1j1.ts +83 -0
 - package/lib/routes/cctv/xwlb.ts +77 -0
 - package/lib/routes/cde/index.ts +167 -0
 - package/lib/routes/cde/namespace.ts +6 -0
 - package/lib/routes/cde/templates/xxgk/breakthroughCure.art +18 -0
 - package/lib/routes/cde/templates/xxgk/cliniCal.art +16 -0
 - package/lib/routes/cde/templates/xxgk/priorityApproval.art +18 -0
 - package/lib/routes/cde/utils.ts +17 -0
 - package/lib/routes/cde/xxgk.ts +98 -0
 - package/lib/routes/cde/zdyz.ts +100 -0
 - package/lib/routes/cdi/index.ts +84 -0
 - package/lib/routes/cdi/namespace.ts +6 -0
 - package/lib/routes/cdzjryb/namespace.ts +6 -0
 - package/lib/routes/cdzjryb/project-list.ts +78 -0
 - package/lib/routes/cdzjryb/templates/projectList.art +23 -0
 - package/lib/routes/cebbank/all.ts +78 -0
 - package/lib/routes/cebbank/history.ts +77 -0
 - package/lib/routes/cebbank/namespace.ts +6 -0
 - package/lib/routes/cebbank/utils.ts +68 -0
 - package/lib/routes/cfachina/analygarden.ts +87 -0
 - package/lib/routes/cfachina/namespace.ts +6 -0
 - package/lib/routes/cffex/announcement.ts +73 -0
 - package/lib/routes/cffex/namespace.ts +6 -0
 - package/lib/routes/cfmmc/index.ts +81 -0
 - package/lib/routes/cfmmc/namespace.ts +6 -0
 - package/lib/routes/cfr/index.ts +58 -0
 - package/lib/routes/cfr/namespace.ts +6 -0
 - package/lib/routes/cfr/types.ts +30 -0
 - package/lib/routes/cfr/utils.ts +284 -0
 - package/lib/routes/cgtn/namespace.ts +6 -0
 - package/lib/routes/cgtn/podcast.ts +61 -0
 - package/lib/routes/chaincatcher/home.ts +69 -0
 - package/lib/routes/chaincatcher/namespace.ts +6 -0
 - package/lib/routes/chaincatcher/news.ts +65 -0
 - package/lib/routes/chaincatcher/templates/home.art +4 -0
 - package/lib/routes/changba/namespace.ts +6 -0
 - package/lib/routes/changba/user.ts +112 -0
 - package/lib/routes/chaoxing/namespace.ts +6 -0
 - package/lib/routes/chaoxing/qk.ts +95 -0
 - package/lib/routes/chaoxing/templates/description.art +3 -0
 - package/lib/routes/chaping/banner.ts +66 -0
 - package/lib/routes/chaping/namespace.ts +6 -0
 - package/lib/routes/chaping/news.ts +83 -0
 - package/lib/routes/chaping/newsflash.ts +48 -0
 - package/lib/routes/chiculture/namespace.ts +6 -0
 - package/lib/routes/chiculture/topic.ts +84 -0
 - package/lib/routes/china/finance/finance.ts +93 -0
 - package/lib/routes/china/namespace.ts +6 -0
 - package/lib/routes/china/news/highlights/news.ts +69 -0
 - package/lib/routes/china/news/military/news.ts +55 -0
 - package/lib/routes/chinadegrees/namespace.ts +6 -0
 - package/lib/routes/chinadegrees/province.ts +124 -0
 - package/lib/routes/chinadegrees/templates/description.art +4 -0
 - package/lib/routes/chinafactcheck/index.ts +53 -0
 - package/lib/routes/chinafactcheck/namespace.ts +6 -0
 - package/lib/routes/chinafactcheck/utils.ts +60 -0
 - package/lib/routes/chinaisa/index.ts +251 -0
 - package/lib/routes/chinaisa/namespace.ts +6 -0
 - package/lib/routes/chinamoney/channels.ts +55 -0
 - package/lib/routes/chinamoney/namespace.ts +6 -0
 - package/lib/routes/chinamoney/notice.ts +112 -0
 - package/lib/routes/chinanews/index.ts +82 -0
 - package/lib/routes/chinanews/namespace.ts +6 -0
 - package/lib/routes/chinathinktanks/namespace.ts +6 -0
 - package/lib/routes/chinathinktanks/viewpoint.ts +119 -0
 - package/lib/routes/chinaventure/index.ts +93 -0
 - package/lib/routes/chinaventure/namespace.ts +6 -0
 - package/lib/routes/chinawriter/index.ts +97 -0
 - package/lib/routes/chinawriter/namespace.ts +6 -0
 - package/lib/routes/chlinlearn/daily-blog.ts +48 -0
 - package/lib/routes/chlinlearn/namespcae.ts +6 -0
 - package/lib/routes/chsi/hotnews.ts +74 -0
 - package/lib/routes/chsi/kydt.ts +72 -0
 - package/lib/routes/chsi/kyzx.ts +79 -0
 - package/lib/routes/chsi/namespace.ts +6 -0
 - package/lib/routes/chuanliu/namespace.ts +6 -0
 - package/lib/routes/chuanliu/nice.ts +105 -0
 - package/lib/routes/chuanliu/templates/description.art +23 -0
 - package/lib/routes/chub/characters.ts +64 -0
 - package/lib/routes/chub/namespace.ts +6 -0
 - package/lib/routes/cib/namespace.ts +6 -0
 - package/lib/routes/cib/whpj.ts +115 -0
 - package/lib/routes/ciidbnu/index.ts +80 -0
 - package/lib/routes/ciidbnu/namespace.ts +6 -0
 - package/lib/routes/civitai/discussions.ts +74 -0
 - package/lib/routes/civitai/models.ts +51 -0
 - package/lib/routes/civitai/namespace.ts +6 -0
 - package/lib/routes/ciweimao/chapter.ts +86 -0
 - package/lib/routes/ciweimao/namespace.ts +6 -0
 - package/lib/routes/clickme/index.ts +76 -0
 - package/lib/routes/clickme/namespace.ts +6 -0
 - package/lib/routes/cloudnative/blog.ts +53 -0
 - package/lib/routes/cloudnative/namespace.ts +6 -0
 - package/lib/routes/cls/depth.ts +108 -0
 - package/lib/routes/cls/hot.ts +83 -0
 - package/lib/routes/cls/namespace.ts +6 -0
 - package/lib/routes/cls/telegraph.ts +86 -0
 - package/lib/routes/cls/templates/depth.art +10 -0
 - package/lib/routes/cls/templates/telegraph.art +10 -0
 - package/lib/routes/cls/utils.ts +18 -0
 - package/lib/routes/cma/channel.ts +135 -0
 - package/lib/routes/cma/namespace.ts +6 -0
 - package/lib/routes/cma/templates/description.art +13 -0
 - package/lib/routes/cmde/index.ts +82 -0
 - package/lib/routes/cmde/namespace.ts +6 -0
 - package/lib/routes/cmpxchg8b/articles.ts +69 -0
 - package/lib/routes/cmpxchg8b/namespace.ts +6 -0
 - package/lib/routes/cn-healthcare/index.ts +56 -0
 - package/lib/routes/cn-healthcare/namespace.ts +6 -0
 - package/lib/routes/cna/index.ts +87 -0
 - package/lib/routes/cna/namespace.ts +6 -0
 - package/lib/routes/cna/web/index.ts +76 -0
 - package/lib/routes/cnbc/namespace.ts +6 -0
 - package/lib/routes/cnbc/rss.ts +83 -0
 - package/lib/routes/cnbeta/category.ts +23 -0
 - package/lib/routes/cnbeta/common.ts +43 -0
 - package/lib/routes/cnbeta/index.ts +16 -0
 - package/lib/routes/cnbeta/namespace.ts +7 -0
 - package/lib/routes/cnbeta/topics.ts +23 -0
 - package/lib/routes/cnbeta/utils.ts +27 -0
 - package/lib/routes/cnblogs/common.ts +58 -0
 - package/lib/routes/cnblogs/namespace.ts +6 -0
 - package/lib/routes/cncf/index.ts +66 -0
 - package/lib/routes/cncf/namespace.ts +6 -0
 - package/lib/routes/cncf/reports.ts +53 -0
 - package/lib/routes/cneb/namespace.ts +6 -0
 - package/lib/routes/cneb/yjxw.ts +100 -0
 - package/lib/routes/cneb/yjxx.ts +66 -0
 - package/lib/routes/cngal/entry.ts +52 -0
 - package/lib/routes/cngal/namespace.ts +6 -0
 - package/lib/routes/cngal/templates/entry-description.art +4 -0
 - package/lib/routes/cngal/templates/weekly-description.art +4 -0
 - package/lib/routes/cngal/weekly.ts +48 -0
 - package/lib/routes/cnjxol/index.ts +110 -0
 - package/lib/routes/cnjxol/namespace.ts +6 -0
 - package/lib/routes/cnjxol/templates/description.art +2 -0
 - package/lib/routes/cnki/author.ts +80 -0
 - package/lib/routes/cnki/debut.ts +90 -0
 - package/lib/routes/cnki/journals.ts +74 -0
 - package/lib/routes/cnki/namespace.ts +6 -0
 - package/lib/routes/cnki/utils.ts +27 -0
 - package/lib/routes/cnljxh/index.ts +80 -0
 - package/lib/routes/cnljxh/namespace.ts +6 -0
 - package/lib/routes/cntheory/namespace.ts +6 -0
 - package/lib/routes/cntheory/paper.ts +111 -0
 - package/lib/routes/cntheory/templates/description.art +2 -0
 - package/lib/routes/cntv/column.ts +67 -0
 - package/lib/routes/cntv/namespace.ts +6 -0
 - package/lib/routes/codeforces/contests.ts +77 -0
 - package/lib/routes/codeforces/namespace.ts +6 -0
 - package/lib/routes/codeforces/recent-actions.ts +73 -0
 - package/lib/routes/codeforces/templates/contest.art +5 -0
 - package/lib/routes/coindesk/index.ts +59 -0
 - package/lib/routes/coindesk/namespace.ts +6 -0
 - package/lib/routes/colamanga/manga.ts +88 -0
 - package/lib/routes/colamanga/namespace.ts +9 -0
 - package/lib/routes/comicat/namespace.ts +6 -0
 - package/lib/routes/comicat/search.ts +62 -0
 - package/lib/routes/comicskingdom/index.ts +89 -0
 - package/lib/routes/comicskingdom/namespace.ts +6 -0
 - package/lib/routes/comicskingdom/templates/desc.art +1 -0
 - package/lib/routes/consumer/index.ts +92 -0
 - package/lib/routes/consumer/namespace.ts +6 -0
 - package/lib/routes/consumer/shopping-guide.ts +89 -0
 - package/lib/routes/cool18/index.ts +76 -0
 - package/lib/routes/cool18/namespace.ts +6 -0
 - package/lib/routes/coolapk/dyh.ts +60 -0
 - package/lib/routes/coolapk/hot.ts +127 -0
 - package/lib/routes/coolapk/huati.ts +44 -0
 - package/lib/routes/coolapk/namespace.ts +6 -0
 - package/lib/routes/coolapk/toutiao.ts +51 -0
 - package/lib/routes/coolapk/tuwen.ts +59 -0
 - package/lib/routes/coolapk/user-dynamic.ts +55 -0
 - package/lib/routes/coolapk/utils.ts +144 -0
 - package/lib/routes/coomer/artist.ts +33 -0
 - package/lib/routes/coomer/namespace.ts +6 -0
 - package/lib/routes/coomer/posts.ts +32 -0
 - package/lib/routes/coomer/utils.ts +57 -0
 - package/lib/routes/copernicium/index.ts +67 -0
 - package/lib/routes/copernicium/namespace.ts +6 -0
 - package/lib/routes/copymanga/comic.ts +148 -0
 - package/lib/routes/copymanga/namespace.ts +6 -0
 - package/lib/routes/copymanga/templates/comic.art +4 -0
 - package/lib/routes/cpcaauto/index.ts +255 -0
 - package/lib/routes/cpcaauto/namespace.ts +8 -0
 - package/lib/routes/cpcey/index.ts +83 -0
 - package/lib/routes/cpcey/namespace.ts +6 -0
 - package/lib/routes/cpuid/namespace.ts +6 -0
 - package/lib/routes/cpuid/news.ts +55 -0
 - package/lib/routes/cqgas/namespace.ts +6 -0
 - package/lib/routes/cqgas/tqtz.ts +62 -0
 - package/lib/routes/cqwu/index.ts +72 -0
 - package/lib/routes/cqwu/namespace.ts +6 -0
 - package/lib/routes/crac/index.ts +69 -0
 - package/lib/routes/crac/namespace.ts +6 -0
 - package/lib/routes/creative-comic/book.ts +95 -0
 - package/lib/routes/creative-comic/namespace.ts +6 -0
 - package/lib/routes/creative-comic/templates/chapter.art +11 -0
 - package/lib/routes/creative-comic/utils.ts +85 -0
 - package/lib/routes/crossbell/feeds/following.ts +50 -0
 - package/lib/routes/crossbell/namespace.ts +6 -0
 - package/lib/routes/crossbell/notes/character.ts +48 -0
 - package/lib/routes/crossbell/notes/index.ts +41 -0
 - package/lib/routes/crossbell/notes/source.ts +45 -0
 - package/lib/routes/crossbell/notes/utils.ts +16 -0
 - package/lib/routes/cs/index.ts +140 -0
 - package/lib/routes/cs/namespace.ts +7 -0
 - package/lib/routes/cs/video.ts +91 -0
 - package/lib/routes/cs/zzkx.ts +14 -0
 - package/lib/routes/csdn/blog.ts +64 -0
 - package/lib/routes/csdn/namespace.ts +6 -0
 - package/lib/routes/cssn/iolaw.ts +57 -0
 - package/lib/routes/cssn/namespace.ts +6 -0
 - package/lib/routes/cste/index.ts +79 -0
 - package/lib/routes/cste/namespace.ts +6 -0
 - package/lib/routes/csu/career.ts +77 -0
 - package/lib/routes/csu/cse.ts +64 -0
 - package/lib/routes/csu/mail.ts +70 -0
 - package/lib/routes/csu/namespace.ts +6 -0
 - package/lib/routes/csu/utils.ts +15 -0
 - package/lib/routes/cts/namespace.ts +6 -0
 - package/lib/routes/cts/news.ts +68 -0
 - package/lib/routes/cuc/namespace.ts +6 -0
 - package/lib/routes/cuc/yz.ts +58 -0
 - package/lib/routes/cuilingmag/index.ts +211 -0
 - package/lib/routes/cuilingmag/namespace.ts +8 -0
 - package/lib/routes/cuilingmag/templates/description.art +17 -0
 - package/lib/routes/curiouscat/namespace.ts +6 -0
 - package/lib/routes/curiouscat/user.ts +53 -0
 - package/lib/routes/curius/links.ts +70 -0
 - package/lib/routes/curius/namespace.ts +6 -0
 - package/lib/routes/curius/templates/description.art +16 -0
 - package/lib/routes/cw/author.ts +43 -0
 - package/lib/routes/cw/master.ts +53 -0
 - package/lib/routes/cw/namespace.ts +6 -0
 - package/lib/routes/cw/sub.ts +38 -0
 - package/lib/routes/cw/today.ts +44 -0
 - package/lib/routes/cw/utils.ts +128 -0
 - package/lib/routes/cyzone/author.ts +43 -0
 - package/lib/routes/cyzone/index.ts +51 -0
 - package/lib/routes/cyzone/label.ts +43 -0
 - package/lib/routes/cyzone/namespace.ts +6 -0
 - package/lib/routes/cyzone/util.ts +119 -0
 - package/lib/routes/cztv/daily.ts +69 -0
 - package/lib/routes/cztv/namespace.ts +6 -0
 - package/lib/routes/cztv/templates/daily.art +4 -0
 - package/lib/routes/cztv/templates/zjxwlb.art +3 -0
 - package/lib/routes/cztv/zjxwlb.ts +66 -0
 - package/lib/routes/dahecube/index.ts +85 -0
 - package/lib/routes/dahecube/namespace.ts +6 -0
 - package/lib/routes/dahecube/utils.ts +44 -0
 - package/lib/routes/daily/discussed.ts +88 -0
 - package/lib/routes/daily/index.ts +98 -0
 - package/lib/routes/daily/namespace.ts +7 -0
 - package/lib/routes/daily/templates/posts.art +7 -0
 - package/lib/routes/daily/upvoted.ts +92 -0
 - package/lib/routes/daily/user.ts +227 -0
 - package/lib/routes/daily/utils.ts +56 -0
 - package/lib/routes/damai/activity.ts +67 -0
 - package/lib/routes/damai/namespace.ts +6 -0
 - package/lib/routes/damai/templates/activity.art +5 -0
 - package/lib/routes/dangdang/namespace.ts +6 -0
 - package/lib/routes/dangdang/notice.ts +69 -0
 - package/lib/routes/dapenti/namespace.ts +6 -0
 - package/lib/routes/dapenti/subject.ts +24 -0
 - package/lib/routes/dapenti/tugua.ts +24 -0
 - package/lib/routes/dapenti/utils.ts +76 -0
 - package/lib/routes/darwinawards/index.ts +72 -0
 - package/lib/routes/darwinawards/namespace.ts +7 -0
 - package/lib/routes/dataguidance/index.ts +66 -0
 - package/lib/routes/dataguidance/namespace.ts +7 -0
 - package/lib/routes/dayanzai/index.ts +85 -0
 - package/lib/routes/dayanzai/namespace.ts +6 -0
 - package/lib/routes/dbaplus/namespace.ts +6 -0
 - package/lib/routes/dbaplus/rss.ts +48 -0
 - package/lib/routes/dblp/namespace.ts +6 -0
 - package/lib/routes/dblp/publication.ts +87 -0
 - package/lib/routes/dcard/namespace.ts +9 -0
 - package/lib/routes/dcard/section.ts +87 -0
 - package/lib/routes/dcard/utils.ts +48 -0
 - package/lib/routes/dcfever/namespace.ts +6 -0
 - package/lib/routes/dcfever/news.ts +54 -0
 - package/lib/routes/dcfever/reviews.ts +50 -0
 - package/lib/routes/dcfever/templates/trading.art +14 -0
 - package/lib/routes/dcfever/trading-search.ts +48 -0
 - package/lib/routes/dcfever/trading.ts +53 -0
 - package/lib/routes/dcfever/utils.ts +85 -0
 - package/lib/routes/ddosi/category.ts +68 -0
 - package/lib/routes/ddosi/index.ts +56 -0
 - package/lib/routes/ddosi/namespace.ts +6 -0
 - package/lib/routes/deadbydaylight/index.ts +69 -0
 - package/lib/routes/deadbydaylight/namespace.ts +12 -0
 - package/lib/routes/deadline/namespace.ts +6 -0
 - package/lib/routes/deadline/posts.ts +71 -0
 - package/lib/routes/deadline/templates/desc.art +10 -0
 - package/lib/routes/dedao/index.ts +55 -0
 - package/lib/routes/dedao/knowledge.ts +91 -0
 - package/lib/routes/dedao/list.ts +92 -0
 - package/lib/routes/dedao/namespace.ts +6 -0
 - package/lib/routes/dedao/templates/knowledge.art +29 -0
 - package/lib/routes/dedao/templates/user.art +38 -0
 - package/lib/routes/dedao/user.ts +104 -0
 - package/lib/routes/deepin/homepage.ts +43 -0
 - package/lib/routes/deepin/namespace.ts +9 -0
 - package/lib/routes/deeplearning/namespace.ts +6 -0
 - package/lib/routes/deeplearning/thebatch.ts +62 -0
 - package/lib/routes/deepmind/blog.ts +58 -0
 - package/lib/routes/deepmind/namespace.ts +6 -0
 - package/lib/routes/dehenglaw/index.ts +128 -0
 - package/lib/routes/dehenglaw/namespace.ts +8 -0
 - package/lib/routes/dehenglaw/templates/description.art +7 -0
 - package/lib/routes/deltaio/blog.ts +59 -0
 - package/lib/routes/deltaio/namespace.ts +6 -0
 - package/lib/routes/devolverdigital/blog.ts +76 -0
 - package/lib/routes/devolverdigital/namespace.ts +6 -0
 - package/lib/routes/dewu/declaration.ts +86 -0
 - package/lib/routes/dewu/namespace.ts +6 -0
 - package/lib/routes/dgjyw/index.ts +77 -0
 - package/lib/routes/dgjyw/namespace.ts +6 -0
 - package/lib/routes/dhu/jiaowu/news.ts +86 -0
 - package/lib/routes/dhu/namespace.ts +6 -0
 - package/lib/routes/dhu/news/xsxx.ts +68 -0
 - package/lib/routes/dhu/xxgk/news.ts +77 -0
 - package/lib/routes/dhu/yjs/news.ts +70 -0
 - package/lib/routes/dhu/yjs/zs.ts +69 -0
 - package/lib/routes/diandong/namespace.ts +6 -0
 - package/lib/routes/diandong/news.ts +82 -0
 - package/lib/routes/diershoubing/namespace.ts +6 -0
 - package/lib/routes/diershoubing/news.ts +78 -0
 - package/lib/routes/diershoubing/templates/news.art +9 -0
 - package/lib/routes/digitalcameraworld/namespace.ts +6 -0
 - package/lib/routes/digitalcameraworld/news.ts +61 -0
 - package/lib/routes/discord/channel.ts +72 -0
 - package/lib/routes/discord/discord-api.ts +50 -0
 - package/lib/routes/discord/namespace.ts +6 -0
 - package/lib/routes/discord/templates/message.art +62 -0
 - package/lib/routes/discourse/namespace.ts +8 -0
 - package/lib/routes/discourse/notifications.ts +69 -0
 - package/lib/routes/discourse/posts.ts +49 -0
 - package/lib/routes/discourse/utils.ts +11 -0
 - package/lib/routes/discuz/discuz.ts +163 -0
 - package/lib/routes/discuz/namespace.ts +5 -0
 - package/lib/routes/disinfo/namespace.ts +6 -0
 - package/lib/routes/disinfo/publications.ts +82 -0
 - package/lib/routes/diskanalyzer/namespace.ts +6 -0
 - package/lib/routes/diskanalyzer/whats-new.ts +74 -0
 - package/lib/routes/distill/index.ts +80 -0
 - package/lib/routes/distill/namespace.ts +6 -0
 - package/lib/routes/dlnews/category.ts +109 -0
 - package/lib/routes/dlnews/namespace.ts +6 -0
 - package/lib/routes/dlnews/templates/description.art +24 -0
 - package/lib/routes/dlnews/utils.ts +22 -0
 - package/lib/routes/dlsite/campaign.ts +194 -0
 - package/lib/routes/dlsite/ci-en/article.ts +89 -0
 - package/lib/routes/dlsite/index.ts +13 -0
 - package/lib/routes/dlsite/namespace.ts +6 -0
 - package/lib/routes/dlsite/new.ts +131 -0
 - package/lib/routes/dlsite/templates/description.art +158 -0
 - package/lib/routes/dlsite/utils.ts +178 -0
 - package/lib/routes/dmzj/namespace.ts +6 -0
 - package/lib/routes/dmzj/news.ts +55 -0
 - package/lib/routes/dn/namespace.ts +6 -0
 - package/lib/routes/dn/news.ts +127 -0
 - package/lib/routes/dn/templates/description.art +15 -0
 - package/lib/routes/dnaindia/common.ts +68 -0
 - package/lib/routes/dnaindia/namespace.ts +7 -0
 - package/lib/routes/dnaindia/news.ts +24 -0
 - package/lib/routes/dnaindia/topic.ts +28 -0
 - package/lib/routes/dockerhub/build.ts +58 -0
 - package/lib/routes/dockerhub/namespace.ts +6 -0
 - package/lib/routes/dockerhub/tag.ts +55 -0
 - package/lib/routes/dockerhub/utils.ts +10 -0
 - package/lib/routes/docschina/namespace.ts +6 -0
 - package/lib/routes/docschina/weekly.ts +66 -0
 - package/lib/routes/dol/announce.ts +109 -0
 - package/lib/routes/dol/namespace.ts +6 -0
 - package/lib/routes/domp4/detail.ts +128 -0
 - package/lib/routes/domp4/latest-movie-bt.ts +71 -0
 - package/lib/routes/domp4/latest.ts +60 -0
 - package/lib/routes/domp4/namespace.ts +15 -0
 - package/lib/routes/domp4/utils.ts +96 -0
 - package/lib/routes/dongqiudi/daily.ts +22 -0
 - package/lib/routes/dongqiudi/namespace.ts +9 -0
 - package/lib/routes/dongqiudi/player-news.ts +24 -0
 - package/lib/routes/dongqiudi/result.ts +47 -0
 - package/lib/routes/dongqiudi/special.ts +54 -0
 - package/lib/routes/dongqiudi/team-news.ts +24 -0
 - package/lib/routes/dongqiudi/top-news.ts +62 -0
 - package/lib/routes/dongqiudi/utils.ts +165 -0
 - package/lib/routes/dora-world/article.ts +87 -0
 - package/lib/routes/dora-world/namespace.ts +6 -0
 - package/lib/routes/dorohedoro/namespace.ts +6 -0
 - package/lib/routes/dorohedoro/news.ts +97 -0
 - package/lib/routes/douban/book/latest.ts +65 -0
 - package/lib/routes/douban/book/rank.ts +56 -0
 - package/lib/routes/douban/channel/subject.ts +82 -0
 - package/lib/routes/douban/channel/topic.ts +85 -0
 - package/lib/routes/douban/commercialpress/latest.ts +74 -0
 - package/lib/routes/douban/event/hot.ts +49 -0
 - package/lib/routes/douban/namespace.ts +6 -0
 - package/lib/routes/douban/other/bookstore.ts +49 -0
 - package/lib/routes/douban/other/celebrity.ts +60 -0
 - package/lib/routes/douban/other/classification.ts +61 -0
 - package/lib/routes/douban/other/discussion.ts +83 -0
 - package/lib/routes/douban/other/doulist.ts +84 -0
 - package/lib/routes/douban/other/explore-column.ts +64 -0
 - package/lib/routes/douban/other/explore.ts +72 -0
 - package/lib/routes/douban/other/group.ts +95 -0
 - package/lib/routes/douban/other/jobs.ts +55 -0
 - package/lib/routes/douban/other/later.ts +51 -0
 - package/lib/routes/douban/other/latest-music.ts +96 -0
 - package/lib/routes/douban/other/list.ts +125 -0
 - package/lib/routes/douban/other/playing.ts +52 -0
 - package/lib/routes/douban/other/recommended.ts +102 -0
 - package/lib/routes/douban/other/replied.ts +106 -0
 - package/lib/routes/douban/other/replies.ts +81 -0
 - package/lib/routes/douban/other/topic.ts +100 -0
 - package/lib/routes/douban/other/ustop.ts +41 -0
 - package/lib/routes/douban/other/weekly-best.ts +78 -0
 - package/lib/routes/douban/people/status.ts +488 -0
 - package/lib/routes/douban/people/wish.ts +96 -0
 - package/lib/routes/douban/templates/list_description.art +25 -0
 - package/lib/routes/douban/templates/weekly_best.art +10 -0
 - package/lib/routes/douyin/hashtag.ts +122 -0
 - package/lib/routes/douyin/live.ts +106 -0
 - package/lib/routes/douyin/namespace.ts +20 -0
 - package/lib/routes/douyin/templates/cover.art +15 -0
 - package/lib/routes/douyin/templates/desc.art +3 -0
 - package/lib/routes/douyin/templates/embed.art +13 -0
 - package/lib/routes/douyin/templates/iframe.art +14 -0
 - package/lib/routes/douyin/user.ts +104 -0
 - package/lib/routes/douyin/utils.ts +134 -0
 - package/lib/routes/douyu/group.ts +76 -0
 - package/lib/routes/douyu/namespace.ts +6 -0
 - package/lib/routes/douyu/post.ts +85 -0
 - package/lib/routes/douyu/room.ts +98 -0
 - package/lib/routes/douyu/templates/description.art +14 -0
 - package/lib/routes/dribbble/keyword.ts +29 -0
 - package/lib/routes/dribbble/namespace.ts +6 -0
 - package/lib/routes/dribbble/popular.ts +36 -0
 - package/lib/routes/dribbble/templates/description.art +15 -0
 - package/lib/routes/dribbble/user.ts +34 -0
 - package/lib/routes/dribbble/utils.ts +158 -0
 - package/lib/routes/dtcj/datahero.ts +73 -0
 - package/lib/routes/dtcj/datainsight.ts +82 -0
 - package/lib/routes/dtcj/namespace.ts +6 -0
 - package/lib/routes/duckdb/namespace.ts +6 -0
 - package/lib/routes/duckdb/news.ts +65 -0
 - package/lib/routes/duozhuayu/namespace.ts +6 -0
 - package/lib/routes/duozhuayu/search.ts +94 -0
 - package/lib/routes/duozhuayu/templates/book.art +10 -0
 - package/lib/routes/dushu/fuzhou/index.ts +69 -0
 - package/lib/routes/dushu/namespace.ts +6 -0
 - package/lib/routes/dut/defaults.ts +57 -0
 - package/lib/routes/dut/index.ts +104 -0
 - package/lib/routes/dut/namespace.ts +6 -0
 - package/lib/routes/dut/shortcuts.ts +82 -0
 - package/lib/routes/dx2025/index.ts +93 -0
 - package/lib/routes/dx2025/namespace.ts +6 -0
 - package/lib/routes/dxy/namespace.ts +6 -0
 - package/lib/routes/dxy/profile/thread.ts +107 -0
 - package/lib/routes/dxy/special.ts +99 -0
 - package/lib/routes/dxy/utils.ts +66 -0
 - package/lib/routes/e-hentai/index.ts +127 -0
 - package/lib/routes/e-hentai/namespace.ts +6 -0
 - package/lib/routes/eagle/blog.ts +79 -0
 - package/lib/routes/eagle/changelog.ts +101 -0
 - package/lib/routes/eagle/namespace.ts +6 -0
 - package/lib/routes/earthquake/ceic.ts +105 -0
 - package/lib/routes/earthquake/index.ts +67 -0
 - package/lib/routes/earthquake/namespace.ts +6 -0
 - package/lib/routes/eastday/24.ts +124 -0
 - package/lib/routes/eastday/namespace.ts +6 -0
 - package/lib/routes/eastday/portrait.ts +73 -0
 - package/lib/routes/eastday/sh.ts +75 -0
 - package/lib/routes/eastmoney/namespace.ts +6 -0
 - package/lib/routes/eastmoney/report/index.ts +87 -0
 - package/lib/routes/eastmoney/search/index.ts +74 -0
 - package/lib/routes/eastmoney/ttjj/user.ts +85 -0
 - package/lib/routes/ecnu/contest.ts +70 -0
 - package/lib/routes/ecnu/jwc.ts +67 -0
 - package/lib/routes/ecnu/namespace.ts +6 -0
 - package/lib/routes/ecnu/yjs.ts +63 -0
 - package/lib/routes/economist/espresso.ts +106 -0
 - package/lib/routes/economist/full.ts +71 -0
 - package/lib/routes/economist/global-business-review.ts +123 -0
 - package/lib/routes/economist/namespace.ts +6 -0
 - package/lib/routes/ecust/e/news.ts +70 -0
 - package/lib/routes/ecust/gschool/yjs.ts +52 -0
 - package/lib/routes/ecust/jwc/notice.ts +89 -0
 - package/lib/routes/ecust/namespace.ts +6 -0
 - package/lib/routes/egsea/flash.ts +55 -0
 - package/lib/routes/egsea/namespace.ts +6 -0
 - package/lib/routes/ehentai/ehapi.ts +211 -0
 - package/lib/routes/ehentai/favorites.ts +47 -0
 - package/lib/routes/ehentai/namespace.ts +11 -0
 - package/lib/routes/ehentai/search.ts +54 -0
 - package/lib/routes/ehentai/tag.ts +42 -0
 - package/lib/routes/ekantipur/issue.ts +95 -0
 - package/lib/routes/ekantipur/namespace.ts +6 -0
 - package/lib/routes/elasticsearch-cn/index.ts +86 -0
 - package/lib/routes/elasticsearch-cn/namespace.ts +6 -0
 - package/lib/routes/eleduck/jobs.ts +64 -0
 - package/lib/routes/eleduck/namespace.ts +6 -0
 - package/lib/routes/eleduck/posts.ts +79 -0
 - package/lib/routes/elsevier/issue.ts +80 -0
 - package/lib/routes/elsevier/journal.ts +90 -0
 - package/lib/routes/elsevier/namespace.ts +6 -0
 - package/lib/routes/elsevier/templates/description.art +11 -0
 - package/lib/routes/embassy/index.ts +69 -0
 - package/lib/routes/embassy/namespace.ts +114 -0
 - package/lib/routes/embassy/supported-list.ts +257 -0
 - package/lib/routes/epicgames/index.ts +125 -0
 - package/lib/routes/epicgames/namespace.ts +6 -0
 - package/lib/routes/epicgames/templates/description.art +3 -0
 - package/lib/routes/eprice/namespace.ts +6 -0
 - package/lib/routes/eprice/rss.ts +122 -0
 - package/lib/routes/eprice/templates/image.art +4 -0
 - package/lib/routes/esquirehk/namespace.ts +6 -0
 - package/lib/routes/esquirehk/tag.ts +104 -0
 - package/lib/routes/esquirehk/templates/subpages.art +30 -0
 - package/lib/routes/europechinese/latest.ts +66 -0
 - package/lib/routes/europechinese/namespace.ts +6 -0
 - package/lib/routes/eventernote/actors.ts +125 -0
 - package/lib/routes/eventernote/namespace.ts +6 -0
 - package/lib/routes/f-droid/apprelease.ts +57 -0
 - package/lib/routes/f-droid/namespace.ts +6 -0
 - package/lib/routes/famitsu/category.ts +152 -0
 - package/lib/routes/famitsu/namespace.ts +6 -0
 - package/lib/routes/famitsu/templates/description.art +7 -0
 - package/lib/routes/famitsu/types.ts +117 -0
 - package/lib/routes/fanbox/index.ts +62 -0
 - package/lib/routes/fanbox/namespace.ts +6 -0
 - package/lib/routes/fanbox/templates/fanbox-post.art +7 -0
 - package/lib/routes/fanbox/types.ts +239 -0
 - package/lib/routes/fanbox/utils.ts +188 -0
 - package/lib/routes/fanqienovel/namespace.ts +7 -0
 - package/lib/routes/fanqienovel/page.ts +100 -0
 - package/lib/routes/fansly/namespace.ts +6 -0
 - package/lib/routes/fansly/post.ts +53 -0
 - package/lib/routes/fansly/tag.ts +54 -0
 - package/lib/routes/fansly/templates/media.art +8 -0
 - package/lib/routes/fansly/templates/poll.art +4 -0
 - package/lib/routes/fansly/templates/tip-goal.art +2 -0
 - package/lib/routes/fansly/utils.ts +167 -0
 - package/lib/routes/fantia/namespace.ts +6 -0
 - package/lib/routes/fantia/search.ts +145 -0
 - package/lib/routes/fantia/user.ts +85 -0
 - package/lib/routes/fanxinzhui/index.ts +127 -0
 - package/lib/routes/fanxinzhui/namespace.ts +6 -0
 - package/lib/routes/fanxinzhui/templates/description.art +13 -0
 - package/lib/routes/farmatters/index.ts +115 -0
 - package/lib/routes/farmatters/namespace.ts +7 -0
 - package/lib/routes/farmatters/templates/description.art +9 -0
 - package/lib/routes/fashionnetwork/index.ts +192 -0
 - package/lib/routes/fashionnetwork/namespace.ts +8 -0
 - package/lib/routes/fashionnetwork/templates/description.art +17 -0
 - package/lib/routes/fastbull/express-news.ts +58 -0
 - package/lib/routes/fastbull/namespace.ts +6 -0
 - package/lib/routes/fastbull/news.ts +86 -0
 - package/lib/routes/fastbull/templates/description.art +7 -0
 - package/lib/routes/fda/cdrh.ts +78 -0
 - package/lib/routes/fda/namespace.ts +6 -0
 - package/lib/routes/fediverse/namespace.ts +6 -0
 - package/lib/routes/fediverse/timeline.ts +98 -0
 - package/lib/routes/feng/forum.ts +73 -0
 - package/lib/routes/feng/namespace.ts +6 -0
 - package/lib/routes/feng/templates/deleted.art +2 -0
 - package/lib/routes/feng/templates/img.art +6 -0
 - package/lib/routes/feng/utils.ts +76 -0
 - package/lib/routes/ff14/ff14-global.ts +77 -0
 - package/lib/routes/ff14/ff14-zh.ts +75 -0
 - package/lib/routes/ff14/namespace.ts +6 -0
 - package/lib/routes/fffdm/manhua/manhua.ts +79 -0
 - package/lib/routes/fffdm/namespace.ts +6 -0
 - package/lib/routes/fffdm/templates/manhua.art +5 -0
 - package/lib/routes/finology/bullets.ts +51 -0
 - package/lib/routes/finology/category.ts +60 -0
 - package/lib/routes/finology/most-viewed.ts +50 -0
 - package/lib/routes/finology/namespace.ts +6 -0
 - package/lib/routes/finology/tag.ts +55 -0
 - package/lib/routes/finology/utils.ts +60 -0
 - package/lib/routes/finviz/namespace.ts +6 -0
 - package/lib/routes/finviz/news.ts +98 -0
 - package/lib/routes/finviz/quote.ts +59 -0
 - package/lib/routes/firecore/index.ts +56 -0
 - package/lib/routes/firecore/namespace.ts +6 -0
 - package/lib/routes/firefox/addons.ts +59 -0
 - package/lib/routes/firefox/breaches.ts +63 -0
 - package/lib/routes/firefox/namespace.ts +6 -0
 - package/lib/routes/firefox/release.ts +44 -0
 - package/lib/routes/fisher-spb/namespace.ts +6 -0
 - package/lib/routes/fisher-spb/news.ts +76 -0
 - package/lib/routes/fishshell/index.ts +43 -0
 - package/lib/routes/fishshell/namespace.ts +6 -0
 - package/lib/routes/fjksbm/index.ts +81 -0
 - package/lib/routes/fjksbm/namespace.ts +6 -0
 - package/lib/routes/flyert/creditcard.ts +136 -0
 - package/lib/routes/flyert/namespace.ts +6 -0
 - package/lib/routes/flyert/preferential.ts +74 -0
 - package/lib/routes/flyert/utils.ts +72 -0
 - package/lib/routes/focustaiwan/index.ts +102 -0
 - package/lib/routes/focustaiwan/namespace.ts +6 -0
 - package/lib/routes/followin/index.ts +66 -0
 - package/lib/routes/followin/kol.ts +50 -0
 - package/lib/routes/followin/namespace.ts +6 -0
 - package/lib/routes/followin/news.ts +46 -0
 - package/lib/routes/followin/tag.ts +69 -0
 - package/lib/routes/followin/templates/thread.art +15 -0
 - package/lib/routes/followin/topic.ts +50 -0
 - package/lib/routes/followin/utils.ts +76 -0
 - package/lib/routes/foresightnews/article.ts +47 -0
 - package/lib/routes/foresightnews/column.ts +53 -0
 - package/lib/routes/foresightnews/index.ts +37 -0
 - package/lib/routes/foresightnews/namespace.ts +6 -0
 - package/lib/routes/foresightnews/news.ts +48 -0
 - package/lib/routes/foresightnews/templates/description.art +13 -0
 - package/lib/routes/foresightnews/util.ts +90 -0
 - package/lib/routes/foreverblog/feeds.ts +61 -0
 - package/lib/routes/foreverblog/namespace.ts +6 -0
 - package/lib/routes/fortnite/namespace.ts +6 -0
 - package/lib/routes/fortnite/news.ts +87 -0
 - package/lib/routes/fortunechina/index.ts +108 -0
 - package/lib/routes/fortunechina/namespace.ts +6 -0
 - package/lib/routes/fosshub/index.ts +71 -0
 - package/lib/routes/fosshub/namespace.ts +6 -0
 - package/lib/routes/fosshub/templates/description.art +20 -0
 - package/lib/routes/free/namespace.ts +6 -0
 - package/lib/routes/free/rss.ts +35 -0
 - package/lib/routes/freebuf/index.ts +68 -0
 - package/lib/routes/freebuf/namespace.ts +6 -0
 - package/lib/routes/freecomputerbooks/index.ts +127 -0
 - package/lib/routes/freecomputerbooks/namespace.ts +6 -0
 - package/lib/routes/freecomputerbooks/templates/desc.art +3 -0
 - package/lib/routes/freewechat/namespace.ts +6 -0
 - package/lib/routes/freewechat/profile.ts +88 -0
 - package/lib/routes/freexcomic/book.ts +84 -0
 - package/lib/routes/freexcomic/namespace.ts +7 -0
 - package/lib/routes/ft/myft.ts +76 -0
 - package/lib/routes/ft/namespace.ts +6 -0
 - package/lib/routes/ftchinese/channel.ts +38 -0
 - package/lib/routes/ftchinese/namespace.ts +6 -0
 - package/lib/routes/ftchinese/utils.ts +90 -0
 - package/lib/routes/fuliba/latest.ts +50 -0
 - package/lib/routes/fuliba/namespace.ts +6 -0
 - package/lib/routes/furstar/archive.ts +53 -0
 - package/lib/routes/furstar/artists.ts +58 -0
 - package/lib/routes/furstar/index.ts +59 -0
 - package/lib/routes/furstar/namespace.ts +6 -0
 - package/lib/routes/furstar/templates/description.art +5 -0
 - package/lib/routes/furstar/utils.ts +99 -0
 - package/lib/routes/futunn/main.ts +80 -0
 - package/lib/routes/futunn/namespace.ts +6 -0
 - package/lib/routes/futunn/templates/description.art +6 -0
 - package/lib/routes/fx-markets/channel.ts +79 -0
 - package/lib/routes/fx-markets/namespace.ts +6 -0
 - package/lib/routes/fx678/kx.ts +70 -0
 - package/lib/routes/fx678/namespace.ts +6 -0
 - package/lib/routes/fxiaoke/crm.ts +86 -0
 - package/lib/routes/fxiaoke/namespace.ts +6 -0
 - package/lib/routes/fzmtr/announcements.ts +57 -0
 - package/lib/routes/fzmtr/namespace.ts +6 -0
 - package/lib/routes/gameapps/index.ts +94 -0
 - package/lib/routes/gameapps/namespace.ts +6 -0
 - package/lib/routes/gamebase/namespace.ts +6 -0
 - package/lib/routes/gamebase/news.ts +98 -0
 - package/lib/routes/gamegene/namespace.ts +6 -0
 - package/lib/routes/gamegene/news.ts +76 -0
 - package/lib/routes/gamer/ani/anime.ts +52 -0
 - package/lib/routes/gamer/ani/new-anime.ts +47 -0
 - package/lib/routes/gamer/gnn-index.ts +154 -0
 - package/lib/routes/gamer/hot.ts +76 -0
 - package/lib/routes/gamer/namespace.ts +6 -0
 - package/lib/routes/gamer520/index.ts +85 -0
 - package/lib/routes/gamer520/namespace.ts +6 -0
 - package/lib/routes/gamersecret/index.ts +106 -0
 - package/lib/routes/gamersecret/namespace.ts +6 -0
 - package/lib/routes/gamme/category.ts +60 -0
 - package/lib/routes/gamme/namespace.ts +6 -0
 - package/lib/routes/gamme/tag.ts +71 -0
 - package/lib/routes/gcores/category.ts +171 -0
 - package/lib/routes/gcores/collection.ts +161 -0
 - package/lib/routes/gcores/namespace.ts +6 -0
 - package/lib/routes/gcores/radio.ts +108 -0
 - package/lib/routes/gcores/tag.ts +158 -0
 - package/lib/routes/gcores/templates/content.art +16 -0
 - package/lib/routes/gdsrx/index.ts +101 -0
 - package/lib/routes/gdsrx/namespace.ts +6 -0
 - package/lib/routes/gdut/namespace.ts +6 -0
 - package/lib/routes/gdut/news.ts +168 -0
 - package/lib/routes/gdut/oa-news.ts +226 -0
 - package/lib/routes/gelonghui/home.ts +54 -0
 - package/lib/routes/gelonghui/hot-article.ts +60 -0
 - package/lib/routes/gelonghui/keyword.ts +54 -0
 - package/lib/routes/gelonghui/live.ts +59 -0
 - package/lib/routes/gelonghui/namespace.ts +6 -0
 - package/lib/routes/gelonghui/subject.ts +61 -0
 - package/lib/routes/gelonghui/templates/live.art +7 -0
 - package/lib/routes/gelonghui/user.ts +58 -0
 - package/lib/routes/gelonghui/utils.ts +25 -0
 - package/lib/routes/geocaching/blogs.ts +55 -0
 - package/lib/routes/geocaching/namespace.ts +6 -0
 - package/lib/routes/geocaching/templates/blogs.art +6 -0
 - package/lib/routes/getdr/index.ts +63 -0
 - package/lib/routes/getdr/namespace.ts +6 -0
 - package/lib/routes/getitfree/index.ts +59 -0
 - package/lib/routes/getitfree/namespace.ts +6 -0
 - package/lib/routes/getitfree/util.ts +315 -0
 - package/lib/routes/gettr/namespace.ts +6 -0
 - package/lib/routes/gettr/templates/post.art +13 -0
 - package/lib/routes/gettr/user.ts +83 -0
 - package/lib/routes/gf-cn/namespace.ts +6 -0
 - package/lib/routes/gf-cn/news.ts +78 -0
 - package/lib/routes/gihyo/group.ts +72 -0
 - package/lib/routes/gihyo/namespace.ts +6 -0
 - package/lib/routes/gitee/namespace.ts +6 -0
 - package/lib/routes/gitee/repos/commits.ts +66 -0
 - package/lib/routes/gitee/repos/events.ts +92 -0
 - package/lib/routes/gitee/repos/releases.ts +58 -0
 - package/lib/routes/gitee/users/events.ts +110 -0
 - package/lib/routes/github/activity.ts +55 -0
 - package/lib/routes/github/branches.ts +55 -0
 - package/lib/routes/github/comments.ts +206 -0
 - package/lib/routes/github/contributors.ts +104 -0
 - package/lib/routes/github/file.ts +66 -0
 - package/lib/routes/github/follower.ts +75 -0
 - package/lib/routes/github/gist.ts +59 -0
 - package/lib/routes/github/issue.ts +93 -0
 - package/lib/routes/github/namespace.ts +15 -0
 - package/lib/routes/github/notifications.ts +78 -0
 - package/lib/routes/github/pulls.ts +72 -0
 - package/lib/routes/github/pulse.ts +118 -0
 - package/lib/routes/github/repos.ts +58 -0
 - package/lib/routes/github/search.ts +68 -0
 - package/lib/routes/github/star.ts +77 -0
 - package/lib/routes/github/starred-repos.ts +62 -0
 - package/lib/routes/github/templates/pulse-description.art +24 -0
 - package/lib/routes/github/templates/trending-description.art +5 -0
 - package/lib/routes/github/topic.ts +73 -0
 - package/lib/routes/github/trending.ts +150 -0
 - package/lib/routes/github/wiki.ts +65 -0
 - package/lib/routes/gitpod/blog.ts +84 -0
 - package/lib/routes/gitpod/changelog.ts +60 -0
 - package/lib/routes/gitpod/namespace.ts +6 -0
 - package/lib/routes/gitpod/templates/description.art +2 -0
 - package/lib/routes/gitpod/utils.ts +3 -0
 - package/lib/routes/globallawreview/index.ts +70 -0
 - package/lib/routes/globallawreview/namespace.ts +6 -0
 - package/lib/routes/gocn/jobs.ts +53 -0
 - package/lib/routes/gocn/namespace.ts +6 -0
 - package/lib/routes/gocn/news.ts +40 -0
 - package/lib/routes/gocn/topics.ts +56 -0
 - package/lib/routes/gocn/utils.ts +36 -0
 - package/lib/routes/gofans/index.ts +63 -0
 - package/lib/routes/gofans/namespace.ts +6 -0
 - package/lib/routes/gofans/templates/description.art +7 -0
 - package/lib/routes/gogoanimehd/namespace.ts +6 -0
 - package/lib/routes/gogoanimehd/recent-releases.ts +62 -0
 - package/lib/routes/google/album.ts +55 -0
 - package/lib/routes/google/alerts.ts +52 -0
 - package/lib/routes/google/citations.ts +66 -0
 - package/lib/routes/google/doodles.ts +54 -0
 - package/lib/routes/google/extension.ts +53 -0
 - package/lib/routes/google/fonts.ts +78 -0
 - package/lib/routes/google/namespace.ts +6 -0
 - package/lib/routes/google/news.ts +89 -0
 - package/lib/routes/google/research.ts +45 -0
 - package/lib/routes/google/scholar.ts +71 -0
 - package/lib/routes/google/search.ts +85 -0
 - package/lib/routes/google/templates/description.art +6 -0
 - package/lib/routes/google/templates/news.art +5 -0
 - package/lib/routes/gov/ah/kjt.ts +229 -0
 - package/lib/routes/gov/ah/namespace.ts +8 -0
 - package/lib/routes/gov/beijing/bjedu/gh.ts +79 -0
 - package/lib/routes/gov/beijing/bphc/index.ts +64 -0
 - package/lib/routes/gov/beijing/jw/tzgg.ts +84 -0
 - package/lib/routes/gov/beijing/kw/index.ts +53 -0
 - package/lib/routes/gov/caac/cjwt.ts +87 -0
 - package/lib/routes/gov/caac/templates/description.art +25 -0
 - package/lib/routes/gov/cac/index.ts +73 -0
 - package/lib/routes/gov/ccdi/index.ts +27 -0
 - package/lib/routes/gov/ccdi/utils.ts +91 -0
 - package/lib/routes/gov/chinamine-safety/util.ts +72 -0
 - package/lib/routes/gov/chinamine-safety/xw.ts +46 -0
 - package/lib/routes/gov/chinamine-safety/zfxxgk.ts +45 -0
 - package/lib/routes/gov/chinatax/latest.ts +74 -0
 - package/lib/routes/gov/chongqing/gzw.ts +87 -0
 - package/lib/routes/gov/chongqing/rsks.ts +55 -0
 - package/lib/routes/gov/chongqing/sydwgkzp.ts +75 -0
 - package/lib/routes/gov/cmse/fxrw.ts +68 -0
 - package/lib/routes/gov/cmse/index.ts +79 -0
 - package/lib/routes/gov/cmse/templates/description.art +11 -0
 - package/lib/routes/gov/cnnic/index.ts +64 -0
 - package/lib/routes/gov/csrc/auditstatus.ts +73 -0
 - package/lib/routes/gov/csrc/news.ts +81 -0
 - package/lib/routes/gov/csrc/templates/attachment.art +3 -0
 - package/lib/routes/gov/customs/list.ts +111 -0
 - package/lib/routes/gov/customs/utils.ts +18 -0
 - package/lib/routes/gov/dianbai/dianbai.ts +26 -0
 - package/lib/routes/gov/forestry/gjlckjdjt.ts +127 -0
 - package/lib/routes/gov/forestry/templates/description.art +15 -0
 - package/lib/routes/gov/gaozhou/gaozhou.ts +27 -0
 - package/lib/routes/gov/general/general.ts +240 -0
 - package/lib/routes/gov/general/templates/zcjdpt.art +128 -0
 - package/lib/routes/gov/guangdong/tqyb/sncsyjxh.ts +65 -0
 - package/lib/routes/gov/guangdong/tqyb/tfxtq.ts +58 -0
 - package/lib/routes/gov/gz/index.ts +46 -0
 - package/lib/routes/gov/hebei/czt.ts +76 -0
 - package/lib/routes/gov/huazhou/huazhou.ts +27 -0
 - package/lib/routes/gov/huizhou/zwgk/index.ts +79 -0
 - package/lib/routes/gov/hunan/changsha/major-email.ts +82 -0
 - package/lib/routes/gov/immiau/news.ts +62 -0
 - package/lib/routes/gov/jgjcndrc/index.ts +96 -0
 - package/lib/routes/gov/jiangsu/wlt/index.ts +99 -0
 - package/lib/routes/gov/jiangsu/wlt/templates/wlt.art +9 -0
 - package/lib/routes/gov/jinan/healthcommission/medical-exam-notice.ts +74 -0
 - package/lib/routes/gov/maoming/maoming.ts +382 -0
 - package/lib/routes/gov/maonan/maonan.ts +123 -0
 - package/lib/routes/gov/mee/ywdt.ts +109 -0
 - package/lib/routes/gov/mem/sgcc.ts +93 -0
 - package/lib/routes/gov/mfa/wjdt.ts +87 -0
 - package/lib/routes/gov/mgs/mgs.ts +27 -0
 - package/lib/routes/gov/miit/wjfb.ts +86 -0
 - package/lib/routes/gov/miit/wjgs.ts +82 -0
 - package/lib/routes/gov/miit/yjzj.ts +85 -0
 - package/lib/routes/gov/miit/zcjd.ts +82 -0
 - package/lib/routes/gov/miit/zcwj.ts +73 -0
 - package/lib/routes/gov/mmht/mmht.ts +27 -0
 - package/lib/routes/gov/moa/moa.ts +257 -0
 - package/lib/routes/gov/moa/zdscxx.ts +111 -0
 - package/lib/routes/gov/moe/moe.ts +108 -0
 - package/lib/routes/gov/moe/s78.ts +69 -0
 - package/lib/routes/gov/mof/bond.ts +76 -0
 - package/lib/routes/gov/mofcom/article.ts +77 -0
 - package/lib/routes/gov/moj/aac/news.ts +72 -0
 - package/lib/routes/gov/moj/lfyjzj.ts +79 -0
 - package/lib/routes/gov/mot/index.ts +75 -0
 - package/lib/routes/gov/ndrc/fggz.ts +71 -0
 - package/lib/routes/gov/ndrc/xwdt.ts +63 -0
 - package/lib/routes/gov/nea/ghs.ts +84 -0
 - package/lib/routes/gov/news/index.ts +128 -0
 - package/lib/routes/gov/nifdc/index.ts +87 -0
 - package/lib/routes/gov/nmpa/generic.ts +70 -0
 - package/lib/routes/gov/nopss/index.ts +67 -0
 - package/lib/routes/gov/npc/index.ts +75 -0
 - package/lib/routes/gov/nrta/dsj.ts +82 -0
 - package/lib/routes/gov/nrta/news.ts +85 -0
 - package/lib/routes/gov/nsfc/index.ts +95 -0
 - package/lib/routes/gov/nsfc/shortcuts.ts +52 -0
 - package/lib/routes/gov/pbc/goutongjiaoliu.ts +85 -0
 - package/lib/routes/gov/pbc/gzlw.ts +52 -0
 - package/lib/routes/gov/pbc/namespace.ts +45 -0
 - package/lib/routes/gov/pbc/trade-announcement.ts +78 -0
 - package/lib/routes/gov/pbc/utils.ts +19 -0
 - package/lib/routes/gov/pbc/zcyj.ts +43 -0
 - package/lib/routes/gov/safe/business.ts +27 -0
 - package/lib/routes/gov/safe/complaint.ts +27 -0
 - package/lib/routes/gov/safe/templates/message.art +25 -0
 - package/lib/routes/gov/safe/util.ts +88 -0
 - package/lib/routes/gov/samr/templates/description.art +26 -0
 - package/lib/routes/gov/samr/xgzlyhd.ts +221 -0
 - package/lib/routes/gov/sasac/generic.ts +51 -0
 - package/lib/routes/gov/sdb/sdb.ts +27 -0
 - package/lib/routes/gov/sh/fgw/index.ts +155 -0
 - package/lib/routes/gov/sh/fgw/templates/description.art +17 -0
 - package/lib/routes/gov/sh/namespace.ts +8 -0
 - package/lib/routes/gov/sh/rsj/ksxm.ts +67 -0
 - package/lib/routes/gov/sh/wgj/templates/wgj.art +15 -0
 - package/lib/routes/gov/sh/wgj/wgj.ts +102 -0
 - package/lib/routes/gov/sh/wsjkw/yqtb/index.ts +58 -0
 - package/lib/routes/gov/sh/yjj/index.ts +72 -0
 - package/lib/routes/gov/shaanxi/kjt.ts +78 -0
 - package/lib/routes/gov/shenzhen/hrss/szksy/index.ts +69 -0
 - package/lib/routes/gov/shenzhen/xxgk/zfxxgj.ts +96 -0
 - package/lib/routes/gov/shenzhen/zjj/index.ts +73 -0
 - package/lib/routes/gov/shenzhen/zzb/index.ts +68 -0
 - package/lib/routes/gov/sichuan/deyang/govpublicinfo.ts +118 -0
 - package/lib/routes/gov/sichuan/deyang/mztoday.ts +167 -0
 - package/lib/routes/gov/sichuan/deyang/templates/govPublicInfo.art +47 -0
 - package/lib/routes/gov/sichuan/deyang/templates/mztoday.art +6 -0
 - package/lib/routes/gov/stats/index.ts +144 -0
 - package/lib/routes/gov/stats/templates/description.art +12 -0
 - package/lib/routes/gov/suzhou/doc.ts +72 -0
 - package/lib/routes/gov/suzhou/fg.ts +71 -0
 - package/lib/routes/gov/suzhou/news.ts +167 -0
 - package/lib/routes/gov/taiyuan/rsj.ts +69 -0
 - package/lib/routes/gov/wuhan/whyw.ts +70 -0
 - package/lib/routes/gov/xinyi/xinyi.ts +27 -0
 - package/lib/routes/gov/xuzhou/hrss.ts +77 -0
 - package/lib/routes/gov/zhejiang/gwy.ts +134 -0
 - package/lib/routes/gov/zhengce/govall.ts +92 -0
 - package/lib/routes/gov/zhengce/index.ts +122 -0
 - package/lib/routes/gov/zhengce/wenjian.ts +74 -0
 - package/lib/routes/gov/zhengce/zhengceku.ts +41 -0
 - package/lib/routes/gov/zj/ningbogzw-notice.ts +50 -0
 - package/lib/routes/gov/zj/ningborsjnotice.ts +50 -0
 - package/lib/routes/gov/zj/search.ts +80 -0
 - package/lib/routes/gq/namespace.ts +6 -0
 - package/lib/routes/gq/news.ts +59 -0
 - package/lib/routes/greasyfork/feedback.ts +55 -0
 - package/lib/routes/greasyfork/namespace.ts +6 -0
 - package/lib/routes/greasyfork/scripts.ts +76 -0
 - package/lib/routes/greasyfork/versions.ts +53 -0
 - package/lib/routes/grist/featured.ts +57 -0
 - package/lib/routes/grist/index.ts +33 -0
 - package/lib/routes/grist/namespace.ts +6 -0
 - package/lib/routes/grist/series.ts +46 -0
 - package/lib/routes/grist/topic.ts +91 -0
 - package/lib/routes/grist/utils.ts +24 -0
 - package/lib/routes/grubstreet/index.ts +24 -0
 - package/lib/routes/grubstreet/namespace.ts +6 -0
 - package/lib/routes/grubstreet/utils.ts +83 -0
 - package/lib/routes/guancha/headline.ts +77 -0
 - package/lib/routes/guancha/index.ts +189 -0
 - package/lib/routes/guancha/member.ts +115 -0
 - package/lib/routes/guancha/namespace.ts +6 -0
 - package/lib/routes/guancha/personalpage.ts +91 -0
 - package/lib/routes/guancha/topic.ts +72 -0
 - package/lib/routes/guangdiu/cheaps.ts +47 -0
 - package/lib/routes/guangdiu/index.ts +62 -0
 - package/lib/routes/guangdiu/namespace.ts +6 -0
 - package/lib/routes/guangdiu/rank.ts +64 -0
 - package/lib/routes/guangdiu/search.ts +60 -0
 - package/lib/routes/guangzhoumetro/namespace.ts +6 -0
 - package/lib/routes/guangzhoumetro/news.ts +56 -0
 - package/lib/routes/guanhai/index.ts +70 -0
 - package/lib/routes/guanhai/namespace.ts +6 -0
 - package/lib/routes/guduodata/daily.ts +92 -0
 - package/lib/routes/guduodata/namespace.ts +6 -0
 - package/lib/routes/gumroad/index.ts +63 -0
 - package/lib/routes/gumroad/namespace.ts +6 -0
 - package/lib/routes/gumroad/templates/products.art +7 -0
 - package/lib/routes/guokr/channel.ts +59 -0
 - package/lib/routes/guokr/namespace.ts +6 -0
 - package/lib/routes/guokr/scientific.ts +38 -0
 - package/lib/routes/guokr/utils.ts +37 -0
 - package/lib/routes/gxmzu/ai.ts +43 -0
 - package/lib/routes/gxmzu/lib.ts +79 -0
 - package/lib/routes/gxmzu/namespace.ts +6 -0
 - package/lib/routes/gxmzu/utils/index.ts +68 -0
 - package/lib/routes/gxmzu/yjs.ts +43 -0
 - package/lib/routes/gzdaily/app.ts +89 -0
 - package/lib/routes/gzdaily/namespace.ts +6 -0
 - package/lib/routes/gzdaily/templates/description.art +3 -0
 - package/lib/routes/gzhu/namespace.ts +6 -0
 - package/lib/routes/gzhu/yjs.ts +56 -0
 - package/lib/routes/hackernews/index.ts +138 -0
 - package/lib/routes/hackernews/namespace.ts +6 -0
 - package/lib/routes/hackertalk/index.ts +39 -0
 - package/lib/routes/hackertalk/namespace.ts +6 -0
 - package/lib/routes/hacking8/index.ts +72 -0
 - package/lib/routes/hacking8/namespace.ts +6 -0
 - package/lib/routes/hacking8/search.ts +73 -0
 - package/lib/routes/hackmd/namespace.ts +6 -0
 - package/lib/routes/hackmd/profile.ts +43 -0
 - package/lib/routes/hackyournews/index.ts +65 -0
 - package/lib/routes/hackyournews/namespace.ts +6 -0
 - package/lib/routes/hafu/namespace.ts +6 -0
 - package/lib/routes/hafu/news.ts +37 -0
 - package/lib/routes/hafu/templates/hafu.art +3 -0
 - package/lib/routes/hafu/utils.ts +210 -0
 - package/lib/routes/hakkatv/namespace.ts +6 -0
 - package/lib/routes/hakkatv/type.ts +94 -0
 - package/lib/routes/hameln/chapter.ts +85 -0
 - package/lib/routes/hameln/namespace.ts +6 -0
 - package/lib/routes/harvard/health/blog.ts +78 -0
 - package/lib/routes/harvard/namespace.ts +6 -0
 - package/lib/routes/hashnode/blog.ts +93 -0
 - package/lib/routes/hashnode/namespace.ts +6 -0
 - package/lib/routes/hashnode/templates/description.art +2 -0
 - package/lib/routes/hbooker/chapter.ts +71 -0
 - package/lib/routes/hbooker/namespace.ts +6 -0
 - package/lib/routes/hbr/namespace.ts +6 -0
 - package/lib/routes/hbr/topic.ts +88 -0
 - package/lib/routes/hdu/cs/notice.ts +80 -0
 - package/lib/routes/hdu/cs/pg.ts +80 -0
 - package/lib/routes/hdu/namespace.ts +6 -0
 - package/lib/routes/hebtv/namespace.ts +6 -0
 - package/lib/routes/hebtv/nong-bo-shi-zai-xing-dong.ts +138 -0
 - package/lib/routes/hebtv/templates/description.art +24 -0
 - package/lib/routes/hellobtc/information.ts +71 -0
 - package/lib/routes/hellobtc/kepu.ts +87 -0
 - package/lib/routes/hellobtc/namespace.ts +6 -0
 - package/lib/routes/hellobtc/news.ts +54 -0
 - package/lib/routes/hellogithub/index.ts +128 -0
 - package/lib/routes/hellogithub/namespace.ts +6 -0
 - package/lib/routes/hellogithub/report.ts +71 -0
 - package/lib/routes/hellogithub/templates/description.art +99 -0
 - package/lib/routes/hellogithub/templates/report.art +118 -0
 - package/lib/routes/hellogithub/templates/volume.art +36 -0
 - package/lib/routes/hellogithub/volume.ts +77 -0
 - package/lib/routes/hex-rays/index.ts +73 -0
 - package/lib/routes/hex-rays/namespace.ts +6 -0
 - package/lib/routes/hicairo/namespace.ts +6 -0
 - package/lib/routes/hicairo/rss.ts +48 -0
 - package/lib/routes/hinatazaka46/blog.ts +96 -0
 - package/lib/routes/hinatazaka46/namespace.ts +6 -0
 - package/lib/routes/hinatazaka46/news.ts +77 -0
 - package/lib/routes/hit/hitgs.ts +72 -0
 - package/lib/routes/hit/jwc.ts +86 -0
 - package/lib/routes/hit/namespace.ts +9 -0
 - package/lib/routes/hit/today.ts +92 -0
 - package/lib/routes/hitcon/namespace.ts +6 -0
 - package/lib/routes/hitcon/templates/zeroday.art +8 -0
 - package/lib/routes/hitcon/zeroday.ts +109 -0
 - package/lib/routes/hitsz/article.ts +64 -0
 - package/lib/routes/hitsz/namespace.ts +6 -0
 - package/lib/routes/hitwh/namespace.ts +6 -0
 - package/lib/routes/hitwh/today.ts +80 -0
 - package/lib/routes/hizu/index.ts +128 -0
 - package/lib/routes/hizu/namespace.ts +6 -0
 - package/lib/routes/hk01/channel.ts +37 -0
 - package/lib/routes/hk01/hot.ts +46 -0
 - package/lib/routes/hk01/issue.ts +36 -0
 - package/lib/routes/hk01/latest.ts +46 -0
 - package/lib/routes/hk01/namespace.ts +6 -0
 - package/lib/routes/hk01/tag.ts +36 -0
 - package/lib/routes/hk01/templates/description.art +53 -0
 - package/lib/routes/hk01/utils.ts +44 -0
 - package/lib/routes/hk01/zone.ts +37 -0
 - package/lib/routes/hkej/index.ts +183 -0
 - package/lib/routes/hkej/namespace.ts +6 -0
 - package/lib/routes/hkepc/data.ts +60 -0
 - package/lib/routes/hkepc/index.ts +127 -0
 - package/lib/routes/hkepc/namespace.ts +6 -0
 - package/lib/routes/hket/index.ts +221 -0
 - package/lib/routes/hket/namespace.ts +6 -0
 - package/lib/routes/hket/templates/image.art +4 -0
 - package/lib/routes/hkjunkcall/index.ts +69 -0
 - package/lib/routes/hkjunkcall/namespace.ts +6 -0
 - package/lib/routes/hljucm/namespace.ts +6 -0
 - package/lib/routes/hljucm/yjsy.ts +79 -0
 - package/lib/routes/hnrb/index.ts +124 -0
 - package/lib/routes/hnrb/namespace.ts +6 -0
 - package/lib/routes/hnu/careers.ts +58 -0
 - package/lib/routes/hnu/namespace.ts +6 -0
 - package/lib/routes/hongkong/chp.ts +118 -0
 - package/lib/routes/hongkong/dh.ts +84 -0
 - package/lib/routes/hongkong/namespace.ts +6 -0
 - package/lib/routes/hostmonit/cloudflareyes.ts +116 -0
 - package/lib/routes/hostmonit/cloudflareyesv6.ts +11 -0
 - package/lib/routes/hostmonit/namespace.ts +6 -0
 - package/lib/routes/hostmonit/templates/description.art +28 -0
 - package/lib/routes/hostmonit/templates/title.art +1 -0
 - package/lib/routes/hotukdeals/hottest.ts +50 -0
 - package/lib/routes/hotukdeals/index.ts +53 -0
 - package/lib/routes/hotukdeals/namespace.ts +6 -0
 - package/lib/routes/houxu/events.ts +56 -0
 - package/lib/routes/houxu/index.ts +55 -0
 - package/lib/routes/houxu/lives.ts +60 -0
 - package/lib/routes/houxu/memory.ts +56 -0
 - package/lib/routes/houxu/namespace.ts +6 -0
 - package/lib/routes/houxu/templates/events.art +5 -0
 - package/lib/routes/houxu/templates/lives.art +5 -0
 - package/lib/routes/houxu/templates/memory.art +3 -0
 - package/lib/routes/howtoforge/namespace.ts +6 -0
 - package/lib/routes/howtoforge/rss.ts +48 -0
 - package/lib/routes/hoyolab/constant.ts +28 -0
 - package/lib/routes/hoyolab/namespace.ts +6 -0
 - package/lib/routes/hoyolab/news.ts +143 -0
 - package/lib/routes/hoyolab/templates/post.art +7 -0
 - package/lib/routes/hoyolab/utils.ts +29 -0
 - package/lib/routes/hpoi/all.ts +34 -0
 - package/lib/routes/hpoi/banner-item.ts +51 -0
 - package/lib/routes/hpoi/character.ts +27 -0
 - package/lib/routes/hpoi/info.ts +75 -0
 - package/lib/routes/hpoi/namespace.ts +6 -0
 - package/lib/routes/hpoi/user.ts +65 -0
 - package/lib/routes/hpoi/utils.ts +47 -0
 - package/lib/routes/hpoi/work.ts +27 -0
 - package/lib/routes/hrbeu/gx/card.ts +45 -0
 - package/lib/routes/hrbeu/gx/list.ts +69 -0
 - package/lib/routes/hrbeu/job/bigemploy.ts +50 -0
 - package/lib/routes/hrbeu/job/calendar.ts +81 -0
 - package/lib/routes/hrbeu/job/list.ts +88 -0
 - package/lib/routes/hrbeu/namespace.ts +6 -0
 - package/lib/routes/hrbeu/uae/news.ts +94 -0
 - package/lib/routes/hrbeu/ugs/news.ts +173 -0
 - package/lib/routes/hrbeu/yjsy/list.ts +85 -0
 - package/lib/routes/hrbust/jwzx.ts +59 -0
 - package/lib/routes/hrbust/namespace.ts +6 -0
 - package/lib/routes/hrbust/utils.ts +65 -0
 - package/lib/routes/huanqiu/index.ts +103 -0
 - package/lib/routes/huanqiu/namespace.ts +6 -0
 - package/lib/routes/hubu/index.ts +124 -0
 - package/lib/routes/hubu/namespace.ts +8 -0
 - package/lib/routes/hubu/zhxy.ts +228 -0
 - package/lib/routes/huggingface/blog-zh.ts +59 -0
 - package/lib/routes/huggingface/daily-papers.ts +51 -0
 - package/lib/routes/huggingface/namespace.ts +6 -0
 - package/lib/routes/hunanpea/namespace.ts +6 -0
 - package/lib/routes/hunanpea/rsks.ts +67 -0
 - package/lib/routes/hunau/gfxy/index.ts +40 -0
 - package/lib/routes/hunau/ied.ts +42 -0
 - package/lib/routes/hunau/jwc.ts +39 -0
 - package/lib/routes/hunau/namespace.ts +6 -0
 - package/lib/routes/hunau/utils/category-title.ts +31 -0
 - package/lib/routes/hunau/utils/common.ts +62 -0
 - package/lib/routes/hunau/utils/index-page.ts +10 -0
 - package/lib/routes/hunau/utils/news-content.ts +47 -0
 - package/lib/routes/hunau/xky/index.ts +41 -0
 - package/lib/routes/huoxian/namespace.ts +6 -0
 - package/lib/routes/huoxian/zone.ts +38 -0
 - package/lib/routes/hupu/all.ts +105 -0
 - package/lib/routes/hupu/bbs.ts +117 -0
 - package/lib/routes/hupu/index.ts +102 -0
 - package/lib/routes/hupu/namespace.ts +6 -0
 - package/lib/routes/hupu/templates/description.art +11 -0
 - package/lib/routes/hupu/templates/match.art +22 -0
 - package/lib/routes/hust/aia/news.ts +51 -0
 - package/lib/routes/hust/aia/notice.ts +51 -0
 - package/lib/routes/hust/namespace.ts +6 -0
 - package/lib/routes/hust/yjs.ts +52 -0
 - package/lib/routes/huxiu/brief-column.ts +49 -0
 - package/lib/routes/huxiu/channel.ts +65 -0
 - package/lib/routes/huxiu/club.ts +39 -0
 - package/lib/routes/huxiu/collection.ts +48 -0
 - package/lib/routes/huxiu/member.ts +39 -0
 - package/lib/routes/huxiu/moment.ts +51 -0
 - package/lib/routes/huxiu/namespace.ts +6 -0
 - package/lib/routes/huxiu/search.ts +61 -0
 - package/lib/routes/huxiu/tag.ts +47 -0
 - package/lib/routes/huxiu/templates/description.art +46 -0
 - package/lib/routes/huxiu/util.ts +446 -0
 - package/lib/routes/hypergryph/arknights/announce.ts +89 -0
 - package/lib/routes/hypergryph/arknights/arktca.ts +124 -0
 - package/lib/routes/hypergryph/arknights/japan.ts +78 -0
 - package/lib/routes/hypergryph/arknights/news.ts +118 -0
 - package/lib/routes/hypergryph/namespace.ts +7 -0
 - package/lib/routes/ianspriggs/index.ts +116 -0
 - package/lib/routes/ianspriggs/namespace.ts +6 -0
 - package/lib/routes/ianspriggs/templates/description.art +13 -0
 - package/lib/routes/icac/namespace.ts +6 -0
 - package/lib/routes/icac/news.ts +72 -0
 - package/lib/routes/icac/utils.ts +13 -0
 - package/lib/routes/icbc/namespace.ts +6 -0
 - package/lib/routes/icbc/whpj.ts +86 -0
 - package/lib/routes/idaily/index.ts +85 -0
 - package/lib/routes/idaily/namespace.ts +6 -0
 - package/lib/routes/idaily/templates/description.art +17 -0
 - package/lib/routes/idolypride/namespace.ts +6 -0
 - package/lib/routes/idolypride/news.ts +54 -0
 - package/lib/routes/ieee/journal.ts +73 -0
 - package/lib/routes/ieee/namespace.ts +6 -0
 - package/lib/routes/ieee/templates/description.art +11 -0
 - package/lib/routes/ieee-security/namespace.ts +6 -0
 - package/lib/routes/ieee-security/sp.ts +53 -0
 - package/lib/routes/iehou/index.ts +125 -0
 - package/lib/routes/iehou/namespace.ts +8 -0
 - package/lib/routes/ielts/index.ts +81 -0
 - package/lib/routes/ielts/namespace.ts +6 -0
 - package/lib/routes/ifeng/feng.ts +92 -0
 - package/lib/routes/ifeng/namespace.ts +6 -0
 - package/lib/routes/ifeng/news.ts +67 -0
 - package/lib/routes/ifeng/templates/description.art +16 -0
 - package/lib/routes/ifeng/templates/video.art +5 -0
 - package/lib/routes/ifeng/utils.ts +26 -0
 - package/lib/routes/ifi-audio/download.ts +58 -0
 - package/lib/routes/ifi-audio/namespace.ts +6 -0
 - package/lib/routes/iguoguo/index.ts +95 -0
 - package/lib/routes/iguoguo/namespace.ts +6 -0
 - package/lib/routes/iiilab/index.ts +39 -0
 - package/lib/routes/iiilab/namespace.ts +6 -0
 - package/lib/routes/ikea/cn/family-offers.ts +95 -0
 - package/lib/routes/ikea/cn/low-price.ts +47 -0
 - package/lib/routes/ikea/cn/new.ts +64 -0
 - package/lib/routes/ikea/cn/utils.ts +42 -0
 - package/lib/routes/ikea/gb/new.ts +82 -0
 - package/lib/routes/ikea/gb/offer.ts +97 -0
 - package/lib/routes/ikea/namespace.ts +6 -0
 - package/lib/routes/ikea/templates/cn/product.art +14 -0
 - package/lib/routes/ikea/templates/new.art +7 -0
 - package/lib/routes/ikea/templates/offer.art +3 -0
 - package/lib/routes/imagemagick/changelog.ts +72 -0
 - package/lib/routes/imagemagick/namespace.ts +6 -0
 - package/lib/routes/imdb/chart.ts +61 -0
 - package/lib/routes/imdb/namespace.ts +6 -0
 - package/lib/routes/imdb/templates/chart.art +15 -0
 - package/lib/routes/imdb/types.ts +103 -0
 - package/lib/routes/imiker/jinghua.ts +116 -0
 - package/lib/routes/imiker/namespace.ts +6 -0
 - package/lib/routes/imiker/templates/description.art +32 -0
 - package/lib/routes/index.tsx +10 -0
 - package/lib/routes/indiansinkuwait/latest.ts +69 -0
 - package/lib/routes/indiansinkuwait/namespace.ts +6 -0
 - package/lib/routes/indienova/article.ts +44 -0
 - package/lib/routes/indienova/column.ts +84 -0
 - package/lib/routes/indienova/gamedb.ts +64 -0
 - package/lib/routes/indienova/namespace.ts +6 -0
 - package/lib/routes/indienova/usergames.ts +68 -0
 - package/lib/routes/indienova/utils.ts +39 -0
 - package/lib/routes/inewsweek/index.ts +83 -0
 - package/lib/routes/inewsweek/namespace.ts +6 -0
 - package/lib/routes/infoq/namespace.ts +6 -0
 - package/lib/routes/infoq/recommend.ts +51 -0
 - package/lib/routes/infoq/topic.ts +67 -0
 - package/lib/routes/infoq/utils.ts +109 -0
 - package/lib/routes/informedainews/docs.ts +78 -0
 - package/lib/routes/informedainews/namespace.ts +18 -0
 - package/lib/routes/informs/index.ts +97 -0
 - package/lib/routes/informs/namespace.ts +6 -0
 - package/lib/routes/infzm/index.ts +75 -0
 - package/lib/routes/infzm/types.ts +17 -0
 - package/lib/routes/inoreader/index.ts +53 -0
 - package/lib/routes/inoreader/namespace.ts +6 -0
 - package/lib/routes/inoreader/rss.ts +66 -0
 - package/lib/routes/inspirehep/author.ts +46 -0
 - package/lib/routes/inspirehep/literature.ts +42 -0
 - package/lib/routes/inspirehep/namespace.ts +7 -0
 - package/lib/routes/inspirehep/types.ts +210 -0
 - package/lib/routes/inspirehep/utils.ts +15 -0
 - package/lib/routes/instagram/common-utils.ts +63 -0
 - package/lib/routes/instagram/namespace.ts +9 -0
 - package/lib/routes/instagram/private-api/index.ts +146 -0
 - package/lib/routes/instagram/private-api/utils.ts +38 -0
 - package/lib/routes/instagram/templates/images.art +12 -0
 - package/lib/routes/instagram/templates/video.art +8 -0
 - package/lib/routes/instagram/web-api/index.ts +118 -0
 - package/lib/routes/instagram/web-api/utils.ts +218 -0
 - package/lib/routes/instructables/namespace.ts +6 -0
 - package/lib/routes/instructables/projects.ts +85 -0
 - package/lib/routes/investor/index.ts +213 -0
 - package/lib/routes/investor/namespace.ts +8 -0
 - package/lib/routes/iplaysoft/index.ts +68 -0
 - package/lib/routes/iplaysoft/namespace.ts +6 -0
 - package/lib/routes/ippa/namespace.ts +6 -0
 - package/lib/routes/ippa/rss.ts +35 -0
 - package/lib/routes/ipsw/index.ts +109 -0
 - package/lib/routes/ipsw/namespace.ts +6 -0
 - package/lib/routes/iqilu/namespace.ts +6 -0
 - package/lib/routes/iqilu/program.ts +110 -0
 - package/lib/routes/iqilu/templates/description.art +24 -0
 - package/lib/routes/iqiyi/album.ts +88 -0
 - package/lib/routes/iqiyi/namespace.ts +6 -0
 - package/lib/routes/iqiyi/templates/album.art +1 -0
 - package/lib/routes/iqiyi/video.ts +79 -0
 - package/lib/routes/iqnew/latest.ts +83 -0
 - package/lib/routes/iqnew/namespace.ts +6 -0
 - package/lib/routes/iresearch/namespace.ts +6 -0
 - package/lib/routes/iresearch/report.ts +89 -0
 - package/lib/routes/iresearch/templates/weekly.art +11 -0
 - package/lib/routes/iresearch/weekly.ts +63 -0
 - package/lib/routes/issuehunt/funded.ts +47 -0
 - package/lib/routes/issuehunt/namespace.ts +6 -0
 - package/lib/routes/itc/collection.ts +66 -0
 - package/lib/routes/itc/namespace.ts +6 -0
 - package/lib/routes/itch/devlog.ts +95 -0
 - package/lib/routes/itch/index.ts +69 -0
 - package/lib/routes/itch/namespace.ts +6 -0
 - package/lib/routes/itch/posts.ts +65 -0
 - package/lib/routes/itch/templates/description.art +4 -0
 - package/lib/routes/ithome/index.ts +109 -0
 - package/lib/routes/ithome/namespace.ts +6 -0
 - package/lib/routes/ithome/ranking.ts +93 -0
 - package/lib/routes/ithome/tag.ts +84 -0
 - package/lib/routes/ithome/templates/description.art +13 -0
 - package/lib/routes/ithome/tw/feeds.ts +66 -0
 - package/lib/routes/ithome/zt.ts +150 -0
 - package/lib/routes/iwara/index.ts +64 -0
 - package/lib/routes/iwara/namespace.ts +6 -0
 - package/lib/routes/iwara/subscriptions.ts +186 -0
 - package/lib/routes/iwara/templates/subscriptions.art +1 -0
 - package/lib/routes/ixigua/namespace.ts +6 -0
 - package/lib/routes/ixigua/templates/userVideo.art +5 -0
 - package/lib/routes/ixigua/user-video.ts +65 -0
 - package/lib/routes/j-test/namespace.ts +6 -0
 - package/lib/routes/j-test/news.ts +64 -0
 - package/lib/routes/jandan/index.ts +46 -0
 - package/lib/routes/jandan/namespace.ts +6 -0
 - package/lib/routes/jandan/section.ts +59 -0
 - package/lib/routes/japanpost/namespace.ts +12 -0
 - package/lib/routes/japanpost/router.ts +40 -0
 - package/lib/routes/japanpost/templates/track_item_desc.art +14 -0
 - package/lib/routes/japanpost/track.ts +115 -0
 - package/lib/routes/japanpost/utils.ts +89 -0
 - package/lib/routes/javbus/index.ts +209 -0
 - package/lib/routes/javbus/namespace.ts +23 -0
 - package/lib/routes/javbus/templates/description.art +29 -0
 - package/lib/routes/javdb/actors.ts +60 -0
 - package/lib/routes/javdb/index.ts +65 -0
 - package/lib/routes/javdb/lists.ts +43 -0
 - package/lib/routes/javdb/makers.ts +58 -0
 - package/lib/routes/javdb/namespace.ts +19 -0
 - package/lib/routes/javdb/rankings.ts +55 -0
 - package/lib/routes/javdb/search.ts +76 -0
 - package/lib/routes/javdb/series.ts +58 -0
 - package/lib/routes/javdb/tags.ts +55 -0
 - package/lib/routes/javdb/utils.ts +104 -0
 - package/lib/routes/javdb/videocodes.ts +56 -0
 - package/lib/routes/javlibrary/bestrated.ts +21 -0
 - package/lib/routes/javlibrary/bestreviews.ts +32 -0
 - package/lib/routes/javlibrary/genre.ts +26 -0
 - package/lib/routes/javlibrary/maker.ts +33 -0
 - package/lib/routes/javlibrary/mostwanted.ts +21 -0
 - package/lib/routes/javlibrary/namespace.ts +6 -0
 - package/lib/routes/javlibrary/newentries.ts +17 -0
 - package/lib/routes/javlibrary/newrelease.ts +21 -0
 - package/lib/routes/javlibrary/star.ts +39 -0
 - package/lib/routes/javlibrary/update.ts +17 -0
 - package/lib/routes/javlibrary/user.ts +22 -0
 - package/lib/routes/javlibrary/utils.ts +97 -0
 - package/lib/routes/jd/namespace.ts +6 -0
 - package/lib/routes/jd/price.ts +67 -0
 - package/lib/routes/jd/templates/description.art +3 -0
 - package/lib/routes/jewishmuseum/exhibitions.ts +35 -0
 - package/lib/routes/jewishmuseum/namespace.ts +6 -0
 - package/lib/routes/jianshu/collection.ts +54 -0
 - package/lib/routes/jianshu/home.ts +53 -0
 - package/lib/routes/jianshu/namespace.ts +6 -0
 - package/lib/routes/jianshu/user.ts +54 -0
 - package/lib/routes/jianshu/utils.ts +56 -0
 - package/lib/routes/jiaoliudao/index.ts +41 -0
 - package/lib/routes/jiaoliudao/namespace.ts +6 -0
 - package/lib/routes/jiemian/list.ts +14 -0
 - package/lib/routes/jiemian/lists.ts +112 -0
 - package/lib/routes/jiemian/namespace.ts +6 -0
 - package/lib/routes/jiemian/templates/description.art +39 -0
 - package/lib/routes/jike/namespace.ts +6 -0
 - package/lib/routes/jike/topic-text.ts +47 -0
 - package/lib/routes/jike/topic.ts +72 -0
 - package/lib/routes/jike/user.ts +183 -0
 - package/lib/routes/jike/utils.ts +197 -0
 - package/lib/routes/jin10/index.ts +88 -0
 - package/lib/routes/jin10/namespace.ts +6 -0
 - package/lib/routes/jin10/templates/description.art +2 -0
 - package/lib/routes/jin10/topic.ts +76 -0
 - package/lib/routes/jingzhengu/namespace.ts +6 -0
 - package/lib/routes/jingzhengu/news.ts +77 -0
 - package/lib/routes/jingzhengu/types.ts +39 -0
 - package/lib/routes/jingzhengu/utils.ts +35 -0
 - package/lib/routes/jinritemai/docs.ts +74 -0
 - package/lib/routes/jinritemai/namespace.ts +6 -0
 - package/lib/routes/jinse/catalogue.ts +131 -0
 - package/lib/routes/jinse/lives.ts +112 -0
 - package/lib/routes/jinse/namespace.ts +6 -0
 - package/lib/routes/jinse/templates/description.art +34 -0
 - package/lib/routes/jinse/timeline.ts +123 -0
 - package/lib/routes/jisilu/index.ts +133 -0
 - package/lib/routes/jisilu/namespace.ts +6 -0
 - package/lib/routes/jiuyangongshe/community.ts +147 -0
 - package/lib/routes/jiuyangongshe/namespace.ts +7 -0
 - package/lib/routes/jiuyangongshe/templates/community-description.art +4 -0
 - package/lib/routes/jjwxc/author.ts +90 -0
 - package/lib/routes/jjwxc/book.ts +130 -0
 - package/lib/routes/jjwxc/namespace.ts +6 -0
 - package/lib/routes/jjwxc/templates/author.art +28 -0
 - package/lib/routes/jjwxc/templates/book.art +44 -0
 - package/lib/routes/jlu/ccst/xwzx/index.ts +63 -0
 - package/lib/routes/jlu/jwc.ts +55 -0
 - package/lib/routes/jlu/namespace.ts +6 -0
 - package/lib/routes/jornada/index.ts +93 -0
 - package/lib/routes/jornada/namespace.ts +6 -0
 - package/lib/routes/jou/home.ts +43 -0
 - package/lib/routes/jou/namespace.ts +6 -0
 - package/lib/routes/jou/utils/index.ts +69 -0
 - package/lib/routes/jou/yz.ts +43 -0
 - package/lib/routes/jpxgmn/namespace.ts +6 -0
 - package/lib/routes/jpxgmn/search.ts +45 -0
 - package/lib/routes/jpxgmn/tab.ts +57 -0
 - package/lib/routes/jpxgmn/templates/description.art +3 -0
 - package/lib/routes/jpxgmn/utils.ts +36 -0
 - package/lib/routes/jpxgmn/weekly.ts +54 -0
 - package/lib/routes/jseea/namespace.ts +6 -0
 - package/lib/routes/jseea/news.ts +79 -0
 - package/lib/routes/jsu/cxzx.ts +84 -0
 - package/lib/routes/jsu/jwc.ts +82 -0
 - package/lib/routes/jsu/math.ts +61 -0
 - package/lib/routes/jsu/namespace.ts +6 -0
 - package/lib/routes/jsu/rjxy.ts +63 -0
 - package/lib/routes/jsu/universityindex.ts +68 -0
 - package/lib/routes/jsu/utils/index.ts +50 -0
 - package/lib/routes/juejin/books.ts +56 -0
 - package/lib/routes/juejin/category.ts +62 -0
 - package/lib/routes/juejin/collection.ts +51 -0
 - package/lib/routes/juejin/column.ts +56 -0
 - package/lib/routes/juejin/dynamic.ts +114 -0
 - package/lib/routes/juejin/favorites.ts +65 -0
 - package/lib/routes/juejin/namespace.ts +6 -0
 - package/lib/routes/juejin/pins.ts +89 -0
 - package/lib/routes/juejin/posts.ts +50 -0
 - package/lib/routes/juejin/tag.ts +65 -0
 - package/lib/routes/juejin/trending.ts +118 -0
 - package/lib/routes/juejin/utils.ts +55 -0
 - package/lib/routes/jump/discount.ts +157 -0
 - package/lib/routes/jump/namespace.ts +6 -0
 - package/lib/routes/junhe/legal-updates.ts +98 -0
 - package/lib/routes/junhe/namespace.ts +8 -0
 - package/lib/routes/kadokawa/blog.ts +134 -0
 - package/lib/routes/kadokawa/namespace.ts +8 -0
 - package/lib/routes/kadokawa/templates/description.art +21 -0
 - package/lib/routes/kamen-rider-official/namespace.ts +6 -0
 - package/lib/routes/kamen-rider-official/news.ts +165 -0
 - package/lib/routes/kamen-rider-official/templates/description.art +10 -0
 - package/lib/routes/kantarworldpanel/index.ts +108 -0
 - package/lib/routes/kantarworldpanel/namespace.ts +6 -0
 - package/lib/routes/kantarworldpanel/templates/description.art +9 -0
 - package/lib/routes/kanxue/namespace.ts +6 -0
 - package/lib/routes/kanxue/topic.ts +153 -0
 - package/lib/routes/kaopu/namespace.ts +6 -0
 - package/lib/routes/kaopu/news.ts +51 -0
 - package/lib/routes/kbs/namespace.ts +6 -0
 - package/lib/routes/kbs/news.ts +97 -0
 - package/lib/routes/kbs/today.ts +86 -0
 - package/lib/routes/kcna/namespace.ts +6 -0
 - package/lib/routes/kcna/news.ts +124 -0
 - package/lib/routes/kcna/templates/news.art +9 -0
 - package/lib/routes/kcna/utils.ts +60 -0
 - package/lib/routes/ke/namespace.ts +6 -0
 - package/lib/routes/ke/results.ts +61 -0
 - package/lib/routes/keep/namespace.ts +6 -0
 - package/lib/routes/keep/templates/user.art +16 -0
 - package/lib/routes/keep/user.ts +84 -0
 - package/lib/routes/keepass/namespace.ts +6 -0
 - package/lib/routes/keepass/news.ts +55 -0
 - package/lib/routes/kelownacapnews/namespace.ts +6 -0
 - package/lib/routes/kelownacapnews/news.ts +93 -0
 - package/lib/routes/kemono/index.ts +190 -0
 - package/lib/routes/kemono/namespace.ts +6 -0
 - package/lib/routes/kemono/templates/discord.art +22 -0
 - package/lib/routes/kemono/templates/source.art +24 -0
 - package/lib/routes/kepu/live.ts +118 -0
 - package/lib/routes/kepu/namespace.ts +6 -0
 - package/lib/routes/kepu/templates/description.art +33 -0
 - package/lib/routes/keylol/index.ts +213 -0
 - package/lib/routes/keylol/namespace.ts +6 -0
 - package/lib/routes/kimlaw/namespace.ts +6 -0
 - package/lib/routes/kimlaw/thesis.ts +70 -0
 - package/lib/routes/konghq/blog-posts.ts +78 -0
 - package/lib/routes/konghq/namespace.ts +7 -0
 - package/lib/routes/kpmg/insights.ts +143 -0
 - package/lib/routes/kpmg/namespace.ts +10 -0
 - package/lib/routes/kpmg/templates/description.art +11 -0
 - package/lib/routes/kuaidi100/index.ts +72 -0
 - package/lib/routes/kuaidi100/namespace.ts +6 -0
 - package/lib/routes/kuaidi100/supported-company.ts +41 -0
 - package/lib/routes/kuaidi100/utils.ts +260 -0
 - package/lib/routes/kunchengblog/essay.ts +91 -0
 - package/lib/routes/kunchengblog/namespace.ts +6 -0
 - package/lib/routes/kurogames/namespace.ts +7 -0
 - package/lib/routes/kurogames/wutheringwaves/news.ts +59 -0
 - package/lib/routes/kuwaitlocal/index.ts +75 -0
 - package/lib/routes/kuwaitlocal/namespace.ts +6 -0
 - package/lib/routes/kyodonews/index.ts +149 -0
 - package/lib/routes/kyodonews/namespace.ts +6 -0
 - package/lib/routes/kyodonews/templates/article.art +4 -0
 - package/lib/routes/laimanhua/index.ts +65 -0
 - package/lib/routes/laimanhua/namespace.ts +6 -0
 - package/lib/routes/lala/namespace.ts +6 -0
 - package/lib/routes/lala/rss.ts +48 -0
 - package/lib/routes/lang/namespace.ts +6 -0
 - package/lib/routes/lang/room.ts +67 -0
 - package/lib/routes/lang/templates/room.art +1 -0
 - package/lib/routes/lanqiao/author.ts +86 -0
 - package/lib/routes/lanqiao/courses.ts +82 -0
 - package/lib/routes/lanqiao/namespace.ts +6 -0
 - package/lib/routes/lanqiao/questions.ts +80 -0
 - package/lib/routes/lanqiao/utils.ts +13 -0
 - package/lib/routes/laohu8/namespace.ts +6 -0
 - package/lib/routes/laohu8/personal.ts +57 -0
 - package/lib/routes/latepost/index.ts +132 -0
 - package/lib/routes/latepost/namespace.ts +6 -0
 - package/lib/routes/layoffs/index.ts +150 -0
 - package/lib/routes/layoffs/namespace.ts +6 -0
 - package/lib/routes/learnblockchain/namespace.ts +6 -0
 - package/lib/routes/learnblockchain/posts.ts +81 -0
 - package/lib/routes/learnku/namespace.ts +6 -0
 - package/lib/routes/learnku/topic.ts +104 -0
 - package/lib/routes/leetcode/articles.ts +109 -0
 - package/lib/routes/leetcode/dailyquestion-cn.ts +132 -0
 - package/lib/routes/leetcode/dailyquestion-en.ts +133 -0
 - package/lib/routes/leetcode/dailyquestion-solution-cn.ts +201 -0
 - package/lib/routes/leetcode/dailyquestion-solution-en.ts +231 -0
 - package/lib/routes/leetcode/namespace.ts +6 -0
 - package/lib/routes/leetcode/templates/question-description.art +6 -0
 - package/lib/routes/leiphone/index.ts +41 -0
 - package/lib/routes/leiphone/namespace.ts +6 -0
 - package/lib/routes/leiphone/newsflash.ts +45 -0
 - package/lib/routes/leiphone/utils.ts +39 -0
 - package/lib/routes/lemmy/index.ts +89 -0
 - package/lib/routes/lemmy/namespace.ts +5 -0
 - package/lib/routes/lfsyd/home.ts +68 -0
 - package/lib/routes/lfsyd/namespace.ts +6 -0
 - package/lib/routes/lfsyd/old-home.ts +55 -0
 - package/lib/routes/lfsyd/tag.ts +79 -0
 - package/lib/routes/lfsyd/templates/video.art +1 -0
 - package/lib/routes/lfsyd/user.ts +63 -0
 - package/lib/routes/lfsyd/utils.ts +103 -0
 - package/lib/routes/lianxh/index.ts +116 -0
 - package/lib/routes/lianxh/namespace.ts +7 -0
 - package/lib/routes/lifeweek/channel.ts +40 -0
 - package/lib/routes/lifeweek/namespace.ts +6 -0
 - package/lib/routes/lifeweek/tag.ts +39 -0
 - package/lib/routes/lifeweek/utils.ts +18 -0
 - package/lib/routes/lightnovel/light-novel.ts +78 -0
 - package/lib/routes/lightnovel/namespace.ts +6 -0
 - package/lib/routes/line/namespace.ts +6 -0
 - package/lib/routes/line/publisher.ts +68 -0
 - package/lib/routes/line/today.ts +66 -0
 - package/lib/routes/line/utils.ts +56 -0
 - package/lib/routes/linkedin/cn/index.ts +46 -0
 - package/lib/routes/linkedin/cn/renderer.ts +177 -0
 - package/lib/routes/linkedin/cn/utils.ts +123 -0
 - package/lib/routes/linkedin/jobs.ts +139 -0
 - package/lib/routes/linkedin/models.ts +13 -0
 - package/lib/routes/linkedin/namespace.ts +6 -0
 - package/lib/routes/linkedin/templates/cn/posting.art +25 -0
 - package/lib/routes/linkedin/utils.ts +126 -0
 - package/lib/routes/linkresearcher/index.ts +76 -0
 - package/lib/routes/linkresearcher/namespace.ts +6 -0
 - package/lib/routes/linovelib/namespace.ts +6 -0
 - package/lib/routes/linovelib/novel.ts +52 -0
 - package/lib/routes/linovelib/volume.ts +36 -0
 - package/lib/routes/liquipedia/cs-matches.ts +60 -0
 - package/lib/routes/liquipedia/dota2-matches.ts +71 -0
 - package/lib/routes/liquipedia/namespace.ts +6 -0
 - package/lib/routes/literotica/category.ts +69 -0
 - package/lib/routes/literotica/namespace.ts +6 -0
 - package/lib/routes/literotica/new.ts +85 -0
 - package/lib/routes/liulinblog/index.ts +107 -0
 - package/lib/routes/liulinblog/itnews.ts +13 -0
 - package/lib/routes/liulinblog/namespace.ts +6 -0
 - package/lib/routes/liveuamap/index.ts +63 -0
 - package/lib/routes/liveuamap/namespace.ts +6 -0
 - package/lib/routes/lkong/forum.ts +72 -0
 - package/lib/routes/lkong/namespace.ts +6 -0
 - package/lib/routes/lkong/query.ts +83 -0
 - package/lib/routes/lkong/thread.ts +73 -0
 - package/lib/routes/lofter/namespace.ts +6 -0
 - package/lib/routes/lofter/tag.ts +116 -0
 - package/lib/routes/lofter/user.ts +82 -0
 - package/lib/routes/logclub/index.ts +144 -0
 - package/lib/routes/logclub/namespace.ts +6 -0
 - package/lib/routes/logclub/report.ts +124 -0
 - package/lib/routes/logclub/templates/description.art +33 -0
 - package/lib/routes/logonews/index.ts +96 -0
 - package/lib/routes/logonews/namespace.ts +6 -0
 - package/lib/routes/loltw/namespace.ts +6 -0
 - package/lib/routes/loltw/news.ts +62 -0
 - package/lib/routes/loltw/templates/news.art +6 -0
 - package/lib/routes/loongarch/namespace.ts +6 -0
 - package/lib/routes/loongarch/post.ts +59 -0
 - package/lib/routes/lovelive-anime/namespace.ts +6 -0
 - package/lib/routes/lovelive-anime/news.ts +86 -0
 - package/lib/routes/lovelive-anime/schedules.ts +67 -0
 - package/lib/routes/lovelive-anime/templates/description.art +1 -0
 - package/lib/routes/lovelive-anime/templates/scheduleDesc.art +3 -0
 - package/lib/routes/lovelive-anime/topics.ts +113 -0
 - package/lib/routes/lrepacks/index.ts +201 -0
 - package/lib/routes/lrepacks/namespace.ts +8 -0
 - package/lib/routes/lrepacks/templates/description.art +21 -0
 - package/lib/routes/lsnu/jiaowc/tzgg.ts +82 -0
 - package/lib/routes/lsnu/namespace.ts +6 -0
 - package/lib/routes/luogu/contest.ts +99 -0
 - package/lib/routes/luogu/daily.ts +64 -0
 - package/lib/routes/luogu/namespace.ts +6 -0
 - package/lib/routes/luogu/user-blog.ts +73 -0
 - package/lib/routes/luogu/user-feed.ts +57 -0
 - package/lib/routes/luolei/index.ts +149 -0
 - package/lib/routes/luolei/namespace.ts +8 -0
 - package/lib/routes/luolei/templates/description.art +19 -0
 - package/lib/routes/luxiangdong/archive.ts +53 -0
 - package/lib/routes/luxiangdong/namespace.ts +6 -0
 - package/lib/routes/lvv2/namespace.ts +6 -0
 - package/lib/routes/lvv2/news.ts +104 -0
 - package/lib/routes/lvv2/top.ts +106 -0
 - package/lib/routes/lxixsxa/discography.ts +82 -0
 - package/lib/routes/lxixsxa/information.ts +76 -0
 - package/lib/routes/lxixsxa/jsonp-helper.ts +17 -0
 - package/lib/routes/lxixsxa/namespace.ts +6 -0
 - package/lib/routes/lxixsxa/templates/disco.art +5 -0
 - package/lib/routes/lxixsxa/templates/info.art +4 -0
 - package/lib/routes/m4/index.ts +99 -0
 - package/lib/routes/m4/namespace.ts +6 -0
 - package/lib/routes/m4/templates/description.art +21 -0
 - package/lib/routes/maccms/index.ts +72 -0
 - package/lib/routes/maccms/namespace.ts +9 -0
 - package/lib/routes/maccms/templates/vod.art +12 -0
 - package/lib/routes/maccms/type.ts +102 -0
 - package/lib/routes/macfilos/blog.ts +87 -0
 - package/lib/routes/macfilos/namespace.ts +6 -0
 - package/lib/routes/macmenubar/namespace.ts +6 -0
 - package/lib/routes/macmenubar/recently.ts +66 -0
 - package/lib/routes/macupdate/app.ts +67 -0
 - package/lib/routes/macupdate/namespace.ts +6 -0
 - package/lib/routes/magazinelib/latest-magazine.ts +78 -0
 - package/lib/routes/magazinelib/namespace.ts +6 -0
 - package/lib/routes/magazinelib/templates/magazine-description.art +3 -0
 - package/lib/routes/magnumphotos/magazine.ts +63 -0
 - package/lib/routes/magnumphotos/namespace.ts +6 -0
 - package/lib/routes/mail/imap.ts +109 -0
 - package/lib/routes/mail/namespace.ts +5 -0
 - package/lib/routes/mangadex/index.ts +84 -0
 - package/lib/routes/mangadex/namespace.ts +6 -0
 - package/lib/routes/manhuagui/comic.ts +139 -0
 - package/lib/routes/manhuagui/namespace.ts +6 -0
 - package/lib/routes/manhuagui/subscribe.ts +92 -0
 - package/lib/routes/manhuagui/templates/manga.art +2 -0
 - package/lib/routes/manyvids/namespace.ts +7 -0
 - package/lib/routes/manyvids/templates/video.art +3 -0
 - package/lib/routes/manyvids/types.ts +89 -0
 - package/lib/routes/manyvids/video.ts +51 -0
 - package/lib/routes/mastodon/account-id.ts +30 -0
 - package/lib/routes/mastodon/acct.ts +40 -0
 - package/lib/routes/mastodon/namespace.ts +14 -0
 - package/lib/routes/mastodon/timeline-local.ts +43 -0
 - package/lib/routes/mastodon/timeline-remote.ts +43 -0
 - package/lib/routes/mastodon/utils.ts +135 -0
 - package/lib/routes/matters/author.ts +63 -0
 - package/lib/routes/matters/latest.ts +74 -0
 - package/lib/routes/matters/namespace.ts +7 -0
 - package/lib/routes/matters/tags.ts +85 -0
 - package/lib/routes/matters/utils.ts +30 -0
 - package/lib/routes/mckinsey/cn/category-map.ts +77 -0
 - package/lib/routes/mckinsey/cn/index.ts +73 -0
 - package/lib/routes/mckinsey/namespace.ts +6 -0
 - package/lib/routes/mcmod/index.ts +105 -0
 - package/lib/routes/mcmod/namespace.ts +6 -0
 - package/lib/routes/mcmod/templates/mod.art +13 -0
 - package/lib/routes/mdpi/journal.ts +92 -0
 - package/lib/routes/mdpi/namespace.ts +6 -0
 - package/lib/routes/mdpi/templates/description.art +12 -0
 - package/lib/routes/medieval-china/namespace.ts +6 -0
 - package/lib/routes/medieval-china/post.ts +60 -0
 - package/lib/routes/medium/following.ts +59 -0
 - package/lib/routes/medium/for-you.ts +59 -0
 - package/lib/routes/medium/graphql.ts +185 -0
 - package/lib/routes/medium/list.ts +58 -0
 - package/lib/routes/medium/namespace.ts +6 -0
 - package/lib/routes/medium/parse-article.ts +61 -0
 - package/lib/routes/medium/tag.ts +62 -0
 - package/lib/routes/medsci/index.ts +128 -0
 - package/lib/routes/medsci/namespace.ts +6 -0
 - package/lib/routes/meituan/namespace.ts +6 -0
 - package/lib/routes/meituan/tech.ts +67 -0
 - package/lib/routes/metacritic/index.ts +142 -0
 - package/lib/routes/metacritic/namespace.ts +6 -0
 - package/lib/routes/metacritic/release.ts +54 -0
 - package/lib/routes/metacritic/templates/description.art +19 -0
 - package/lib/routes/metacritic/util.ts +39 -0
 - package/lib/routes/meteor/boards.ts +37 -0
 - package/lib/routes/meteor/index.ts +65 -0
 - package/lib/routes/meteor/namespace.ts +6 -0
 - package/lib/routes/meteor/templates/desc.art +7 -0
 - package/lib/routes/meteor/utils.ts +89 -0
 - package/lib/routes/metmuseum/exhibitions.ts +39 -0
 - package/lib/routes/metmuseum/namespace.ts +6 -0
 - package/lib/routes/metrics.ts +12 -0
 - package/lib/routes/mi/crowdfunding.ts +37 -0
 - package/lib/routes/mi/golden.ts +32 -0
 - package/lib/routes/mi/namespace.ts +6 -0
 - package/lib/routes/microsoft/addon.ts +56 -0
 - package/lib/routes/microsoft/mcr.ts +63 -0
 - package/lib/routes/microsoft/namespace.ts +6 -0
 - package/lib/routes/mihoyo/bbs/cache.ts +42 -0
 - package/lib/routes/mihoyo/bbs/follow-list.ts +72 -0
 - package/lib/routes/mihoyo/bbs/img-ranking.ts +144 -0
 - package/lib/routes/mihoyo/bbs/official.ts +166 -0
 - package/lib/routes/mihoyo/bbs/static-data.ts +141 -0
 - package/lib/routes/mihoyo/bbs/timeline.ts +74 -0
 - package/lib/routes/mihoyo/bbs/user-post.ts +51 -0
 - package/lib/routes/mihoyo/bbs/utils.ts +37 -0
 - package/lib/routes/mihoyo/namespace.ts +6 -0
 - package/lib/routes/mihoyo/sr/news.ts +100 -0
 - package/lib/routes/mihoyo/templates/description.art +6 -0
 - package/lib/routes/mihoyo/templates/official.art +7 -0
 - package/lib/routes/mihoyo/templates/ys.art +4 -0
 - package/lib/routes/mihoyo/ys/news.ts +195 -0
 - package/lib/routes/mindmeister/example.ts +95 -0
 - package/lib/routes/mindmeister/namespace.ts +6 -0
 - package/lib/routes/mindmeister/templates/image.art +1 -0
 - package/lib/routes/minecraft/blockedservers.ts +52 -0
 - package/lib/routes/minecraft/java-runtime.ts +127 -0
 - package/lib/routes/minecraft/namespace.ts +6 -0
 - package/lib/routes/minecraft/version.ts +137 -0
 - package/lib/routes/mingpao/index.ts +111 -0
 - package/lib/routes/mingpao/namespace.ts +6 -0
 - package/lib/routes/mingpao/templates/description.art +2 -0
 - package/lib/routes/mingpao/templates/fancybox.art +7 -0
 - package/lib/routes/miniflux/entry.ts +315 -0
 - package/lib/routes/miniflux/namespace.ts +6 -0
 - package/lib/routes/miniflux/subscription.ts +129 -0
 - package/lib/routes/mirror/index.ts +62 -0
 - package/lib/routes/mirror/namespace.ts +6 -0
 - package/lib/routes/mirrormedia/category.ts +101 -0
 - package/lib/routes/mirrormedia/index.ts +43 -0
 - package/lib/routes/mirrormedia/namespace.ts +6 -0
 - package/lib/routes/mirrormedia/utils.ts +19 -0
 - package/lib/routes/missav/namespace.ts +6 -0
 - package/lib/routes/missav/new.ts +64 -0
 - package/lib/routes/missav/templates/preview.art +3 -0
 - package/lib/routes/misskey/featured-notes.ts +49 -0
 - package/lib/routes/misskey/namespace.ts +6 -0
 - package/lib/routes/misskey/templates/note.art +23 -0
 - package/lib/routes/misskey/user-timeline.ts +42 -0
 - package/lib/routes/misskey/utils.ts +71 -0
 - package/lib/routes/mittrchina/index.ts +125 -0
 - package/lib/routes/mittrchina/namespace.ts +6 -0
 - package/lib/routes/mittrchina/templates/movie.art +5 -0
 - package/lib/routes/miui/community/user.ts +69 -0
 - package/lib/routes/miui/firmware/index.ts +55 -0
 - package/lib/routes/miui/namespace.ts +6 -0
 - package/lib/routes/mixcloud/index.ts +156 -0
 - package/lib/routes/mixcloud/namespace.ts +6 -0
 - package/lib/routes/mixcloud/queries.ts +2274 -0
 - package/lib/routes/modb/namespace.ts +6 -0
 - package/lib/routes/modb/topic.ts +78 -0
 - package/lib/routes/modelscope/community.ts +84 -0
 - package/lib/routes/modelscope/datasets.ts +85 -0
 - package/lib/routes/modelscope/models.ts +72 -0
 - package/lib/routes/modelscope/namespace.ts +6 -0
 - package/lib/routes/modelscope/studios.ts +87 -0
 - package/lib/routes/modelscope/templates/community.art +11 -0
 - package/lib/routes/modelscope/templates/desc.art +9 -0
 - package/lib/routes/modian/namespace.ts +6 -0
 - package/lib/routes/modian/zhongchou.ts +101 -0
 - package/lib/routes/modrinth/api.d.ts +101 -0
 - package/lib/routes/modrinth/namespace.ts +6 -0
 - package/lib/routes/modrinth/templates/version.art +8 -0
 - package/lib/routes/modrinth/versions.ts +127 -0
 - package/lib/routes/mohw/clarification.ts +76 -0
 - package/lib/routes/mohw/namespace.ts +6 -0
 - package/lib/routes/mox/index.ts +117 -0
 - package/lib/routes/mox/namespace.ts +6 -0
 - package/lib/routes/mpaypass/main.ts +79 -0
 - package/lib/routes/mpaypass/namespace.ts +6 -0
 - package/lib/routes/mpaypass/news.ts +65 -0
 - package/lib/routes/mrdx/daily.ts +105 -0
 - package/lib/routes/mrdx/namespace.ts +6 -0
 - package/lib/routes/mrdx/utils.ts +15 -0
 - package/lib/routes/mrm/index.ts +65 -0
 - package/lib/routes/mrm/namespace.ts +6 -0
 - package/lib/routes/mvm/index.ts +86 -0
 - package/lib/routes/mvm/namespace.ts +6 -0
 - package/lib/routes/my-formosa/index.ts +78 -0
 - package/lib/routes/my-formosa/namespace.ts +6 -0
 - package/lib/routes/mydrivers/cid.ts +47 -0
 - package/lib/routes/mydrivers/index.ts +73 -0
 - package/lib/routes/mydrivers/namespace.ts +6 -0
 - package/lib/routes/mydrivers/rank.ts +70 -0
 - package/lib/routes/mydrivers/templates/description.art +5 -0
 - package/lib/routes/mydrivers/util.ts +116 -0
 - package/lib/routes/myfans/namespace.ts +6 -0
 - package/lib/routes/myfans/post.ts +64 -0
 - package/lib/routes/myfans/templates/post.art +8 -0
 - package/lib/routes/myfans/types.ts +104 -0
 - package/lib/routes/myfans/utils.ts +39 -0
 - package/lib/routes/myfigurecollection/activity.ts +124 -0
 - package/lib/routes/myfigurecollection/index.ts +115 -0
 - package/lib/routes/myfigurecollection/namespace.ts +6 -0
 - package/lib/routes/myfigurecollection/templates/activity.art +8 -0
 - package/lib/routes/myfigurecollection/templates/description.art +24 -0
 - package/lib/routes/mygopen/index.ts +55 -0
 - package/lib/routes/mygopen/namespace.ts +6 -0
 - package/lib/routes/mymusicsheet/namespace.ts +6 -0
 - package/lib/routes/mymusicsheet/templates/description.art +41 -0
 - package/lib/routes/mymusicsheet/usersheets.ts +149 -0
 - package/lib/routes/mysql/namespace.ts +6 -0
 - package/lib/routes/mysql/release.ts +84 -0
 - package/lib/routes/nasa/apod-cn.ts +52 -0
 - package/lib/routes/nasa/apod-ncku.ts +77 -0
 - package/lib/routes/nasa/apod.ts +78 -0
 - package/lib/routes/nasa/namespace.ts +6 -0
 - package/lib/routes/natgeo/dailyphoto.ts +61 -0
 - package/lib/routes/natgeo/dailyselection.ts +49 -0
 - package/lib/routes/natgeo/namespace.ts +6 -0
 - package/lib/routes/natgeo/natgeo.ts +82 -0
 - package/lib/routes/natgeo/templates/dailyPhoto.art +5 -0
 - package/lib/routes/nationalgeographic/latest-stories.ts +85 -0
 - package/lib/routes/nationalgeographic/namespace.ts +6 -0
 - package/lib/routes/nationalgeographic/templates/stories.art +44 -0
 - package/lib/routes/nature/cover.ts +94 -0
 - package/lib/routes/nature/highlight.ts +50 -0
 - package/lib/routes/nature/namespace.ts +9 -0
 - package/lib/routes/nature/news-and-comment.ts +52 -0
 - package/lib/routes/nature/news.ts +56 -0
 - package/lib/routes/nature/research.ts +80 -0
 - package/lib/routes/nature/siteindex.ts +68 -0
 - package/lib/routes/nature/utils.ts +1093 -0
 - package/lib/routes/nautil/namespace.ts +6 -0
 - package/lib/routes/nautil/templates/description.art +6 -0
 - package/lib/routes/nautil/topics.ts +86 -0
 - package/lib/routes/nbd/daily.ts +28 -0
 - package/lib/routes/nbd/index.ts +84 -0
 - package/lib/routes/nbd/namespace.ts +6 -0
 - package/lib/routes/nber/all.ts +19 -0
 - package/lib/routes/nber/common.ts +52 -0
 - package/lib/routes/nber/namespace.ts +7 -0
 - package/lib/routes/nber/new.ts +20 -0
 - package/lib/routes/nber/template/description.art +6 -0
 - package/lib/routes/ncc-cma/cmdp.ts +349 -0
 - package/lib/routes/ncc-cma/namespace.ts +8 -0
 - package/lib/routes/ncc-cma/templates/description.art +9 -0
 - package/lib/routes/ncepu/master/masterinfo.ts +96 -0
 - package/lib/routes/ncepu/namespace.ts +6 -0
 - package/lib/routes/ncpssd/namespace.ts +6 -0
 - package/lib/routes/ncpssd/newlist.ts +98 -0
 - package/lib/routes/ncu/jwc.ts +69 -0
 - package/lib/routes/ncu/namespace.ts +6 -0
 - package/lib/routes/ncwu/namespace.ts +6 -0
 - package/lib/routes/ncwu/notice.ts +52 -0
 - package/lib/routes/ndss-symposium/namespace.ts +6 -0
 - package/lib/routes/ndss-symposium/ndss.ts +107 -0
 - package/lib/routes/neatdownloadmanager/download.ts +71 -0
 - package/lib/routes/neatdownloadmanager/namespace.ts +6 -0
 - package/lib/routes/neea/index.ts +147 -0
 - package/lib/routes/neea/jlpt.ts +75 -0
 - package/lib/routes/neea/namespace.ts +6 -0
 - package/lib/routes/nenu/namespace.ts +6 -0
 - package/lib/routes/nenu/sohac.ts +70 -0
 - package/lib/routes/nenu/yjsy.ts +74 -0
 - package/lib/routes/netflav/index.ts +57 -0
 - package/lib/routes/netflav/namespace.ts +6 -0
 - package/lib/routes/netflav/templates/description.art +8 -0
 - package/lib/routes/neu/bmie.ts +131 -0
 - package/lib/routes/neu/namespace.ts +6 -0
 - package/lib/routes/neu/news.ts +86 -0
 - package/lib/routes/newmuseum/exhibitions.ts +46 -0
 - package/lib/routes/newmuseum/namespace.ts +6 -0
 - package/lib/routes/newrank/douyin.ts +91 -0
 - package/lib/routes/newrank/namespace.ts +10 -0
 - package/lib/routes/newrank/utils.ts +106 -0
 - package/lib/routes/newrank/wechat.ts +90 -0
 - package/lib/routes/news/namespace.ts +6 -0
 - package/lib/routes/news/templates/description.art +21 -0
 - package/lib/routes/news/xhsxw.ts +110 -0
 - package/lib/routes/newsmarket/index.ts +95 -0
 - package/lib/routes/newsmarket/namespace.ts +6 -0
 - package/lib/routes/newyorker/namespace.ts +6 -0
 - package/lib/routes/newyorker/news.ts +62 -0
 - package/lib/routes/newzmz/index.ts +96 -0
 - package/lib/routes/newzmz/namespace.ts +6 -0
 - package/lib/routes/newzmz/templates/description.art +59 -0
 - package/lib/routes/newzmz/util.ts +163 -0
 - package/lib/routes/nextapple/namespace.ts +6 -0
 - package/lib/routes/nextapple/realtime.ts +77 -0
 - package/lib/routes/nextjs/blog.ts +63 -0
 - package/lib/routes/nextjs/namespace.ts +6 -0
 - package/lib/routes/nga/forum.ts +92 -0
 - package/lib/routes/nga/namespace.ts +6 -0
 - package/lib/routes/nga/post.ts +141 -0
 - package/lib/routes/ngocn2/index.ts +85 -0
 - package/lib/routes/ngocn2/namespace.ts +6 -0
 - package/lib/routes/nhentai/index.ts +56 -0
 - package/lib/routes/nhentai/namespace.ts +7 -0
 - package/lib/routes/nhentai/search.ts +47 -0
 - package/lib/routes/nhentai/templates/desc.art +4 -0
 - package/lib/routes/nhentai/util.ts +146 -0
 - package/lib/routes/nhk/namespace.ts +6 -0
 - package/lib/routes/nhk/news-web-easy.ts +78 -0
 - package/lib/routes/nhk/news.ts +81 -0
 - package/lib/routes/nhk/templates/news.art +5 -0
 - package/lib/routes/nhk/templates/news_web_easy.art +7 -0
 - package/lib/routes/niaogebiji/cat.ts +79 -0
 - package/lib/routes/niaogebiji/index.ts +57 -0
 - package/lib/routes/niaogebiji/namespace.ts +6 -0
 - package/lib/routes/niaogebiji/today.ts +60 -0
 - package/lib/routes/nifd/namespace.ts +6 -0
 - package/lib/routes/nifd/research.ts +75 -0
 - package/lib/routes/nikkei/asia/index.ts +70 -0
 - package/lib/routes/nikkei/cn/index.ts +137 -0
 - package/lib/routes/nikkei/index.ts +46 -0
 - package/lib/routes/nikkei/namespace.ts +6 -0
 - package/lib/routes/nikkei/news.ts +111 -0
 - package/lib/routes/nikkei/templates/news.art +4 -0
 - package/lib/routes/nintendo/direct.ts +59 -0
 - package/lib/routes/nintendo/eshop-cn.ts +60 -0
 - package/lib/routes/nintendo/eshop-hk.ts +97 -0
 - package/lib/routes/nintendo/eshop-jp.ts +51 -0
 - package/lib/routes/nintendo/eshop-us.ts +49 -0
 - package/lib/routes/nintendo/namespace.ts +6 -0
 - package/lib/routes/nintendo/news-china.ts +62 -0
 - package/lib/routes/nintendo/news.ts +49 -0
 - package/lib/routes/nintendo/system-update.ts +63 -0
 - package/lib/routes/nintendo/templates/direct.art +6 -0
 - package/lib/routes/nintendo/templates/eshop_cn.art +21 -0
 - package/lib/routes/nintendo/templates/eshop_hk.art +61 -0
 - package/lib/routes/nintendo/templates/eshop_jp.art +3 -0
 - package/lib/routes/nintendo/templates/eshop_us.art +24 -0
 - package/lib/routes/nintendo/utils.ts +166 -0
 - package/lib/routes/nippon/index.ts +59 -0
 - package/lib/routes/nippon/namespace.ts +6 -0
 - package/lib/routes/njglyy/namespace.ts +6 -0
 - package/lib/routes/njglyy/utils/index.ts +49 -0
 - package/lib/routes/njglyy/ygbjypx.ts +43 -0
 - package/lib/routes/njit/jwc.ts +129 -0
 - package/lib/routes/njit/namespace.ts +6 -0
 - package/lib/routes/njit/tzgg.ts +100 -0
 - package/lib/routes/njnu/ceai/ceai.ts +67 -0
 - package/lib/routes/njnu/ceai/utils.ts +53 -0
 - package/lib/routes/njnu/jwc/jwc.ts +66 -0
 - package/lib/routes/njnu/jwc/utils.ts +57 -0
 - package/lib/routes/njnu/namespace.ts +6 -0
 - package/lib/routes/nju/admission.ts +64 -0
 - package/lib/routes/nju/dafls.ts +62 -0
 - package/lib/routes/nju/exchangesys.ts +68 -0
 - package/lib/routes/nju/gra.ts +64 -0
 - package/lib/routes/nju/hosptial.ts +64 -0
 - package/lib/routes/nju/hqjt.ts +62 -0
 - package/lib/routes/nju/itsc.ts +69 -0
 - package/lib/routes/nju/jjc.ts +65 -0
 - package/lib/routes/nju/jw.ts +88 -0
 - package/lib/routes/nju/namespace.ts +6 -0
 - package/lib/routes/nju/rczp.ts +76 -0
 - package/lib/routes/nju/scit.ts +58 -0
 - package/lib/routes/nju/zbb.ts +101 -0
 - package/lib/routes/nju/zcc.ts +63 -0
 - package/lib/routes/njucm/grabs.ts +43 -0
 - package/lib/routes/njucm/namespace.ts +6 -0
 - package/lib/routes/njucm/utils/index.ts +46 -0
 - package/lib/routes/njuferret/blog.ts +41 -0
 - package/lib/routes/njuferret/namespace.ts +10 -0
 - package/lib/routes/njupt/jwc.ts +113 -0
 - package/lib/routes/njupt/namespace.ts +6 -0
 - package/lib/routes/njust/cwc.ts +62 -0
 - package/lib/routes/njust/dgxg.ts +63 -0
 - package/lib/routes/njust/eo.ts +83 -0
 - package/lib/routes/njust/eoe.ts +62 -0
 - package/lib/routes/njust/gs.ts +69 -0
 - package/lib/routes/njust/jwc.ts +64 -0
 - package/lib/routes/njust/namespace.ts +6 -0
 - package/lib/routes/njust/utils.ts +35 -0
 - package/lib/routes/njxzc/home.ts +51 -0
 - package/lib/routes/njxzc/lib.ts +51 -0
 - package/lib/routes/njxzc/namespace.ts +6 -0
 - package/lib/routes/njxzc/utils/index.ts +65 -0
 - package/lib/routes/nlc/namespace.ts +6 -0
 - package/lib/routes/nlc/read.ts +95 -0
 - package/lib/routes/nlc/templates/description.art +17 -0
 - package/lib/routes/nltimes/namespace.ts +6 -0
 - package/lib/routes/nltimes/news.ts +118 -0
 - package/lib/routes/nmc/namespace.ts +6 -0
 - package/lib/routes/nmc/weatheralarm.ts +75 -0
 - package/lib/routes/nmtv/column.ts +78 -0
 - package/lib/routes/nmtv/namespace.ts +6 -0
 - package/lib/routes/nmtv/templates/description.art +9 -0
 - package/lib/routes/nodejs/blog.ts +100 -0
 - package/lib/routes/nodejs/namespace.ts +6 -0
 - package/lib/routes/nogizaka46/blog.ts +103 -0
 - package/lib/routes/nogizaka46/namespace.ts +6 -0
 - package/lib/routes/nogizaka46/news.ts +58 -0
 - package/lib/routes/nosec/index.ts +100 -0
 - package/lib/routes/nosec/namespace.ts +6 -0
 - package/lib/routes/notateslaapp/namespace.ts +6 -0
 - package/lib/routes/notateslaapp/update.ts +61 -0
 - package/lib/routes/notefolio/namespace.ts +6 -0
 - package/lib/routes/notefolio/search.ts +192 -0
 - package/lib/routes/notefolio/templates/search.art +9 -0
 - package/lib/routes/notion/database.ts +206 -0
 - package/lib/routes/notion/namespace.ts +13 -0
 - package/lib/routes/notion/release.ts +81 -0
 - package/lib/routes/now/namespace.ts +6 -0
 - package/lib/routes/now/news.ts +104 -0
 - package/lib/routes/nowcoder/discuss.ts +80 -0
 - package/lib/routes/nowcoder/experience.ts +80 -0
 - package/lib/routes/nowcoder/jobcenter.ts +103 -0
 - package/lib/routes/nowcoder/namespace.ts +6 -0
 - package/lib/routes/nowcoder/recommend.ts +45 -0
 - package/lib/routes/nowcoder/schedule.ts +58 -0
 - package/lib/routes/npm/namespace.ts +6 -0
 - package/lib/routes/npm/package.ts +61 -0
 - package/lib/routes/npm/templates/package.art +10 -0
 - package/lib/routes/npr/full.ts +108 -0
 - package/lib/routes/npr/namespace.ts +6 -0
 - package/lib/routes/ntdm/namespace.ts +6 -0
 - package/lib/routes/ntdm/utils.ts +3 -0
 - package/lib/routes/ntdm/video.ts +57 -0
 - package/lib/routes/ntdtv/channel.ts +72 -0
 - package/lib/routes/ntdtv/namespace.ts +6 -0
 - package/lib/routes/nua/dc.ts +96 -0
 - package/lib/routes/nua/gra.ts +50 -0
 - package/lib/routes/nua/index.ts +50 -0
 - package/lib/routes/nua/lib.ts +70 -0
 - package/lib/routes/nua/namespace.ts +6 -0
 - package/lib/routes/nua/sxw.ts +53 -0
 - package/lib/routes/nua/utils.ts +73 -0
 - package/lib/routes/nuaa/college/cae.ts +88 -0
 - package/lib/routes/nuaa/college/cs.ts +101 -0
 - package/lib/routes/nuaa/jwc/jwc.ts +99 -0
 - package/lib/routes/nuaa/namespace.ts +6 -0
 - package/lib/routes/nuaa/utils/pypasswaf.ts +23 -0
 - package/lib/routes/nuaa/yjsy/yjsy.ts +97 -0
 - package/lib/routes/nudt/namespace.ts +6 -0
 - package/lib/routes/nudt/yjszs.ts +68 -0
 - package/lib/routes/nuist/bulletin.ts +97 -0
 - package/lib/routes/nuist/cas.ts +94 -0
 - package/lib/routes/nuist/jwc.ts +66 -0
 - package/lib/routes/nuist/library/lib.ts +58 -0
 - package/lib/routes/nuist/namespace.ts +19 -0
 - package/lib/routes/nuist/scs.ts +78 -0
 - package/lib/routes/nuist/sese.ts +68 -0
 - package/lib/routes/nuist/xgc.ts +75 -0
 - package/lib/routes/nuist/yjs.ts +70 -0
 - package/lib/routes/nwafu/all.ts +68 -0
 - package/lib/routes/nwafu/namespace.ts +6 -0
 - package/lib/routes/nwafu/utils.ts +33 -0
 - package/lib/routes/nyaa/main.ts +63 -0
 - package/lib/routes/nyaa/namespace.ts +16 -0
 - package/lib/routes/nymity/censorbib.ts +51 -0
 - package/lib/routes/nymity/namespace.ts +6 -0
 - package/lib/routes/nytimes/book.ts +110 -0
 - package/lib/routes/nytimes/daily-briefing-chinese.ts +98 -0
 - package/lib/routes/nytimes/index.ts +155 -0
 - package/lib/routes/nytimes/namespace.ts +6 -0
 - package/lib/routes/nytimes/templates/image.art +3 -0
 - package/lib/routes/nytimes/utils.ts +111 -0
 - package/lib/routes/oceanengine/arithmetic-index.ts +159 -0
 - package/lib/routes/oceanengine/namespace.ts +6 -0
 - package/lib/routes/oceanengine/templates/content.art +14 -0
 - package/lib/routes/odaily/activity.ts +78 -0
 - package/lib/routes/odaily/namespace.ts +6 -0
 - package/lib/routes/odaily/newsflash.ts +51 -0
 - package/lib/routes/odaily/post.ts +92 -0
 - package/lib/routes/odaily/search-news.ts +50 -0
 - package/lib/routes/odaily/user.ts +83 -0
 - package/lib/routes/odaily/utils.ts +3 -0
 - package/lib/routes/oeeee/app/channel.ts +48 -0
 - package/lib/routes/oeeee/app/reporter.ts +54 -0
 - package/lib/routes/oeeee/namespace.ts +6 -0
 - package/lib/routes/oeeee/templates/description.art +7 -0
 - package/lib/routes/oeeee/utils.ts +39 -0
 - package/lib/routes/oeeee/web.ts +61 -0
 - package/lib/routes/oilchem/index.ts +93 -0
 - package/lib/routes/oilchem/namespace.ts +6 -0
 - package/lib/routes/oilchem/routes.ts +671 -0
 - package/lib/routes/olevod/namespace.ts +6 -0
 - package/lib/routes/olevod/vod.ts +49 -0
 - package/lib/routes/olevod/vodlist.ts +48 -0
 - package/lib/routes/ollama/blog.ts +39 -0
 - package/lib/routes/ollama/models.ts +42 -0
 - package/lib/routes/ollama/namespace.ts +6 -0
 - package/lib/routes/oncc/index.ts +111 -0
 - package/lib/routes/oncc/money18.ts +141 -0
 - package/lib/routes/oncc/namespace.ts +6 -0
 - package/lib/routes/oncc/templates/money18.art +6 -0
 - package/lib/routes/onehu/common.ts +36 -0
 - package/lib/routes/onehu/namespace.ts +6 -0
 - package/lib/routes/onet/namespace.ts +6 -0
 - package/lib/routes/onet/news.ts +86 -0
 - package/lib/routes/onet/templates/article.art +5 -0
 - package/lib/routes/onet/templates/image.art +9 -0
 - package/lib/routes/onet/utils.ts +51 -0
 - package/lib/routes/oo-software/changelog.ts +65 -0
 - package/lib/routes/oo-software/namespace.ts +6 -0
 - package/lib/routes/openai/blog.ts +66 -0
 - package/lib/routes/openai/chatgpt.ts +119 -0
 - package/lib/routes/openai/common.ts +73 -0
 - package/lib/routes/openai/namespace.ts +6 -0
 - package/lib/routes/openai/research.ts +51 -0
 - package/lib/routes/openai/templates/article.art +2 -0
 - package/lib/routes/openwrt/namespace.ts +6 -0
 - package/lib/routes/openwrt/releases.ts +39 -0
 - package/lib/routes/orcid/index.ts +74 -0
 - package/lib/routes/orcid/namespace.ts +6 -0
 - package/lib/routes/orcid/templates/description.art +3 -0
 - package/lib/routes/oreno3d/get-sec-page-data.ts +75 -0
 - package/lib/routes/oreno3d/main.ts +183 -0
 - package/lib/routes/oreno3d/namespace.ts +9 -0
 - package/lib/routes/oreno3d/templates/description.art +13 -0
 - package/lib/routes/oschina/namespace.ts +6 -0
 - package/lib/routes/oschina/news.ts +139 -0
 - package/lib/routes/oschina/topic.ts +78 -0
 - package/lib/routes/oschina/user.ts +75 -0
 - package/lib/routes/oshwhub/explore.ts +145 -0
 - package/lib/routes/oshwhub/namespace.ts +6 -0
 - package/lib/routes/oshwhub/templates/description.art +58 -0
 - package/lib/routes/osu/beatmaps/packs.ts +54 -0
 - package/lib/routes/osu/namespace.ts +6 -0
 - package/lib/routes/otobanana/cast.ts +54 -0
 - package/lib/routes/otobanana/livestream.ts +54 -0
 - package/lib/routes/otobanana/namespace.ts +6 -0
 - package/lib/routes/otobanana/templates/description.art +11 -0
 - package/lib/routes/otobanana/timeline.ts +54 -0
 - package/lib/routes/otobanana/utils.ts +63 -0
 - package/lib/routes/ouc/hqsz.ts +90 -0
 - package/lib/routes/ouc/it-postgraduate.ts +52 -0
 - package/lib/routes/ouc/it-tx.ts +74 -0
 - package/lib/routes/ouc/it.ts +73 -0
 - package/lib/routes/ouc/jwc.ts +65 -0
 - package/lib/routes/ouc/jwgl.ts +71 -0
 - package/lib/routes/ouc/namespace.ts +6 -0
 - package/lib/routes/ouc/yjs.ts +52 -0
 - package/lib/routes/oup/index.ts +84 -0
 - package/lib/routes/oup/namespace.ts +6 -0
 - package/lib/routes/outagereport/index.ts +71 -0
 - package/lib/routes/outagereport/namespace.ts +6 -0
 - package/lib/routes/p-articles/contributors.ts +53 -0
 - package/lib/routes/p-articles/namespace.ts +13 -0
 - package/lib/routes/p-articles/section.ts +60 -0
 - package/lib/routes/p-articles/utils.ts +21 -0
 - package/lib/routes/panewslab/author.ts +74 -0
 - package/lib/routes/panewslab/namespace.ts +6 -0
 - package/lib/routes/panewslab/news.ts +44 -0
 - package/lib/routes/panewslab/profundity.ts +83 -0
 - package/lib/routes/panewslab/topic.ts +74 -0
 - package/lib/routes/papers/index.ts +128 -0
 - package/lib/routes/papers/namespace.ts +8 -0
 - package/lib/routes/papers/templates/description.art +15 -0
 - package/lib/routes/paradigm/namespace.ts +6 -0
 - package/lib/routes/paradigm/writing.ts +70 -0
 - package/lib/routes/parliament/namespace.ts +6 -0
 - package/lib/routes/parliament/section77.ts +190 -0
 - package/lib/routes/patagonia/namespace.ts +6 -0
 - package/lib/routes/patagonia/new-arrivals.ts +86 -0
 - package/lib/routes/patagonia/templates/product-description.art +4 -0
 - package/lib/routes/paulgraham/article.ts +88 -0
 - package/lib/routes/paulgraham/namespace.ts +6 -0
 - package/lib/routes/penguin-random-house/articles.ts +52 -0
 - package/lib/routes/penguin-random-house/namespace.ts +6 -0
 - package/lib/routes/penguin-random-house/templates/articleHeader.art +5 -0
 - package/lib/routes/penguin-random-house/templates/book.art +4 -0
 - package/lib/routes/penguin-random-house/thereaddown.ts +52 -0
 - package/lib/routes/penguin-random-house/utils.ts +119 -0
 - package/lib/routes/people/index.ts +90 -0
 - package/lib/routes/people/liuyan.ts +83 -0
 - package/lib/routes/people/namespace.ts +6 -0
 - package/lib/routes/people/xjpjh.ts +95 -0
 - package/lib/routes/peopo/namespace.ts +6 -0
 - package/lib/routes/peopo/topic.ts +91 -0
 - package/lib/routes/phoronix/index.ts +264 -0
 - package/lib/routes/phoronix/namespace.ts +6 -0
 - package/lib/routes/pianyivps/namespace.ts +6 -0
 - package/lib/routes/pianyivps/rss.ts +35 -0
 - package/lib/routes/pianyuan/app.ts +69 -0
 - package/lib/routes/pianyuan/namespace.ts +6 -0
 - package/lib/routes/pianyuan/search.ts +61 -0
 - package/lib/routes/pianyuan/utils.ts +86 -0
 - package/lib/routes/picnob/namespace.ts +6 -0
 - package/lib/routes/picnob/templates/desc.art +13 -0
 - package/lib/routes/picnob/user.ts +130 -0
 - package/lib/routes/picnob/utils.ts +18 -0
 - package/lib/routes/picuki/namespace.ts +6 -0
 - package/lib/routes/picuki/profile.ts +215 -0
 - package/lib/routes/picuki/templates/post.art +7 -0
 - package/lib/routes/picuki/templates/video.art +5 -0
 - package/lib/routes/picuki/utils.ts +24 -0
 - package/lib/routes/pikabu/community.ts +45 -0
 - package/lib/routes/pikabu/namespace.ts +6 -0
 - package/lib/routes/pikabu/templates/video.art +8 -0
 - package/lib/routes/pikabu/user.ts +70 -0
 - package/lib/routes/pikabu/utils.ts +42 -0
 - package/lib/routes/pincong/hot.ts +48 -0
 - package/lib/routes/pincong/index.ts +57 -0
 - package/lib/routes/pincong/namespace.ts +6 -0
 - package/lib/routes/pincong/topic.ts +39 -0
 - package/lib/routes/pincong/utils.ts +21 -0
 - package/lib/routes/pingwest/namespace.ts +6 -0
 - package/lib/routes/pingwest/status.ts +72 -0
 - package/lib/routes/pingwest/tag.ts +76 -0
 - package/lib/routes/pingwest/user.ts +94 -0
 - package/lib/routes/pingwest/utils.ts +89 -0
 - package/lib/routes/pixabay/namespace.ts +6 -0
 - package/lib/routes/pixabay/search.ts +85 -0
 - package/lib/routes/pixabay/templates/img.art +1 -0
 - package/lib/routes/pixiv/api/get-bookmarks.ts +23 -0
 - package/lib/routes/pixiv/api/get-illust-follows.ts +20 -0
 - package/lib/routes/pixiv/api/get-illusts.ts +22 -0
 - package/lib/routes/pixiv/api/get-ranking.ts +30 -0
 - package/lib/routes/pixiv/api/get-user-detail.ts +27 -0
 - package/lib/routes/pixiv/api/search-illust.ts +24 -0
 - package/lib/routes/pixiv/api/search-popular-illust.ts +23 -0
 - package/lib/routes/pixiv/bookmarks.ts +66 -0
 - package/lib/routes/pixiv/constants.ts +8 -0
 - package/lib/routes/pixiv/illustfollow.ts +70 -0
 - package/lib/routes/pixiv/namespace.ts +6 -0
 - package/lib/routes/pixiv/novels.ts +71 -0
 - package/lib/routes/pixiv/pixiv-got.ts +65 -0
 - package/lib/routes/pixiv/ranking.ts +184 -0
 - package/lib/routes/pixiv/search.ts +121 -0
 - package/lib/routes/pixiv/token.ts +77 -0
 - package/lib/routes/pixiv/user.ts +67 -0
 - package/lib/routes/pixiv/utils.ts +17 -0
 - package/lib/routes/piyao/jrpy.ts +65 -0
 - package/lib/routes/piyao/namespace.ts +6 -0
 - package/lib/routes/pkmer/namespace.ts +6 -0
 - package/lib/routes/pkmer/recent.ts +61 -0
 - package/lib/routes/pku/bbs/hot.ts +85 -0
 - package/lib/routes/pku/cls/announcement.ts +68 -0
 - package/lib/routes/pku/cls/lecture.ts +50 -0
 - package/lib/routes/pku/eecs.ts +73 -0
 - package/lib/routes/pku/hr.ts +85 -0
 - package/lib/routes/pku/namespace.ts +6 -0
 - package/lib/routes/pku/nsd.ts +95 -0
 - package/lib/routes/pku/pkuyjs.ts +54 -0
 - package/lib/routes/pku/rccp/mzyt.ts +48 -0
 - package/lib/routes/pku/scc/recruit.ts +80 -0
 - package/lib/routes/pku/ss/admission.ts +41 -0
 - package/lib/routes/pku/ss/common.ts +33 -0
 - package/lib/routes/pku/ss/notice.ts +30 -0
 - package/lib/routes/pku/ss/pg-admin.ts +41 -0
 - package/lib/routes/pku/utils.ts +13 -0
 - package/lib/routes/playno1/av.ts +68 -0
 - package/lib/routes/playno1/namespace.ts +6 -0
 - package/lib/routes/playno1/st.ts +65 -0
 - package/lib/routes/playno1/utils.ts +29 -0
 - package/lib/routes/playpcesor/namespace.ts +6 -0
 - package/lib/routes/playpcesor/rss.ts +48 -0
 - package/lib/routes/plurk/anonymous.ts +49 -0
 - package/lib/routes/plurk/hotlinks.ts +46 -0
 - package/lib/routes/plurk/namespace.ts +6 -0
 - package/lib/routes/plurk/news.ts +50 -0
 - package/lib/routes/plurk/search.ts +47 -0
 - package/lib/routes/plurk/top.ts +57 -0
 - package/lib/routes/plurk/topic.ts +58 -0
 - package/lib/routes/plurk/user.ts +51 -0
 - package/lib/routes/plurk/utils.ts +52 -0
 - package/lib/routes/pnas/index.ts +121 -0
 - package/lib/routes/pnas/namespace.ts +6 -0
 - package/lib/routes/pnas/templates/article.art +8 -0
 - package/lib/routes/podwise/collections.ts +46 -0
 - package/lib/routes/podwise/episodes.ts +119 -0
 - package/lib/routes/podwise/namespace.ts +9 -0
 - package/lib/routes/pornhub/category-url.ts +52 -0
 - package/lib/routes/pornhub/category.ts +64 -0
 - package/lib/routes/pornhub/model.ts +55 -0
 - package/lib/routes/pornhub/namespace.ts +6 -0
 - package/lib/routes/pornhub/pornstar.ts +60 -0
 - package/lib/routes/pornhub/search.ts +42 -0
 - package/lib/routes/pornhub/templates/description.art +11 -0
 - package/lib/routes/pornhub/users.ts +56 -0
 - package/lib/routes/pornhub/utils.ts +33 -0
 - package/lib/routes/postman/namespace.ts +6 -0
 - package/lib/routes/postman/release-notes.ts +53 -0
 - package/lib/routes/priconne-redive/namespace.ts +6 -0
 - package/lib/routes/priconne-redive/news.ts +181 -0
 - package/lib/routes/producthunt/namespace.ts +7 -0
 - package/lib/routes/producthunt/templates/descImg.art +5 -0
 - package/lib/routes/producthunt/today.ts +73 -0
 - package/lib/routes/ps/monthly-games.ts +60 -0
 - package/lib/routes/ps/namespace.ts +6 -0
 - package/lib/routes/ps/templates/monthly-games.art +1 -0
 - package/lib/routes/ps/trophy.ts +105 -0
 - package/lib/routes/psyche/namespace.ts +6 -0
 - package/lib/routes/psyche/templates/essay.art +3 -0
 - package/lib/routes/psyche/templates/video.art +10 -0
 - package/lib/routes/psyche/topic.ts +46 -0
 - package/lib/routes/psyche/type.ts +53 -0
 - package/lib/routes/psyche/utils.ts +107 -0
 - package/lib/routes/pts/curations.ts +72 -0
 - package/lib/routes/pts/index.ts +81 -0
 - package/lib/routes/pts/live.ts +77 -0
 - package/lib/routes/pts/namespace.ts +6 -0
 - package/lib/routes/pts/projects.ts +72 -0
 - package/lib/routes/pts/templates/description.art +6 -0
 - package/lib/routes/pts/templates/live.art +6 -0
 - package/lib/routes/pubmed/namespace.ts +6 -0
 - package/lib/routes/pubmed/templates/description.art +7 -0
 - package/lib/routes/pubmed/trending.ts +70 -0
 - package/lib/routes/pubscholar/explore.ts +62 -0
 - package/lib/routes/pubscholar/namespace.ts +7 -0
 - package/lib/routes/pubscholar/types.ts +41 -0
 - package/lib/routes/pubscholar/utils.ts +44 -0
 - package/lib/routes/pumc/mdadmission.ts +88 -0
 - package/lib/routes/pumc/namespace.ts +6 -0
 - package/lib/routes/putty/changes.ts +61 -0
 - package/lib/routes/putty/namespace.ts +6 -0
 - package/lib/routes/pwc/namespace.ts +6 -0
 - package/lib/routes/pwc/sustainability.ts +88 -0
 - package/lib/routes/qbitai/category.ts +54 -0
 - package/lib/routes/qbitai/namespace.ts +6 -0
 - package/lib/routes/qbitai/tag.ts +51 -0
 - package/lib/routes/qbittorrent/namespace.ts +6 -0
 - package/lib/routes/qbittorrent/news.ts +82 -0
 - package/lib/routes/qdu/houqin.ts +89 -0
 - package/lib/routes/qdu/jwc.ts +78 -0
 - package/lib/routes/qdu/namespace.ts +6 -0
 - package/lib/routes/qianp/namespace.ts +6 -0
 - package/lib/routes/qianp/news.ts +66 -0
 - package/lib/routes/qianp/utils.ts +17 -0
 - package/lib/routes/qianzhan/column.ts +73 -0
 - package/lib/routes/qianzhan/namespace.ts +6 -0
 - package/lib/routes/qianzhan/rank.ts +70 -0
 - package/lib/routes/qidian/author.ts +68 -0
 - package/lib/routes/qidian/chapter.ts +58 -0
 - package/lib/routes/qidian/forum.ts +62 -0
 - package/lib/routes/qidian/free-next.ts +68 -0
 - package/lib/routes/qidian/free.ts +71 -0
 - package/lib/routes/qidian/namespace.ts +6 -0
 - package/lib/routes/qidian/templates/description.art +5 -0
 - package/lib/routes/qingting/channel.ts +52 -0
 - package/lib/routes/qingting/namespace.ts +6 -0
 - package/lib/routes/qingting/podcast.ts +125 -0
 - package/lib/routes/qipamaijia/index.ts +58 -0
 - package/lib/routes/qipamaijia/namespace.ts +6 -0
 - package/lib/routes/qiyoujiage/namespace.ts +6 -0
 - package/lib/routes/qiyoujiage/price.ts +36 -0
 - package/lib/routes/qlu/namespace.ts +6 -0
 - package/lib/routes/qlu/notice.ts +75 -0
 - package/lib/routes/qm120/namespace.ts +6 -0
 - package/lib/routes/qm120/news.ts +87 -0
 - package/lib/routes/qoo-app/apps/card.ts +57 -0
 - package/lib/routes/qoo-app/apps/comment.ts +68 -0
 - package/lib/routes/qoo-app/apps/note.ts +67 -0
 - package/lib/routes/qoo-app/apps/post.ts +71 -0
 - package/lib/routes/qoo-app/namespace.ts +6 -0
 - package/lib/routes/qoo-app/news.ts +63 -0
 - package/lib/routes/qoo-app/notes/note.ts +65 -0
 - package/lib/routes/qoo-app/notes/topic.ts +28 -0
 - package/lib/routes/qoo-app/notes/user.ts +39 -0
 - package/lib/routes/qoo-app/templates/comment.art +3 -0
 - package/lib/routes/qoo-app/templates/note.art +5 -0
 - package/lib/routes/qoo-app/user/app-comment.ts +63 -0
 - package/lib/routes/qoo-app/utils.ts +48 -0
 - package/lib/routes/qq/ac/comic.ts +57 -0
 - package/lib/routes/qq/ac/rank.ts +51 -0
 - package/lib/routes/qq/ac/utils.ts +72 -0
 - package/lib/routes/qq/cfhd/index.ts +140 -0
 - package/lib/routes/qq/fact/index.ts +90 -0
 - package/lib/routes/qq/kg/cache.ts +29 -0
 - package/lib/routes/qq/kg/reply.ts +40 -0
 - package/lib/routes/qq/kg/user.ts +69 -0
 - package/lib/routes/qq/namespace.ts +8 -0
 - package/lib/routes/qq/templates/article.art +19 -0
 - package/lib/routes/qq88/index.ts +83 -0
 - package/lib/routes/qq88/namespace.ts +6 -0
 - package/lib/routes/qqorw/index.ts +105 -0
 - package/lib/routes/qqorw/namespace.ts +6 -0
 - package/lib/routes/questmobile/namespace.ts +6 -0
 - package/lib/routes/questmobile/report.ts +260 -0
 - package/lib/routes/questmobile/templates/description.art +17 -0
 - package/lib/routes/quicker/namespace.ts +6 -0
 - package/lib/routes/quicker/qa.ts +104 -0
 - package/lib/routes/quicker/share.ts +93 -0
 - package/lib/routes/quicker/user.ts +85 -0
 - package/lib/routes/quicker/versions.ts +45 -0
 - package/lib/routes/qust/jw.ts +55 -0
 - package/lib/routes/qust/namespace.ts +6 -0
 - package/lib/routes/qweather/3days.ts +103 -0
 - package/lib/routes/qweather/namespace.ts +6 -0
 - package/lib/routes/qweather/now.ts +74 -0
 - package/lib/routes/qweather/templates/3days.art +22 -0
 - package/lib/routes/qweather/templates/now.art +16 -0
 - package/lib/routes/radio/album.ts +119 -0
 - package/lib/routes/radio/index.ts +86 -0
 - package/lib/routes/radio/namespace.ts +6 -0
 - package/lib/routes/radio/templates/description.art +8 -0
 - package/lib/routes/radio/zhibo.ts +109 -0
 - package/lib/routes/radio-canada/latest.ts +78 -0
 - package/lib/routes/radio-canada/namespace.ts +6 -0
 - package/lib/routes/rarehistoricalphotos/index.ts +43 -0
 - package/lib/routes/rarehistoricalphotos/namespace.ts +6 -0
 - package/lib/routes/rattibha/namespace.ts +6 -0
 - package/lib/routes/rattibha/user.ts +70 -0
 - package/lib/routes/rawkuma/manga.ts +109 -0
 - package/lib/routes/rawkuma/namespace.ts +6 -0
 - package/lib/routes/rawkuma/templates/description.art +3 -0
 - package/lib/routes/raycast/changelog.ts +54 -0
 - package/lib/routes/raycast/namespace.ts +7 -0
 - package/lib/routes/react/blog.ts +57 -0
 - package/lib/routes/react/namespace.ts +6 -0
 - package/lib/routes/reactiflux/namespace.ts +7 -0
 - package/lib/routes/reactiflux/transcripts.ts +103 -0
 - package/lib/routes/reactnewsletter/namespace.ts +6 -0
 - package/lib/routes/reactnewsletter/reactnewsletter.ts +40 -0
 - package/lib/routes/readhub/daily.ts +72 -0
 - package/lib/routes/readhub/index.ts +88 -0
 - package/lib/routes/readhub/namespace.ts +6 -0
 - package/lib/routes/readhub/templates/description.art +40 -0
 - package/lib/routes/readhub/util.ts +67 -0
 - package/lib/routes/readwise/list.ts +152 -0
 - package/lib/routes/readwise/namespace.ts +6 -0
 - package/lib/routes/remnote/changelog.ts +57 -0
 - package/lib/routes/remnote/namespace.ts +6 -0
 - package/lib/routes/researchgate/namespace.ts +6 -0
 - package/lib/routes/researchgate/publications.ts +86 -0
 - package/lib/routes/reuters/common.ts +201 -0
 - package/lib/routes/reuters/investigates.ts +59 -0
 - package/lib/routes/reuters/namespace.ts +9 -0
 - package/lib/routes/reuters/templates/description.art +44 -0
 - package/lib/routes/rfa/index.ts +78 -0
 - package/lib/routes/rfa/namespace.ts +6 -0
 - package/lib/routes/rfi/namespace.ts +6 -0
 - package/lib/routes/rfi/news.ts +85 -0
 - package/lib/routes/right/forum.ts +85 -0
 - package/lib/routes/right/namespace.ts +6 -0
 - package/lib/routes/robots.txt.ts +13 -0
 - package/lib/routes/rodong/namespace.ts +6 -0
 - package/lib/routes/rodong/news.ts +75 -0
 - package/lib/routes/routledge/book-series.ts +95 -0
 - package/lib/routes/routledge/namespace.ts +6 -0
 - package/lib/routes/routledge/templates/description.art +7 -0
 - package/lib/routes/rsc/journal.ts +136 -0
 - package/lib/routes/rsc/namespace.ts +6 -0
 - package/lib/routes/rsc/templates/image.art +5 -0
 - package/lib/routes/rss3/index.ts +148 -0
 - package/lib/routes/rss3/namespace.ts +7 -0
 - package/lib/routes/rsshub/namespace.ts +6 -0
 - package/lib/routes/rsshub/referer-map.ts +14 -0
 - package/lib/routes/rsshub/routes.ts +105 -0
 - package/lib/routes/rsshub/transform/html.ts +119 -0
 - package/lib/routes/rsshub/transform/json.ts +113 -0
 - package/lib/routes/rsshub/transform/sitemap.ts +59 -0
 - package/lib/routes/ruancan/category.ts +34 -0
 - package/lib/routes/ruancan/index.ts +22 -0
 - package/lib/routes/ruancan/namespace.ts +6 -0
 - package/lib/routes/ruancan/search.ts +34 -0
 - package/lib/routes/ruancan/user.ts +22 -0
 - package/lib/routes/ruancan/utils.ts +68 -0
 - package/lib/routes/ruc/ai.ts +87 -0
 - package/lib/routes/ruc/hr.ts +89 -0
 - package/lib/routes/ruc/namespace.ts +9 -0
 - package/lib/routes/runtrail/namespace.ts +6 -0
 - package/lib/routes/runtrail/posts.ts +49 -0
 - package/lib/routes/rustcc/jobs.ts +64 -0
 - package/lib/routes/rustcc/namespace.ts +6 -0
 - package/lib/routes/rustcc/news.ts +55 -0
 - package/lib/routes/sakurazaka46/blog.ts +114 -0
 - package/lib/routes/sakurazaka46/namespace.ts +6 -0
 - package/lib/routes/sakurazaka46/news.ts +77 -0
 - package/lib/routes/samd/namespace.ts +6 -0
 - package/lib/routes/samd/news.ts +74 -0
 - package/lib/routes/samsung/namespace.ts +6 -0
 - package/lib/routes/samsung/research/blog.ts +75 -0
 - package/lib/routes/sara/index.ts +66 -0
 - package/lib/routes/sara/namespace.ts +6 -0
 - package/lib/routes/saraba1st/digest.ts +115 -0
 - package/lib/routes/saraba1st/namespace.ts +6 -0
 - package/lib/routes/saraba1st/templates/digest.art +5 -0
 - package/lib/routes/saraba1st/thread.ts +83 -0
 - package/lib/routes/sass/gs/index.ts +74 -0
 - package/lib/routes/sass/namespace.ts +6 -0
 - package/lib/routes/scau/namespace.ts +6 -0
 - package/lib/routes/scau/yjs.ts +52 -0
 - package/lib/routes/scau/yjsy.ts +52 -0
 - package/lib/routes/science/blogs.ts +96 -0
 - package/lib/routes/science/cover.ts +100 -0
 - package/lib/routes/science/current.ts +80 -0
 - package/lib/routes/science/early.ts +61 -0
 - package/lib/routes/science/namespace.ts +6 -0
 - package/lib/routes/science/templates/article.art +2 -0
 - package/lib/routes/science/templates/cover.art +2 -0
 - package/lib/routes/science/utils.ts +63 -0
 - package/lib/routes/sciencedirect/cf-email.ts +39 -0
 - package/lib/routes/sciencedirect/journal.ts +94 -0
 - package/lib/routes/sciencedirect/namespace.ts +6 -0
 - package/lib/routes/sciencenet/blog.ts +98 -0
 - package/lib/routes/sciencenet/namespace.ts +6 -0
 - package/lib/routes/sciencenet/user.ts +90 -0
 - package/lib/routes/scmp/coronavirus.ts +22 -0
 - package/lib/routes/scmp/index.ts +87 -0
 - package/lib/routes/scmp/namespace.ts +6 -0
 - package/lib/routes/scmp/topic.ts +91 -0
 - package/lib/routes/scmp/utils.ts +87 -0
 - package/lib/routes/scnu/announcements-router.ts +1 -0
 - package/lib/routes/scnu/cs/match.ts +61 -0
 - package/lib/routes/scnu/jw.ts +58 -0
 - package/lib/routes/scnu/library.ts +58 -0
 - package/lib/routes/scnu/namespace.ts +6 -0
 - package/lib/routes/scnu/news-router.ts +1 -0
 - package/lib/routes/scnu/physics-school-announcements-and-news.ts +95 -0
 - package/lib/routes/scnu/research-news-router.ts +1 -0
 - package/lib/routes/scnu/ss.ts +53 -0
 - package/lib/routes/scnu/yjs.ts +49 -0
 - package/lib/routes/sctv/namespace.ts +6 -0
 - package/lib/routes/sctv/programme.ts +156 -0
 - package/lib/routes/sctv/templates/description.art +3 -0
 - package/lib/routes/scut/jwc/news.ts +131 -0
 - package/lib/routes/scut/jwc/notice.ts +146 -0
 - package/lib/routes/scut/jwc/school.ts +144 -0
 - package/lib/routes/scut/namespace.ts +6 -0
 - package/lib/routes/scut/scet/notice.ts +50 -0
 - package/lib/routes/scut/seie/news-ccenter.ts +81 -0
 - package/lib/routes/scut/smae/notice.ts +77 -0
 - package/lib/routes/scut/yjs.ts +55 -0
 - package/lib/routes/scvtc/namespace.ts +6 -0
 - package/lib/routes/scvtc/xygg.ts +66 -0
 - package/lib/routes/sdu/cmse.ts +82 -0
 - package/lib/routes/sdu/cs.ts +80 -0
 - package/lib/routes/sdu/data.ts +110 -0
 - package/lib/routes/sdu/epe.ts +78 -0
 - package/lib/routes/sdu/extractor/index.ts +21 -0
 - package/lib/routes/sdu/extractor/sdrj.ts +23 -0
 - package/lib/routes/sdu/extractor/view.ts +23 -0
 - package/lib/routes/sdu/extractor/wh/jwc.ts +26 -0
 - package/lib/routes/sdu/extractor/wh/news.ts +23 -0
 - package/lib/routes/sdu/mech.ts +83 -0
 - package/lib/routes/sdu/namespace.ts +6 -0
 - package/lib/routes/sdu/sc.ts +84 -0
 - package/lib/routes/sdu/wh/jwc.ts +65 -0
 - package/lib/routes/sdu/wh/news.ts +61 -0
 - package/lib/routes/sdust/namespace.ts +6 -0
 - package/lib/routes/sdust/yjsy/zhaosheng.ts +81 -0
 - package/lib/routes/sdzk/index.ts +80 -0
 - package/lib/routes/sdzk/namespace.ts +6 -0
 - package/lib/routes/sec-in/index.ts +27 -0
 - package/lib/routes/sec-in/namespace.ts +6 -0
 - package/lib/routes/sec-wiki/namespace.ts +6 -0
 - package/lib/routes/sec-wiki/weekly.ts +35 -0
 - package/lib/routes/secrss/author.ts +55 -0
 - package/lib/routes/secrss/category.ts +57 -0
 - package/lib/routes/secrss/namespace.ts +6 -0
 - package/lib/routes/seekingalpha/index.ts +120 -0
 - package/lib/routes/seekingalpha/namespace.ts +6 -0
 - package/lib/routes/seekingalpha/templates/summary.art +4 -0
 - package/lib/routes/sega/maimaidx.ts +64 -0
 - package/lib/routes/sega/namespace.ts +6 -0
 - package/lib/routes/sega/pjsekai.ts +75 -0
 - package/lib/routes/segmentfault/blogs.ts +46 -0
 - package/lib/routes/segmentfault/channel.ts +59 -0
 - package/lib/routes/segmentfault/namespace.ts +6 -0
 - package/lib/routes/segmentfault/user.ts +48 -0
 - package/lib/routes/segmentfault/utils.ts +61 -0
 - package/lib/routes/sehuatang/index.ts +164 -0
 - package/lib/routes/sehuatang/namespace.ts +6 -0
 - package/lib/routes/sehuatang/user.ts +138 -0
 - package/lib/routes/sensortower/blog.ts +102 -0
 - package/lib/routes/sensortower/namespace.ts +6 -0
 - package/lib/routes/sensortower/templates/description.art +9 -0
 - package/lib/routes/setn/index.ts +138 -0
 - package/lib/routes/setn/namespace.ts +6 -0
 - package/lib/routes/seu/cse/index.ts +91 -0
 - package/lib/routes/seu/namespace.ts +6 -0
 - package/lib/routes/seu/radio/academic.ts +69 -0
 - package/lib/routes/seu/yjs.ts +63 -0
 - package/lib/routes/seu/yzb/index.ts +79 -0
 - package/lib/routes/sfacg/namespace.ts +6 -0
 - package/lib/routes/sfacg/novel-chapter.ts +76 -0
 - package/lib/routes/shcstheatre/namespace.ts +6 -0
 - package/lib/routes/shcstheatre/programs.ts +68 -0
 - package/lib/routes/shcstheatre/templates/description.art +65 -0
 - package/lib/routes/shiep/config.ts +61 -0
 - package/lib/routes/shiep/index.ts +121 -0
 - package/lib/routes/shiep/namespace.ts +6 -0
 - package/lib/routes/shiep/radar.ts +317 -0
 - package/lib/routes/shiep/templates/description.art +1 -0
 - package/lib/routes/shisu/en.ts +75 -0
 - package/lib/routes/shisu/namespace.ts +6 -0
 - package/lib/routes/shisu/news.ts +92 -0
 - package/lib/routes/shmeea/index.ts +80 -0
 - package/lib/routes/shmeea/namespace.ts +7 -0
 - package/lib/routes/shmeea/self-study.ts +87 -0
 - package/lib/routes/shmtu/jwc.ts +85 -0
 - package/lib/routes/shmtu/namespace.ts +6 -0
 - package/lib/routes/shmtu/portal.ts +112 -0
 - package/lib/routes/shmtu/templates/portal.art +30 -0
 - package/lib/routes/shmtu/www.ts +86 -0
 - package/lib/routes/shoac/namespace.ts +6 -0
 - package/lib/routes/shoac/recent-show.ts +101 -0
 - package/lib/routes/shoac/templates/detail.art +25 -0
 - package/lib/routes/shopback/namespace.ts +6 -0
 - package/lib/routes/shopback/store.ts +61 -0
 - package/lib/routes/shopify/apps/[handle].reviews.ts +78 -0
 - package/lib/routes/shopify/apps/const.ts +1 -0
 - package/lib/routes/shopify/apps/search.ts +82 -0
 - package/lib/routes/shopify/namespace.ts +6 -0
 - package/lib/routes/shoppingdesign/namespace.ts +6 -0
 - package/lib/routes/shoppingdesign/posts.ts +69 -0
 - package/lib/routes/showstart/artist.ts +43 -0
 - package/lib/routes/showstart/brand.ts +43 -0
 - package/lib/routes/showstart/const.ts +4 -0
 - package/lib/routes/showstart/event.ts +43 -0
 - package/lib/routes/showstart/namespace.ts +6 -0
 - package/lib/routes/showstart/search.ts +72 -0
 - package/lib/routes/showstart/service.ts +186 -0
 - package/lib/routes/showstart/site.ts +41 -0
 - package/lib/routes/showstart/utils.ts +87 -0
 - package/lib/routes/shu/index.ts +77 -0
 - package/lib/routes/shu/jwb.ts +63 -0
 - package/lib/routes/shu/namespace.ts +6 -0
 - package/lib/routes/shuiguopai/index.ts +105 -0
 - package/lib/routes/shuiguopai/namespace.ts +6 -0
 - package/lib/routes/shuiguopai/templates/description.art +8 -0
 - package/lib/routes/sicau/dky.ts +81 -0
 - package/lib/routes/sicau/jiaowu.ts +77 -0
 - package/lib/routes/sicau/jk.ts +210 -0
 - package/lib/routes/sicau/namespace.ts +6 -0
 - package/lib/routes/sicau/yan.ts +81 -0
 - package/lib/routes/sicau/zsjy.ts +82 -0
 - package/lib/routes/sigsac/ccs.ts +77 -0
 - package/lib/routes/sigsac/namespace.ts +6 -0
 - package/lib/routes/simpleinfo/index.ts +90 -0
 - package/lib/routes/simpleinfo/namespace.ts +6 -0
 - package/lib/routes/simpleinfo/templates/description.art +6 -0
 - package/lib/routes/sina/chuangshiji.ts +43 -0
 - package/lib/routes/sina/discovery.ts +55 -0
 - package/lib/routes/sina/finance/china.ts +55 -0
 - package/lib/routes/sina/finance/stock/usstock.ts +67 -0
 - package/lib/routes/sina/namespace.ts +6 -0
 - package/lib/routes/sina/rollnews.ts +54 -0
 - package/lib/routes/sina/sports.ts +52 -0
 - package/lib/routes/sina/templates/slide.art +3 -0
 - package/lib/routes/sina/templates/video.art +5 -0
 - package/lib/routes/sina/utils.ts +103 -0
 - package/lib/routes/sinchew/index.ts +88 -0
 - package/lib/routes/sinchew/namespace.ts +6 -0
 - package/lib/routes/sinchew/templates/images.art +4 -0
 - package/lib/routes/sis001/forum.ts +82 -0
 - package/lib/routes/sis001/namespace.ts +6 -0
 - package/lib/routes/sjtu/gs.ts +101 -0
 - package/lib/routes/sjtu/jwc.ts +139 -0
 - package/lib/routes/sjtu/namespace.ts +6 -0
 - package/lib/routes/sjtu/seiee/academic.ts +17 -0
 - package/lib/routes/sjtu/seiee/bjwb.ts +44 -0
 - package/lib/routes/sjtu/seiee/utils.ts +41 -0
 - package/lib/routes/sjtu/seiee/xsb.ts +52 -0
 - package/lib/routes/sjtu/templates/activity.art +6 -0
 - package/lib/routes/sjtu/tongqu/activity.ts +69 -0
 - package/lib/routes/sjtu/yzb/zkxx.ts +74 -0
 - package/lib/routes/sketis/isabelle-dev/blog/index.ts +77 -0
 - package/lib/routes/sketis/namespace.ts +6 -0
 - package/lib/routes/skysports/namespace.ts +6 -0
 - package/lib/routes/skysports/news.ts +75 -0
 - package/lib/routes/slowmist/namespace.ts +6 -0
 - package/lib/routes/slowmist/slowmist.ts +77 -0
 - package/lib/routes/smashingmagazine/category.ts +125 -0
 - package/lib/routes/smashingmagazine/namespace.ts +6 -0
 - package/lib/routes/smzdm/article.ts +68 -0
 - package/lib/routes/smzdm/baoliao.ts +68 -0
 - package/lib/routes/smzdm/haowen-fenlei.ts +80 -0
 - package/lib/routes/smzdm/haowen.ts +68 -0
 - package/lib/routes/smzdm/keyword.ts +62 -0
 - package/lib/routes/smzdm/namespace.ts +9 -0
 - package/lib/routes/smzdm/ranking.ts +252 -0
 - package/lib/routes/snowpeak/namespace.ts +6 -0
 - package/lib/routes/snowpeak/templates/new-arrivals.art +11 -0
 - package/lib/routes/snowpeak/us-new-arrivals.ts +73 -0
 - package/lib/routes/sobooks/date.ts +32 -0
 - package/lib/routes/sobooks/index.ts +42 -0
 - package/lib/routes/sobooks/namespace.ts +6 -0
 - package/lib/routes/sobooks/tag.ts +41 -0
 - package/lib/routes/sobooks/utils.ts +52 -0
 - package/lib/routes/sogou/doodles.ts +45 -0
 - package/lib/routes/sogou/namespace.ts +6 -0
 - package/lib/routes/sogou/search.ts +77 -0
 - package/lib/routes/sogou/templates/description.art +6 -0
 - package/lib/routes/sohu/mp.ts +210 -0
 - package/lib/routes/sohu/namespace.ts +6 -0
 - package/lib/routes/sohu/templates/video.art +7 -0
 - package/lib/routes/solidot/_article.ts +50 -0
 - package/lib/routes/solidot/main.ts +71 -0
 - package/lib/routes/solidot/namespace.ts +6 -0
 - package/lib/routes/sony/downloads.ts +75 -0
 - package/lib/routes/sony/namespace.ts +6 -0
 - package/lib/routes/sony/templates/software-description.art +4 -0
 - package/lib/routes/soundofhope/channel.ts +70 -0
 - package/lib/routes/soundofhope/namespace.ts +6 -0
 - package/lib/routes/sourceforge/index.ts +55 -0
 - package/lib/routes/sourceforge/namespace.ts +6 -0
 - package/lib/routes/southcn/namespace.ts +6 -0
 - package/lib/routes/southcn/nfapp/column.ts +75 -0
 - package/lib/routes/southcn/nfapp/reporter.ts +57 -0
 - package/lib/routes/southcn/nfapp/utils.ts +21 -0
 - package/lib/routes/southcn/templates/description.art +6 -0
 - package/lib/routes/spotify/artist.ts +69 -0
 - package/lib/routes/spotify/artists-top.ts +57 -0
 - package/lib/routes/spotify/namespace.ts +6 -0
 - package/lib/routes/spotify/playlist.ts +61 -0
 - package/lib/routes/spotify/saved.ts +68 -0
 - package/lib/routes/spotify/show.ts +72 -0
 - package/lib/routes/spotify/tracks-top.ts +57 -0
 - package/lib/routes/spotify/utils.ts +58 -0
 - package/lib/routes/springer/journal.ts +98 -0
 - package/lib/routes/springer/namespace.ts +6 -0
 - package/lib/routes/springer/templates/description.art +12 -0
 - package/lib/routes/sputniknews/index.ts +160 -0
 - package/lib/routes/sputniknews/namespace.ts +6 -0
 - package/lib/routes/sqmc/namespace.ts +6 -0
 - package/lib/routes/sqmc/www.ts +77 -0
 - package/lib/routes/sse/convert.ts +58 -0
 - package/lib/routes/sse/disclosure.ts +66 -0
 - package/lib/routes/sse/inquire.ts +73 -0
 - package/lib/routes/sse/lawandrules.ts +68 -0
 - package/lib/routes/sse/namespace.ts +6 -0
 - package/lib/routes/sse/renewal.ts +85 -0
 - package/lib/routes/sse/templates/inquire.art +7 -0
 - package/lib/routes/sse/templates/renewal.art +13 -0
 - package/lib/routes/ssm/namespace.ts +6 -0
 - package/lib/routes/ssm/news.ts +66 -0
 - package/lib/routes/sspai/activity.ts +108 -0
 - package/lib/routes/sspai/author.ts +89 -0
 - package/lib/routes/sspai/bookmarks.ts +65 -0
 - package/lib/routes/sspai/column.ts +87 -0
 - package/lib/routes/sspai/index.ts +69 -0
 - package/lib/routes/sspai/matrix.ts +70 -0
 - package/lib/routes/sspai/namespace.ts +6 -0
 - package/lib/routes/sspai/prime-community.ts +83 -0
 - package/lib/routes/sspai/series-update.ts +61 -0
 - package/lib/routes/sspai/series.ts +73 -0
 - package/lib/routes/sspai/shortcuts-gallery.ts +54 -0
 - package/lib/routes/sspai/tag.ts +73 -0
 - package/lib/routes/sspai/topic.ts +81 -0
 - package/lib/routes/sspai/topics.ts +64 -0
 - package/lib/routes/sspu/jwc.ts +58 -0
 - package/lib/routes/sspu/namespace.ts +6 -0
 - package/lib/routes/sspu/pe.ts +80 -0
 - package/lib/routes/startuplatte/index.ts +84 -0
 - package/lib/routes/startuplatte/namespace.ts +6 -0
 - package/lib/routes/stbu/jsjxy.ts +80 -0
 - package/lib/routes/stbu/namespace.ts +6 -0
 - package/lib/routes/stbu/xyxw.ts +78 -0
 - package/lib/routes/stcn/index.ts +119 -0
 - package/lib/routes/stcn/namespace.ts +6 -0
 - package/lib/routes/stdaily/digitalpaper.ts +148 -0
 - package/lib/routes/stdaily/namespace.ts +6 -0
 - package/lib/routes/stdaily/templates/description.art +16 -0
 - package/lib/routes/steam/appcommunityfeed.ts +92 -0
 - package/lib/routes/steam/namespace.ts +6 -0
 - package/lib/routes/steam/search.ts +64 -0
 - package/lib/routes/steam/sharefile-changelog.ts +65 -0
 - package/lib/routes/steam/templates/appcommunityfeed-description.art +4 -0
 - package/lib/routes/steam/templates/workshop-search-description.art +5 -0
 - package/lib/routes/steam/workshop-search.ts +109 -0
 - package/lib/routes/stheadline/namespace.ts +6 -0
 - package/lib/routes/stheadline/std/realtime.ts +57 -0
 - package/lib/routes/stockedge/daily-news.ts +55 -0
 - package/lib/routes/stockedge/namespace.ts +6 -0
 - package/lib/routes/stockedge/utils.ts +30 -0
 - package/lib/routes/storm/index.ts +91 -0
 - package/lib/routes/storm/namespace.ts +6 -0
 - package/lib/routes/storyfm/episodes.ts +92 -0
 - package/lib/routes/storyfm/index.ts +69 -0
 - package/lib/routes/storyfm/namespace.ts +6 -0
 - package/lib/routes/storyfm/templates/description.art +6 -0
 - package/lib/routes/stratechery/index.ts +28 -0
 - package/lib/routes/stratechery/namespace.ts +6 -0
 - package/lib/routes/stream-capital/namespace.ts +6 -0
 - package/lib/routes/stream-capital/search.ts +79 -0
 - package/lib/routes/stream-capital/types.ts +44 -0
 - package/lib/routes/stream-capital/utils.ts +18 -0
 - package/lib/routes/studygolang/go.ts +29 -0
 - package/lib/routes/studygolang/jobs.ts +24 -0
 - package/lib/routes/studygolang/namespace.ts +6 -0
 - package/lib/routes/studygolang/utils.ts +76 -0
 - package/lib/routes/studygolang/weekly.ts +24 -0
 - package/lib/routes/subhd/index.ts +88 -0
 - package/lib/routes/subhd/namespace.ts +6 -0
 - package/lib/routes/supchina/index.ts +83 -0
 - package/lib/routes/supchina/namespace.ts +6 -0
 - package/lib/routes/supchina/podcasts.ts +94 -0
 - package/lib/routes/surfshark/blog.ts +103 -0
 - package/lib/routes/surfshark/namespace.ts +6 -0
 - package/lib/routes/surfshark/templates/description.art +5 -0
 - package/lib/routes/sustainabilitymag/articles.ts +144 -0
 - package/lib/routes/sustainabilitymag/namespace.ts +6 -0
 - package/lib/routes/sustech/bidding.ts +59 -0
 - package/lib/routes/sustech/namespace.ts +6 -0
 - package/lib/routes/sustech/newshub-zh.ts +64 -0
 - package/lib/routes/sustech/yjs.ts +54 -0
 - package/lib/routes/swissinfo/index.ts +98 -0
 - package/lib/routes/swissinfo/namespace.ts +6 -0
 - package/lib/routes/swjtu/gsee/yjs.ts +76 -0
 - package/lib/routes/swjtu/jtys/yjs.ts +76 -0
 - package/lib/routes/swjtu/jwc.ts +93 -0
 - package/lib/routes/swjtu/jyzpxx.ts +54 -0
 - package/lib/routes/swjtu/namespace.ts +6 -0
 - package/lib/routes/swjtu/templates/job_desc.art +19 -0
 - package/lib/routes/swjtu/templates/job_detail.art +21 -0
 - package/lib/routes/swjtu/utils.ts +32 -0
 - package/lib/routes/swjtu/xg.ts +112 -0
 - package/lib/routes/swpu/bgw.ts +86 -0
 - package/lib/routes/swpu/cjxy.ts +83 -0
 - package/lib/routes/swpu/dean.ts +87 -0
 - package/lib/routes/swpu/dxy.ts +89 -0
 - package/lib/routes/swpu/is.ts +83 -0
 - package/lib/routes/swpu/namespace.ts +6 -0
 - package/lib/routes/swpu/scs.ts +86 -0
 - package/lib/routes/swpu/utils.ts +20 -0
 - package/lib/routes/syosetu/chapter.ts +87 -0
 - package/lib/routes/syosetu/namespace.ts +6 -0
 - package/lib/routes/sysu/cse.ts +128 -0
 - package/lib/routes/sysu/namespace.ts +6 -0
 - package/lib/routes/sysu/ygafz.ts +102 -0
 - package/lib/routes/szse/inquire.ts +80 -0
 - package/lib/routes/szse/namespace.ts +6 -0
 - package/lib/routes/szse/notice.ts +97 -0
 - package/lib/routes/szse/projectdynamic.ts +152 -0
 - package/lib/routes/szse/rule.ts +77 -0
 - package/lib/routes/szse/templates/description.art +19 -0
 - package/lib/routes/szse/templates/inquire.art +6 -0
 - package/lib/routes/szu/namespace.ts +6 -0
 - package/lib/routes/szu/yz/index.ts +74 -0
 - package/lib/routes/szu/yz/utils.ts +72 -0
 - package/lib/routes/t66y/index.ts +109 -0
 - package/lib/routes/t66y/namespace.ts +6 -0
 - package/lib/routes/t66y/post.ts +99 -0
 - package/lib/routes/t66y/utils.ts +57 -0
 - package/lib/routes/tableau/namespace.ts +6 -0
 - package/lib/routes/tableau/viz-of-the-day.ts +45 -0
 - package/lib/routes/taiwannews/hot.ts +79 -0
 - package/lib/routes/taiwannews/namespace.ts +6 -0
 - package/lib/routes/tangshufang/index.ts +95 -0
 - package/lib/routes/tangshufang/namespace.ts +6 -0
 - package/lib/routes/taobao/namespace.ts +6 -0
 - package/lib/routes/taobao/zhongchou.ts +71 -0
 - package/lib/routes/taoguba/blog.ts +109 -0
 - package/lib/routes/taoguba/index.ts +94 -0
 - package/lib/routes/taoguba/namespace.ts +6 -0
 - package/lib/routes/taptap/changelog.ts +71 -0
 - package/lib/routes/taptap/namespace.ts +10 -0
 - package/lib/routes/taptap/review.ts +166 -0
 - package/lib/routes/taptap/templates/imagePost.art +3 -0
 - package/lib/routes/taptap/templates/videoPost.art +3 -0
 - package/lib/routes/taptap/topic.ts +116 -0
 - package/lib/routes/taptap/utils.ts +50 -0
 - package/lib/routes/tass/namespace.ts +6 -0
 - package/lib/routes/tass/news.ts +87 -0
 - package/lib/routes/techcrunch/namespace.ts +6 -0
 - package/lib/routes/techcrunch/news.ts +57 -0
 - package/lib/routes/techcrunch/templates/description.art +7 -0
 - package/lib/routes/techflowpost/express.ts +47 -0
 - package/lib/routes/techflowpost/index.ts +45 -0
 - package/lib/routes/techflowpost/namespace.ts +6 -0
 - package/lib/routes/techpowerup/index.ts +85 -0
 - package/lib/routes/techpowerup/namespace.ts +6 -0
 - package/lib/routes/techpowerup/review.ts +96 -0
 - package/lib/routes/techpowerup/utils.ts +76 -0
 - package/lib/routes/telecompaper/namespace.ts +6 -0
 - package/lib/routes/telecompaper/news.ts +137 -0
 - package/lib/routes/telecompaper/search.ts +107 -0
 - package/lib/routes/telegram/blog.ts +61 -0
 - package/lib/routes/telegram/channel.ts +695 -0
 - package/lib/routes/telegram/namespace.ts +6 -0
 - package/lib/routes/telegram/stickerpack.ts +46 -0
 - package/lib/routes/telegram/tglib/channel.ts +159 -0
 - package/lib/routes/telegram/tglib/client.ts +189 -0
 - package/lib/routes/tencent/cloud/developer/column.ts +81 -0
 - package/lib/routes/tencent/namespace.ts +6 -0
 - package/lib/routes/tencent/news/author.ts +102 -0
 - package/lib/routes/tencent/news/coronavirus/data.ts +83 -0
 - package/lib/routes/tencent/news/coronavirus/total.ts +51 -0
 - package/lib/routes/tencent/news/coronavirus/utils.ts +15 -0
 - package/lib/routes/tencent/pvp/newsindex.ts +88 -0
 - package/lib/routes/tencent/qq/sdk/changelog.ts +76 -0
 - package/lib/routes/tencent/templates/coronavirus/chinaTotal.art +6 -0
 - package/lib/routes/tencent/templates/coronavirus/data.art +4 -0
 - package/lib/routes/tencent/templates/news/image.art +4 -0
 - package/lib/routes/tesla/cx.ts +218 -0
 - package/lib/routes/tesla/namespace.ts +6 -0
 - package/lib/routes/tesla/price/get-price.ts +23 -0
 - package/lib/routes/tesla/price/index.ts +66 -0
 - package/lib/routes/tesla/templates/description.art +140 -0
 - package/lib/routes/test/index.ts +410 -0
 - package/lib/routes/test/namespace.ts +5 -0
 - package/lib/routes/tfc-taiwan/common.ts +38 -0
 - package/lib/routes/tfc-taiwan/index.ts +17 -0
 - package/lib/routes/tfc-taiwan/namespace.ts +6 -0
 - package/lib/routes/tfc-taiwan/templates/article.art +7 -0
 - package/lib/routes/tfc-taiwan/topic.ts +17 -0
 - package/lib/routes/tfc-taiwan/utils.ts +55 -0
 - package/lib/routes/tgbus/list.ts +67 -0
 - package/lib/routes/tgbus/namespace.ts +6 -0
 - package/lib/routes/tgbus/utils.ts +19 -0
 - package/lib/routes/the/index.ts +210 -0
 - package/lib/routes/the/namespace.ts +8 -0
 - package/lib/routes/the/templates/description.art +27 -0
 - package/lib/routes/the/util.ts +307 -0
 - package/lib/routes/theatlantic/namespace.ts +6 -0
 - package/lib/routes/theatlantic/news.ts +61 -0
 - package/lib/routes/theatlantic/templates/article-description.art +19 -0
 - package/lib/routes/theatlantic/utils.ts +58 -0
 - package/lib/routes/theblockbeats/index.ts +107 -0
 - package/lib/routes/theblockbeats/namespace.ts +6 -0
 - package/lib/routes/theblockbeats/templates/description.art +5 -0
 - package/lib/routes/thecover/channel.ts +89 -0
 - package/lib/routes/thecover/namespace.ts +6 -0
 - package/lib/routes/thehindu/namespace.ts +6 -0
 - package/lib/routes/thehindu/topic.ts +82 -0
 - package/lib/routes/theinitium/author.ts +23 -0
 - package/lib/routes/theinitium/channel.ts +28 -0
 - package/lib/routes/theinitium/follow.ts +43 -0
 - package/lib/routes/theinitium/namespace.ts +11 -0
 - package/lib/routes/theinitium/tags.ts +23 -0
 - package/lib/routes/theinitium/utils.ts +167 -0
 - package/lib/routes/themoviedb/api-key.ts +24 -0
 - package/lib/routes/themoviedb/collection.ts +40 -0
 - package/lib/routes/themoviedb/episodes.ts +46 -0
 - package/lib/routes/themoviedb/namespace.ts +9 -0
 - package/lib/routes/themoviedb/seasons.ts +50 -0
 - package/lib/routes/themoviedb/sheet.ts +75 -0
 - package/lib/routes/themoviedb/templates/description.art +6 -0
 - package/lib/routes/themoviedb/trending.ts +43 -0
 - package/lib/routes/themoviedb/utils.ts +37 -0
 - package/lib/routes/thenewslens/index.ts +92 -0
 - package/lib/routes/thenewslens/namespace.ts +6 -0
 - package/lib/routes/thenewslens/templates/description.art +6 -0
 - package/lib/routes/thepaper/839studio/category.ts +54 -0
 - package/lib/routes/thepaper/839studio/studio.ts +41 -0
 - package/lib/routes/thepaper/channel.ts +60 -0
 - package/lib/routes/thepaper/factpaper.ts +91 -0
 - package/lib/routes/thepaper/featured.ts +43 -0
 - package/lib/routes/thepaper/list.ts +145 -0
 - package/lib/routes/thepaper/namespace.ts +7 -0
 - package/lib/routes/thepaper/sidebar.ts +39 -0
 - package/lib/routes/thepaper/templates/factpaper.art +12 -0
 - package/lib/routes/thepaper/templates/image_detail.art +6 -0
 - package/lib/routes/thepaper/templates/video_detail.art +13 -0
 - package/lib/routes/thepaper/utils.ts +88 -0
 - package/lib/routes/thepetcity/index.ts +69 -0
 - package/lib/routes/thepetcity/namespace.ts +6 -0
 - package/lib/routes/thepetcity/terms-map.ts +28 -0
 - package/lib/routes/theverge/index.ts +133 -0
 - package/lib/routes/theverge/namespace.ts +6 -0
 - package/lib/routes/thoughtco/index.ts +413 -0
 - package/lib/routes/thoughtco/namespace.ts +6 -0
 - package/lib/routes/thoughtco/templates/description.art +16 -0
 - package/lib/routes/thoughtworks/index.ts +71 -0
 - package/lib/routes/thoughtworks/namespace.ts +6 -0
 - package/lib/routes/threads/index.ts +110 -0
 - package/lib/routes/threads/namespace.ts +6 -0
 - package/lib/routes/threads/utils.ts +166 -0
 - package/lib/routes/thwiki/index.ts +58 -0
 - package/lib/routes/thwiki/namespace.ts +6 -0
 - package/lib/routes/tiktok/namespace.ts +6 -0
 - package/lib/routes/tiktok/templates/user.art +7 -0
 - package/lib/routes/tiktok/user.ts +90 -0
 - package/lib/routes/timednews/namespace.ts +6 -0
 - package/lib/routes/timednews/news.ts +127 -0
 - package/lib/routes/tingshuitz/changsha.ts +68 -0
 - package/lib/routes/tingshuitz/dalian.ts +54 -0
 - package/lib/routes/tingshuitz/dongguan.ts +53 -0
 - package/lib/routes/tingshuitz/guangzhou.ts +42 -0
 - package/lib/routes/tingshuitz/hangzhou.ts +59 -0
 - package/lib/routes/tingshuitz/namespace.ts +7 -0
 - package/lib/routes/tingshuitz/nanjing.ts +58 -0
 - package/lib/routes/tingshuitz/shenzhen.ts +58 -0
 - package/lib/routes/tingshuitz/templates/shenzhen.art +8 -0
 - package/lib/routes/tingshuitz/wuhan.ts +47 -0
 - package/lib/routes/tingshuitz/xian.ts +50 -0
 - package/lib/routes/tingshuitz/xiaoshan.ts +59 -0
 - package/lib/routes/tingshuitz/yangjiang.ts +54 -0
 - package/lib/routes/tingtingfm/namespace.ts +6 -0
 - package/lib/routes/tingtingfm/program.ts +132 -0
 - package/lib/routes/tingtingfm/templates/audio.art +5 -0
 - package/lib/routes/tingtingfm/utils.ts +29 -0
 - package/lib/routes/tisi/index.ts +58 -0
 - package/lib/routes/tisi/namespace.ts +6 -0
 - package/lib/routes/tju/cic/index.ts +132 -0
 - package/lib/routes/tju/namespace.ts +6 -0
 - package/lib/routes/tju/news/index.ts +150 -0
 - package/lib/routes/tju/oaa/index.ts +135 -0
 - package/lib/routes/tju/yzb/index.ts +140 -0
 - package/lib/routes/tokeninsight/blog.ts +78 -0
 - package/lib/routes/tokeninsight/bulletin.ts +70 -0
 - package/lib/routes/tokeninsight/namespace.ts +9 -0
 - package/lib/routes/tokeninsight/report.ts +83 -0
 - package/lib/routes/tongji/bks.ts +55 -0
 - package/lib/routes/tongji/namespace.ts +6 -0
 - package/lib/routes/tongji/sse/_article.ts +25 -0
 - package/lib/routes/tongji/sse/notice.ts +71 -0
 - package/lib/routes/tongji/yjs.ts +52 -0
 - package/lib/routes/tongli/namespace.ts +6 -0
 - package/lib/routes/tongli/news.ts +75 -0
 - package/lib/routes/toodaylab/index.ts +108 -0
 - package/lib/routes/toodaylab/namespace.ts +6 -0
 - package/lib/routes/tophub/index.ts +64 -0
 - package/lib/routes/tophub/list.ts +76 -0
 - package/lib/routes/tophub/namespace.ts +9 -0
 - package/lib/routes/tophub/templates/rank.art +22 -0
 - package/lib/routes/topys/index.ts +93 -0
 - package/lib/routes/topys/namespace.ts +6 -0
 - package/lib/routes/tradingview/blog.ts +115 -0
 - package/lib/routes/tradingview/desktop.ts +86 -0
 - package/lib/routes/tradingview/namespace.ts +6 -0
 - package/lib/routes/tradingview/pine.ts +68 -0
 - package/lib/routes/tradingview/templates/description.art +13 -0
 - package/lib/routes/transcriptforest/index.ts +135 -0
 - package/lib/routes/transcriptforest/namespace.ts +6 -0
 - package/lib/routes/transcriptforest/templates/description.art +23 -0
 - package/lib/routes/trending/all-trending.ts +228 -0
 - package/lib/routes/trending/namespace.ts +6 -0
 - package/lib/routes/trending/templates/content.art +25 -0
 - package/lib/routes/trendingpapers/namespace.ts +6 -0
 - package/lib/routes/trendingpapers/papers.ts +59 -0
 - package/lib/routes/tribalfootball/latest.ts +87 -0
 - package/lib/routes/tribalfootball/namespace.ts +6 -0
 - package/lib/routes/tribalfootball/templates/plus_header.art +6 -0
 - package/lib/routes/trow/namespace.ts +6 -0
 - package/lib/routes/trow/portal.ts +71 -0
 - package/lib/routes/tsdm39/bd.ts +101 -0
 - package/lib/routes/tsdm39/namespace.ts +7 -0
 - package/lib/routes/tsinghua/lib/zydt.ts +129 -0
 - package/lib/routes/tsinghua/namespace.ts +8 -0
 - package/lib/routes/ttv/index.ts +78 -0
 - package/lib/routes/ttv/namespace.ts +6 -0
 - package/lib/routes/tvb/namespace.ts +6 -0
 - package/lib/routes/tvb/news.ts +119 -0
 - package/lib/routes/tvb/templates/description.art +6 -0
 - package/lib/routes/tvtropes/featured.ts +98 -0
 - package/lib/routes/tvtropes/namespace.ts +6 -0
 - package/lib/routes/tvtropes/templates/description.art +23 -0
 - package/lib/routes/twitch/live.ts +107 -0
 - package/lib/routes/twitch/namespace.ts +6 -0
 - package/lib/routes/twitch/schedule.ts +101 -0
 - package/lib/routes/twitch/video.ts +100 -0
 - package/lib/routes/twitter/api/developer-api/search.ts +23 -0
 - package/lib/routes/twitter/api/developer-api/user.ts +38 -0
 - package/lib/routes/twitter/api/index.ts +42 -0
 - package/lib/routes/twitter/api/mobile-api/api.ts +286 -0
 - package/lib/routes/twitter/api/mobile-api/constants.ts +86 -0
 - package/lib/routes/twitter/api/mobile-api/login.ts +208 -0
 - package/lib/routes/twitter/api/mobile-api/token.ts +36 -0
 - package/lib/routes/twitter/api/web-api/api.ts +198 -0
 - package/lib/routes/twitter/api/web-api/constants.ts +112 -0
 - package/lib/routes/twitter/api/web-api/utils.ts +201 -0
 - package/lib/routes/twitter/home.ts +60 -0
 - package/lib/routes/twitter/keyword.ts +55 -0
 - package/lib/routes/twitter/likes.ts +46 -0
 - package/lib/routes/twitter/list.ts +57 -0
 - package/lib/routes/twitter/media.ts +62 -0
 - package/lib/routes/twitter/namespace.ts +47 -0
 - package/lib/routes/twitter/trends.ts +44 -0
 - package/lib/routes/twitter/tweet.ts +65 -0
 - package/lib/routes/twitter/user.ts +77 -0
 - package/lib/routes/twitter/utils.ts +498 -0
 - package/lib/routes/twreporter/category.ts +116 -0
 - package/lib/routes/twreporter/fetch-article.ts +110 -0
 - package/lib/routes/twreporter/namespace.ts +6 -0
 - package/lib/routes/twreporter/newest.ts +52 -0
 - package/lib/routes/twreporter/templates/image.art +3 -0
 - package/lib/routes/twreporter/templates/youtube.art +1 -0
 - package/lib/routes/txrjy/fornumtopic.ts +98 -0
 - package/lib/routes/txrjy/namespace.ts +6 -0
 - package/lib/routes/tynu/namespace.ts +6 -0
 - package/lib/routes/tynu/tynu.ts +55 -0
 - package/lib/routes/typora/changelog-dev.ts +57 -0
 - package/lib/routes/typora/changelog.ts +66 -0
 - package/lib/routes/typora/namespace.ts +6 -0
 - package/lib/routes/typst/namespace.ts +13 -0
 - package/lib/routes/typst/universe.ts +108 -0
 - package/lib/routes/u3c3/index.ts +93 -0
 - package/lib/routes/u3c3/namespace.ts +6 -0
 - package/lib/routes/u9a9/index.ts +83 -0
 - package/lib/routes/u9a9/namespace.ts +6 -0
 - package/lib/routes/uber/blog.ts +85 -0
 - package/lib/routes/uber/namespace.ts +6 -0
 - package/lib/routes/ucas/ai.ts +53 -0
 - package/lib/routes/ucas/index.ts +82 -0
 - package/lib/routes/ucas/namespace.ts +6 -0
 - package/lib/routes/ucas/rader.ts +47 -0
 - package/lib/routes/uchicago/current.ts +107 -0
 - package/lib/routes/uchicago/namespace.ts +6 -0
 - package/lib/routes/udn/breaking-news.ts +134 -0
 - package/lib/routes/udn/global/index.ts +91 -0
 - package/lib/routes/udn/global/tag.ts +78 -0
 - package/lib/routes/udn/namespace.ts +6 -0
 - package/lib/routes/udn/templates/figure.art +4 -0
 - package/lib/routes/uestc/auto.ts +71 -0
 - package/lib/routes/uestc/cqe.ts +91 -0
 - package/lib/routes/uestc/gr.ts +74 -0
 - package/lib/routes/uestc/jwc.ts +82 -0
 - package/lib/routes/uestc/namespace.ts +6 -0
 - package/lib/routes/uestc/news.ts +81 -0
 - package/lib/routes/uestc/scse.ts +116 -0
 - package/lib/routes/uestc/sice.ts +72 -0
 - package/lib/routes/uestc/sise.ts +111 -0
 - package/lib/routes/uibe/hr.ts +88 -0
 - package/lib/routes/uibe/namespace.ts +6 -0
 - package/lib/routes/ulapia/index.ts +69 -0
 - package/lib/routes/ulapia/namespace.ts +6 -0
 - package/lib/routes/ulapia/research.ts +64 -0
 - package/lib/routes/uniqlo/namespace.ts +6 -0
 - package/lib/routes/uniqlo/new.ts +81 -0
 - package/lib/routes/unraid/community-apps.ts +60 -0
 - package/lib/routes/unraid/namespace.ts +6 -0
 - package/lib/routes/unusualwhales/namespace.ts +6 -0
 - package/lib/routes/unusualwhales/news.ts +49 -0
 - package/lib/routes/upc/jsj.ts +100 -0
 - package/lib/routes/upc/jwc.ts +121 -0
 - package/lib/routes/upc/main.ts +95 -0
 - package/lib/routes/upc/namespace.ts +6 -0
 - package/lib/routes/upc/yjs.ts +53 -0
 - package/lib/routes/uptimerobot/namespace.ts +6 -0
 - package/lib/routes/uptimerobot/rss.ts +161 -0
 - package/lib/routes/uptimerobot/templates/rss.art +20 -0
 - package/lib/routes/uraaka-joshi/namespace.ts +6 -0
 - package/lib/routes/uraaka-joshi/uraaka-joshi-user.ts +132 -0
 - package/lib/routes/uraaka-joshi/uraaka-joshi.ts +105 -0
 - package/lib/routes/urbandictionary/namespace.ts +6 -0
 - package/lib/routes/urbandictionary/random.ts +52 -0
 - package/lib/routes/urbandictionary/templates/definition.art +11 -0
 - package/lib/routes/usenix/loginonline.ts +63 -0
 - package/lib/routes/usenix/namespace.ts +6 -0
 - package/lib/routes/usenix/usenix.ts +78 -0
 - package/lib/routes/usepanda/index.ts +48 -0
 - package/lib/routes/usepanda/namespace.ts +6 -0
 - package/lib/routes/ustb/namespace.ts +6 -0
 - package/lib/routes/ustb/tj/news.ts +83 -0
 - package/lib/routes/ustb/yjsy/news.ts +484 -0
 - package/lib/routes/ustb/yzxc/tzgg.ts +75 -0
 - package/lib/routes/ustc/eeis.ts +91 -0
 - package/lib/routes/ustc/gs.ts +90 -0
 - package/lib/routes/ustc/index.ts +108 -0
 - package/lib/routes/ustc/job.ts +223 -0
 - package/lib/routes/ustc/jwc.ts +86 -0
 - package/lib/routes/ustc/math.ts +94 -0
 - package/lib/routes/ustc/namespace.ts +6 -0
 - package/lib/routes/ustc/sist.ts +91 -0
 - package/lib/routes/usts/jwch.ts +76 -0
 - package/lib/routes/usts/namespace.ts +6 -0
 - package/lib/routes/utgd/category.ts +61 -0
 - package/lib/routes/utgd/namespace.ts +6 -0
 - package/lib/routes/utgd/templates/description.art +11 -0
 - package/lib/routes/utgd/timeline.ts +49 -0
 - package/lib/routes/utgd/topic.ts +65 -0
 - package/lib/routes/utgd/utils.ts +41 -0
 - package/lib/routes/uw/gix/news.ts +95 -0
 - package/lib/routes/uw/namespace.ts +6 -0
 - package/lib/routes/v1tx/index.ts +71 -0
 - package/lib/routes/v1tx/namespace.ts +6 -0
 - package/lib/routes/v2ex/namespace.ts +6 -0
 - package/lib/routes/v2ex/post.ts +59 -0
 - package/lib/routes/v2ex/tab.ts +77 -0
 - package/lib/routes/v2ex/topics.ts +65 -0
 - package/lib/routes/v2ex/xna.ts +55 -0
 - package/lib/routes/v2rayshare/index.ts +37 -0
 - package/lib/routes/v2rayshare/namespace.ts +6 -0
 - package/lib/routes/vcb-s/category.ts +83 -0
 - package/lib/routes/vcb-s/index.ts +57 -0
 - package/lib/routes/vcb-s/namespace.ts +6 -0
 - package/lib/routes/vcb-s/templates/post.art +9 -0
 - package/lib/routes/verfghbw/namespace.ts +6 -0
 - package/lib/routes/verfghbw/press.ts +84 -0
 - package/lib/routes/vice/namespace.ts +6 -0
 - package/lib/routes/vice/templates/article.art +19 -0
 - package/lib/routes/vice/topic.ts +103 -0
 - package/lib/routes/vimeo/category.ts +90 -0
 - package/lib/routes/vimeo/channel.ts +100 -0
 - package/lib/routes/vimeo/namespace.ts +6 -0
 - package/lib/routes/vimeo/templates/description.art +4 -0
 - package/lib/routes/vimeo/usr-videos.ts +104 -0
 - package/lib/routes/vocus/namespace.ts +6 -0
 - package/lib/routes/vocus/publication.ts +67 -0
 - package/lib/routes/vocus/user.ts +63 -0
 - package/lib/routes/vocus/utils.ts +46 -0
 - package/lib/routes/vom/featured.ts +79 -0
 - package/lib/routes/vom/namespace.ts +6 -0
 - package/lib/routes/wallhaven/index.ts +86 -0
 - package/lib/routes/wallhaven/namespace.ts +13 -0
 - package/lib/routes/wallpaperhub/index.ts +46 -0
 - package/lib/routes/wallpaperhub/namespace.ts +6 -0
 - package/lib/routes/wallpaperhub/templates/description.art +1 -0
 - package/lib/routes/wallstreetcn/hot.ts +82 -0
 - package/lib/routes/wallstreetcn/live.ts +80 -0
 - package/lib/routes/wallstreetcn/namespace.ts +6 -0
 - package/lib/routes/wallstreetcn/news.ts +103 -0
 - package/lib/routes/wallstreetcn/templates/description.art +11 -0
 - package/lib/routes/wanqu/namespace.ts +6 -0
 - package/lib/routes/wanqu/news.ts +52 -0
 - package/lib/routes/warthunder/namespace.ts +6 -0
 - package/lib/routes/warthunder/news.ts +79 -0
 - package/lib/routes/warthunder/templates/description.art +1 -0
 - package/lib/routes/watasuke/blog.ts +42 -0
 - package/lib/routes/watasuke/namespace.ts +7 -0
 - package/lib/routes/wdc/download.ts +56 -0
 - package/lib/routes/wdc/namespace.ts +6 -0
 - package/lib/routes/web/articles.ts +25 -0
 - package/lib/routes/web/blog.ts +25 -0
 - package/lib/routes/web/namespace.ts +6 -0
 - package/lib/routes/web/series.ts +32 -0
 - package/lib/routes/web/utils.ts +68 -0
 - package/lib/routes/web3caff/index.ts +73 -0
 - package/lib/routes/web3caff/namespace.ts +6 -0
 - package/lib/routes/wechat/_README +1 -0
 - package/lib/routes/wechat/announce.ts +58 -0
 - package/lib/routes/wechat/ce.ts +94 -0
 - package/lib/routes/wechat/data258.ts +148 -0
 - package/lib/routes/wechat/ershcimi.ts +52 -0
 - package/lib/routes/wechat/feeddd.ts +43 -0
 - package/lib/routes/wechat/mp.ts +81 -0
 - package/lib/routes/wechat/msgalbum.ts +61 -0
 - package/lib/routes/wechat/namespace.ts +9 -0
 - package/lib/routes/wechat/sogou.ts +77 -0
 - package/lib/routes/wechat/tgchannel.ts +185 -0
 - package/lib/routes/wechat/uread.ts +71 -0
 - package/lib/routes/wechat/wechat2rss.ts +47 -0
 - package/lib/routes/weekendhk/namespace.ts +6 -0
 - package/lib/routes/weekendhk/posts.ts +44 -0
 - package/lib/routes/weibo/friends.ts +163 -0
 - package/lib/routes/weibo/group.ts +119 -0
 - package/lib/routes/weibo/keyword.ts +70 -0
 - package/lib/routes/weibo/namespace.ts +41 -0
 - package/lib/routes/weibo/oasis/user.ts +46 -0
 - package/lib/routes/weibo/search/hot.ts +178 -0
 - package/lib/routes/weibo/search/template/digest.art +17 -0
 - package/lib/routes/weibo/super-index.ts +87 -0
 - package/lib/routes/weibo/timeline.ts +188 -0
 - package/lib/routes/weibo/user-bookmarks.ts +191 -0
 - package/lib/routes/weibo/user.ts +184 -0
 - package/lib/routes/weibo/utils.ts +498 -0
 - package/lib/routes/wellcee/namespace.ts +7 -0
 - package/lib/routes/wellcee/rent.ts +81 -0
 - package/lib/routes/wellcee/support-city.ts +46 -0
 - package/lib/routes/wellcee/templates/house.art +18 -0
 - package/lib/routes/wellcee/types.ts +58 -0
 - package/lib/routes/wellcee/utils.ts +45 -0
 - package/lib/routes/wenku8/chapter.ts +54 -0
 - package/lib/routes/wenku8/index.ts +60 -0
 - package/lib/routes/wenku8/namespace.ts +6 -0
 - package/lib/routes/wenku8/volume.ts +60 -0
 - package/lib/routes/wfdf/namespace.ts +6 -0
 - package/lib/routes/wfdf/news.ts +54 -0
 - package/lib/routes/wfu/jwc.ts +79 -0
 - package/lib/routes/wfu/namespace.ts +6 -0
 - package/lib/routes/wfu/news.ts +128 -0
 - package/lib/routes/whitehouse/briefing-room.ts +79 -0
 - package/lib/routes/whitehouse/namespace.ts +6 -0
 - package/lib/routes/whitehouse/ostp.ts +76 -0
 - package/lib/routes/who/namespace.ts +6 -0
 - package/lib/routes/who/news-room.ts +113 -0
 - package/lib/routes/who/news.ts +74 -0
 - package/lib/routes/who/speeches.ts +77 -0
 - package/lib/routes/whu/cs.ts +109 -0
 - package/lib/routes/whu/gs/index.ts +115 -0
 - package/lib/routes/whu/hyxt.ts +59 -0
 - package/lib/routes/whu/namespace.ts +6 -0
 - package/lib/routes/whu/news.ts +82 -0
 - package/lib/routes/whu/rsgis.ts +277 -0
 - package/lib/routes/whu/templates/description.art +39 -0
 - package/lib/routes/whu/util.ts +143 -0
 - package/lib/routes/wikinews/index.ts +68 -0
 - package/lib/routes/wikinews/namespace.ts +6 -0
 - package/lib/routes/winstall/namespace.ts +6 -0
 - package/lib/routes/winstall/templates/desc.art +5 -0
 - package/lib/routes/winstall/update.ts +71 -0
 - package/lib/routes/wired/namespace.ts +7 -0
 - package/lib/routes/wired/tag.ts +97 -0
 - package/lib/routes/wired/types.ts +81 -0
 - package/lib/routes/wise/namespace.ts +6 -0
 - package/lib/routes/wise/pair.ts +89 -0
 - package/lib/routes/wise/templates/description.art +17 -0
 - package/lib/routes/wizfile/index.ts +66 -0
 - package/lib/routes/wizfile/namespace.ts +6 -0
 - package/lib/routes/wmc-bj/namespace.ts +6 -0
 - package/lib/routes/wmc-bj/publish.ts +69 -0
 - package/lib/routes/wmc-bj/templates/description.art +5 -0
 - package/lib/routes/wmpvp/index.ts +69 -0
 - package/lib/routes/wmpvp/namespace.ts +6 -0
 - package/lib/routes/wnacg/category.ts +17 -0
 - package/lib/routes/wnacg/common.ts +111 -0
 - package/lib/routes/wnacg/index.ts +16 -0
 - package/lib/routes/wnacg/namespace.ts +6 -0
 - package/lib/routes/wnacg/tag.ts +17 -0
 - package/lib/routes/wnacg/templates/manga.art +9 -0
 - package/lib/routes/wordpress/index.ts +172 -0
 - package/lib/routes/wordpress/namespace.ts +8 -0
 - package/lib/routes/wordpress/util.ts +307 -0
 - package/lib/routes/worldjournal/index.ts +76 -0
 - package/lib/routes/worldjournal/namespace.ts +6 -0
 - package/lib/routes/worldofwarships/devblog.ts +76 -0
 - package/lib/routes/worldofwarships/namespace.ts +13 -0
 - package/lib/routes/woshipm/namespace.ts +6 -0
 - package/lib/routes/woshipm/popular.ts +63 -0
 - package/lib/routes/woshipm/user-article.ts +62 -0
 - package/lib/routes/woshipm/utils.ts +18 -0
 - package/lib/routes/woshipm/wen.ts +62 -0
 - package/lib/routes/wsj/namespace.ts +6 -0
 - package/lib/routes/wsj/news.ts +83 -0
 - package/lib/routes/wsj/templates/article-description.art +6 -0
 - package/lib/routes/wsj/utils.ts +124 -0
 - package/lib/routes/wsyu/namespace.ts +6 -0
 - package/lib/routes/wsyu/news.ts +108 -0
 - package/lib/routes/wtu/index.ts +59 -0
 - package/lib/routes/wtu/job.ts +108 -0
 - package/lib/routes/wtu/namespace.ts +6 -0
 - package/lib/routes/wyzxwk/article.ts +130 -0
 - package/lib/routes/wyzxwk/namespace.ts +6 -0
 - package/lib/routes/wzu/namespace.ts +6 -0
 - package/lib/routes/wzu/news.ts +93 -0
 - package/lib/routes/x-mol/namespace.ts +6 -0
 - package/lib/routes/x-mol/news.ts +93 -0
 - package/lib/routes/x-mol/paper.ts +93 -0
 - package/lib/routes/x-mol/templates/description.art +6 -0
 - package/lib/routes/x-mol/utils.ts +3 -0
 - package/lib/routes/x6d/index.ts +141 -0
 - package/lib/routes/x6d/namespace.ts +6 -0
 - package/lib/routes/xaufe/jiaowu.ts +92 -0
 - package/lib/routes/xaufe/namespace.ts +6 -0
 - package/lib/routes/xaut/index.ts +95 -0
 - package/lib/routes/xaut/jwc.ts +92 -0
 - package/lib/routes/xaut/namespace.ts +6 -0
 - package/lib/routes/xaut/rsc.ts +94 -0
 - package/lib/routes/xboxfan/namespace.ts +6 -0
 - package/lib/routes/xboxfan/news.ts +70 -0
 - package/lib/routes/xianbao/index.ts +142 -0
 - package/lib/routes/xianbao/namespace.ts +6 -0
 - package/lib/routes/xiaoheihe/add2cart.ts +63 -0
 - package/lib/routes/xiaoheihe/discount.ts +102 -0
 - package/lib/routes/xiaoheihe/namespace.ts +6 -0
 - package/lib/routes/xiaoheihe/news.ts +61 -0
 - package/lib/routes/xiaoheihe/user.ts +69 -0
 - package/lib/routes/xiaoheihe/util.ts +75 -0
 - package/lib/routes/xiaohongshu/board.ts +55 -0
 - package/lib/routes/xiaohongshu/namespace.ts +6 -0
 - package/lib/routes/xiaohongshu/notes.ts +31 -0
 - package/lib/routes/xiaohongshu/user.ts +64 -0
 - package/lib/routes/xiaohongshu/util.ts +197 -0
 - package/lib/routes/xiaomiyoupin/crowdfunding.ts +71 -0
 - package/lib/routes/xiaomiyoupin/latest.ts +40 -0
 - package/lib/routes/xiaomiyoupin/namespace.ts +6 -0
 - package/lib/routes/xiaomiyoupin/templates/goods.art +27 -0
 - package/lib/routes/xiaomiyoupin/utils.ts +21 -0
 - package/lib/routes/xiaote/index.ts +73 -0
 - package/lib/routes/xiaote/namespace.ts +6 -0
 - package/lib/routes/xiaoyuzhou/namespace.ts +6 -0
 - package/lib/routes/xiaoyuzhou/pickup.ts +112 -0
 - package/lib/routes/xiaoyuzhou/podcast.ts +62 -0
 - package/lib/routes/xiaozhuanlan/column.ts +78 -0
 - package/lib/routes/xiaozhuanlan/namespace.ts +6 -0
 - package/lib/routes/xidian/jwc.ts +77 -0
 - package/lib/routes/xidian/namespace.ts +6 -0
 - package/lib/routes/ximalaya/album.ts +260 -0
 - package/lib/routes/ximalaya/namespace.ts +6 -0
 - package/lib/routes/ximalaya/types.ts +68 -0
 - package/lib/routes/ximalaya/utils.ts +166 -0
 - package/lib/routes/xinhuanet/app.ts +109 -0
 - package/lib/routes/xinhuanet/namespace.ts +8 -0
 - package/lib/routes/xinpianchang/index.ts +44 -0
 - package/lib/routes/xinpianchang/namespace.ts +6 -0
 - package/lib/routes/xinpianchang/rank.ts +61 -0
 - package/lib/routes/xinpianchang/templates/description.art +13 -0
 - package/lib/routes/xinpianchang/util.ts +108 -0
 - package/lib/routes/xjtu/2yuan/news.ts +93 -0
 - package/lib/routes/xjtu/dean.ts +91 -0
 - package/lib/routes/xjtu/dyyy/index.ts +53 -0
 - package/lib/routes/xjtu/ee.ts +70 -0
 - package/lib/routes/xjtu/gs/tzgg.ts +65 -0
 - package/lib/routes/xjtu/international.ts +60 -0
 - package/lib/routes/xjtu/job.ts +109 -0
 - package/lib/routes/xjtu/namespace.ts +6 -0
 - package/lib/routes/xjtu/std.ts +84 -0
 - package/lib/routes/xjtu/templates/attachments.art +3 -0
 - package/lib/routes/xjtu/templates/std.art +4 -0
 - package/lib/routes/xkb/index.ts +86 -0
 - package/lib/routes/xkb/namespace.ts +6 -0
 - package/lib/routes/xkb/templates/description.art +3 -0
 - package/lib/routes/xmanhua/index.ts +88 -0
 - package/lib/routes/xmanhua/namespace.ts +6 -0
 - package/lib/routes/xmnn/epaper.ts +114 -0
 - package/lib/routes/xmnn/namespace.ts +6 -0
 - package/lib/routes/xmnn/news.ts +74 -0
 - package/lib/routes/xmut/jwc/bkjw.ts +71 -0
 - package/lib/routes/xmut/jwc/yjs.ts +60 -0
 - package/lib/routes/xmut/namespace.ts +6 -0
 - package/lib/routes/xsijishe/forum.ts +99 -0
 - package/lib/routes/xsijishe/namespace.ts +6 -0
 - package/lib/routes/xsijishe/rank.ts +101 -0
 - package/lib/routes/xueqiu/column.ts +66 -0
 - package/lib/routes/xueqiu/cookies.ts +15 -0
 - package/lib/routes/xueqiu/favorite.ts +57 -0
 - package/lib/routes/xueqiu/fund.ts +69 -0
 - package/lib/routes/xueqiu/hots.ts +67 -0
 - package/lib/routes/xueqiu/namespace.ts +6 -0
 - package/lib/routes/xueqiu/snb.ts +71 -0
 - package/lib/routes/xueqiu/stock-comments.ts +73 -0
 - package/lib/routes/xueqiu/stock-info.ts +98 -0
 - package/lib/routes/xueqiu/templates/comments_description.art +10 -0
 - package/lib/routes/xueqiu/timeline.ts +94 -0
 - package/lib/routes/xueqiu/today.ts +86 -0
 - package/lib/routes/xueqiu/user-stock.ts +78 -0
 - package/lib/routes/xueqiu/user.ts +101 -0
 - package/lib/routes/xunhupay/index.ts +49 -0
 - package/lib/routes/xunhupay/namespace.ts +6 -0
 - package/lib/routes/xys/namespace.ts +6 -0
 - package/lib/routes/xys/new.ts +103 -0
 - package/lib/routes/xys/templates/desc.art +3 -0
 - package/lib/routes/xyzrank/index.ts +129 -0
 - package/lib/routes/xyzrank/namespace.ts +13 -0
 - package/lib/routes/xyzrank/templates/description.art +12 -0
 - package/lib/routes/yahoo/namespace.ts +6 -0
 - package/lib/routes/yahoo/news/index.ts +149 -0
 - package/lib/routes/yahoo/news/listid.ts +67 -0
 - package/lib/routes/yahoo/news/provider-helper.ts +48 -0
 - package/lib/routes/yahoo/news/provider.ts +63 -0
 - package/lib/routes/yahoo/news/utils.ts +134 -0
 - package/lib/routes/yahoo/templates/youtube.art +1 -0
 - package/lib/routes/yamibo/bbs/forum.ts +116 -0
 - package/lib/routes/yamibo/bbs/thread.ts +84 -0
 - package/lib/routes/yamibo/namespace.ts +6 -0
 - package/lib/routes/yamibo/utils.ts +114 -0
 - package/lib/routes/yande/namespace.ts +7 -0
 - package/lib/routes/yande/post.ts +84 -0
 - package/lib/routes/yangtzeu/dongke.ts +70 -0
 - package/lib/routes/yangtzeu/namespace.ts +6 -0
 - package/lib/routes/ycwb/index.ts +116 -0
 - package/lib/routes/ycwb/namespace.ts +6 -0
 - package/lib/routes/ycwb/templates/description.art +7 -0
 - package/lib/routes/yenpress/namespace.ts +7 -0
 - package/lib/routes/yenpress/series.ts +115 -0
 - package/lib/routes/yenpress/templates/series.art +25 -0
 - package/lib/routes/ygkkk/namespace.ts +6 -0
 - package/lib/routes/ygkkk/rss.ts +48 -0
 - package/lib/routes/yicai/author.ts +52 -0
 - package/lib/routes/yicai/brief.ts +53 -0
 - package/lib/routes/yicai/dt.ts +174 -0
 - package/lib/routes/yicai/feed.ts +55 -0
 - package/lib/routes/yicai/headline.ts +39 -0
 - package/lib/routes/yicai/latest.ts +39 -0
 - package/lib/routes/yicai/namespace.ts +6 -0
 - package/lib/routes/yicai/news.ts +92 -0
 - package/lib/routes/yicai/templates/description.art +39 -0
 - package/lib/routes/yicai/utils.ts +59 -0
 - package/lib/routes/yicai/video.ts +102 -0
 - package/lib/routes/yicai/vip.ts +52 -0
 - package/lib/routes/ymgal/article.ts +84 -0
 - package/lib/routes/ymgal/game.ts +69 -0
 - package/lib/routes/ymgal/namespace.ts +6 -0
 - package/lib/routes/ymgal/templates/description.art +7 -0
 - package/lib/routes/yoasobi-music/info.ts +97 -0
 - package/lib/routes/yoasobi-music/jsonp-helper.ts +17 -0
 - package/lib/routes/yoasobi-music/live.ts +80 -0
 - package/lib/routes/yoasobi-music/media.ts +87 -0
 - package/lib/routes/yoasobi-music/namespace.ts +6 -0
 - package/lib/routes/yoasobi-music/templates/info.art +7 -0
 - package/lib/routes/yoasobi-music/templates/live.art +12 -0
 - package/lib/routes/yoasobi-music/templates/media.art +2 -0
 - package/lib/routes/yomiuri/namespace.ts +6 -0
 - package/lib/routes/yomiuri/news.ts +124 -0
 - package/lib/routes/yomujp/level.ts +127 -0
 - package/lib/routes/yomujp/namespace.ts +6 -0
 - package/lib/routes/youku/channel.ts +84 -0
 - package/lib/routes/youku/namespace.ts +6 -0
 - package/lib/routes/youtube/channel.ts +76 -0
 - package/lib/routes/youtube/charts.ts +151 -0
 - package/lib/routes/youtube/community.ts +70 -0
 - package/lib/routes/youtube/custom.ts +79 -0
 - package/lib/routes/youtube/live.ts +76 -0
 - package/lib/routes/youtube/namespace.ts +6 -0
 - package/lib/routes/youtube/playlist.ts +60 -0
 - package/lib/routes/youtube/subscriptions.ts +97 -0
 - package/lib/routes/youtube/templates/community.art +17 -0
 - package/lib/routes/youtube/templates/description.art +7 -0
 - package/lib/routes/youtube/user.ts +91 -0
 - package/lib/routes/youtube/utils.ts +168 -0
 - package/lib/routes/youzhiyouxing/materials.ts +86 -0
 - package/lib/routes/youzhiyouxing/namespace.ts +6 -0
 - package/lib/routes/yuque/book.ts +126 -0
 - package/lib/routes/yuque/namespace.ts +6 -0
 - package/lib/routes/yuque/utils.ts +79 -0
 - package/lib/routes/yxdown/namespace.ts +6 -0
 - package/lib/routes/yxdown/news.ts +80 -0
 - package/lib/routes/yxdown/recommend.ts +80 -0
 - package/lib/routes/yxdown/utils.ts +14 -0
 - package/lib/routes/yxdzqb/index.ts +84 -0
 - package/lib/routes/yxdzqb/namespace.ts +6 -0
 - package/lib/routes/yxrb/home.ts +90 -0
 - package/lib/routes/yxrb/namespace.ts +6 -0
 - package/lib/routes/yyets/article.ts +68 -0
 - package/lib/routes/yyets/namespace.ts +6 -0
 - package/lib/routes/yyets/today.ts +62 -0
 - package/lib/routes/yystv/category.ts +86 -0
 - package/lib/routes/yystv/docs.ts +59 -0
 - package/lib/routes/yystv/namespace.ts +6 -0
 - package/lib/routes/zagg/namespace.ts +6 -0
 - package/lib/routes/zagg/new-arrivals.ts +75 -0
 - package/lib/routes/zagg/templates/new-arrivals.art +3 -0
 - package/lib/routes/zaker/index.ts +80 -0
 - package/lib/routes/zaker/namespace.ts +6 -0
 - package/lib/routes/zaobao/interactive.ts +25 -0
 - package/lib/routes/zaobao/namespace.ts +9 -0
 - package/lib/routes/zaobao/other.ts +29 -0
 - package/lib/routes/zaobao/realtime.ts +59 -0
 - package/lib/routes/zaobao/util.ts +185 -0
 - package/lib/routes/zaobao/znews.ts +71 -0
 - package/lib/routes/zaozao/article.ts +64 -0
 - package/lib/routes/zaozao/namespace.ts +6 -0
 - package/lib/routes/zcmu/jwc/index.ts +63 -0
 - package/lib/routes/zcmu/namespace.ts +6 -0
 - package/lib/routes/zcmu/yxy/index.ts +64 -0
 - package/lib/routes/zcool/discover.ts +302 -0
 - package/lib/routes/zcool/locations.ts +6829 -0
 - package/lib/routes/zcool/namespace.ts +6 -0
 - package/lib/routes/zcool/templates/description.art +8 -0
 - package/lib/routes/zcool/templates/work.art +11 -0
 - package/lib/routes/zcool/top.ts +76 -0
 - package/lib/routes/zcool/user.ts +84 -0
 - package/lib/routes/zcool/utils.ts +14 -0
 - package/lib/routes/zhibo8/forum.ts +66 -0
 - package/lib/routes/zhibo8/luxiang.ts +52 -0
 - package/lib/routes/zhibo8/more.ts +104 -0
 - package/lib/routes/zhibo8/namespace.ts +6 -0
 - package/lib/routes/zhibo8/post.ts +68 -0
 - package/lib/routes/zhihu/activities.ts +156 -0
 - package/lib/routes/zhihu/answers.ts +92 -0
 - package/lib/routes/zhihu/bookstore/newest.ts +49 -0
 - package/lib/routes/zhihu/collection.ts +103 -0
 - package/lib/routes/zhihu/daily-section.ts +78 -0
 - package/lib/routes/zhihu/daily.ts +106 -0
 - package/lib/routes/zhihu/execlib/x-zse-96-v3.ts +125 -0
 - package/lib/routes/zhihu/hot.ts +109 -0
 - package/lib/routes/zhihu/namespace.ts +9 -0
 - package/lib/routes/zhihu/pin/daily.ts +44 -0
 - package/lib/routes/zhihu/pin/hotlist.ts +43 -0
 - package/lib/routes/zhihu/pin/people.ts +43 -0
 - package/lib/routes/zhihu/pin/utils.ts +68 -0
 - package/lib/routes/zhihu/posts.ts +87 -0
 - package/lib/routes/zhihu/question.ts +78 -0
 - package/lib/routes/zhihu/timeline.ts +147 -0
 - package/lib/routes/zhihu/topic.ts +117 -0
 - package/lib/routes/zhihu/types.ts +104 -0
 - package/lib/routes/zhihu/utils.ts +109 -0
 - package/lib/routes/zhihu/weekly.ts +56 -0
 - package/lib/routes/zhihu/xhu/activities.ts +162 -0
 - package/lib/routes/zhihu/xhu/answers.ts +56 -0
 - package/lib/routes/zhihu/xhu/auth.ts +31 -0
 - package/lib/routes/zhihu/xhu/collection.ts +100 -0
 - package/lib/routes/zhihu/xhu/posts.ts +53 -0
 - package/lib/routes/zhihu/xhu/question.ts +69 -0
 - package/lib/routes/zhihu/xhu/topic.ts +94 -0
 - package/lib/routes/zhihu/xhu/zhuanlan.ts +116 -0
 - package/lib/routes/zhihu/zhuanlan.ts +130 -0
 - package/lib/routes/zhitongcaijing/index.ts +157 -0
 - package/lib/routes/zhitongcaijing/namespace.ts +6 -0
 - package/lib/routes/zhitongcaijing/templates/description.art +6 -0
 - package/lib/routes/zhiy/letter.ts +58 -0
 - package/lib/routes/zhiy/namespace.ts +6 -0
 - package/lib/routes/zhiy/post.ts +97 -0
 - package/lib/routes/zhiy/templates/post.art +12 -0
 - package/lib/routes/zhiy/utils.ts +10 -0
 - package/lib/routes/zhonglun/index.ts +135 -0
 - package/lib/routes/zhonglun/namespace.ts +8 -0
 - package/lib/routes/zhonglun/templates/description.art +7 -0
 - package/lib/routes/zhubai/index.ts +56 -0
 - package/lib/routes/zhubai/namespace.ts +6 -0
 - package/lib/routes/zhubai/templates/description.art +59 -0
 - package/lib/routes/zhubai/top20.ts +95 -0
 - package/lib/routes/zhujiceping/namespace.ts +6 -0
 - package/lib/routes/zhujiceping/rss.ts +48 -0
 - package/lib/routes/zhuwang/index.ts +71 -0
 - package/lib/routes/zhuwang/namespace.ts +6 -0
 - package/lib/routes/zimuxia/index.ts +87 -0
 - package/lib/routes/zimuxia/namespace.ts +6 -0
 - package/lib/routes/zimuxia/portfolio.ts +79 -0
 - package/lib/routes/zjgtjy/index.ts +46 -0
 - package/lib/routes/zjgtjy/namespace.ts +6 -0
 - package/lib/routes/zjol/namespace.ts +6 -0
 - package/lib/routes/zjol/paper.ts +117 -0
 - package/lib/routes/zju/career/index.ts +65 -0
 - package/lib/routes/zju/cst/custom.ts +71 -0
 - package/lib/routes/zju/cst/index.ts +107 -0
 - package/lib/routes/zju/grs/index.ts +66 -0
 - package/lib/routes/zju/list.ts +82 -0
 - package/lib/routes/zju/namespace.ts +6 -0
 - package/lib/routes/zju/physics/index.ts +74 -0
 - package/lib/routes/zjut/da/index.ts +92 -0
 - package/lib/routes/zjut/namespace.ts +6 -0
 - package/lib/routes/zjut/news.ts +82 -0
 - package/lib/routes/zjuvag/blog.ts +52 -0
 - package/lib/routes/zjuvag/namespace.ts +6 -0
 - package/lib/routes/zodgame/forum.ts +121 -0
 - package/lib/routes/zodgame/namespace.ts +6 -0
 - package/lib/routes/zodgame/templates/forum.art +1 -0
 - package/lib/routes/zotero/namespace.ts +6 -0
 - package/lib/routes/zotero/versions.ts +57 -0
 - package/lib/routes/zrblog/namespace.ts +6 -0
 - package/lib/routes/zrblog/rss.ts +48 -0
 - package/lib/routes/zsxq/group.ts +63 -0
 - package/lib/routes/zsxq/namespace.ts +6 -0
 - package/lib/routes/zsxq/types.ts +149 -0
 - package/lib/routes/zsxq/user.ts +58 -0
 - package/lib/routes/zsxq/utils.ts +70 -0
 - package/lib/routes/zuel/namespace.ts +6 -0
 - package/lib/routes/zuel/notice.ts +78 -0
 - package/lib/routes/zuvio/boards.ts +34 -0
 - package/lib/routes/zuvio/namespace.ts +6 -0
 - package/lib/routes/zuvio/student5.ts +78 -0
 - package/lib/routes/zuvio/templates/img.art +2 -0
 - package/lib/routes/zuvio/templates/link.art +7 -0
 - package/lib/routes/zuvio/templates/ref_article.art +8 -0
 - package/lib/routes/zuvio/templates/rss.art +1 -0
 - package/lib/routes/zuvio/templates/youtube.art +2 -0
 - package/lib/routes/zuvio/utils.ts +72 -0
 - package/lib/routes/zyshow/index.ts +58 -0
 - package/lib/routes/zyshow/namespace.ts +6 -0
 - package/lib/routes/zyshow/templates/description.art +16 -0
 - package/lib/routes/zyw/hot.ts +88 -0
 - package/lib/routes/zyw/namespace.ts +6 -0
 - package/lib/routes-deprecated/10000link/news.js +59 -0
 - package/lib/routes-deprecated/12379/index.js +23 -0
 - package/lib/routes-deprecated/199it/category.js +10 -0
 - package/lib/routes-deprecated/199it/tag.js +10 -0
 - package/lib/routes-deprecated/199it/utils.js +44 -0
 - package/lib/routes-deprecated/21caijing/channel.js +76 -0
 - package/lib/routes-deprecated/60s-science/transcript.js +60 -0
 - package/lib/routes-deprecated/755/user.js +71 -0
 - package/lib/routes-deprecated/99percentinvisible/transcript.js +46 -0
 - package/lib/routes-deprecated/acm/amturingaward.js +68 -0
 - package/lib/routes-deprecated/acwifi/index.js +48 -0
 - package/lib/routes-deprecated/adquan/index.js +67 -0
 - package/lib/routes-deprecated/aiyanxishe/home.js +134 -0
 - package/lib/routes-deprecated/amazfitwatchfaces/search.js +7 -0
 - package/lib/routes-deprecated/amd/graphicsdrivers.js +114 -0
 - package/lib/routes-deprecated/aozora/newbook.js +93 -0
 - package/lib/routes-deprecated/appsales/index.js +66 -0
 - package/lib/routes-deprecated/archdaily/home.js +47 -0
 - package/lib/routes-deprecated/asahi/index.js +90 -0
 - package/lib/routes-deprecated/autotrader/index.js +69 -0
 - package/lib/routes-deprecated/avgle/videos.js +46 -0
 - package/lib/routes-deprecated/axis-studios/work.js +75 -0
 - package/lib/routes-deprecated/babykingdom/index.js +64 -0
 - package/lib/routes-deprecated/bahamut/creation-index.js +73 -0
 - package/lib/routes-deprecated/bahamut/utils.js +65 -0
 - package/lib/routes-deprecated/bandisoft/index.js +42 -0
 - package/lib/routes-deprecated/banyuetan/index.js +56 -0
 - package/lib/routes-deprecated/benedictevans/recent.js +41 -0
 - package/lib/routes-deprecated/bibgame/category.js +56 -0
 - package/lib/routes-deprecated/blogs/hedwig.js +42 -0
 - package/lib/routes-deprecated/blogs/wangyin.js +50 -0
 - package/lib/routes-deprecated/blow-studio/work.js +71 -0
 - package/lib/routes-deprecated/blur-studio/index.js +79 -0
 - package/lib/routes-deprecated/booth-pm/shop.js +58 -0
 - package/lib/routes-deprecated/ccg/index.js +49 -0
 - package/lib/routes-deprecated/cell/cell/index.js +113 -0
 - package/lib/routes-deprecated/cell/cover.js +106 -0
 - package/lib/routes-deprecated/cfan/news.js +49 -0
 - package/lib/routes-deprecated/cgtn/most.js +48 -0
 - package/lib/routes-deprecated/cgtn/opinions.js +50 -0
 - package/lib/routes-deprecated/chaoli/index.js +50 -0
 - package/lib/routes-deprecated/checkee/index.js +57 -0
 - package/lib/routes-deprecated/chicagotribune/index.js +77 -0
 - package/lib/routes-deprecated/chiphell/forum.js +67 -0
 - package/lib/routes-deprecated/chocolatey/software.js +55 -0
 - package/lib/routes-deprecated/chouti/top.js +28 -0
 - package/lib/routes-deprecated/chsi/zszcgd.js +51 -0
 - package/lib/routes-deprecated/citavi/index.js +52 -0
 - package/lib/routes-deprecated/cnu/discovery.js +59 -0
 - package/lib/routes-deprecated/cnu/selected.js +52 -0
 - package/lib/routes-deprecated/cnu/utils.js +28 -0
 - package/lib/routes-deprecated/cpython/index.js +30 -0
 - package/lib/routes-deprecated/csc/notice.js +99 -0
 - package/lib/routes-deprecated/daxiaamu/home.js +45 -0
 - package/lib/routes-deprecated/ddrk/index.js +32 -0
 - package/lib/routes-deprecated/ddrk/list.js +37 -0
 - package/lib/routes-deprecated/deepl/blog.js +34 -0
 - package/lib/routes-deprecated/dev.to/top.js +40 -0
 - package/lib/routes-deprecated/dgtle/index.js +57 -0
 - package/lib/routes-deprecated/dgtle/keyword.js +30 -0
 - package/lib/routes-deprecated/dgtle/trade.js +42 -0
 - package/lib/routes-deprecated/dida365/habit-checkins.js +84 -0
 - package/lib/routes-deprecated/digitaling/article.js +71 -0
 - package/lib/routes-deprecated/digitaling/index.js +42 -0
 - package/lib/routes-deprecated/digitaling/project.js +55 -0
 - package/lib/routes-deprecated/discuss/index.js +71 -0
 - package/lib/routes-deprecated/disqus/posts.js +53 -0
 - package/lib/routes-deprecated/dongmanmanhua/comic.js +45 -0
 - package/lib/routes-deprecated/duozhi/index.js +45 -0
 - package/lib/routes-deprecated/edrawsoft/mindmap.js +95 -0
 - package/lib/routes-deprecated/eeo/index.js +79 -0
 - package/lib/routes-deprecated/eleme/open/announce.js +32 -0
 - package/lib/routes-deprecated/emi-nitta/home.js +69 -0
 - package/lib/routes-deprecated/enclavebooks/category.js +76 -0
 - package/lib/routes-deprecated/enclavebooks/collection.js +44 -0
 - package/lib/routes-deprecated/enclavebooks/user.js +44 -0
 - package/lib/routes-deprecated/engadget/home.js +67 -0
 - package/lib/routes-deprecated/etherscan/transactions.js +37 -0
 - package/lib/routes-deprecated/everything/changes.js +33 -0
 - package/lib/routes-deprecated/fanfou/favorites.js +36 -0
 - package/lib/routes-deprecated/fanfou/home-timeline.js +32 -0
 - package/lib/routes-deprecated/fanfou/public-timeline.js +34 -0
 - package/lib/routes-deprecated/fanfou/user-timeline.js +35 -0
 - package/lib/routes-deprecated/fanfou/utils.js +40 -0
 - package/lib/routes-deprecated/fashionnetwork/headline.js +56 -0
 - package/lib/routes-deprecated/fashionnetwork/news.js +74 -0
 - package/lib/routes-deprecated/furaffinity/home.js +72 -0
 - package/lib/routes-deprecated/furaffinity/status.js +38 -0
 - package/lib/routes-deprecated/furaffinity/user.js +108 -0
 - package/lib/routes-deprecated/galaxylab/index.js +35 -0
 - package/lib/routes-deprecated/gamersky/ent.js +89 -0
 - package/lib/routes-deprecated/gaoqing/utils.js +57 -0
 - package/lib/routes-deprecated/gitlab/common.js +5 -0
 - package/lib/routes-deprecated/gitlab/explore.js +43 -0
 - package/lib/routes-deprecated/gitlab/release.js +35 -0
 - package/lib/routes-deprecated/gitlab/tag.js +35 -0
 - package/lib/routes-deprecated/go.jp/mofa/main.js +94 -0
 - package/lib/routes-deprecated/gocomics/index.js +64 -0
 - package/lib/routes-deprecated/gov/beijing/eea.js +92 -0
 - package/lib/routes-deprecated/gov/beijing/mhc.js +68 -0
 - package/lib/routes-deprecated/gov/chongqing/ljxq/zwgk.js +67 -0
 - package/lib/routes-deprecated/gov/city/nanjing/get-content.js +69 -0
 - package/lib/routes-deprecated/gov/city/nanjing/index.js +32 -0
 - package/lib/routes-deprecated/gov/cnca/hydt.js +54 -0
 - package/lib/routes-deprecated/gov/cnca/jgdt.js +54 -0
 - package/lib/routes-deprecated/gov/cnca/zxtz.js +63 -0
 - package/lib/routes-deprecated/gov/cppcc/index.js +48 -0
 - package/lib/routes-deprecated/gov/guangdong/edu.js +83 -0
 - package/lib/routes-deprecated/gov/guangdong/eea.js +59 -0
 - package/lib/routes-deprecated/gov/harbin/kjj.js +39 -0
 - package/lib/routes-deprecated/gov/hubei/hbsia.js +101 -0
 - package/lib/routes-deprecated/gov/hunan/notice.js +80 -0
 - package/lib/routes-deprecated/gov/mohrss/sbjm.js +59 -0
 - package/lib/routes-deprecated/gov/mohurd/policy.js +39 -0
 - package/lib/routes-deprecated/gov/ngd/index.js +51 -0
 - package/lib/routes-deprecated/gov/nppa/channels.js +58 -0
 - package/lib/routes-deprecated/gov/nppa/contents.js +38 -0
 - package/lib/routes-deprecated/gov/province/jiangsu/get-content.js +77 -0
 - package/lib/routes-deprecated/gov/province/jiangsu/index.js +66 -0
 - package/lib/routes-deprecated/gov/sapprft/7026.js +98 -0
 - package/lib/routes-deprecated/gov/shanghai/sthj.js +26 -0
 - package/lib/routes-deprecated/gov/taiwan/mnd.js +63 -0
 - package/lib/routes-deprecated/gov/veterans/china.js +76 -0
 - package/lib/routes-deprecated/gov/veterans/hebei.js +69 -0
 - package/lib/routes-deprecated/gov/wuhan/kjj.js +63 -0
 - package/lib/routes-deprecated/gov/wuhan/wehdz.js +63 -0
 - package/lib/routes-deprecated/gov/xinwen/tujie.js +75 -0
 - package/lib/routes-deprecated/guanggoo/index.js +81 -0
 - package/lib/routes-deprecated/guardian/guardian.js +45 -0
 - package/lib/routes-deprecated/guat/news.js +68 -0
 - package/lib/routes-deprecated/guet/news.js +95 -0
 - package/lib/routes-deprecated/gwern/category.js +58 -0
 - package/lib/routes-deprecated/hackerone/hacktivity.js +47 -0
 - package/lib/routes-deprecated/hackerone/search.js +48 -0
 - package/lib/routes-deprecated/haohaozhu/discover.js +42 -0
 - package/lib/routes-deprecated/haohaozhu/whole-house.js +75 -0
 - package/lib/routes-deprecated/hdx/explore.js +57 -0
 - package/lib/routes-deprecated/hentai-cosplays/utils.js +52 -0
 - package/lib/routes-deprecated/hentaimama/videos.js +32 -0
 - package/lib/routes-deprecated/hexo/fluid.js +49 -0
 - package/lib/routes-deprecated/hexo/next.js +49 -0
 - package/lib/routes-deprecated/hexo/yilia.js +34 -0
 - package/lib/routes-deprecated/hkej/index.js +138 -0
 - package/lib/routes-deprecated/huya/live.js +33 -0
 - package/lib/routes-deprecated/icourse163/newest.js +77 -0
 - package/lib/routes-deprecated/idownloadblog/index.js +51 -0
 - package/lib/routes-deprecated/ifanr/index.js +71 -0
 - package/lib/routes-deprecated/ifnews/column.js +76 -0
 - package/lib/routes-deprecated/im2maker/index.js +60 -0
 - package/lib/routes-deprecated/index.js +100 -0
 - package/lib/routes-deprecated/jpmorganchase/research.js +52 -0
 - package/lib/routes-deprecated/jx3/news.js +52 -0
 - package/lib/routes-deprecated/kaiyan/index.js +53 -0
 - package/lib/routes-deprecated/kongfz/shop.js +58 -0
 - package/lib/routes-deprecated/kuai/id.js +38 -0
 - package/lib/routes-deprecated/kuai/index.js +38 -0
 - package/lib/routes-deprecated/laosiji/feed.js +24 -0
 - package/lib/routes-deprecated/laosiji/hotshow.js +33 -0
 - package/lib/routes-deprecated/lastfm/loved.js +27 -0
 - package/lib/routes-deprecated/lastfm/recent.js +27 -0
 - package/lib/routes-deprecated/lastfm/top.js +27 -0
 - package/lib/routes-deprecated/law/dh.js +39 -0
 - package/lib/routes-deprecated/law/gf.js +41 -0
 - package/lib/routes-deprecated/law/hq.js +39 -0
 - package/lib/routes-deprecated/law/hw.js +39 -0
 - package/lib/routes-deprecated/law/jctd.js +41 -0
 - package/lib/routes-deprecated/law/jh.js +41 -0
 - package/lib/routes-deprecated/law/jtc.js +41 -0
 - package/lib/routes-deprecated/law/ts.js +41 -0
 - package/lib/routes-deprecated/law/zl.js +40 -0
 - package/lib/routes-deprecated/letterboxd/utils.js +140 -0
 - package/lib/routes-deprecated/lifetimes/index.js +99 -0
 - package/lib/routes-deprecated/liyuan-forums/threads.js +76 -0
 - package/lib/routes-deprecated/lizhi/user.js +46 -0
 - package/lib/routes-deprecated/lol/newsindex.js +87 -0
 - package/lib/routes-deprecated/lolapp/article.js +53 -0
 - package/lib/routes-deprecated/lwn/alerts.js +57 -0
 - package/lib/routes-deprecated/mafengwo/note.js +53 -0
 - package/lib/routes-deprecated/magireco/announcements.js +27 -0
 - package/lib/routes-deprecated/magireco/event-banner.js +35 -0
 - package/lib/routes-deprecated/maoyan/hot-complete.js +83 -0
 - package/lib/routes-deprecated/mcdonalds/news.js +53 -0
 - package/lib/routes-deprecated/mediadigest/category.js +130 -0
 - package/lib/routes-deprecated/meihua/article.js +54 -0
 - package/lib/routes-deprecated/meihua/shots.js +58 -0
 - package/lib/routes-deprecated/meituan/open/announce.js +45 -0
 - package/lib/routes-deprecated/method-studios/index.js +60 -0
 - package/lib/routes-deprecated/mhw/news.js +47 -0
 - package/lib/routes-deprecated/mhw/update.js +65 -0
 - package/lib/routes-deprecated/micmicidol/article.js +28 -0
 - package/lib/routes-deprecated/microsoft-store/updates.js +30 -0
 - package/lib/routes-deprecated/mihoyo/bh2.js +43 -0
 - package/lib/routes-deprecated/mihoyo/bh3.js +60 -0
 - package/lib/routes-deprecated/missevan/drama.js +40 -0
 - package/lib/routes-deprecated/missevan/latest.js +47 -0
 - package/lib/routes-deprecated/moxingfans/index.js +50 -0
 - package/lib/routes-deprecated/muchong/journal.js +52 -0
 - package/lib/routes-deprecated/netflix/newsroom.js +82 -0
 - package/lib/routes-deprecated/nobelprize/index.js +79 -0
 - package/lib/routes-deprecated/noi/index.js +40 -0
 - package/lib/routes-deprecated/noi/province-news.js +40 -0
 - package/lib/routes-deprecated/noi/rg-news.js +47 -0
 - package/lib/routes-deprecated/noi/winners-list.js +41 -0
 - package/lib/routes-deprecated/novel/biquge.js +66 -0
 - package/lib/routes-deprecated/novel/biqugeinfo.js +66 -0
 - package/lib/routes-deprecated/novel/uukanshu.js +39 -0
 - package/lib/routes-deprecated/one/index.js +48 -0
 - package/lib/routes-deprecated/owspace/read.js +141 -0
 - package/lib/routes-deprecated/paidai/utils.js +26 -0
 - package/lib/routes-deprecated/patchwork.kernel.org/comments.js +33 -0
 - package/lib/routes-deprecated/piapro/public.js +54 -0
 - package/lib/routes-deprecated/piapro/user.js +47 -0
 - package/lib/routes-deprecated/piapro/utils.js +45 -0
 - package/lib/routes-deprecated/pmcaff/feed.js +51 -0
 - package/lib/routes-deprecated/pmcaff/list.js +67 -0
 - package/lib/routes-deprecated/potplayer/update.js +42 -0
 - package/lib/routes-deprecated/project-zero-issues/index.js +48 -0
 - package/lib/routes-deprecated/psnine/game.js +32 -0
 - package/lib/routes-deprecated/psnine/index.js +33 -0
 - package/lib/routes-deprecated/psnine/shuzhe.js +33 -0
 - package/lib/routes-deprecated/psnine/trade.js +39 -0
 - package/lib/routes-deprecated/ptpress/book.js +34 -0
 - package/lib/routes-deprecated/qstheory/index.js +122 -0
 - package/lib/routes-deprecated/quantamagazine/archive.js +81 -0
 - package/lib/routes-deprecated/qutoutiao/category.js +42 -0
 - package/lib/routes-deprecated/react/react-native-weekly.js +35 -0
 - package/lib/routes-deprecated/remote-work/index.js +88 -0
 - package/lib/routes-deprecated/rescuetime/release-notes.js +37 -0
 - package/lib/routes-deprecated/rthk-news/index.js +60 -0
 - package/lib/routes-deprecated/scboy/thread.js +50 -0
 - package/lib/routes-deprecated/sexinsex/index.js +101 -0
 - package/lib/routes-deprecated/shanbay/checkin.js +48 -0
 - package/lib/routes-deprecated/shanbay/footprints.js +42 -0
 - package/lib/routes-deprecated/simonsfoundation/articles.js +48 -0
 - package/lib/routes-deprecated/simpread/changelog.js +79 -0
 - package/lib/routes-deprecated/sketch/updates.js +40 -0
 - package/lib/routes-deprecated/socialbeta/home.js +42 -0
 - package/lib/routes-deprecated/socialclub/events.js +28 -0
 - package/lib/routes-deprecated/soul/hot.js +86 -0
 - package/lib/routes-deprecated/soundcloud/utils.js +47 -0
 - package/lib/routes-deprecated/technologyreview/topic.js +35 -0
 - package/lib/routes-deprecated/tencent/tucaoqq/post.js +39 -0
 - package/lib/routes-deprecated/tencent/wechat/miniprogram/devtools.js +37 -0
 - package/lib/routes-deprecated/tencent/wechat/miniprogram/framework.js +35 -0
 - package/lib/routes-deprecated/tencent/wechat/miniprogram/wxcloud.js +47 -0
 - package/lib/routes-deprecated/tianyancha/hot.js +48 -0
 - package/lib/routes-deprecated/tingdiantz/95598.js +41 -0
 - package/lib/routes-deprecated/titsguru/model.js +16 -0
 - package/lib/routes-deprecated/titsguru/util.js +68 -0
 - package/lib/routes-deprecated/totalcommander/whatsnew.js +32 -0
 - package/lib/routes-deprecated/touhougarakuta/index.js +68 -0
 - package/lib/routes-deprecated/touhougarakuta/json2html.js +113 -0
 - package/lib/routes-deprecated/tprtc/cqzr.js +80 -0
 - package/lib/routes-deprecated/tprtc/news.js +71 -0
 - package/lib/routes-deprecated/tprtc/qyzc.js +84 -0
 - package/lib/routes-deprecated/ui-cn/article.js +44 -0
 - package/lib/routes-deprecated/unit-image/films.js +141 -0
 - package/lib/routes-deprecated/universities/ahau/cs_news/utils.js +50 -0
 - package/lib/routes-deprecated/universities/ahau/jwc/utils.js +50 -0
 - package/lib/routes-deprecated/universities/ahau/main/utils.js +50 -0
 - package/lib/routes-deprecated/universities/ahmu/news.js +51 -0
 - package/lib/routes-deprecated/universities/ahut/cstzgg.js +45 -0
 - package/lib/routes-deprecated/universities/ahut/jwc.js +43 -0
 - package/lib/routes-deprecated/universities/ahut/news.js +44 -0
 - package/lib/routes-deprecated/universities/bupt/funbox.js +40 -0
 - package/lib/routes-deprecated/universities/bupt/grs.js +64 -0
 - package/lib/routes-deprecated/universities/bupt/news.js +34 -0
 - package/lib/routes-deprecated/universities/bupt/portal.js +34 -0
 - package/lib/routes-deprecated/universities/bupt/utils.js +67 -0
 - package/lib/routes-deprecated/universities/bupt/yz.js +154 -0
 - package/lib/routes-deprecated/universities/bwu/utils.js +50 -0
 - package/lib/routes-deprecated/universities/cpu/home.js +52 -0
 - package/lib/routes-deprecated/universities/cpu/jwc.js +52 -0
 - package/lib/routes-deprecated/universities/cpu/yjsy.js +52 -0
 - package/lib/routes-deprecated/universities/cqu/jwc/announcement.js +53 -0
 - package/lib/routes-deprecated/universities/cqu/net/info.js +60 -0
 - package/lib/routes-deprecated/universities/cqu/news/tz.js +71 -0
 - package/lib/routes-deprecated/universities/cqu/news/utils.js +48 -0
 - package/lib/routes-deprecated/universities/cqu/sci/info.js +62 -0
 - package/lib/routes-deprecated/universities/cqu/youth/info.js +65 -0
 - package/lib/routes-deprecated/universities/cug/gcxy/index.js +114 -0
 - package/lib/routes-deprecated/universities/cug/news.js +63 -0
 - package/lib/routes-deprecated/universities/cuit/cxxww.js +63 -0
 - package/lib/routes-deprecated/universities/dlmu/news.js +42 -0
 - package/lib/routes-deprecated/universities/dlu/jiaowu/news.js +36 -0
 - package/lib/routes-deprecated/universities/fudan/cce.js +52 -0
 - package/lib/routes-deprecated/universities/gdou/jwc/utils.js +72 -0
 - package/lib/routes-deprecated/universities/gzmtu/jwc/utils.js +86 -0
 - package/lib/routes-deprecated/universities/gzmtu/tsg/utils.js +86 -0
 - package/lib/routes-deprecated/universities/hhu/lib-news.js +57 -0
 - package/lib/routes-deprecated/universities/hhu/lib-newsc.js +75 -0
 - package/lib/routes-deprecated/universities/hnust/graduate/index.js +40 -0
 - package/lib/routes-deprecated/universities/jnu/yw/index.js +81 -0
 - package/lib/routes-deprecated/universities/kmust/job/careers.js +33 -0
 - package/lib/routes-deprecated/universities/kmust/job/jobfairs.js +32 -0
 - package/lib/routes-deprecated/universities/kmust/jwc.js +44 -0
 - package/lib/routes-deprecated/universities/lit/jwc.js +50 -0
 - package/lib/routes-deprecated/universities/lit/tw.js +56 -0
 - package/lib/routes-deprecated/universities/lit/xwzx.js +73 -0
 - package/lib/routes-deprecated/universities/lntu/jwnews.js +46 -0
 - package/lib/routes-deprecated/universities/lyu/news/utils.js +42 -0
 - package/lib/routes-deprecated/universities/mit/graduateadmissions.js +63 -0
 - package/lib/routes-deprecated/universities/nciae/news.js +58 -0
 - package/lib/routes-deprecated/universities/nciae/tzgg.js +58 -0
 - package/lib/routes-deprecated/universities/nciae/xsxx.js +58 -0
 - package/lib/routes-deprecated/universities/njfu/jwc.js +47 -0
 - package/lib/routes-deprecated/universities/njtech/jwc.js +54 -0
 - package/lib/routes-deprecated/universities/nuc/index.js +91 -0
 - package/lib/routes-deprecated/universities/nudt/yjszs.js +60 -0
 - package/lib/routes-deprecated/universities/shanghaitech/activity.js +34 -0
 - package/lib/routes-deprecated/universities/shanghaitech/sist/activity.js +51 -0
 - package/lib/routes-deprecated/universities/shou/www.js +64 -0
 - package/lib/routes-deprecated/universities/slu/utils.js +74 -0
 - package/lib/routes-deprecated/universities/swufe/seie/index.js +71 -0
 - package/lib/routes-deprecated/universities/swust/cs.js +77 -0
 - package/lib/routes-deprecated/universities/swust/helper.js +47 -0
 - package/lib/routes-deprecated/universities/swust/jwc-news.js +45 -0
 - package/lib/routes-deprecated/universities/swust/jwc-notice.js +51 -0
 - package/lib/routes-deprecated/universities/thu/index.js +102 -0
 - package/lib/routes-deprecated/universities/usst/jwc.js +62 -0
 - package/lib/routes-deprecated/universities/utdallas/isso.js +54 -0
 - package/lib/routes-deprecated/universities/ynnu/edu/base64.js +354 -0
 - package/lib/routes-deprecated/universities/ynnu/edu/news.js +109 -0
 - package/lib/routes-deprecated/universities/ynu/utils.js +64 -0
 - package/lib/routes-deprecated/universities/yzu/home.js +83 -0
 - package/lib/routes-deprecated/universities/yzu/yjszs.js +81 -0
 - package/lib/routes-deprecated/universities/zjgsu/tzgg/utils.js +54 -0
 - package/lib/routes-deprecated/universities/zjut/design.js +59 -0
 - package/lib/routes-deprecated/universities/zjut/index.js +59 -0
 - package/lib/routes-deprecated/universities/zucc/cssearch/index.js +47 -0
 - package/lib/routes-deprecated/universities/zucc/news/index.js +66 -0
 - package/lib/routes-deprecated/universities/zzu/news.js +80 -0
 - package/lib/routes-deprecated/universities/zzu/soft/news.js +68 -0
 - package/lib/routes-deprecated/us/supremecourt/argument-audio.js +61 -0
 - package/lib/routes-deprecated/uwants/index.js +70 -0
 - package/lib/routes-deprecated/voa/index.js +54 -0
 - package/lib/routes-deprecated/vol/lastupdate.js +51 -0
 - package/lib/routes-deprecated/vulture/utils.js +113 -0
 - package/lib/routes-deprecated/watchface/update.js +42 -0
 - package/lib/routes-deprecated/webtoons/comic.js +54 -0
 - package/lib/routes-deprecated/webtoons/naver.js +50 -0
 - package/lib/routes-deprecated/weexcn/index.js +69 -0
 - package/lib/routes-deprecated/wegene/column.js +25 -0
 - package/lib/routes-deprecated/weidian/goods.js +37 -0
 - package/lib/routes-deprecated/whb/zhuzhan.js +76 -0
 - package/lib/routes-deprecated/wto/dispute-settlement.js +37 -0
 - package/lib/routes-deprecated/xiachufang/utils.js +95 -0
 - package/lib/routes-deprecated/xuangubao/subject.js +42 -0
 - package/lib/routes-deprecated/xuetangx/course-list.js +54 -0
 - package/lib/routes-deprecated/xyplorer/whatsnew.js +32 -0
 - package/lib/routes-deprecated/yinxiang/card.js +41 -0
 - package/lib/routes-deprecated/yinxiang/category.js +42 -0
 - package/lib/routes-deprecated/yinxiang/note.js +37 -0
 - package/lib/routes-deprecated/yinxiang/personal.js +43 -0
 - package/lib/routes-deprecated/yinxiang/tag.js +42 -0
 - package/lib/routes-deprecated/youdao/latest.js +47 -0
 - package/lib/routes-deprecated/youdao/xueba.js +64 -0
 - package/lib/routes-deprecated/yuzu-emu/entry.js +52 -0
 - package/lib/routes-deprecated/zhishifenzi/depth.js +54 -0
 - package/lib/routes-deprecated/zhishifenzi/innovation.js +61 -0
 - package/lib/routes-deprecated/zhishifenzi/news.js +66 -0
 - package/lib/routes-deprecated/zhuixinfan/list.js +51 -0
 - package/lib/routes-deprecated/zimuku/index.js +41 -0
 - package/lib/routes-deprecated/zreading/home.js +50 -0
 - package/lib/routes-deprecated/zsnews/index.js +31 -0
 - package/lib/routes.test.ts +84 -0
 - package/lib/setup.test.ts +249 -0
 - package/lib/types.ts +288 -0
 - package/lib/utils/cache/base.ts +17 -0
 - package/lib/utils/cache/index.ts +99 -0
 - package/lib/utils/cache/memory.ts +42 -0
 - package/lib/utils/cache/redis.ts +75 -0
 - package/lib/utils/cache.test.ts +91 -0
 - package/lib/utils/common-config.test.ts +78 -0
 - package/lib/utils/common-config.ts +75 -0
 - package/lib/utils/common-utils.test.ts +41 -0
 - package/lib/utils/common-utils.ts +45 -0
 - package/lib/utils/debug-info.ts +24 -0
 - package/lib/utils/git-hash.ts +14 -0
 - package/lib/utils/got-deprecated.ts +79 -0
 - package/lib/utils/got.test.ts +77 -0
 - package/lib/utils/got.ts +86 -0
 - package/lib/utils/helpers.test.ts +8 -0
 - package/lib/utils/helpers.ts +32 -0
 - package/lib/utils/logger.ts +46 -0
 - package/lib/utils/md5.test.ts +8 -0
 - package/lib/utils/md5.ts +5 -0
 - package/lib/utils/ofetch.test.ts +51 -0
 - package/lib/utils/ofetch.ts +31 -0
 - package/lib/utils/otel/index.ts +2 -0
 - package/lib/utils/otel/metric.ts +66 -0
 - package/lib/utils/otel/trace.ts +28 -0
 - package/lib/utils/parse-date.test.ts +163 -0
 - package/lib/utils/parse-date.ts +207 -0
 - package/lib/utils/proxy/index.ts +56 -0
 - package/lib/utils/proxy/pac-proxy.test.ts +80 -0
 - package/lib/utils/proxy/pac-proxy.ts +72 -0
 - package/lib/utils/proxy/unify-proxy.test.ts +141 -0
 - package/lib/utils/proxy/unify-proxy.ts +113 -0
 - package/lib/utils/puppeteer-utils.test.ts +101 -0
 - package/lib/utils/puppeteer-utils.ts +58 -0
 - package/lib/utils/puppeteer.test.ts +144 -0
 - package/lib/utils/puppeteer.ts +64 -0
 - package/lib/utils/rand-user-agent.test.ts +37 -0
 - package/lib/utils/rand-user-agent.ts +30 -0
 - package/lib/utils/readable-social.ts +42 -0
 - package/lib/utils/render.ts +5 -0
 - package/lib/utils/request-rewriter/fetch.ts +69 -0
 - package/lib/utils/request-rewriter/get.ts +77 -0
 - package/lib/utils/request-rewriter/index.ts +19 -0
 - package/lib/utils/request-rewriter.test.ts +151 -0
 - package/lib/utils/rss-parser.test.ts +9 -0
 - package/lib/utils/rss-parser.ts +13 -0
 - package/lib/utils/timezone.test.ts +9 -0
 - package/lib/utils/timezone.ts +14 -0
 - package/lib/utils/valid-host.test.ts +21 -0
 - package/lib/utils/valid-host.ts +14 -0
 - package/lib/utils/wait.test.ts +14 -0
 - package/lib/utils/wait.ts +7 -0
 - package/lib/utils/wechat-mp.test.ts +503 -0
 - package/lib/utils/wechat-mp.ts +645 -0
 - package/lib/views/atom.tsx +49 -0
 - package/lib/views/error.tsx +144 -0
 - package/lib/views/index.tsx +207 -0
 - package/lib/views/json.ts +48 -0
 - package/lib/views/layout.tsx +50 -0
 - package/lib/views/rss.tsx +55 -0
 - package/lib/views/rss3.test.ts +99 -0
 - package/lib/views/rss3.ts +62 -0
 - package/package.json +176 -141
 - package/lib/api_router.js +0 -26
 - package/lib/app.js +0 -92
 - package/lib/config.js +0 -243
 - package/lib/core_router.js +0 -17
 - package/lib/errors/RequestInProgress.js +0 -3
 - package/lib/errors/index.js +0 -3
 - package/lib/index.js +0 -35
 - package/lib/maintainer.js +0 -27
 - package/lib/middleware/access-control.js +0 -55
 - package/lib/middleware/anti-hotlink.js +0 -54
 - package/lib/middleware/api-response-handler.js +0 -147
 - package/lib/middleware/api-template.js +0 -9
 - package/lib/middleware/cache/index.js +0 -135
 - package/lib/middleware/cache/memory.js +0 -42
 - package/lib/middleware/cache/redis.js +0 -48
 - package/lib/middleware/debug.js +0 -25
 - package/lib/middleware/header.js +0 -45
 - package/lib/middleware/load-on-demand.js +0 -36
 - package/lib/middleware/onerror.js +0 -104
 - package/lib/middleware/parameter.js +0 -269
 - package/lib/middleware/template.js +0 -82
 - package/lib/middleware/utf8.js +0 -6
 - package/lib/pkg.js +0 -39
 - package/lib/protected_router.js +0 -11
 - package/lib/radar-rules.js +0 -2518
 - package/lib/radar.js +0 -22
 - package/lib/routes/005tv/zx.js +0 -24
 - package/lib/routes/10000link/news.js +0 -59
 - package/lib/routes/12379/index.js +0 -23
 - package/lib/routes/141jav/141jav.js +0 -37
 - package/lib/routes/141ppv/141ppv.js +0 -37
 - package/lib/routes/199it/category.js +0 -10
 - package/lib/routes/199it/tag.js +0 -10
 - package/lib/routes/199it/utils.js +0 -44
 - package/lib/routes/1draw/index.js +0 -44
 - package/lib/routes/1point3acres/blog.js +0 -52
 - package/lib/routes/1point3acres/offer.js +0 -211
 - package/lib/routes/1point3acres/post.js +0 -50
 - package/lib/routes/1point3acres/posts.js +0 -21
 - package/lib/routes/1point3acres/threads.js +0 -21
 - package/lib/routes/1x/index.js +0 -69
 - package/lib/routes/21caijing/channel.js +0 -75
 - package/lib/routes/3dm/game.js +0 -42
 - package/lib/routes/3dm/news_center.js +0 -54
 - package/lib/routes/3k8/latest.js +0 -50
 - package/lib/routes/3ycy/home.js +0 -58
 - package/lib/routes/4gamers/category.js +0 -20
 - package/lib/routes/4gamers/tag.js +0 -20
 - package/lib/routes/4gamers/topic.js +0 -20
 - package/lib/routes/51voa/channel.js +0 -158
 - package/lib/routes/60s-science/transcript.js +0 -60
 - package/lib/routes/6park/index.js +0 -57
 - package/lib/routes/755/user.js +0 -71
 - package/lib/routes/8btc/author.js +0 -49
 - package/lib/routes/8btc/news/flash.js +0 -41
 - package/lib/routes/91ddcc/stage.js +0 -48
 - package/lib/routes/91ddcc/user.js +0 -45
 - package/lib/routes/93/index.js +0 -50
 - package/lib/routes/99percentinvisible/transcript.js +0 -46
 - package/lib/routes/9to5/subsite.js +0 -67
 - package/lib/routes/9to5/utils.js +0 -33
 - package/lib/routes/a9vg/a9vg.js +0 -36
 - package/lib/routes/abc/documentId.js +0 -7272
 - package/lib/routes/abc/id.js +0 -7272
 - package/lib/routes/abc/index.js +0 -74
 - package/lib/routes/acfun/bangumi.js +0 -28
 - package/lib/routes/acfun/video.js +0 -44
 - package/lib/routes/acm/amturingaward.js +0 -68
 - package/lib/routes/acwifi/index.js +0 -48
 - package/lib/routes/adnmb/index.js +0 -69
 - package/lib/routes/adquan/index.js +0 -72
 - package/lib/routes/aeon/category.js +0 -70
 - package/lib/routes/afdian/dynamic.js +0 -35
 - package/lib/routes/afdian/explore.js +0 -57
 - package/lib/routes/agefans/detail.js +0 -29
 - package/lib/routes/agefans/update.js +0 -46
 - package/lib/routes/aisixiang/column.js +0 -37
 - package/lib/routes/aisixiang/ranking.js +0 -37
 - package/lib/routes/aisixiang/thinktank.js +0 -40
 - package/lib/routes/aisixiang/utils.js +0 -39
 - package/lib/routes/aiyanxishe/home.js +0 -130
 - package/lib/routes/aliyun/database_month.js +0 -45
 - package/lib/routes/aliyun/developer/group.js +0 -44
 - package/lib/routes/aliyun/notice.js +0 -64
 - package/lib/routes/aliyun-kernel/index.js +0 -60
 - package/lib/routes/aljazeera/news.js +0 -38
 - package/lib/routes/allnow/column.js +0 -7
 - package/lib/routes/allnow/index.js +0 -5
 - package/lib/routes/allnow/tag.js +0 -7
 - package/lib/routes/allnow/user.js +0 -7
 - package/lib/routes/allnow/utils.js +0 -67
 - package/lib/routes/alter-cn/news.js +0 -44
 - package/lib/routes/amazfitwatchfaces/search.js +0 -7
 - package/lib/routes/amazon/ku.js +0 -57
 - package/lib/routes/amd/graphicsdrivers.js +0 -114
 - package/lib/routes/andyt/index.js +0 -36
 - package/lib/routes/anigamer/anime.js +0 -14
 - package/lib/routes/anigamer/new_anime.js +0 -22
 - package/lib/routes/animen/news.js +0 -84
 - package/lib/routes/anitama/channel.js +0 -64
 - package/lib/routes/anki/changes.js +0 -39
 - package/lib/routes/aom/journal.js +0 -107
 - package/lib/routes/aozora/newbook.js +0 -93
 - package/lib/routes/apkpure/versions.js +0 -23
 - package/lib/routes/apnews/topics.js +0 -43
 - package/lib/routes/appsales/index.js +0 -66
 - package/lib/routes/aptonic/action.js +0 -38
 - package/lib/routes/aqk/category.js +0 -22
 - package/lib/routes/aqk/vul.js +0 -33
 - package/lib/routes/archdaily/home.js +0 -47
 - package/lib/routes/arknights/japan.js +0 -24
 - package/lib/routes/arknights/news.js +0 -41
 - package/lib/routes/asahi/area.js +0 -57
 - package/lib/routes/asahi/index.js +0 -94
 - package/lib/routes/asiantolick/index.js +0 -64
 - package/lib/routes/atfd/index.js +0 -46
 - package/lib/routes/autotrader/index.js +0 -69
 - package/lib/routes/avgle/videos.js +0 -46
 - package/lib/routes/axis-studios/work.js +0 -82
 - package/lib/routes/babehub/index.js +0 -30
 - package/lib/routes/babehub/search.js +0 -15
 - package/lib/routes/babehub/utils.js +0 -71
 - package/lib/routes/babykingdom/index.js +0 -46
 - package/lib/routes/bahamut/creation_index.js +0 -73
 - package/lib/routes/bahamut/utils.js +0 -65
 - package/lib/routes/baidu/daily.js +0 -55
 - package/lib/routes/baidu/doodles.js +0 -27
 - package/lib/routes/baidu/topwords.js +0 -38
 - package/lib/routes/baijing/index.js +0 -34
 - package/lib/routes/bandisoft/index.js +0 -38
 - package/lib/routes/bangumi/calendar/_base.js +0 -43
 - package/lib/routes/bangumi/calendar/today.js +0 -75
 - package/lib/routes/bangumi/group/reply.js +0 -36
 - package/lib/routes/bangumi/group/topic.js +0 -26
 - package/lib/routes/bangumi/person/index.js +0 -34
 - package/lib/routes/bangumi/subject/comments.js +0 -54
 - package/lib/routes/bangumi/subject/ep.js +0 -26
 - package/lib/routes/bangumi/subject/index.js +0 -27
 - package/lib/routes/bangumi/subject/offcial-subject-api.js +0 -30
 - package/lib/routes/bangumi/user/blog.js +0 -42
 - package/lib/routes/banyuetan/index.js +0 -56
 - package/lib/routes/bbc/index.js +0 -91
 - package/lib/routes/bbc/utils.js +0 -37
 - package/lib/routes/behance/index.js +0 -58
 - package/lib/routes/bell-labs/events-news.js +0 -70
 - package/lib/routes/benedictevans/recent.js +0 -41
 - package/lib/routes/bibgame/category.js +0 -56
 - package/lib/routes/bihu/activaties.js +0 -76
 - package/lib/routes/bilibili/app.js +0 -33
 - package/lib/routes/bilibili/article.js +0 -30
 - package/lib/routes/bilibili/audio.js +0 -42
 - package/lib/routes/bilibili/bangumi.js +0 -50
 - package/lib/routes/bilibili/blackboard.js +0 -31
 - package/lib/routes/bilibili/cache.js +0 -104
 - package/lib/routes/bilibili/coin.js +0 -35
 - package/lib/routes/bilibili/danmaku.js +0 -56
 - package/lib/routes/bilibili/dynamic.js +0 -205
 - package/lib/routes/bilibili/fav.js +0 -39
 - package/lib/routes/bilibili/followers.js +0 -38
 - package/lib/routes/bilibili/followings.js +0 -37
 - package/lib/routes/bilibili/followings_article.js +0 -57
 - package/lib/routes/bilibili/followings_dynamic.js +0 -137
 - package/lib/routes/bilibili/followings_video.js +0 -46
 - package/lib/routes/bilibili/linkNews.js +0 -42
 - package/lib/routes/bilibili/liveArea.js +0 -74
 - package/lib/routes/bilibili/liveRoom.js +0 -41
 - package/lib/routes/bilibili/liveSearch.js +0 -40
 - package/lib/routes/bilibili/mallIP.js +0 -34
 - package/lib/routes/bilibili/mallNew.js +0 -31
 - package/lib/routes/bilibili/manga_followings.js +0 -39
 - package/lib/routes/bilibili/manga_update.js +0 -33
 - package/lib/routes/bilibili/page.js +0 -37
 - package/lib/routes/bilibili/partion-ranking.js +0 -59
 - package/lib/routes/bilibili/partion.js +0 -36
 - package/lib/routes/bilibili/ranking.js +0 -43
 - package/lib/routes/bilibili/readlist.js +0 -31
 - package/lib/routes/bilibili/reply.js +0 -38
 - package/lib/routes/bilibili/topic.js +0 -50
 - package/lib/routes/bilibili/userChannel.js +0 -73
 - package/lib/routes/bilibili/userFav.js +0 -35
 - package/lib/routes/bilibili/user_bangumi.js +0 -36
 - package/lib/routes/bilibili/utils.js +0 -9
 - package/lib/routes/bilibili/video.js +0 -35
 - package/lib/routes/bilibili/vsearch.js +0 -51
 - package/lib/routes/bilibili/weekly_recommend.js +0 -41
 - package/lib/routes/bing/index.js +0 -26
 - package/lib/routes/biobio/index.js +0 -40
 - package/lib/routes/biobio/others.js +0 -40
 - package/lib/routes/bioon/latest.js +0 -51
 - package/lib/routes/bishijie/kuaixun.js +0 -21
 - package/lib/routes/bjnews/epaper.js +0 -80
 - package/lib/routes/bjnews/news.js +0 -43
 - package/lib/routes/bjp/apod.js +0 -48
 - package/lib/routes/bjx/huanbao.js +0 -78
 - package/lib/routes/blizzard/news.js +0 -51
 - package/lib/routes/blogread/newest.js +0 -30
 - package/lib/routes/blogs/diygod/animal-crossing.js +0 -39
 - package/lib/routes/blogs/diygod/gk.js +0 -33
 - package/lib/routes/blogs/foreverblog.js +0 -33
 - package/lib/routes/blogs/hedwig.js +0 -38
 - package/lib/routes/blogs/jianning.js +0 -45
 - package/lib/routes/blogs/paulgraham.js +0 -46
 - package/lib/routes/blogs/wangyin.js +0 -50
 - package/lib/routes/blogs/wordpress.js +0 -45
 - package/lib/routes/blow-studio/work.js +0 -71
 - package/lib/routes/blur-studio/index.js +0 -81
 - package/lib/routes/boc/whpj.js +0 -99
 - package/lib/routes/bof/home.js +0 -42
 - package/lib/routes/bookscomtw/newbooks.js +0 -37
 - package/lib/routes/booksource/index.js +0 -22
 - package/lib/routes/booth-pm/shop.js +0 -57
 - package/lib/routes/boston/index.js +0 -73
 - package/lib/routes/buaq/index.js +0 -31
 - package/lib/routes/caixin/article.js +0 -46
 - package/lib/routes/caixin/blog.js +0 -58
 - package/lib/routes/caixin/category.js +0 -44
 - package/lib/routes/caixin/database.js +0 -48
 - package/lib/routes/caixin/latest.js +0 -75
 - package/lib/routes/caixin/yxnews.js +0 -30
 - package/lib/routes/cartoonmad/comic.js +0 -69
 - package/lib/routes/caus/index.js +0 -87
 - package/lib/routes/cbc/topics.js +0 -71
 - package/lib/routes/ccdi/scdc.js +0 -51
 - package/lib/routes/ccf/news.js +0 -51
 - package/lib/routes/ccg/index.js +0 -49
 - package/lib/routes/cctv/category.js +0 -20
 - package/lib/routes/cctv/jx.js +0 -46
 - package/lib/routes/cctv/lm.js +0 -78
 - package/lib/routes/cctv/special.js +0 -108
 - package/lib/routes/cctv/utils/mzzlbg.js +0 -39
 - package/lib/routes/cctv/utils/news.js +0 -102
 - package/lib/routes/cctv/utils/xinwen1j1.js +0 -78
 - package/lib/routes/cctv/xwlb.js +0 -48
 - package/lib/routes/cell/cell/index.js +0 -113
 - package/lib/routes/cell/cover.js +0 -106
 - package/lib/routes/cfan/news.js +0 -49
 - package/lib/routes/cfd/gbp_div.js +0 -28
 - package/lib/routes/cgtn/most.js +0 -48
 - package/lib/routes/cgtn/opinions.js +0 -50
 - package/lib/routes/cgtn/pick.js +0 -45
 - package/lib/routes/cgtn/top.js +0 -45
 - package/lib/routes/changku/index.js +0 -39
 - package/lib/routes/chaoli/index.js +0 -50
 - package/lib/routes/chaping/banner.js +0 -39
 - package/lib/routes/chaping/news.js +0 -54
 - package/lib/routes/checkee/index.js +0 -56
 - package/lib/routes/chicagotribune/index.js +0 -77
 - package/lib/routes/chiculture/topic.js +0 -59
 - package/lib/routes/chinadialogue/column.js +0 -58
 - package/lib/routes/chinadialogue/topics.js +0 -55
 - package/lib/routes/chinalaborwatch/reports.js +0 -53
 - package/lib/routes/chinatimes/index.js +0 -115
 - package/lib/routes/chiphell/forum.js +0 -67
 - package/lib/routes/chocolatey/software.js +0 -55
 - package/lib/routes/chouti/top.js +0 -28
 - package/lib/routes/chrome/extensions.js +0 -30
 - package/lib/routes/chsi/zszcgd.js +0 -51
 - package/lib/routes/chuiniu/column.js +0 -89
 - package/lib/routes/chuiniu/column_list.js +0 -36
 - package/lib/routes/citavi/index.js +0 -52
 - package/lib/routes/ciweimao/chapter.js +0 -34
 - package/lib/routes/cktest/app.js +0 -34
 - package/lib/routes/cktest/policy.js +0 -43
 - package/lib/routes/clickme/index.js +0 -76
 - package/lib/routes/cls/depth.js +0 -63
 - package/lib/routes/cls/telegraph.js +0 -34
 - package/lib/routes/cmes/news.js +0 -64
 - package/lib/routes/cna/index.js +0 -54
 - package/lib/routes/cneb/guoneinews.js +0 -27
 - package/lib/routes/cneb/yjxx.js +0 -36
 - package/lib/routes/cnu/discovery.js +0 -59
 - package/lib/routes/cnu/selected.js +0 -52
 - package/lib/routes/cnu/utils.js +0 -28
 - package/lib/routes/codeceo/category.js +0 -51
 - package/lib/routes/codeceo/home.js +0 -49
 - package/lib/routes/comicskingdom/index.js +0 -61
 - package/lib/routes/commonapp/blog.js +0 -42
 - package/lib/routes/coolapk/dyh.js +0 -41
 - package/lib/routes/coolapk/hot.js +0 -99
 - package/lib/routes/coolapk/huati.js +0 -26
 - package/lib/routes/coolapk/toutiao.js +0 -31
 - package/lib/routes/coolapk/tuwen.js +0 -33
 - package/lib/routes/coolapk/userDynamic.js +0 -37
 - package/lib/routes/coolapk/utils.js +0 -151
 - package/lib/routes/copymanga/comic.js +0 -74
 - package/lib/routes/coronavirus/caixin.js +0 -34
 - package/lib/routes/coronavirus/dxy-data.js +0 -86
 - package/lib/routes/coronavirus/dxy.js +0 -27
 - package/lib/routes/coronavirus/mogov-2019ncov.js +0 -49
 - package/lib/routes/coronavirus/nhc.js +0 -30
 - package/lib/routes/coronavirus/scmp.js +0 -32
 - package/lib/routes/coronavirus/sg-moh.js +0 -40
 - package/lib/routes/coronavirus/yahoo-japan.js +0 -77
 - package/lib/routes/cpta/notice.js +0 -41
 - package/lib/routes/cpython/index.js +0 -32
 - package/lib/routes/craigslist/search.js +0 -46
 - package/lib/routes/cria/news.js +0 -57
 - package/lib/routes/cs/news.js +0 -69
 - package/lib/routes/csc/notice.js +0 -99
 - package/lib/routes/csrc/auditstatus.js +0 -61
 - package/lib/routes/csrc/fashenwei.js +0 -42
 - package/lib/routes/csrc/news.js +0 -45
 - package/lib/routes/curiouscat/user.js +0 -40
 - package/lib/routes/curseforge/files.js +0 -36
 - package/lib/routes/curseforge/generalfiles.js +0 -42
 - package/lib/routes/cve/search.js +0 -26
 - package/lib/routes/cyzone/author.js +0 -55
 - package/lib/routes/cyzone/label.js +0 -53
 - package/lib/routes/d1bz/novel.js +0 -72
 - package/lib/routes/d2/daily.js +0 -49
 - package/lib/routes/damai/activity.js +0 -28
 - package/lib/routes/dapenti/subject.js +0 -5
 - package/lib/routes/dapenti/tugua.js +0 -5
 - package/lib/routes/dapenti/utils.js +0 -73
 - package/lib/routes/darwinawards/articles.js +0 -42
 - package/lib/routes/daxiaamu/home.js +0 -45
 - package/lib/routes/dayone/blog.js +0 -56
 - package/lib/routes/dbmv/index.js +0 -45
 - package/lib/routes/dcard/section.js +0 -47
 - package/lib/routes/dcard/utils.js +0 -54
 - package/lib/routes/ddrk/index.js +0 -32
 - package/lib/routes/ddrk/list.js +0 -37
 - package/lib/routes/dedao/index.js +0 -43
 - package/lib/routes/dedao/knowledge.js +0 -78
 - package/lib/routes/dedao/list.js +0 -60
 - package/lib/routes/deepl/blog.js +0 -34
 - package/lib/routes/deeplearningai/thebatch.js +0 -29
 - package/lib/routes/deepmind/blog.js +0 -43
 - package/lib/routes/dengekionline/new.js +0 -133
 - package/lib/routes/dev.to/top.js +0 -40
 - package/lib/routes/dgjyw/index.js +0 -66
 - package/lib/routes/dgtle/index.js +0 -57
 - package/lib/routes/dgtle/keyword.js +0 -29
 - package/lib/routes/dgtle/trade.js +0 -42
 - package/lib/routes/dhl/shipment-tracking.js +0 -56
 - package/lib/routes/dianping/user.js +0 -98
 - package/lib/routes/dida365/habit-checkins.js +0 -83
 - package/lib/routes/digic-pictures/index.js +0 -72
 - package/lib/routes/digitaling/article.js +0 -71
 - package/lib/routes/digitaling/index.js +0 -42
 - package/lib/routes/digitaling/project.js +0 -55
 - package/lib/routes/dilbert/strip.js +0 -54
 - package/lib/routes/dilidili/fanju.js +0 -78
 - package/lib/routes/discuss/index.js +0 -71
 - package/lib/routes/discuz/discuz.js +0 -148
 - package/lib/routes/disqus/posts.js +0 -53
 - package/lib/routes/dlsite/campaign.js +0 -176
 - package/lib/routes/dlsite/new.js +0 -109
 - package/lib/routes/dockone/weekly.js +0 -60
 - package/lib/routes/docschina/jsweekly.js +0 -47
 - package/lib/routes/donews/index.js +0 -59
 - package/lib/routes/donews/utils.js +0 -19
 - package/lib/routes/dongmanmanhua/comic.js +0 -45
 - package/lib/routes/dongqiudi/daily.js +0 -50
 - package/lib/routes/dongqiudi/player_news.js +0 -8
 - package/lib/routes/dongqiudi/result.js +0 -29
 - package/lib/routes/dongqiudi/special.js +0 -48
 - package/lib/routes/dongqiudi/team_news.js +0 -8
 - package/lib/routes/dongqiudi/top_news.js +0 -42
 - package/lib/routes/dongqiudi/utils.js +0 -136
 - package/lib/routes/douyu/room.js +0 -34
 - package/lib/routes/dribbble/keyword.js +0 -10
 - package/lib/routes/dribbble/popular.js +0 -10
 - package/lib/routes/dribbble/user.js +0 -10
 - package/lib/routes/dribbble/utils.js +0 -94
 - package/lib/routes/dsb/area.js +0 -33
 - package/lib/routes/dsndsht23/index.js +0 -127
 - package/lib/routes/duozhi/index.js +0 -48
 - package/lib/routes/duozhuayu/search.js +0 -76
 - package/lib/routes/dwnews/rank.js +0 -42
 - package/lib/routes/dwnews/utils.js +0 -65
 - package/lib/routes/dwnews/yaowen.js +0 -73
 - package/lib/routes/dx2025/index.js +0 -51
 - package/lib/routes/dxy/vaccine.js +0 -109
 - package/lib/routes/dysfz/index.js +0 -20
 - package/lib/routes/eagle/changelog.js +0 -75
 - package/lib/routes/earthquake/ceic.js +0 -66
 - package/lib/routes/earthquake/index.js +0 -38
 - package/lib/routes/edge/addon.js +0 -32
 - package/lib/routes/edrawsoft/mindmap.js +0 -99
 - package/lib/routes/eeo/index.js +0 -83
 - package/lib/routes/egsea/flash.js +0 -40
 - package/lib/routes/ehentai/ehapi.js +0 -143
 - package/lib/routes/ehentai/favorites.js +0 -26
 - package/lib/routes/ehentai/search.js +0 -34
 - package/lib/routes/ehentai/tag.js +0 -22
 - package/lib/routes/eleduck/jobs.js +0 -38
 - package/lib/routes/eleme/open/announce.js +0 -35
 - package/lib/routes/eleme/open-be/announce.js +0 -21
 - package/lib/routes/elife/index.js +0 -67
 - package/lib/routes/elitebabes/index.js +0 -30
 - package/lib/routes/elitebabes/search.js +0 -15
 - package/lib/routes/elitebabes/utils.js +0 -88
 - package/lib/routes/elitebabes/videos.js +0 -26
 - package/lib/routes/embassy/index.js +0 -64
 - package/lib/routes/embassy/supportedList.js +0 -257
 - package/lib/routes/emi-nitta/home.js +0 -74
 - package/lib/routes/enclavebooks/category.js +0 -77
 - package/lib/routes/enclavebooks/collection.js +0 -44
 - package/lib/routes/enclavebooks/user.js +0 -44
 - package/lib/routes/engadget/home.js +0 -63
 - package/lib/routes/erbingapp/news.js +0 -51
 - package/lib/routes/esquirehk/tag.js +0 -71
 - package/lib/routes/etherscan/transactions.js +0 -37
 - package/lib/routes/everything/changes.js +0 -33
 - package/lib/routes/facebook/page.js +0 -128
 - package/lib/routes/fanbox/conv.js +0 -227
 - package/lib/routes/fanbox/header.js +0 -13
 - package/lib/routes/fanbox/main.js +0 -42
 - package/lib/routes/fanfou/favorites.js +0 -36
 - package/lib/routes/fanfou/home_timeline.js +0 -32
 - package/lib/routes/fanfou/public_timeline.js +0 -34
 - package/lib/routes/fanfou/user_timeline.js +0 -35
 - package/lib/routes/fanfou/utils.js +0 -40
 - package/lib/routes/fantia/search.js +0 -66
 - package/lib/routes/fantia/user.js +0 -39
 - package/lib/routes/fanxinzhui/latest.js +0 -53
 - package/lib/routes/fashionnetwork/headline.js +0 -53
 - package/lib/routes/fashionnetwork/news.js +0 -70
 - package/lib/routes/fdroid/apprelease.js +0 -33
 - package/lib/routes/feed-the-beast/modpack.js +0 -31
 - package/lib/routes/feixuew/index.js +0 -63
 - package/lib/routes/finviz/news.js +0 -40
 - package/lib/routes/fir/update.js +0 -31
 - package/lib/routes/firefox/addons.js +0 -33
 - package/lib/routes/firefox/release.js +0 -30
 - package/lib/routes/fitchratings/site.js +0 -33
 - package/lib/routes/fjnews/fznews.js +0 -55
 - package/lib/routes/fjnews/jjnews.js +0 -43
 - package/lib/routes/fontstory/tw.js +0 -48
 - package/lib/routes/fulinian/index.js +0 -50
 - package/lib/routes/furaffinity/home.js +0 -59
 - package/lib/routes/furaffinity/status.js +0 -39
 - package/lib/routes/furaffinity/user.js +0 -96
 - package/lib/routes/futunn/highlights.js +0 -58
 - package/lib/routes/fx678/kx.js +0 -44
 - package/lib/routes/fzdm/manhua.js +0 -62
 - package/lib/routes/gab/explore.js +0 -31
 - package/lib/routes/galaxylab/index.js +0 -35
 - package/lib/routes/galgame/hhgal.js +0 -70
 - package/lib/routes/galgame/sayhuahuo.js +0 -22
 - package/lib/routes/galgame/zdfx.js +0 -30
 - package/lib/routes/gamegrape/index.js +0 -73
 - package/lib/routes/gamer/gnn_index.js +0 -131
 - package/lib/routes/gamersky/ent.js +0 -89
 - package/lib/routes/gaoqing/utils.js +0 -57
 - package/lib/routes/gaoqingla/latest.js +0 -37
 - package/lib/routes/gbcc/trust.js +0 -28
 - package/lib/routes/gcores/category.js +0 -127
 - package/lib/routes/geektime/news.js +0 -54
 - package/lib/routes/gelonghui/keyword.js +0 -36
 - package/lib/routes/gelonghui/subject.js +0 -42
 - package/lib/routes/gelonghui/user.js +0 -46
 - package/lib/routes/getitfree/category.js +0 -59
 - package/lib/routes/getitfree/search.js +0 -25
 - package/lib/routes/getitfree/utils.js +0 -47
 - package/lib/routes/girlimg/album.js +0 -57
 - package/lib/routes/gitchat/newest.js +0 -23
 - package/lib/routes/gitea/blog.js +0 -70
 - package/lib/routes/gitlab/explore.js +0 -38
 - package/lib/routes/gitlab/release.js +0 -30
 - package/lib/routes/gitlab/tag.js +0 -30
 - package/lib/routes/go-weekly/index.js +0 -29
 - package/lib/routes/go.jp/mofa/main.js +0 -95
 - package/lib/routes/gocomics/index.js +0 -64
 - package/lib/routes/gov/beijing/eea.js +0 -92
 - package/lib/routes/gov/beijing/mhc.js +0 -68
 - package/lib/routes/gov/chinatax/latest.js +0 -42
 - package/lib/routes/gov/chongqing/ljxq/zwgk.js +0 -67
 - package/lib/routes/gov/city/nanjing/getContent.js +0 -69
 - package/lib/routes/gov/city/nanjing/index.js +0 -32
 - package/lib/routes/gov/cnca/hydt.js +0 -54
 - package/lib/routes/gov/cnca/jgdt.js +0 -54
 - package/lib/routes/gov/cnca/zxtz.js +0 -63
 - package/lib/routes/gov/cppcc/index.js +0 -48
 - package/lib/routes/gov/customs/list.js +0 -77
 - package/lib/routes/gov/fmprc/fyrbt.js +0 -24
 - package/lib/routes/gov/fmprc/utils.js +0 -54
 - package/lib/routes/gov/guangdong/edu.js +0 -83
 - package/lib/routes/gov/guangdong/eea.js +0 -59
 - package/lib/routes/gov/harbin/kjj.js +0 -39
 - package/lib/routes/gov/hubei/hbsia.js +0 -101
 - package/lib/routes/gov/hunan/notice.js +0 -80
 - package/lib/routes/gov/jiangsu/eea.js +0 -84
 - package/lib/routes/gov/mee/gs.js +0 -54
 - package/lib/routes/gov/miit/wjgs.js +0 -53
 - package/lib/routes/gov/miit/zcjd.js +0 -53
 - package/lib/routes/gov/miit/zcwj.js +0 -53
 - package/lib/routes/gov/moa/moa.js +0 -164
 - package/lib/routes/gov/moa/sjzxfb.js +0 -20
 - package/lib/routes/gov/moe/moe.js +0 -84
 - package/lib/routes/gov/mohrss/sbjm.js +0 -59
 - package/lib/routes/gov/mohurd/policy.js +0 -39
 - package/lib/routes/gov/ndrc/xwdt.js +0 -54
 - package/lib/routes/gov/news/index.js +0 -115
 - package/lib/routes/gov/ngd/index.js +0 -51
 - package/lib/routes/gov/nppa/channels.js +0 -57
 - package/lib/routes/gov/nppa/contents.js +0 -37
 - package/lib/routes/gov/province/jiangsu/getContent.js +0 -77
 - package/lib/routes/gov/province/jiangsu/index.js +0 -66
 - package/lib/routes/gov/sapprft/7026.js +0 -97
 - package/lib/routes/gov/shanghai/sthj.js +0 -26
 - package/lib/routes/gov/shenzhen/xxgk/zfxxgj.js +0 -66
 - package/lib/routes/gov/suzhou/doc.js +0 -39
 - package/lib/routes/gov/suzhou/news.js +0 -142
 - package/lib/routes/gov/suzhou/utils.js +0 -20
 - package/lib/routes/gov/taiwan/mnd.js +0 -63
 - package/lib/routes/gov/veterans/china.js +0 -76
 - package/lib/routes/gov/veterans/hebei.js +0 -73
 - package/lib/routes/gov/wuhan/kjj.js +0 -63
 - package/lib/routes/gov/wuhan/wehdz.js +0 -63
 - package/lib/routes/gov/xinwen/tujie.js +0 -75
 - package/lib/routes/gov/zhengce/govall.js +0 -59
 - package/lib/routes/gov/zhengce/wenjian.js +0 -53
 - package/lib/routes/gov/zhengce/zuixin.js +0 -42
 - package/lib/routes/gq/tw/index.js +0 -66
 - package/lib/routes/gracg/user.js +0 -65
 - package/lib/routes/gradcafe/result.js +0 -37
 - package/lib/routes/greasyfork/scripts.js +0 -39
 - package/lib/routes/growincity/news.js +0 -49
 - package/lib/routes/grubstreet/index.js +0 -9
 - package/lib/routes/grubstreet/utils.js +0 -78
 - package/lib/routes/guancha/headline.js +0 -48
 - package/lib/routes/guancha/index.js +0 -132
 - package/lib/routes/guancha/member.js +0 -71
 - package/lib/routes/guancha/personalpage.js +0 -72
 - package/lib/routes/guancha/topic.js +0 -55
 - package/lib/routes/guanggoo/index.js +0 -81
 - package/lib/routes/guardian/guardian.js +0 -45
 - package/lib/routes/guat/news.js +0 -68
 - package/lib/routes/guet/news.js +0 -95
 - package/lib/routes/guiltfree/onsale.js +0 -48
 - package/lib/routes/guokr/calendar.js +0 -47
 - package/lib/routes/guokr/scientific.js +0 -30
 - package/lib/routes/gvm/index.js +0 -94
 - package/lib/routes/gwern/category.js +0 -58
 - package/lib/routes/hackerone/hacktivity.js +0 -47
 - package/lib/routes/hackerone/search.js +0 -48
 - package/lib/routes/haimaoba/comics.js +0 -57
 - package/lib/routes/haohaozhu/discover.js +0 -42
 - package/lib/routes/haohaozhu/whole-house.js +0 -75
 - package/lib/routes/hdx/explore.js +0 -57
 - package/lib/routes/hentai-cosplays/hentai-cosplays.js +0 -11
 - package/lib/routes/hentai-cosplays/utils.js +0 -52
 - package/lib/routes/hentaimama/videos.js +0 -32
 - package/lib/routes/hexo/fluid.js +0 -45
 - package/lib/routes/hexo/next.js +0 -45
 - package/lib/routes/hexo/yilia.js +0 -30
 - package/lib/routes/hinatazaka46/blog.js +0 -38
 - package/lib/routes/hinatazaka46/news.js +0 -34
 - package/lib/routes/hk01/channel.js +0 -22
 - package/lib/routes/hk01/hot.js +0 -20
 - package/lib/routes/hk01/issue.js +0 -22
 - package/lib/routes/hk01/tag.js +0 -22
 - package/lib/routes/hk01/zone.js +0 -41
 - package/lib/routes/hkcd/pdf.js +0 -30
 - package/lib/routes/hkcnews/news.js +0 -63
 - package/lib/routes/hkej/index.js +0 -138
 - package/lib/routes/hkgolden/index.js +0 -110
 - package/lib/routes/hopper/index.js +0 -82
 - package/lib/routes/hpoi/index.js +0 -47
 - package/lib/routes/hpoi/info.js +0 -51
 - package/lib/routes/hpoi/user.js +0 -37
 - package/lib/routes/huawei/xinsheng/index.js +0 -61
 - package/lib/routes/hugo/releases.js +0 -53
 - package/lib/routes/hupu/all.js +0 -53
 - package/lib/routes/hupu/bbs.js +0 -83
 - package/lib/routes/hupu/dept.js +0 -66
 - package/lib/routes/huxiu/article.js +0 -30
 - package/lib/routes/huxiu/author.js +0 -33
 - package/lib/routes/huxiu/collection.js +0 -35
 - package/lib/routes/huxiu/search.js +0 -28
 - package/lib/routes/huxiu/tag.js +0 -31
 - package/lib/routes/huxiu/utils.js +0 -70
 - package/lib/routes/huya/live.js +0 -33
 - package/lib/routes/icable/category.js +0 -64
 - package/lib/routes/icourse163/newest.js +0 -77
 - package/lib/routes/idaily/index.js +0 -21
 - package/lib/routes/idownloadblog/index.js +0 -51
 - package/lib/routes/iea/index.js +0 -53
 - package/lib/routes/ifanr/index.js +0 -75
 - package/lib/routes/ifeng/feng.js +0 -69
 - package/lib/routes/ifeng/utils.js +0 -28
 - package/lib/routes/ifnews/column.js +0 -75
 - package/lib/routes/iie/blog.js +0 -47
 - package/lib/routes/ikea/uk/new.js +0 -20
 - package/lib/routes/ikea/uk/offer.js +0 -64
 - package/lib/routes/im2maker/index.js +0 -60
 - package/lib/routes/imaijia/category.js +0 -63
 - package/lib/routes/imuseum/index.js +0 -49
 - package/lib/routes/index.js +0 -112
 - package/lib/routes/indienova/article.js +0 -53
 - package/lib/routes/infoq/recommend.js +0 -28
 - package/lib/routes/infoq/topic.js +0 -45
 - package/lib/routes/infoq/utils.js +0 -103
 - package/lib/routes/infzm/news.js +0 -62
 - package/lib/routes/initium/full.js +0 -188
 - package/lib/routes/instagram/index.js +0 -131
 - package/lib/routes/instagram/utils.js +0 -28
 - package/lib/routes/instapaper/person.js +0 -28
 - package/lib/routes/iplay/home.js +0 -26
 - package/lib/routes/iplay/utils.js +0 -57
 - package/lib/routes/ipsw/index.js +0 -112
 - package/lib/routes/iqiyi/dongman.js +0 -42
 - package/lib/routes/iqiyi/video.js +0 -43
 - package/lib/routes/itjuzi/invest.js +0 -32
 - package/lib/routes/itjuzi/merge.js +0 -32
 - package/lib/routes/itslide/new.js +0 -40
 - package/lib/routes/ixigua/userVideo.js +0 -35
 - package/lib/routes/iyiou/index.js +0 -41
 - package/lib/routes/iyouport/index.js +0 -35
 - package/lib/routes/iyouport/utils.js +0 -22
 - package/lib/routes/japanpost/track.js +0 -111
 - package/lib/routes/japanpost/utils.js +0 -94
 - package/lib/routes/jdlingyu/index.js +0 -45
 - package/lib/routes/jianshu/collection.js +0 -29
 - package/lib/routes/jianshu/home.js +0 -27
 - package/lib/routes/jianshu/trending.js +0 -28
 - package/lib/routes/jianshu/user.js +0 -29
 - package/lib/routes/jianshu/utils.js +0 -66
 - package/lib/routes/jiazhen108/index.js +0 -47
 - package/lib/routes/jiemian/list.js +0 -48
 - package/lib/routes/jiemian/utils.js +0 -26
 - package/lib/routes/jijitang/article.js +0 -19
 - package/lib/routes/jijitang/publication.js +0 -18
 - package/lib/routes/jike/common.js +0 -135
 - package/lib/routes/jike/topic.js +0 -65
 - package/lib/routes/jike/topicText.js +0 -42
 - package/lib/routes/jike/user.js +0 -147
 - package/lib/routes/jingdong/zhongchou.js +0 -78
 - package/lib/routes/jinritoutiao/keyword.js +0 -27
 - package/lib/routes/jinse/catalogue.js +0 -20
 - package/lib/routes/jinse/lives.js +0 -20
 - package/lib/routes/jinse/timeline.js +0 -21
 - package/lib/routes/jinshi/index.js +0 -35
 - package/lib/routes/jpmorganchase/research.js +0 -52
 - package/lib/routes/jskou/index.js +0 -21
 - package/lib/routes/juejin/books.js +0 -29
 - package/lib/routes/juejin/category.js +0 -39
 - package/lib/routes/juejin/collection.js +0 -26
 - package/lib/routes/juejin/column.js +0 -31
 - package/lib/routes/juejin/favorites.js +0 -39
 - package/lib/routes/juejin/pins.js +0 -66
 - package/lib/routes/juejin/posts.js +0 -25
 - package/lib/routes/juejin/shares.js +0 -26
 - package/lib/routes/juejin/tag.js +0 -40
 - package/lib/routes/juejin/trending.js +0 -79
 - package/lib/routes/juejin/utils.js +0 -48
 - package/lib/routes/juesheng/index.js +0 -49
 - package/lib/routes/justrun/index.js +0 -44
 - package/lib/routes/jx3/news.js +0 -58
 - package/lib/routes/kaggle/competitions.js +0 -51
 - package/lib/routes/kaggle/discussion.js +0 -72
 - package/lib/routes/kaggle/user.js +0 -19
 - package/lib/routes/kaiyan/index.js +0 -53
 - package/lib/routes/kaopunews/index.js +0 -28
 - package/lib/routes/keep/user.js +0 -47
 - package/lib/routes/kirara/news.js +0 -30
 - package/lib/routes/kkj/news.js +0 -52
 - package/lib/routes/konami/pesmobile.js +0 -31
 - package/lib/routes/kongfz/shop.js +0 -58
 - package/lib/routes/kpmg/insights.js +0 -79
 - package/lib/routes/krankenkassen/index.js +0 -54
 - package/lib/routes/ku/index.js +0 -31
 - package/lib/routes/kuai/id.js +0 -38
 - package/lib/routes/kuai/index.js +0 -38
 - package/lib/routes/kuaibao/index.js +0 -33
 - package/lib/routes/kuaidi100/index.js +0 -47
 - package/lib/routes/kuaidi100/supported_company.js +0 -17
 - package/lib/routes/kuaidi100/utils.js +0 -223
 - package/lib/routes/kzfeed/topic.js +0 -122
 - package/lib/routes/langlive/room.js +0 -33
 - package/lib/routes/laosiji/feed.js +0 -23
 - package/lib/routes/laosiji/hotshow.js +0 -32
 - package/lib/routes/lastfm/loved.js +0 -27
 - package/lib/routes/lastfm/recent.js +0 -27
 - package/lib/routes/lastfm/top.js +0 -27
 - package/lib/routes/law/dh.js +0 -39
 - package/lib/routes/law/gf.js +0 -41
 - package/lib/routes/law/hq.js +0 -39
 - package/lib/routes/law/hw.js +0 -39
 - package/lib/routes/law/jctd.js +0 -41
 - package/lib/routes/law/jh.js +0 -41
 - package/lib/routes/law/jtc.js +0 -41
 - package/lib/routes/law/ts.js +0 -41
 - package/lib/routes/law/zl.js +0 -40
 - package/lib/routes/leboncoin/ad.js +0 -136
 - package/lib/routes/leetcode/articles.js +0 -77
 - package/lib/routes/leetcode/check-cn.js +0 -98
 - package/lib/routes/leetcode/check-us.js +0 -32
 - package/lib/routes/leetcode/utils.js +0 -54
 - package/lib/routes/letterboxd/utils.js +0 -140
 - package/lib/routes/liequtv/room.js +0 -36
 - package/lib/routes/lifetimes/index.js +0 -99
 - package/lib/routes/lingyi/index.js +0 -64
 - package/lib/routes/linkedkeeper/index.js +0 -37
 - package/lib/routes/linkresearcher/index.js +0 -65
 - package/lib/routes/liquipedia/dota2_matches.js +0 -50
 - package/lib/routes/liwushuo/index.js +0 -28
 - package/lib/routes/liyuan-forums/threads.js +0 -76
 - package/lib/routes/lizhi/user.js +0 -46
 - package/lib/routes/logseq/changelog.js +0 -42
 - package/lib/routes/lol/newsindex.js +0 -95
 - package/lib/routes/lolapp/article.js +0 -53
 - package/lib/routes/loveheaven/update.js +0 -45
 - package/lib/routes/lowendtalk/discussion.js +0 -43
 - package/lib/routes/luogu/contest.js +0 -28
 - package/lib/routes/luogu/daily.js +0 -53
 - package/lib/routes/luogu/userFeed.js +0 -38
 - package/lib/routes/lwn/alerts.js +0 -57
 - package/lib/routes/macau-bolsas/index.js +0 -47
 - package/lib/routes/macked/app.js +0 -25
 - package/lib/routes/macwk/soft.js +0 -32
 - package/lib/routes/mafengwo/note.js +0 -53
 - package/lib/routes/magireco/announcements.js +0 -26
 - package/lib/routes/magireco/event_banner.js +0 -34
 - package/lib/routes/mail/imap.js +0 -79
 - package/lib/routes/maitta/index.js +0 -29
 - package/lib/routes/makeuseof/index.js +0 -59
 - package/lib/routes/manhuadui/manhua.js +0 -36
 - package/lib/routes/manhuagui/comic.js +0 -99
 - package/lib/routes/manong-weekly/issues.js +0 -33
 - package/lib/routes/manxiaosi/book.js +0 -49
 - package/lib/routes/maoyan/hotComplete.js +0 -87
 - package/lib/routes/mastodon/account_id.js +0 -17
 - package/lib/routes/mastodon/acct.js +0 -18
 - package/lib/routes/mastodon/timeline_local.js +0 -18
 - package/lib/routes/mastodon/timeline_remote.js +0 -18
 - package/lib/routes/mastodon/utils.js +0 -128
 - package/lib/routes/matataki/site/posts/author.js +0 -17
 - package/lib/routes/matataki/site/posts/favorite.js +0 -42
 - package/lib/routes/matataki/site/posts/scoreranking.js +0 -15
 - package/lib/routes/matataki/site/posts/tag.js +0 -16
 - package/lib/routes/matataki/site/posts/timeranking.js +0 -15
 - package/lib/routes/matataki/site/posts/token.js +0 -18
 - package/lib/routes/matataki/utils/matataki-utils.js +0 -125
 - package/lib/routes/matters/author.js +0 -49
 - package/lib/routes/matters/latest.js +0 -69
 - package/lib/routes/matters/tags.js +0 -56
 - package/lib/routes/maxnews/dota2.js +0 -45
 - package/lib/routes/mcdonalds/news.js +0 -53
 - package/lib/routes/mckinsey/index.js +0 -49
 - package/lib/routes/mediadigest/category.js +0 -130
 - package/lib/routes/meihua/article.js +0 -54
 - package/lib/routes/meihua/shots.js +0 -58
 - package/lib/routes/meituan/open/announce.js +0 -45
 - package/lib/routes/meituan/tech/home.js +0 -45
 - package/lib/routes/mercari/index.js +0 -67
 - package/lib/routes/metacritic/release.js +0 -53
 - package/lib/routes/method-studios/index.js +0 -60
 - package/lib/routes/metred/fuli.js +0 -42
 - package/lib/routes/mhgui/comic.js +0 -99
 - package/lib/routes/mhw/news.js +0 -48
 - package/lib/routes/mhw/update.js +0 -66
 - package/lib/routes/mi/board.js +0 -36
 - package/lib/routes/mi/crowdfunding.js +0 -31
 - package/lib/routes/mi/golden.js +0 -22
 - package/lib/routes/mi/miui/index.js +0 -58
 - package/lib/routes/mi/youpin/crowdfunding.js +0 -39
 - package/lib/routes/mi/youpin/new.js +0 -26
 - package/lib/routes/micmicidol/article.js +0 -28
 - package/lib/routes/microsoft-store/updates.js +0 -30
 - package/lib/routes/mihoyo/bh2.js +0 -43
 - package/lib/routes/mihoyo/bh3.js +0 -60
 - package/lib/routes/mind42/index.js +0 -7
 - package/lib/routes/mind42/search.js +0 -5
 - package/lib/routes/mind42/tag.js +0 -5
 - package/lib/routes/mind42/utils.js +0 -47
 - package/lib/routes/minecraft/version.js +0 -34
 - package/lib/routes/mingjian/index.js +0 -46
 - package/lib/routes/miniapp/article.js +0 -57
 - package/lib/routes/miniapp/store/newest.js +0 -36
 - package/lib/routes/miniflux/get_entries.js +0 -264
 - package/lib/routes/miniflux/get_feeds.js +0 -90
 - package/lib/routes/mirror/entries.js +0 -80
 - package/lib/routes/missevan/drama.js +0 -40
 - package/lib/routes/missevan/latest.js +0 -47
 - package/lib/routes/mitbbs/index.js +0 -54
 - package/lib/routes/mitre/publications.js +0 -27
 - package/lib/routes/mittrchina/index.js +0 -45
 - package/lib/routes/mlhang/latest.js +0 -23
 - package/lib/routes/mlog-club/projects.js +0 -33
 - package/lib/routes/mlog-club/topics.js +0 -37
 - package/lib/routes/mobdata/report.js +0 -30
 - package/lib/routes/mobilism/release.js +0 -42
 - package/lib/routes/modian/zhongchou.js +0 -61
 - package/lib/routes/mofcom/article.js +0 -54
 - package/lib/routes/moxingfans/index.js +0 -50
 - package/lib/routes/moxingnet/index.js +0 -61
 - package/lib/routes/mp4ba/index.js +0 -133
 - package/lib/routes/mp4er/index.js +0 -83
 - package/lib/routes/mpaypass/main.js +0 -73
 - package/lib/routes/mpaypass/news.js +0 -43
 - package/lib/routes/mqube/latest.js +0 -21
 - package/lib/routes/mqube/tag.js +0 -23
 - package/lib/routes/mqube/top.js +0 -21
 - package/lib/routes/mqube/user.js +0 -25
 - package/lib/routes/muchong/journal.js +0 -52
 - package/lib/routes/mzitu/category.js +0 -26
 - package/lib/routes/mzitu/home.js +0 -32
 - package/lib/routes/mzitu/post.js +0 -41
 - package/lib/routes/mzitu/tag.js +0 -25
 - package/lib/routes/mzitu/tags.js +0 -23
 - package/lib/routes/mzitu/util.js +0 -51
 - package/lib/routes/namoc/announcement.js +0 -64
 - package/lib/routes/namoc/exhibition.js +0 -67
 - package/lib/routes/namoc/media.js +0 -67
 - package/lib/routes/namoc/news.js +0 -67
 - package/lib/routes/namoc/specials.js +0 -42
 - package/lib/routes/nasa/apod-cn.js +0 -66
 - package/lib/routes/nasa/apod-ncku.js +0 -30
 - package/lib/routes/nasa/apod.js +0 -30
 - package/lib/routes/natgeo/dailyphoto.js +0 -27
 - package/lib/routes/natgeo/natgeo.js +0 -70
 - package/lib/routes/nature/cover.js +0 -90
 - package/lib/routes/nature/highlight.js +0 -57
 - package/lib/routes/nature/news-and-comment.js +0 -78
 - package/lib/routes/nature/news.js +0 -51
 - package/lib/routes/nature/research.js +0 -184
 - package/lib/routes/nautilus/topics.js +0 -45
 - package/lib/routes/nba/app_news.js +0 -40
 - package/lib/routes/ncm/artist.js +0 -33
 - package/lib/routes/ncm/djradio.js +0 -81
 - package/lib/routes/ncm/playlist.js +0 -45
 - package/lib/routes/ncm/userplaylist.js +0 -58
 - package/lib/routes/ncm/userplayrecords.js +0 -57
 - package/lib/routes/netease/ds.js +0 -41
 - package/lib/routes/netease/dy.js +0 -54
 - package/lib/routes/netease/dy2.js +0 -62
 - package/lib/routes/netease/news/special.js +0 -121
 - package/lib/routes/netease/open/latest.js +0 -68
 - package/lib/routes/netease/open/vip.js +0 -39
 - package/lib/routes/netflix/newsroom.js +0 -82
 - package/lib/routes/network360/jobs.js +0 -24
 - package/lib/routes/newrank/douyin.js +0 -60
 - package/lib/routes/newrank/utils.js +0 -112
 - package/lib/routes/newrank/wechat.js +0 -37
 - package/lib/routes/newsmth/account.js +0 -39
 - package/lib/routes/newsmth/section.js +0 -99
 - package/lib/routes/newzmz/index.js +0 -78
 - package/lib/routes/newzmz/view.js +0 -42
 - package/lib/routes/nfmovies/index.js +0 -58
 - package/lib/routes/nga/forum.js +0 -72
 - package/lib/routes/nga/post.js +0 -71
 - package/lib/routes/nhentai/other.js +0 -25
 - package/lib/routes/nhentai/search.js +0 -16
 - package/lib/routes/nhentai/util.js +0 -136
 - package/lib/routes/nhk/news_web_easy.js +0 -44
 - package/lib/routes/niaogebiji/cat.js +0 -86
 - package/lib/routes/niaogebiji/index.js +0 -40
 - package/lib/routes/niaogebiji/today.js +0 -29
 - package/lib/routes/nikkei/index.js +0 -34
 - package/lib/routes/nikkei/news.js +0 -155
 - package/lib/routes/ningmeng/song.js +0 -77
 - package/lib/routes/nintendo/direct.js +0 -34
 - package/lib/routes/nintendo/eshop_cn.js +0 -51
 - package/lib/routes/nintendo/eshop_hk.js +0 -26
 - package/lib/routes/nintendo/eshop_jp.js +0 -20
 - package/lib/routes/nintendo/eshop_us.js +0 -36
 - package/lib/routes/nintendo/news.js +0 -25
 - package/lib/routes/nintendo/news_china.js +0 -41
 - package/lib/routes/nintendo/system-update.js +0 -38
 - package/lib/routes/nintendo/utils.js +0 -186
 - package/lib/routes/nobelprize/index.js +0 -79
 - package/lib/routes/noi/index.js +0 -40
 - package/lib/routes/noi/province-news.js +0 -40
 - package/lib/routes/noi/rg-news.js +0 -47
 - package/lib/routes/noi/winners-list.js +0 -41
 - package/lib/routes/northhouse/index.js +0 -54
 - package/lib/routes/nosec/index.js +0 -73
 - package/lib/routes/notefolio/index.js +0 -67
 - package/lib/routes/novel/axdzs.js +0 -67
 - package/lib/routes/novel/biquge.js +0 -65
 - package/lib/routes/novel/biqugeinfo.js +0 -69
 - package/lib/routes/novel/booksky.js +0 -44
 - package/lib/routes/novel/dcrsw.js +0 -58
 - package/lib/routes/novel/ptwxz.js +0 -76
 - package/lib/routes/novel/shuquge.js +0 -63
 - package/lib/routes/novel/uukanshu.js +0 -39
 - package/lib/routes/novel/wenxuemi.js +0 -63
 - package/lib/routes/novel/zhaishuyuan.js +0 -84
 - package/lib/routes/npc/index.js +0 -42
 - package/lib/routes/nyaa/search.js +0 -31
 - package/lib/routes/nytimes/book.js +0 -71
 - package/lib/routes/nytimes/daily_briefing_chinese.js +0 -61
 - package/lib/routes/nytimes/index.js +0 -111
 - package/lib/routes/nytimes/utils.js +0 -102
 - package/lib/routes/obsidian/announcements.js +0 -22
 - package/lib/routes/oilprice/index.js +0 -66
 - package/lib/routes/one/index.js +0 -48
 - package/lib/routes/openai/blog.js +0 -52
 - package/lib/routes/or/index.js +0 -54
 - package/lib/routes/oschina/news.js +0 -97
 - package/lib/routes/oschina/topic.js +0 -54
 - package/lib/routes/oschina/u.js +0 -57
 - package/lib/routes/oschina/user.js +0 -57
 - package/lib/routes/outagereport/service.js +0 -51
 - package/lib/routes/ow/patch.js +0 -23
 - package/lib/routes/owspace/read.js +0 -141
 - package/lib/routes/p-articles/contributors.js +0 -45
 - package/lib/routes/p-articles/section.js +0 -53
 - package/lib/routes/p-articles/utils.js +0 -29
 - package/lib/routes/paidai/utils.js +0 -26
 - package/lib/routes/partnershiponai/resources.js +0 -49
 - package/lib/routes/patchwork.kernel.org/comments.js +0 -33
 - package/lib/routes/pbc/goutongjiaoliu.js +0 -52
 - package/lib/routes/pbc/tradeAnnouncement.js +0 -52
 - package/lib/routes/pcr/news-cn.js +0 -28
 - package/lib/routes/pcr/news-tw.js +0 -67
 - package/lib/routes/pcr/news.js +0 -31
 - package/lib/routes/pediy/topic.js +0 -117
 - package/lib/routes/pediy/utils.js +0 -27
 - package/lib/routes/pgyer/app.js +0 -91
 - package/lib/routes/phoronix/index.js +0 -111
 - package/lib/routes/pianyuan/app.js +0 -49
 - package/lib/routes/piaohua/hot.js +0 -37
 - package/lib/routes/piapro/public.js +0 -54
 - package/lib/routes/piapro/user.js +0 -47
 - package/lib/routes/piapro/utils.js +0 -45
 - package/lib/routes/pincong/hot.js +0 -33
 - package/lib/routes/pincong/index.js +0 -40
 - package/lib/routes/pincong/topic.js +0 -32
 - package/lib/routes/pingwest/status.js +0 -40
 - package/lib/routes/pingwest/tag.js +0 -50
 - package/lib/routes/pingwest/user.js +0 -55
 - package/lib/routes/pingwest/utils.js +0 -76
 - package/lib/routes/pintu360/index.js +0 -54
 - package/lib/routes/pixiv/api/getBookmarks.js +0 -25
 - package/lib/routes/pixiv/api/getIllustFollows.js +0 -22
 - package/lib/routes/pixiv/api/getIllusts.js +0 -24
 - package/lib/routes/pixiv/api/getRanking.js +0 -32
 - package/lib/routes/pixiv/api/getUserDetail.js +0 -29
 - package/lib/routes/pixiv/api/searchIllust.js +0 -26
 - package/lib/routes/pixiv/api/searchPopularIllust.js +0 -25
 - package/lib/routes/pixiv/bookmarks.js +0 -39
 - package/lib/routes/pixiv/constants.js +0 -8
 - package/lib/routes/pixiv/illustfollow.js +0 -33
 - package/lib/routes/pixiv/pixiv-got.js +0 -65
 - package/lib/routes/pixiv/ranking.js +0 -85
 - package/lib/routes/pixiv/search.js +0 -50
 - package/lib/routes/pixiv/token.js +0 -74
 - package/lib/routes/pixiv/user.js +0 -37
 - package/lib/routes/pixiv/utils.js +0 -17
 - package/lib/routes/pjsk/news.js +0 -49
 - package/lib/routes/plainlaw/archives.js +0 -42
 - package/lib/routes/pmcaff/feed.js +0 -51
 - package/lib/routes/pmcaff/list.js +0 -67
 - package/lib/routes/pmcaff/user.js +0 -56
 - package/lib/routes/pnas/index.js +0 -66
 - package/lib/routes/pocket/trending.js +0 -31
 - package/lib/routes/polar/blog.js +0 -47
 - package/lib/routes/popiask/questions.js +0 -41
 - package/lib/routes/popiask/tapechat_questions.js +0 -43
 - package/lib/routes/popyard/index.js +0 -93
 - package/lib/routes/pork-price/index.js +0 -49
 - package/lib/routes/pornhub/category.js +0 -22
 - package/lib/routes/pornhub/category_url.js +0 -30
 - package/lib/routes/pornhub/model.js +0 -31
 - package/lib/routes/pornhub/pornstar.js +0 -31
 - package/lib/routes/pornhub/search.js +0 -22
 - package/lib/routes/pornhub/users.js +0 -31
 - package/lib/routes/potplayer/update.js +0 -42
 - package/lib/routes/prestige-av/series.js +0 -39
 - package/lib/routes/processon/popular.js +0 -51
 - package/lib/routes/project-zero-issues/index.js +0 -48
 - package/lib/routes/ps/list.js +0 -34
 - package/lib/routes/ps/product.js +0 -133
 - package/lib/routes/ps/ps4updates.js +0 -60
 - package/lib/routes/ps/trophy.js +0 -86
 - package/lib/routes/psnine/game.js +0 -32
 - package/lib/routes/psnine/index.js +0 -33
 - package/lib/routes/psnine/shuzhe.js +0 -33
 - package/lib/routes/psnine/trade.js +0 -39
 - package/lib/routes/ptpress/book.js +0 -34
 - package/lib/routes/pubmed/trending.js +0 -65
 - package/lib/routes/putonghua/hangzhou.js +0 -45
 - package/lib/routes/qdaily/index.js +0 -88
 - package/lib/routes/qidian/chapter.js +0 -43
 - package/lib/routes/qidian/forum.js +0 -41
 - package/lib/routes/qidian/free-next.js +0 -45
 - package/lib/routes/qidian/free.js +0 -47
 - package/lib/routes/qingting/channel.js +0 -36
 - package/lib/routes/qlwb/city.js +0 -54
 - package/lib/routes/qlwb/news.js +0 -37
 - package/lib/routes/qstheory/index.js +0 -122
 - package/lib/routes/qtfyfl/category.js +0 -91
 - package/lib/routes/quantamagazine/archive.js +0 -81
 - package/lib/routes/questmobile/report.js +0 -122
 - package/lib/routes/quicker/person.js +0 -32
 - package/lib/routes/quicker/qa.js +0 -41
 - package/lib/routes/quicker/update.js +0 -30
 - package/lib/routes/qutoutiao/category.js +0 -44
 - package/lib/routes/radio/radio.js +0 -50
 - package/lib/routes/react/react-native-weekly.js +0 -35
 - package/lib/routes/remote-work/index.js +0 -88
 - package/lib/routes/rescuetime/release-notes.js +0 -37
 - package/lib/routes/researchgate/publications.js +0 -60
 - package/lib/routes/reuters/channel.js +0 -155
 - package/lib/routes/reuters/theWire.js +0 -45
 - package/lib/routes/reuters/utils.js +0 -72
 - package/lib/routes/rfa/index.js +0 -46
 - package/lib/routes/right/forum.js +0 -67
 - package/lib/routes/rrys/review.js +0 -30
 - package/lib/routes/rs05/rs05.js +0 -35
 - package/lib/routes/rss3/blog.js +0 -47
 - package/lib/routes/rthk-news/index.js +0 -60
 - package/lib/routes/s-hentai/index.js +0 -64
 - package/lib/routes/sagawa/index.js +0 -67
 - package/lib/routes/sakurazaka46/blog.js +0 -38
 - package/lib/routes/sankakucomplex/post.js +0 -53
 - package/lib/routes/sans/summit_archive.js +0 -24
 - package/lib/routes/saraba1st/thread.js +0 -45
 - package/lib/routes/sbs/chinese.js +0 -70
 - package/lib/routes/scala-blog/scala-blog.js +0 -29
 - package/lib/routes/scboy/thread.js +0 -50
 - package/lib/routes/sciencemag/cover.js +0 -56
 - package/lib/routes/sciencemag/current.js +0 -123
 - package/lib/routes/sciencemag/early.js +0 -97
 - package/lib/routes/sciencenet/blog.js +0 -56
 - package/lib/routes/sckjt/news.js +0 -35
 - package/lib/routes/scmp/index.js +0 -115
 - package/lib/routes/scoresaber/user.js +0 -44
 - package/lib/routes/secrss/author.js +0 -22
 - package/lib/routes/secrss/category.js +0 -25
 - package/lib/routes/segmentfault/channel.js +0 -90
 - package/lib/routes/segmentfault/user.js +0 -90
 - package/lib/routes/sexinsex/index.js +0 -101
 - package/lib/routes/sf/sffq-announce.js +0 -22
 - package/lib/routes/shanbay/checkin.js +0 -48
 - package/lib/routes/shanbay/footprints.js +0 -42
 - package/lib/routes/shengwugu/index.js +0 -41
 - package/lib/routes/shinybbs/index.js +0 -60
 - package/lib/routes/shinybbs/latest.js +0 -57
 - package/lib/routes/shinybbs/p.js +0 -38
 - package/lib/routes/showroom/room.js +0 -31
 - package/lib/routes/shuax/project.js +0 -37
 - package/lib/routes/shuhui/comics.js +0 -95
 - package/lib/routes/simonsfoundation/articles.js +0 -53
 - package/lib/routes/simpread/changelog.js +0 -79
 - package/lib/routes/sina/chuangshiji.js +0 -38
 - package/lib/routes/sina/discovery.js +0 -52
 - package/lib/routes/sina/finance.js +0 -37
 - package/lib/routes/sina/rollnews.js +0 -36
 - package/lib/routes/sina/sports.js +0 -54
 - package/lib/routes/sixthtone/news.js +0 -52
 - package/lib/routes/sketch/updates.js +0 -40
 - package/lib/routes/skysports/news.js +0 -53
 - package/lib/routes/smzdm/article.js +0 -57
 - package/lib/routes/smzdm/baoliao.js +0 -55
 - package/lib/routes/smzdm/haowen.js +0 -60
 - package/lib/routes/smzdm/haowen_fenlei.js +0 -63
 - package/lib/routes/smzdm/keyword.js +0 -39
 - package/lib/routes/smzdm/ranking.js +0 -39
 - package/lib/routes/sobooks/date.js +0 -7
 - package/lib/routes/sobooks/index.js +0 -7
 - package/lib/routes/sobooks/tag.js +0 -7
 - package/lib/routes/sobooks/utils.js +0 -49
 - package/lib/routes/socialbeta/home.js +0 -42
 - package/lib/routes/socialbeta/hunt.js +0 -29
 - package/lib/routes/socialclub/events.js +0 -28
 - package/lib/routes/sogou/doodles.js +0 -26
 - package/lib/routes/sohu/mp.js +0 -55
 - package/lib/routes/soomal/topics.js +0 -130
 - package/lib/routes/soul/hot.js +0 -74
 - package/lib/routes/soundcloud/utils.js +0 -47
 - package/lib/routes/sse/convert.js +0 -32
 - package/lib/routes/sse/disclosure.js +0 -34
 - package/lib/routes/sse/inquire.js +0 -31
 - package/lib/routes/sse/renewal.js +0 -61
 - package/lib/routes/sse/sserules.js +0 -49
 - package/lib/routes/ssmh/category.js +0 -50
 - package/lib/routes/ssmh/index.js +0 -32
 - package/lib/routes/sspai/activity.js +0 -82
 - package/lib/routes/sspai/author.js +0 -63
 - package/lib/routes/sspai/column.js +0 -66
 - package/lib/routes/sspai/matrix.js +0 -44
 - package/lib/routes/sspai/series.js +0 -46
 - package/lib/routes/sspai/shortcutsGallery.js +0 -28
 - package/lib/routes/sspai/tag.js +0 -46
 - package/lib/routes/sspai/topic.js +0 -53
 - package/lib/routes/sspai/topics.js +0 -41
 - package/lib/routes/steam/search.js +0 -57
 - package/lib/routes/stork/keyword.js +0 -58
 - package/lib/routes/storyfm/index.js +0 -44
 - package/lib/routes/swjtu/tl/news.js +0 -35
 - package/lib/routes/szse/inquire.js +0 -87
 - package/lib/routes/szse/notice.js +0 -73
 - package/lib/routes/szse/projectdynamic.js +0 -103
 - package/lib/routes/t66y/index.js +0 -156
 - package/lib/routes/t66y/post.js +0 -153
 - package/lib/routes/tahui/rptlist.js +0 -48
 - package/lib/routes/tam/forecast.js +0 -53
 - package/lib/routes/tanwu/products.js +0 -27
 - package/lib/routes/taoguba/index.js +0 -46
 - package/lib/routes/taoguba/user.js +0 -46
 - package/lib/routes/taptap/changelog.js +0 -39
 - package/lib/routes/taptap/review.js +0 -39
 - package/lib/routes/taptap/topic.js +0 -85
 - package/lib/routes/technologyreview/topic.js +0 -35
 - package/lib/routes/telecompaper/news.js +0 -100
 - package/lib/routes/telecompaper/search.js +0 -76
 - package/lib/routes/tencent/bigdata/index.js +0 -53
 - package/lib/routes/tencent/bugly/changelog.js +0 -49
 - package/lib/routes/tencent/egame/room.js +0 -52
 - package/lib/routes/tencent/factcheck/index.js +0 -51
 - package/lib/routes/tencent/gameinstitute/community.js +0 -60
 - package/lib/routes/tencent/guyu/channel.js +0 -64
 - package/lib/routes/tencent/news/author.js +0 -59
 - package/lib/routes/tencent/pvp/newsindex.js +0 -62
 - package/lib/routes/tencent/tucaoqq/post.js +0 -39
 - package/lib/routes/tencent/video/playlist.js +0 -46
 - package/lib/routes/tencent/wechat/announce.js +0 -32
 - package/lib/routes/tencent/wechat/ce.js +0 -40
 - package/lib/routes/tencent/wechat/csm.js +0 -59
 - package/lib/routes/tencent/wechat/ershcimi.js +0 -43
 - package/lib/routes/tencent/wechat/feeds.js +0 -47
 - package/lib/routes/tencent/wechat/miniprogram/devtools.js +0 -38
 - package/lib/routes/tencent/wechat/miniprogram/framework.js +0 -33
 - package/lib/routes/tencent/wechat/miniprogram/plugins.js +0 -54
 - package/lib/routes/tencent/wechat/miniprogram/wxcloud.js +0 -47
 - package/lib/routes/tencent/wechat/mp.js +0 -77
 - package/lib/routes/tencent/wechat/msgalbum.js +0 -59
 - package/lib/routes/tencent/wechat/tgchannel.js +0 -160
 - package/lib/routes/tencent/wechat/uread.js +0 -51
 - package/lib/routes/tencent/wechat/wemp.js +0 -58
 - package/lib/routes/tencent/wechat/wjdn.js +0 -28
 - package/lib/routes/tencent/wechat/wxnmh.js +0 -46
 - package/lib/routes/tesla/update.js +0 -42
 - package/lib/routes/the-economist/download.js +0 -30
 - package/lib/routes/the-economist/full.js +0 -48
 - package/lib/routes/the-economist/gre-vocabulary.js +0 -27
 - package/lib/routes/thepaper/839studio/category.js +0 -40
 - package/lib/routes/thepaper/839studio/studio.js +0 -33
 - package/lib/routes/thepaper/channel.js +0 -15
 - package/lib/routes/thepaper/featured.js +0 -14
 - package/lib/routes/thepaper/list.js +0 -15
 - package/lib/routes/thepaper/utils.js +0 -48
 - package/lib/routes/thrillist/index.js +0 -67
 - package/lib/routes/tianya/comments.js +0 -41
 - package/lib/routes/tianya/index.js +0 -32
 - package/lib/routes/tianya/user.js +0 -34
 - package/lib/routes/tianyancha/hot.js +0 -48
 - package/lib/routes/tieba/forum.js +0 -88
 - package/lib/routes/tieba/post.js +0 -66
 - package/lib/routes/tieba/user.js +0 -36
 - package/lib/routes/tingdiantz/95598.js +0 -46
 - package/lib/routes/tingshuitz/dalian.js +0 -34
 - package/lib/routes/tingshuitz/dongguan.js +0 -33
 - package/lib/routes/tingshuitz/guangzhou.js +0 -23
 - package/lib/routes/tingshuitz/hangzhou.js +0 -34
 - package/lib/routes/tingshuitz/nanjing.js +0 -35
 - package/lib/routes/tingshuitz/wuhan.js +0 -34
 - package/lib/routes/tingshuitz/xian.js +0 -31
 - package/lib/routes/tingshuitz/xiaoshan.js +0 -34
 - package/lib/routes/tingshuitz/yangjiang.js +0 -31
 - package/lib/routes/titsguru/model.js +0 -16
 - package/lib/routes/titsguru/util.js +0 -68
 - package/lib/routes/tongli/news.js +0 -45
 - package/lib/routes/tophub/index.js +0 -28
 - package/lib/routes/totalcommander/whatsnew.js +0 -32
 - package/lib/routes/touhougarakuta/index.js +0 -63
 - package/lib/routes/touhougarakuta/json2html.js +0 -101
 - package/lib/routes/tprtc/cqzr.js +0 -80
 - package/lib/routes/tprtc/news.js +0 -71
 - package/lib/routes/tprtc/qyzc.js +0 -84
 - package/lib/routes/transferwise/pair.js +0 -64
 - package/lib/routes/tssstatus/index.js +0 -35
 - package/lib/routes/tuicool/mags.js +0 -41
 - package/lib/routes/twitter/developer-api/search.js +0 -22
 - package/lib/routes/twitter/developer-api/user.js +0 -29
 - package/lib/routes/twitter/followings.js +0 -46
 - package/lib/routes/twitter/keyword.js +0 -11
 - package/lib/routes/twitter/likes.js +0 -22
 - package/lib/routes/twitter/list.js +0 -38
 - package/lib/routes/twitter/media.js +0 -7
 - package/lib/routes/twitter/trends.js +0 -23
 - package/lib/routes/twitter/user.js +0 -11
 - package/lib/routes/twitter/utils.js +0 -436
 - package/lib/routes/twitter/web-api/media.js +0 -20
 - package/lib/routes/twitter/web-api/search.js +0 -16
 - package/lib/routes/twitter/web-api/twitter-api.js +0 -123
 - package/lib/routes/twitter/web-api/twitter-got.js +0 -87
 - package/lib/routes/twitter/web-api/user.js +0 -32
 - package/lib/routes/twmanhuagui/comic.js +0 -99
 - package/lib/routes/twreporter/category.js +0 -36
 - package/lib/routes/twreporter/fetch_article.js +0 -66
 - package/lib/routes/twreporter/newest.js +0 -34
 - package/lib/routes/twreporter/photography.js +0 -57
 - package/lib/routes/typora/changelog-dev.js +0 -35
 - package/lib/routes/typora/changelog.js +0 -60
 - package/lib/routes/udn/global.js +0 -61
 - package/lib/routes/ui-cn/article.js +0 -51
 - package/lib/routes/uisdc/news.js +0 -34
 - package/lib/routes/uisdc/talk.js +0 -58
 - package/lib/routes/uisdc/topic.js +0 -55
 - package/lib/routes/uisdc/zt.js +0 -65
 - package/lib/routes/uniqlo/stylingbook.js +0 -24
 - package/lib/routes/unit-image/films.js +0 -141
 - package/lib/routes/universities/ahau/cs_news/utils.js +0 -50
 - package/lib/routes/universities/ahau/jwc/utils.js +0 -50
 - package/lib/routes/universities/ahau/main/utils.js +0 -50
 - package/lib/routes/universities/ahmu/news.js +0 -51
 - package/lib/routes/universities/ahut/cstzgg.js +0 -45
 - package/lib/routes/universities/ahut/jwc.js +0 -43
 - package/lib/routes/universities/ahut/news.js +0 -44
 - package/lib/routes/universities/bit/bityjs.js +0 -23
 - package/lib/routes/universities/bit/cs/cs.js +0 -26
 - package/lib/routes/universities/bit/cs/utils.js +0 -73
 - package/lib/routes/universities/bit/jwc/jwc.js +0 -26
 - package/lib/routes/universities/bit/jwc/utils.js +0 -65
 - package/lib/routes/universities/bjtu/gs/index.js +0 -130
 - package/lib/routes/universities/buaa/news/index.js +0 -66
 - package/lib/routes/universities/buaa/utils.js +0 -57
 - package/lib/routes/universities/bupt/funbox.js +0 -40
 - package/lib/routes/universities/bupt/grs.js +0 -64
 - package/lib/routes/universities/bupt/news.js +0 -34
 - package/lib/routes/universities/bupt/portal.js +0 -34
 - package/lib/routes/universities/bupt/utils.js +0 -72
 - package/lib/routes/universities/bupt/yz.js +0 -155
 - package/lib/routes/universities/bwu/utils.js +0 -50
 - package/lib/routes/universities/cas/cg/index.js +0 -50
 - package/lib/routes/universities/cas/iee/kydt.js +0 -46
 - package/lib/routes/universities/cas/mesalab/kb.js +0 -45
 - package/lib/routes/universities/cas/sim/academic.js +0 -59
 - package/lib/routes/universities/cauele/cauele.js +0 -24
 - package/lib/routes/universities/cauyjs/cauyjs.js +0 -24
 - package/lib/routes/universities/ccnu/career.js +0 -43
 - package/lib/routes/universities/ccnu/ccnucs.js +0 -23
 - package/lib/routes/universities/ccnu/ccnuwu.js +0 -23
 - package/lib/routes/universities/ccnu/ccnuyjs.js +0 -23
 - package/lib/routes/universities/cpu/home.js +0 -52
 - package/lib/routes/universities/cpu/jwc.js +0 -52
 - package/lib/routes/universities/cpu/yjsy.js +0 -52
 - package/lib/routes/universities/cqu/jwc/announcement.js +0 -53
 - package/lib/routes/universities/cqu/net/info.js +0 -60
 - package/lib/routes/universities/cqu/news/tz.js +0 -71
 - package/lib/routes/universities/cqu/news/utils.js +0 -48
 - package/lib/routes/universities/cqu/sci/info.js +0 -59
 - package/lib/routes/universities/cqu/youth/info.js +0 -62
 - package/lib/routes/universities/csu/job.js +0 -34
 - package/lib/routes/universities/cuc/yz.js +0 -39
 - package/lib/routes/universities/cucyjs/cucyjs.js +0 -23
 - package/lib/routes/universities/cug/gcxy/index.js +0 -114
 - package/lib/routes/universities/cug/news.js +0 -63
 - package/lib/routes/universities/cuit/cxxww.js +0 -63
 - package/lib/routes/universities/dlmu/news.js +0 -44
 - package/lib/routes/universities/dlu/jiaowu/news.js +0 -37
 - package/lib/routes/universities/dut/index.js +0 -60
 - package/lib/routes/universities/dut/subsite.js +0 -50
 - package/lib/routes/universities/ecnuyjs/ecnuyjs.js +0 -23
 - package/lib/routes/universities/ecustyjs/ecustyjs.js +0 -23
 - package/lib/routes/universities/fudan/cce.js +0 -52
 - package/lib/routes/universities/gdou/jwc/utils.js +0 -72
 - package/lib/routes/universities/gdut/news.js +0 -162
 - package/lib/routes/universities/gzmtu/jwc/utils.js +0 -86
 - package/lib/routes/universities/gzmtu/tsg/utils.js +0 -86
 - package/lib/routes/universities/gzyjs/gzyjs.js +0 -24
 - package/lib/routes/universities/harvard/health/blog.js +0 -51
 - package/lib/routes/universities/hhu/libNews.js +0 -57
 - package/lib/routes/universities/hhu/libNewsc.js +0 -75
 - package/lib/routes/universities/hit/jwc.js +0 -53
 - package/lib/routes/universities/hit/today.js +0 -85
 - package/lib/routes/universities/hitsz/article.js +0 -43
 - package/lib/routes/universities/hitwh/today.js +0 -46
 - package/lib/routes/universities/hnust/graduate/index.js +0 -40
 - package/lib/routes/universities/hust/aia/news.js +0 -32
 - package/lib/routes/universities/hust/aia/notice.js +0 -35
 - package/lib/routes/universities/hustyjs/hustyjs.js +0 -23
 - package/lib/routes/universities/jnu/yw/index.js +0 -81
 - package/lib/routes/universities/kmust/job/careers.js +0 -33
 - package/lib/routes/universities/kmust/job/jobfairs.js +0 -32
 - package/lib/routes/universities/kmust/jwc.js +0 -44
 - package/lib/routes/universities/lit/jwc.js +0 -50
 - package/lib/routes/universities/lit/tw.js +0 -56
 - package/lib/routes/universities/lit/xwzx.js +0 -73
 - package/lib/routes/universities/lntu/jwnews.js +0 -46
 - package/lib/routes/universities/lyu/news/utils.js +0 -42
 - package/lib/routes/universities/mit/graduateadmissions.js +0 -63
 - package/lib/routes/universities/nciae/news.js +0 -58
 - package/lib/routes/universities/nciae/tzgg.js +0 -58
 - package/lib/routes/universities/nciae/xsxx.js +0 -58
 - package/lib/routes/universities/ncwu/notice.js +0 -42
 - package/lib/routes/universities/neu/news.js +0 -61
 - package/lib/routes/universities/njfu/jwc.js +0 -52
 - package/lib/routes/universities/njtech/jwc.js +0 -54
 - package/lib/routes/universities/njupt/jwc.js +0 -84
 - package/lib/routes/universities/njust/cwc/index.js +0 -37
 - package/lib/routes/universities/njust/eo/index.js +0 -41
 - package/lib/routes/universities/njust/eo/util.js +0 -28
 - package/lib/routes/universities/njust/gs/index.js +0 -33
 - package/lib/routes/universities/njust/jwc/index.js +0 -39
 - package/lib/routes/universities/nuaa/cs/index.js +0 -84
 - package/lib/routes/universities/nuaa/jwc/jwc.js +0 -105
 - package/lib/routes/universities/nuaa/utils/pypasswaf.js +0 -24
 - package/lib/routes/universities/nuaa/yjsy/yjsy.js +0 -61
 - package/lib/routes/universities/nuc/index.js +0 -91
 - package/lib/routes/universities/nudt/yjszs.js +0 -65
 - package/lib/routes/universities/nuist/bulletin.js +0 -61
 - package/lib/routes/universities/nuist/cas.js +0 -60
 - package/lib/routes/universities/nuist/jwc.js +0 -66
 - package/lib/routes/universities/nuist/library/lib.js +0 -32
 - package/lib/routes/universities/nuist/scs.js +0 -60
 - package/lib/routes/universities/nuist/sese.js +0 -60
 - package/lib/routes/universities/nuist/xgc.js +0 -48
 - package/lib/routes/universities/nuist/yjs.js +0 -63
 - package/lib/routes/universities/nwafu/54youth.js +0 -28
 - package/lib/routes/universities/nwafu/cie.js +0 -28
 - package/lib/routes/universities/nwafu/gs.js +0 -28
 - package/lib/routes/universities/nwafu/jcc.js +0 -28
 - package/lib/routes/universities/nwafu/jiaowu.js +0 -28
 - package/lib/routes/universities/nwafu/lib.js +0 -28
 - package/lib/routes/universities/nwafu/news.js +0 -28
 - package/lib/routes/universities/nwafu/nic.js +0 -28
 - package/lib/routes/universities/nwafu/yjshy.js +0 -28
 - package/lib/routes/universities/ouc/it.js +0 -52
 - package/lib/routes/universities/outele/outele.js +0 -23
 - package/lib/routes/universities/outyjs/outyjs.js +0 -23
 - package/lib/routes/universities/pku/bbs/hot.js +0 -61
 - package/lib/routes/universities/pku/cls/lecture.js +0 -27
 - package/lib/routes/universities/pku/eecs.js +0 -41
 - package/lib/routes/universities/pku/pkuyjs.js +0 -23
 - package/lib/routes/universities/pku/rccp/mzyt.js +0 -33
 - package/lib/routes/universities/scauyjs/scauyjs.js +0 -23
 - package/lib/routes/universities/scnu/cs/match.js +0 -35
 - package/lib/routes/universities/scnu/jw.js +0 -32
 - package/lib/routes/universities/scnu/library.js +0 -32
 - package/lib/routes/universities/scnu/scnucs.js +0 -23
 - package/lib/routes/universities/scnu/scnuyjs.js +0 -23
 - package/lib/routes/universities/scut/jwc/news.js +0 -117
 - package/lib/routes/universities/scut/jwc/notice.js +0 -123
 - package/lib/routes/universities/scut/jwc/school.js +0 -121
 - package/lib/routes/universities/scut/scet/notice.js +0 -32
 - package/lib/routes/universities/scut/scutyjs.js +0 -28
 - package/lib/routes/universities/scut/seie/news_center.js +0 -57
 - package/lib/routes/universities/scvtc/xygg.js +0 -45
 - package/lib/routes/universities/sdu/cmse.js +0 -55
 - package/lib/routes/universities/sdu/cs.js +0 -55
 - package/lib/routes/universities/sdu/epe.js +0 -54
 - package/lib/routes/universities/sdu/mech.js +0 -58
 - package/lib/routes/universities/sdu/sc.js +0 -56
 - package/lib/routes/universities/seu/cse/index.js +0 -69
 - package/lib/routes/universities/seu/radio/academic.js +0 -65
 - package/lib/routes/universities/seu/yzb/index.js +0 -38
 - package/lib/routes/universities/shanghaitech/activity.js +0 -34
 - package/lib/routes/universities/shanghaitech/sist/activity.js +0 -51
 - package/lib/routes/universities/shiep/index.js +0 -95
 - package/lib/routes/universities/shmtu/jwc.js +0 -75
 - package/lib/routes/universities/shmtu/www.js +0 -61
 - package/lib/routes/universities/shou/www.js +0 -64
 - package/lib/routes/universities/shu/index.js +0 -75
 - package/lib/routes/universities/shu/jwc.js +0 -62
 - package/lib/routes/universities/sjtu/gs/tzgg.js +0 -31
 - package/lib/routes/universities/sjtu/gs/utils.js +0 -64
 - package/lib/routes/universities/sjtu/jwc.js +0 -115
 - package/lib/routes/universities/sjtu/seiee/academic.js +0 -18
 - package/lib/routes/universities/sjtu/seiee/bjwb.js +0 -45
 - package/lib/routes/universities/sjtu/seiee/utils.js +0 -45
 - package/lib/routes/universities/sjtu/seiee/xsb.js +0 -53
 - package/lib/routes/universities/sjtu/tongqu/activity.js +0 -43
 - package/lib/routes/universities/sjtu/yzb/zkxx.js +0 -33
 - package/lib/routes/universities/slu/utils.js +0 -74
 - package/lib/routes/universities/sustech/bidding.js +0 -34
 - package/lib/routes/universities/sustech/newshub-zh.js +0 -35
 - package/lib/routes/universities/sustyjs/sustyjs.js +0 -24
 - package/lib/routes/universities/swufe/seie/index.js +0 -71
 - package/lib/routes/universities/swust/cs.js +0 -62
 - package/lib/routes/universities/swust/helper.js +0 -47
 - package/lib/routes/universities/swust/jwc_news.js +0 -45
 - package/lib/routes/universities/swust/jwc_notice.js +0 -51
 - package/lib/routes/universities/szu/yz/index.js +0 -51
 - package/lib/routes/universities/szu/yz/utils.js +0 -78
 - package/lib/routes/universities/szuyjs/szuyjs.js +0 -24
 - package/lib/routes/universities/thu/index.js +0 -107
 - package/lib/routes/universities/tjpyu/ooa.js +0 -73
 - package/lib/routes/universities/tju/sse/_article.js +0 -34
 - package/lib/routes/universities/tju/sse/notice.js +0 -41
 - package/lib/routes/universities/tjuyjs/tjuyjs.js +0 -23
 - package/lib/routes/universities/tynu/tynu.js +0 -27
 - package/lib/routes/universities/uestc/auto.js +0 -113
 - package/lib/routes/universities/uestc/cqe.js +0 -40
 - package/lib/routes/universities/uestc/cs.js +0 -119
 - package/lib/routes/universities/uestc/gr.js +0 -46
 - package/lib/routes/universities/uestc/is.js +0 -102
 - package/lib/routes/universities/uestc/jwc.js +0 -38
 - package/lib/routes/universities/uestc/news.js +0 -33
 - package/lib/routes/universities/uestc/sice.js +0 -64
 - package/lib/routes/universities/upc/jsj.js +0 -81
 - package/lib/routes/universities/upc/main.js +0 -72
 - package/lib/routes/universities/upcyjs/upcyjs.js +0 -23
 - package/lib/routes/universities/usst/jwc.js +0 -62
 - package/lib/routes/universities/ustb/tj/news.js +0 -62
 - package/lib/routes/universities/ustc/index.js +0 -93
 - package/lib/routes/universities/ustc/job.js +0 -192
 - package/lib/routes/universities/ustc/jwc/index.js +0 -60
 - package/lib/routes/universities/utdallas/isso.js +0 -54
 - package/lib/routes/universities/whu/cs.js +0 -38
 - package/lib/routes/universities/whu/news.js +0 -128
 - package/lib/routes/universities/wtu/index.js +0 -34
 - package/lib/routes/universities/xidian/jwc.js +0 -70
 - package/lib/routes/universities/xjtu/dean.js +0 -86
 - package/lib/routes/universities/xjtu/ee.js +0 -44
 - package/lib/routes/universities/xjtu/gs/tzgg.js +0 -39
 - package/lib/routes/universities/xjtu/international.js +0 -53
 - package/lib/routes/universities/xjtu/job.js +0 -50
 - package/lib/routes/universities/ynnu/edu/base64.js +0 -351
 - package/lib/routes/universities/ynnu/edu/news.js +0 -109
 - package/lib/routes/universities/ynu/utils.js +0 -64
 - package/lib/routes/universities/yzu/home.js +0 -83
 - package/lib/routes/universities/yzu/yjszs.js +0 -81
 - package/lib/routes/universities/zjgsu/tzgg/utils.js +0 -54
 - package/lib/routes/universities/zju/career/index.js +0 -42
 - package/lib/routes/universities/zju/cst/custom.js +0 -44
 - package/lib/routes/universities/zju/cst/index.js +0 -94
 - package/lib/routes/universities/zju/grs/index.js +0 -44
 - package/lib/routes/universities/zju/list.js +0 -78
 - package/lib/routes/universities/zju/physics/index.js +0 -55
 - package/lib/routes/universities/zjut/design.js +0 -59
 - package/lib/routes/universities/zjut/index.js +0 -59
 - package/lib/routes/universities/zkyai/zkyai.js +0 -23
 - package/lib/routes/universities/zkyyjs/zkyyjs.js +0 -23
 - package/lib/routes/universities/zucc/cssearch/index.js +0 -47
 - package/lib/routes/universities/zucc/news/index.js +0 -68
 - package/lib/routes/universities/zzu/news.js +0 -80
 - package/lib/routes/universities/zzu/soft/news.js +0 -68
 - package/lib/routes/uraaka-joshi/uraaka-joshi-user.js +0 -28
 - package/lib/routes/uraaka-joshi/uraaka-joshi.js +0 -30
 - package/lib/routes/us/supremecourt/argument_audio.js +0 -58
 - package/lib/routes/uwants/index.js +0 -70
 - package/lib/routes/v2ex/post.js +0 -36
 - package/lib/routes/v2ex/tab.js +0 -60
 - package/lib/routes/v2ex/topics.js +0 -34
 - package/lib/routes/verge/index.js +0 -88
 - package/lib/routes/vgtime/keyword.js +0 -46
 - package/lib/routes/vgtime/news.js +0 -52
 - package/lib/routes/vgtime/release.js +0 -20
 - package/lib/routes/voa/day-photos.js +0 -54
 - package/lib/routes/voa/index.js +0 -54
 - package/lib/routes/vocus/publication.js +0 -19
 - package/lib/routes/vocus/utils.js +0 -29
 - package/lib/routes/vol/lastupdate.js +0 -51
 - package/lib/routes/vuevideo/user.js +0 -60
 - package/lib/routes/vulture/utils.js +0 -113
 - package/lib/routes/waijiedanao/article.js +0 -78
 - package/lib/routes/wallpaperhub/index.js +0 -22
 - package/lib/routes/wanwansub/index.js +0 -57
 - package/lib/routes/wanwansub/info.js +0 -44
 - package/lib/routes/watchface/update.js +0 -42
 - package/lib/routes/weatheralarm/index.js +0 -26
 - package/lib/routes/webtoons/comic.js +0 -54
 - package/lib/routes/webtoons/naver.js +0 -50
 - package/lib/routes/weexcn/index.js +0 -69
 - package/lib/routes/weforum/report.js +0 -52
 - package/lib/routes/wegene/column.js +0 -30
 - package/lib/routes/weibo/keyword.js +0 -47
 - package/lib/routes/weibo/oasis/user.js +0 -17
 - package/lib/routes/weibo/search/hot.js +0 -33
 - package/lib/routes/weibo/super_index.js +0 -53
 - package/lib/routes/weibo/timeline.js +0 -143
 - package/lib/routes/weibo/user.js +0 -137
 - package/lib/routes/weibo/utils.js +0 -353
 - package/lib/routes/weidian/goods.js +0 -37
 - package/lib/routes/weseepro/circle.js +0 -38
 - package/lib/routes/weseepro/newest-direct.js +0 -69
 - package/lib/routes/weseepro/newest.js +0 -69
 - package/lib/routes/westore/new.js +0 -40
 - package/lib/routes/whalegogo/home.js +0 -43
 - package/lib/routes/whalegogo/portal.js +0 -57
 - package/lib/routes/whb/zhuzhan.js +0 -76
 - package/lib/routes/wikihow/category.js +0 -34
 - package/lib/routes/wikihow/index.js +0 -32
 - package/lib/routes/wineyun/index.js +0 -36
 - package/lib/routes/wired/tag.js +0 -31
 - package/lib/routes/wolley/host.js +0 -39
 - package/lib/routes/wolley/index.js +0 -47
 - package/lib/routes/wolley/user.js +0 -38
 - package/lib/routes/woshipm/bookmarks.js +0 -45
 - package/lib/routes/woshipm/latest.js +0 -45
 - package/lib/routes/woshipm/popular.js +0 -38
 - package/lib/routes/woshipm/user_article.js +0 -43
 - package/lib/routes/woshipm/wen.js +0 -39
 - package/lib/routes/wto/dispute-settlement.js +0 -37
 - package/lib/routes/wukong/user.js +0 -93
 - package/lib/routes/x-mol/news.js +0 -48
 - package/lib/routes/x-mol/paper.js +0 -78
 - package/lib/routes/x-mol/utils.js +0 -16
 - package/lib/routes/x6d/index.js +0 -64
 - package/lib/routes/xiachufang/utils.js +0 -100
 - package/lib/routes/xiaoheihe/discount.js +0 -71
 - package/lib/routes/xiaoheihe/news.js +0 -53
 - package/lib/routes/xiaoheihe/user.js +0 -51
 - package/lib/routes/xiaohongshu/board.js +0 -26
 - package/lib/routes/xiaohongshu/user.js +0 -48
 - package/lib/routes/xiaohongshu/util.js +0 -18
 - package/lib/routes/xici/index.js +0 -33
 - package/lib/routes/ximalaya/album.js +0 -219
 - package/lib/routes/ximalaya/utils.js +0 -131
 - package/lib/routes/xinquji/internal.js +0 -15
 - package/lib/routes/xinquji/today.js +0 -15
 - package/lib/routes/xposed/module.js +0 -36
 - package/lib/routes/xuangubao/subject.js +0 -47
 - package/lib/routes/xueqiu/favorite.js +0 -37
 - package/lib/routes/xueqiu/fund.js +0 -71
 - package/lib/routes/xueqiu/hots.js +0 -44
 - package/lib/routes/xueqiu/snb.js +0 -42
 - package/lib/routes/xueqiu/stock_comments.js +0 -61
 - package/lib/routes/xueqiu/stock_info.js +0 -71
 - package/lib/routes/xueqiu/user.js +0 -52
 - package/lib/routes/xueqiu/user_stock.js +0 -47
 - package/lib/routes/xuetangx/course_list.js +0 -52
 - package/lib/routes/xwlb/index.js +0 -40
 - package/lib/routes/xyplorer/whatsnew.js +0 -32
 - package/lib/routes/yahoo-jp-tv/index.js +0 -21
 - package/lib/routes/yahoo-news/index.js +0 -44
 - package/lib/routes/yande.re/post_popular_recent.js +0 -63
 - package/lib/routes/yicai/brief.js +0 -34
 - package/lib/routes/yicas/blog.js +0 -52
 - package/lib/routes/yidoutang/index.js +0 -33
 - package/lib/routes/yinxiang/card.js +0 -45
 - package/lib/routes/yinxiang/category.js +0 -46
 - package/lib/routes/yinxiang/note.js +0 -41
 - package/lib/routes/yinxiang/personal.js +0 -47
 - package/lib/routes/yinxiang/tag.js +0 -46
 - package/lib/routes/yomiuri/news.js +0 -144
 - package/lib/routes/youdao/latest.js +0 -47
 - package/lib/routes/youdao/xueba.js +0 -64
 - package/lib/routes/youtube/channel.js +0 -35
 - package/lib/routes/youtube/playlist.js +0 -37
 - package/lib/routes/youtube/user.js +0 -35
 - package/lib/routes/youtube/utils.js +0 -90
 - package/lib/routes/yuanshen/index.js +0 -70
 - package/lib/routes/yuque/doc.js +0 -60
 - package/lib/routes/yuzu-emu/entry.js +0 -52
 - package/lib/routes/yxdown/news.js +0 -54
 - package/lib/routes/yxdown/recommend.js +0 -51
 - package/lib/routes/yyets/todayfilelist.js +0 -35
 - package/lib/routes/yystv/category.js +0 -65
 - package/lib/routes/yystv/docs.js +0 -34
 - package/lib/routes/zcfy/hot.js +0 -34
 - package/lib/routes/zcfy/index.js +0 -34
 - package/lib/routes/zcool/discover.js +0 -140
 - package/lib/routes/zcool/locations.js +0 -6829
 - package/lib/routes/zcool/top.js +0 -75
 - package/lib/routes/zcool/user.js +0 -58
 - package/lib/routes/zfrontier/board_postlist.js +0 -36
 - package/lib/routes/zfrontier/postlist.js +0 -33
 - package/lib/routes/zhanqi/room.js +0 -37
 - package/lib/routes/zhihu/activities.js +0 -108
 - package/lib/routes/zhihu/answers.js +0 -62
 - package/lib/routes/zhihu/bookstore/newest.js +0 -30
 - package/lib/routes/zhihu/collection.js +0 -76
 - package/lib/routes/zhihu/daily.js +0 -54
 - package/lib/routes/zhihu/daily_section.js +0 -54
 - package/lib/routes/zhihu/execlib/jsencrypt.js +0 -380
 - package/lib/routes/zhihu/hot.js +0 -38
 - package/lib/routes/zhihu/hotlist.js +0 -47
 - package/lib/routes/zhihu/pin/daily.js +0 -18
 - package/lib/routes/zhihu/pin/hotlist.js +0 -18
 - package/lib/routes/zhihu/pin/people.js +0 -19
 - package/lib/routes/zhihu/pin/utils.js +0 -58
 - package/lib/routes/zhihu/posts.js +0 -45
 - package/lib/routes/zhihu/question.js +0 -38
 - package/lib/routes/zhihu/timeline.js +0 -99
 - package/lib/routes/zhihu/topic.js +0 -68
 - package/lib/routes/zhihu/utils.js +0 -39
 - package/lib/routes/zhihu/weekly.js +0 -32
 - package/lib/routes/zhihu/zhuanlan.js +0 -91
 - package/lib/routes/zhilian/index.js +0 -78
 - package/lib/routes/zhishifenzi/depth.js +0 -56
 - package/lib/routes/zhishifenzi/innovation.js +0 -67
 - package/lib/routes/zhishifenzi/news.js +0 -66
 - package/lib/routes/zhuixinfan/list.js +0 -51
 - package/lib/routes/zhutix/latest.js +0 -41
 - package/lib/routes/zimuku/index.js +0 -41
 - package/lib/routes/zimuxia/index.js +0 -56
 - package/lib/routes/zimuxia/portfolio.js +0 -39
 - package/lib/routes/zimuzu/resource.js +0 -19
 - package/lib/routes/zimuzu/top.js +0 -27
 - package/lib/routes/ziroom/room.js +0 -50
 - package/lib/routes/zreading/home.js +0 -50
 - package/lib/routes/zsnews/index.js +0 -31
 - package/lib/routes/zyshow/index.js +0 -42
 - package/lib/routes/zzz/index.js +0 -59
 - package/lib/utils/common-config.js +0 -78
 - package/lib/utils/common-utils.js +0 -11
 - package/lib/utils/date.js +0 -85
 - package/lib/utils/dateParser.js +0 -89
 - package/lib/utils/got.js +0 -40
 - package/lib/utils/logger.js +0 -34
 - package/lib/utils/md5.js +0 -5
 - package/lib/utils/parse-date.js +0 -42
 - package/lib/utils/puppeteer.js +0 -24
 - package/lib/utils/readable-social.js +0 -46
 - package/lib/utils/render.js +0 -7
 - package/lib/utils/request-wrapper.js +0 -143
 - package/lib/utils/rss-parser.js +0 -13
 - package/lib/utils/timezone.js +0 -14
 - package/lib/utils/torrent.js +0 -155
 - package/lib/utils/wait.js +0 -5
 - package/lib/v2/12306/index.js +0 -108
 - package/lib/v2/12306/maintainer.js +0 -4
 - package/lib/v2/12306/radar.js +0 -28
 - package/lib/v2/12306/router.js +0 -4
 - package/lib/v2/12306/zxdt.js +0 -67
 - package/lib/v2/18comic/album.js +0 -75
 - package/lib/v2/18comic/blogs.js +0 -63
 - package/lib/v2/18comic/index.js +0 -12
 - package/lib/v2/18comic/maintainer.js +0 -6
 - package/lib/v2/18comic/radar.js +0 -31
 - package/lib/v2/18comic/router.js +0 -6
 - package/lib/v2/18comic/search.js +0 -13
 - package/lib/v2/18comic/utils.js +0 -71
 - package/lib/v2/2047/index.js +0 -55
 - package/lib/v2/2047/maintainer.js +0 -3
 - package/lib/v2/2047/radar.js +0 -13
 - package/lib/v2/2047/router.js +0 -3
 - package/lib/v2/2048/index.js +0 -98
 - package/lib/v2/2048/maintainer.js +0 -3
 - package/lib/v2/2048/router.js +0 -3
 - package/lib/v2/36kr/maintainer.js +0 -7
 - package/lib/v2/36kr/motif.js +0 -36
 - package/lib/v2/36kr/news.js +0 -56
 - package/lib/v2/36kr/newsflashes.js +0 -37
 - package/lib/v2/36kr/radar.js +0 -37
 - package/lib/v2/36kr/router.js +0 -7
 - package/lib/v2/36kr/search/article.js +0 -70
 - package/lib/v2/36kr/user.js +0 -36
 - package/lib/v2/423down/index.js +0 -114
 - package/lib/v2/423down/maintainer.js +0 -3
 - package/lib/v2/423down/radar.js +0 -193
 - package/lib/v2/423down/router.js +0 -3
 - package/lib/v2/50forum/maintainer.js +0 -3
 - package/lib/v2/50forum/radar.js +0 -13
 - package/lib/v2/50forum/router.js +0 -3
 - package/lib/v2/50forum/zhuanjia.js +0 -51
 - package/lib/v2/52hrtt/index.js +0 -57
 - package/lib/v2/52hrtt/maintainer.js +0 -4
 - package/lib/v2/52hrtt/radar.js +0 -19
 - package/lib/v2/52hrtt/router.js +0 -4
 - package/lib/v2/52hrtt/symposium.js +0 -57
 - package/lib/v2/8kcos/article.js +0 -24
 - package/lib/v2/8kcos/cat.js +0 -22
 - package/lib/v2/8kcos/const.js +0 -4
 - package/lib/v2/8kcos/latest.js +0 -23
 - package/lib/v2/8kcos/maintainer.js +0 -5
 - package/lib/v2/8kcos/radar.js +0 -25
 - package/lib/v2/8kcos/router.js +0 -5
 - package/lib/v2/8kcos/tag.js +0 -23
 - package/lib/v2/8world/index.js +0 -57
 - package/lib/v2/8world/maintainer.js +0 -3
 - package/lib/v2/8world/radar.js +0 -13
 - package/lib/v2/8world/router.js +0 -3
 - package/lib/v2/95mm/category.js +0 -20
 - package/lib/v2/95mm/maintainer.js +0 -5
 - package/lib/v2/95mm/radar.js +0 -25
 - package/lib/v2/95mm/router.js +0 -5
 - package/lib/v2/95mm/tab.js +0 -9
 - package/lib/v2/95mm/tag.js +0 -9
 - package/lib/v2/95mm/utils.js +0 -59
 - package/lib/v2/aamacau/index.js +0 -56
 - package/lib/v2/aamacau/maintainer.js +0 -3
 - package/lib/v2/aamacau/radar.js +0 -13
 - package/lib/v2/aamacau/router.js +0 -3
 - package/lib/v2/abmedia/category.js +0 -30
 - package/lib/v2/abmedia/index.js +0 -26
 - package/lib/v2/abmedia/maintainer.js +0 -3
 - package/lib/v2/abmedia/radar.js +0 -19
 - package/lib/v2/abmedia/router.js +0 -4
 - package/lib/v2/abskoop/index.js +0 -52
 - package/lib/v2/abskoop/maintainer.js +0 -3
 - package/lib/v2/abskoop/radar.js +0 -13
 - package/lib/v2/abskoop/router.js +0 -3
 - package/lib/v2/abskoop/templates/description.art +0 -3
 - package/lib/v2/acm-ecnu/contest.js +0 -44
 - package/lib/v2/acm-ecnu/maintainer.js +0 -3
 - package/lib/v2/acm-ecnu/radar.js +0 -19
 - package/lib/v2/acm-ecnu/router.js +0 -3
 - package/lib/v2/agirls/index.js +0 -71
 - package/lib/v2/agirls/maintainer.js +0 -5
 - package/lib/v2/agirls/radar.js +0 -25
 - package/lib/v2/agirls/router.js +0 -5
 - package/lib/v2/agirls/topic.js +0 -71
 - package/lib/v2/agirls/topic_list.js +0 -44
 - package/lib/v2/ahjzu/maintainer.js +0 -3
 - package/lib/v2/ahjzu/news.js +0 -57
 - package/lib/v2/ahjzu/radar.js +0 -13
 - package/lib/v2/ahjzu/router.js +0 -3
 - package/lib/v2/ajmide/index.js +0 -29
 - package/lib/v2/ajmide/maintainer.js +0 -3
 - package/lib/v2/ajmide/radar.js +0 -16
 - package/lib/v2/ajmide/router.js +0 -3
 - package/lib/v2/app-center/maintainer.js +0 -3
 - package/lib/v2/app-center/radar.js +0 -13
 - package/lib/v2/app-center/release.js +0 -120
 - package/lib/v2/app-center/router.js +0 -3
 - package/lib/v2/app-center/templates/description.art +0 -24
 - package/lib/v2/apple/exchange_repair.js +0 -40
 - package/lib/v2/apple/maintainer.js +0 -3
 - package/lib/v2/apple/radar.js +0 -13
 - package/lib/v2/apple/router.js +0 -3
 - package/lib/v2/appledaily/index.js +0 -69
 - package/lib/v2/appledaily/maintainer.js +0 -3
 - package/lib/v2/appledaily/radar.js +0 -157
 - package/lib/v2/appledaily/router.js +0 -3
 - package/lib/v2/appledaily/templates/content.art +0 -7
 - package/lib/v2/appstore/gofans.js +0 -34
 - package/lib/v2/appstore/in-app-purchase.js +0 -58
 - package/lib/v2/appstore/maintainer.js +0 -7
 - package/lib/v2/appstore/price.js +0 -53
 - package/lib/v2/appstore/radar.js +0 -41
 - package/lib/v2/appstore/router.js +0 -7
 - package/lib/v2/appstore/update.js +0 -37
 - package/lib/v2/appstore/xianmian.js +0 -28
 - package/lib/v2/ash-maurya/index.js +0 -54
 - package/lib/v2/ash-maurya/maintainer.js +0 -3
 - package/lib/v2/ash-maurya/radar.js +0 -13
 - package/lib/v2/ash-maurya/router.js +0 -3
 - package/lib/v2/atcoder/contest.js +0 -64
 - package/lib/v2/atcoder/maintainer.js +0 -4
 - package/lib/v2/atcoder/post.js +0 -38
 - package/lib/v2/atcoder/radar.js +0 -22
 - package/lib/v2/atcoder/router.js +0 -4
 - package/lib/v2/audiobar/latest.js +0 -53
 - package/lib/v2/audiobar/maintainer.js +0 -3
 - package/lib/v2/audiobar/radar.js +0 -13
 - package/lib/v2/audiobar/router.js +0 -3
 - package/lib/v2/bandcamp/live.js +0 -41
 - package/lib/v2/bandcamp/maintainer.js +0 -5
 - package/lib/v2/bandcamp/radar.js +0 -25
 - package/lib/v2/bandcamp/router.js +0 -5
 - package/lib/v2/bandcamp/tag.js +0 -46
 - package/lib/v2/bandcamp/weekly.js +0 -29
 - package/lib/v2/baozimh/index.js +0 -55
 - package/lib/v2/baozimh/maintainer.js +0 -3
 - package/lib/v2/baozimh/radar.js +0 -13
 - package/lib/v2/baozimh/router.js +0 -3
 - package/lib/v2/barronschina/index.js +0 -70
 - package/lib/v2/barronschina/maintainer.js +0 -3
 - package/lib/v2/barronschina/radar.js +0 -13
 - package/lib/v2/barronschina/router.js +0 -3
 - package/lib/v2/bendibao/maintainer.js +0 -3
 - package/lib/v2/bendibao/news.js +0 -105
 - package/lib/v2/bendibao/radar.js +0 -13
 - package/lib/v2/bendibao/router.js +0 -3
 - package/lib/v2/bilibili/radar.js +0 -99
 - package/lib/v2/biodiscover/index.js +0 -44
 - package/lib/v2/biodiscover/maintainer.js +0 -3
 - package/lib/v2/biodiscover/radar.js +0 -13
 - package/lib/v2/biodiscover/router.js +0 -3
 - package/lib/v2/bioone/featured.js +0 -50
 - package/lib/v2/bioone/journal.js +0 -58
 - package/lib/v2/bioone/maintainer.js +0 -4
 - package/lib/v2/bioone/radar.js +0 -19
 - package/lib/v2/bioone/router.js +0 -4
 - package/lib/v2/bit/maintainer.js +0 -3
 - package/lib/v2/bit/radar.js +0 -13
 - package/lib/v2/bit/router.js +0 -3
 - package/lib/v2/bit/rszhaopin.js +0 -30
 - package/lib/v2/bjfu/grs.js +0 -65
 - package/lib/v2/bjfu/it/index.js +0 -49
 - package/lib/v2/bjfu/it/utils.js +0 -64
 - package/lib/v2/bjfu/jwc/index.js +0 -55
 - package/lib/v2/bjfu/jwc/utils.js +0 -63
 - package/lib/v2/bjfu/kjc.js +0 -65
 - package/lib/v2/bjfu/maintainer.js +0 -7
 - package/lib/v2/bjfu/news/index.js +0 -55
 - package/lib/v2/bjfu/news/utils.js +0 -63
 - package/lib/v2/bjfu/radar.js +0 -45
 - package/lib/v2/bjfu/router.js +0 -7
 - package/lib/v2/blockbeats/index.js +0 -50
 - package/lib/v2/blockbeats/maintainer.js +0 -3
 - package/lib/v2/blockbeats/radar.js +0 -19
 - package/lib/v2/blockbeats/router.js +0 -3
 - package/lib/v2/bnu/bs.js +0 -52
 - package/lib/v2/bnu/maintainer.js +0 -3
 - package/lib/v2/bnu/radar.js +0 -13
 - package/lib/v2/bnu/router.js +0 -3
 - package/lib/v2/bse/index.js +0 -173
 - package/lib/v2/bse/maintainer.js +0 -3
 - package/lib/v2/bse/radar.js +0 -13
 - package/lib/v2/bse/router.js +0 -3
 - package/lib/v2/btzj/index.js +0 -98
 - package/lib/v2/btzj/maintainer.js +0 -3
 - package/lib/v2/btzj/radar.js +0 -13
 - package/lib/v2/btzj/router.js +0 -3
 - package/lib/v2/bupt/maintainer.js +0 -3
 - package/lib/v2/bupt/radar.js +0 -13
 - package/lib/v2/bupt/rczp.js +0 -51
 - package/lib/v2/bupt/router.js +0 -3
 - package/lib/v2/cahkms/index.js +0 -69
 - package/lib/v2/cahkms/maintainer.js +0 -3
 - package/lib/v2/cahkms/radar.js +0 -13
 - package/lib/v2/cahkms/router.js +0 -3
 - package/lib/v2/cbirc/index.js +0 -119
 - package/lib/v2/cbirc/maintainer.js +0 -3
 - package/lib/v2/cbirc/radar.js +0 -13
 - package/lib/v2/cbirc/router.js +0 -3
 - package/lib/v2/ccac/maintainer.js +0 -3
 - package/lib/v2/ccac/news.js +0 -47
 - package/lib/v2/ccac/radar.js +0 -13
 - package/lib/v2/ccac/router.js +0 -3
 - package/lib/v2/ccac/utils.js +0 -32
 - package/lib/v2/ccreports/index.js +0 -41
 - package/lib/v2/ccreports/maintainer.js +0 -3
 - package/lib/v2/ccreports/radar.js +0 -13
 - package/lib/v2/ccreports/router.js +0 -3
 - package/lib/v2/cde/index.js +0 -132
 - package/lib/v2/cde/maintainer.js +0 -3
 - package/lib/v2/cde/radar.js +0 -43
 - package/lib/v2/cde/router.js +0 -3
 - package/lib/v2/cde/utils.js +0 -20
 - package/lib/v2/cdi/index.js +0 -61
 - package/lib/v2/cdi/maintainer.js +0 -3
 - package/lib/v2/cdi/radar.js +0 -13
 - package/lib/v2/cdi/router.js +0 -3
 - package/lib/v2/cebbank/all.js +0 -48
 - package/lib/v2/cebbank/history.js +0 -49
 - package/lib/v2/cebbank/maintainer.js +0 -4
 - package/lib/v2/cebbank/radar.js +0 -19
 - package/lib/v2/cebbank/router.js +0 -4
 - package/lib/v2/cebbank/utils.js +0 -70
 - package/lib/v2/changba/maintainer.js +0 -3
 - package/lib/v2/changba/radar.js +0 -13
 - package/lib/v2/changba/router.js +0 -3
 - package/lib/v2/changba/user.js +0 -84
 - package/lib/v2/chaoxing/maintainer.js +0 -3
 - package/lib/v2/chaoxing/qk.js +0 -59
 - package/lib/v2/chaoxing/radar.js +0 -13
 - package/lib/v2/chaoxing/router.js +0 -3
 - package/lib/v2/ciidbnu/index.js +0 -58
 - package/lib/v2/ciidbnu/maintainer.js +0 -3
 - package/lib/v2/ciidbnu/radar.js +0 -13
 - package/lib/v2/ciidbnu/router.js +0 -3
 - package/lib/v2/cnbeta/index.js +0 -15
 - package/lib/v2/cnbeta/maintainer.js +0 -5
 - package/lib/v2/cnbeta/radar.js +0 -25
 - package/lib/v2/cnbeta/router.js +0 -4
 - package/lib/v2/cnbeta/type.js +0 -42
 - package/lib/v2/cnbeta/utils.js +0 -27
 - package/lib/v2/cnki/debut.js +0 -62
 - package/lib/v2/cnki/journals.js +0 -74
 - package/lib/v2/cnki/maintainer.js +0 -4
 - package/lib/v2/cnki/radar.js +0 -19
 - package/lib/v2/cnki/router.js +0 -4
 - package/lib/v2/cntv/column.js +0 -29
 - package/lib/v2/cntv/maintainer.js +0 -3
 - package/lib/v2/cntv/radar.js +0 -13
 - package/lib/v2/cntv/router.js +0 -3
 - package/lib/v2/codeforces/contests.js +0 -37
 - package/lib/v2/codeforces/maintainer.js +0 -3
 - package/lib/v2/codeforces/radar.js +0 -13
 - package/lib/v2/codeforces/router.js +0 -3
 - package/lib/v2/codeforces/templates/contest.art +0 -11
 - package/lib/v2/consumer/index.js +0 -55
 - package/lib/v2/consumer/maintainer.js +0 -3
 - package/lib/v2/consumer/radar.js +0 -13
 - package/lib/v2/consumer/router.js +0 -3
 - package/lib/v2/cool18/index.js +0 -61
 - package/lib/v2/cool18/maintainer.js +0 -3
 - package/lib/v2/cool18/radar.js +0 -13
 - package/lib/v2/cool18/router.js +0 -3
 - package/lib/v2/cpcey/index.js +0 -60
 - package/lib/v2/cpcey/maintainer.js +0 -3
 - package/lib/v2/cpcey/radar.js +0 -27
 - package/lib/v2/cpcey/router.js +0 -3
 - package/lib/v2/cqwu/index.js +0 -46
 - package/lib/v2/cqwu/maintainer.js +0 -3
 - package/lib/v2/cqwu/radar.js +0 -27
 - package/lib/v2/cqwu/router.js +0 -3
 - package/lib/v2/csc/maintainer.js +0 -3
 - package/lib/v2/csc/notice.js +0 -99
 - package/lib/v2/csc/radar.js +0 -31
 - package/lib/v2/csc/router.js +0 -3
 - package/lib/v2/dahecube/index.js +0 -66
 - package/lib/v2/dahecube/maintainer.js +0 -3
 - package/lib/v2/dahecube/radar.js +0 -23
 - package/lib/v2/dahecube/router.js +0 -3
 - package/lib/v2/dahecube/utils.js +0 -47
 - package/lib/v2/ddosi/category.js +0 -42
 - package/lib/v2/ddosi/index.js +0 -41
 - package/lib/v2/ddosi/maintainer.js +0 -4
 - package/lib/v2/ddosi/radar.js +0 -19
 - package/lib/v2/ddosi/router.js +0 -4
 - package/lib/v2/dhu/jiaowu/news.js +0 -37
 - package/lib/v2/dhu/maintainer.js +0 -4
 - package/lib/v2/dhu/radar.js +0 -17
 - package/lib/v2/dhu/router.js +0 -4
 - package/lib/v2/dhu/xxgk/news.js +0 -32
 - package/lib/v2/disinfo/maintainer.js +0 -3
 - package/lib/v2/disinfo/publications.js +0 -56
 - package/lib/v2/disinfo/radar.js +0 -13
 - package/lib/v2/disinfo/router.js +0 -3
 - package/lib/v2/disinformationindex/blog.js +0 -49
 - package/lib/v2/disinformationindex/maintainer.js +0 -4
 - package/lib/v2/disinformationindex/radar.js +0 -19
 - package/lib/v2/disinformationindex/research.js +0 -45
 - package/lib/v2/disinformationindex/router.js +0 -4
 - package/lib/v2/disinformationindex/templates/description.art +0 -7
 - package/lib/v2/distill/index.js +0 -64
 - package/lib/v2/distill/maintainer.js +0 -3
 - package/lib/v2/distill/radar.js +0 -13
 - package/lib/v2/distill/router.js +0 -3
 - package/lib/v2/dockerhub/build.js +0 -31
 - package/lib/v2/dockerhub/maintainer.js +0 -4
 - package/lib/v2/dockerhub/radar.js +0 -19
 - package/lib/v2/dockerhub/router.js +0 -4
 - package/lib/v2/dockerhub/tag.js +0 -33
 - package/lib/v2/dockerhub/utils.js +0 -10
 - package/lib/v2/douban/book/rank.js +0 -34
 - package/lib/v2/douban/channel/subject.js +0 -60
 - package/lib/v2/douban/channel/topic.js +0 -63
 - package/lib/v2/douban/commercialpress/latest.js +0 -55
 - package/lib/v2/douban/event/hot.js +0 -30
 - package/lib/v2/douban/maintainer.js +0 -27
 - package/lib/v2/douban/other/bookstore.js +0 -30
 - package/lib/v2/douban/other/celebrity.js +0 -41
 - package/lib/v2/douban/other/classification.js +0 -39
 - package/lib/v2/douban/other/doulist.js +0 -63
 - package/lib/v2/douban/other/explore.js +0 -50
 - package/lib/v2/douban/other/explore_column.js +0 -56
 - package/lib/v2/douban/other/group.js +0 -48
 - package/lib/v2/douban/other/jobs.js +0 -33
 - package/lib/v2/douban/other/later.js +0 -32
 - package/lib/v2/douban/other/latest_book.js +0 -19
 - package/lib/v2/douban/other/latest_music.js +0 -74
 - package/lib/v2/douban/other/playing.js +0 -35
 - package/lib/v2/douban/other/replied.js +0 -86
 - package/lib/v2/douban/other/replies.js +0 -61
 - package/lib/v2/douban/other/topic.js +0 -80
 - package/lib/v2/douban/other/ustop.js +0 -22
 - package/lib/v2/douban/other/weekly_best.js +0 -44
 - package/lib/v2/douban/people/status.js +0 -493
 - package/lib/v2/douban/people/wish.js +0 -80
 - package/lib/v2/douban/radar.js +0 -54
 - package/lib/v2/douban/router.js +0 -27
 - package/lib/v2/dtcj/datahero.js +0 -50
 - package/lib/v2/dtcj/datainsight.js +0 -53
 - package/lib/v2/dtcj/maintainer.js +0 -4
 - package/lib/v2/dtcj/radar.js +0 -25
 - package/lib/v2/dtcj/router.js +0 -4
 - package/lib/v2/dushu/fuzhou/index.js +0 -42
 - package/lib/v2/dushu/maintainer.js +0 -3
 - package/lib/v2/dushu/radar.js +0 -24
 - package/lib/v2/dushu/router.js +0 -3
 - package/lib/v2/e-hentai/index.js +0 -115
 - package/lib/v2/e-hentai/maintainer.js +0 -5
 - package/lib/v2/e-hentai/radar.js +0 -25
 - package/lib/v2/e-hentai/router.js +0 -3
 - package/lib/v2/eastday/24.js +0 -90
 - package/lib/v2/eastday/find.js +0 -49
 - package/lib/v2/eastday/maintainer.js +0 -6
 - package/lib/v2/eastday/portrait.js +0 -47
 - package/lib/v2/eastday/radar.js +0 -35
 - package/lib/v2/eastday/router.js +0 -6
 - package/lib/v2/eastday/sh.js +0 -49
 - package/lib/v2/eastmoney/radar.js +0 -13
 - package/lib/v2/eastmoney/router.js +0 -3
 - package/lib/v2/eastmoney/ttjj/user.js +0 -65
 - package/lib/v2/ecust-jxjy/maintainer.js +0 -3
 - package/lib/v2/ecust-jxjy/news.js +0 -47
 - package/lib/v2/ecust-jxjy/radar.js +0 -13
 - package/lib/v2/ecust-jxjy/router.js +0 -3
 - package/lib/v2/elsevier/latest.js +0 -87
 - package/lib/v2/elsevier/maintainer.js +0 -4
 - package/lib/v2/elsevier/radar.js +0 -19
 - package/lib/v2/elsevier/router.js +0 -4
 - package/lib/v2/elsevier/templates/description.art +0 -9
 - package/lib/v2/elsevier/volume.js +0 -75
 - package/lib/v2/ems/apple.js +0 -42
 - package/lib/v2/ems/maintainer.js +0 -4
 - package/lib/v2/ems/news.js +0 -21
 - package/lib/v2/ems/radar.js +0 -19
 - package/lib/v2/ems/router.js +0 -4
 - package/lib/v2/ems/templates/apple.art +0 -6
 - package/lib/v2/epicgames/index.js +0 -82
 - package/lib/v2/epicgames/maintainer.js +0 -3
 - package/lib/v2/epicgames/router.js +0 -3
 - package/lib/v2/epicgames/supportedList.js +0 -23
 - package/lib/v2/eprice/maintainer.js +0 -3
 - package/lib/v2/eprice/radar.js +0 -24
 - package/lib/v2/eprice/router.js +0 -3
 - package/lib/v2/eprice/rss.js +0 -105
 - package/lib/v2/eprice/templates/image.art +0 -1
 - package/lib/v2/eventernote/actors.js +0 -103
 - package/lib/v2/eventernote/maintainer.js +0 -3
 - package/lib/v2/eventernote/radar.js +0 -13
 - package/lib/v2/eventernote/router.js +0 -3
 - package/lib/v2/ezone/index.js +0 -68
 - package/lib/v2/ezone/maintainer.js +0 -3
 - package/lib/v2/ezone/radar.js +0 -13
 - package/lib/v2/ezone/router.js +0 -3
 - package/lib/v2/ff14/ff14_global.js +0 -37
 - package/lib/v2/ff14/ff14_zh.js +0 -43
 - package/lib/v2/ff14/maintainer.js +0 -4
 - package/lib/v2/ff14/router.js +0 -7
 - package/lib/v2/filmdeepfocus/index.js +0 -58
 - package/lib/v2/filmdeepfocus/maintainer.js +0 -3
 - package/lib/v2/filmdeepfocus/radar.js +0 -13
 - package/lib/v2/filmdeepfocus/router.js +0 -3
 - package/lib/v2/firefox/index.js +0 -69
 - package/lib/v2/firefox/maintainer.js +0 -3
 - package/lib/v2/firefox/radar.js +0 -13
 - package/lib/v2/firefox/router.js +0 -3
 - package/lib/v2/fisher-spb/maintainer.js +0 -3
 - package/lib/v2/fisher-spb/news.js +0 -49
 - package/lib/v2/fisher-spb/radar.js +0 -13
 - package/lib/v2/fisher-spb/router.js +0 -3
 - package/lib/v2/flyert/creditcard.js +0 -86
 - package/lib/v2/flyert/maintainer.js +0 -4
 - package/lib/v2/flyert/preferential.js +0 -33
 - package/lib/v2/flyert/radar.js +0 -19
 - package/lib/v2/flyert/router.js +0 -4
 - package/lib/v2/flyert/utils.js +0 -67
 - package/lib/v2/focustaiwan/index.js +0 -72
 - package/lib/v2/focustaiwan/maintainer.js +0 -3
 - package/lib/v2/focustaiwan/radar.js +0 -13
 - package/lib/v2/focustaiwan/router.js +0 -3
 - package/lib/v2/fortunechina/index.js +0 -70
 - package/lib/v2/fortunechina/maintainer.js +0 -3
 - package/lib/v2/fortunechina/radar.js +0 -13
 - package/lib/v2/fortunechina/router.js +0 -3
 - package/lib/v2/ft/channel.js +0 -9
 - package/lib/v2/ft/maintainer.js +0 -4
 - package/lib/v2/ft/myft.js +0 -44
 - package/lib/v2/ft/radar.js +0 -24
 - package/lib/v2/ft/router.js +0 -4
 - package/lib/v2/ft/utils.js +0 -88
 - package/lib/v2/furstar/archive.js +0 -28
 - package/lib/v2/furstar/artists.js +0 -32
 - package/lib/v2/furstar/index.js +0 -33
 - package/lib/v2/furstar/maintainer.js +0 -5
 - package/lib/v2/furstar/radar.js +0 -25
 - package/lib/v2/furstar/router.js +0 -5
 - package/lib/v2/furstar/templates/description.art +0 -5
 - package/lib/v2/furstar/utils.js +0 -96
 - package/lib/v2/gameapps/index.js +0 -56
 - package/lib/v2/gameapps/maintainer.js +0 -3
 - package/lib/v2/gameapps/radar.js +0 -13
 - package/lib/v2/gameapps/router.js +0 -3
 - package/lib/v2/gamer/hot.js +0 -59
 - package/lib/v2/gamer/maintainer.js +0 -3
 - package/lib/v2/gamer/radar.js +0 -13
 - package/lib/v2/gamer/router.js +0 -3
 - package/lib/v2/gamersecret/index.js +0 -60
 - package/lib/v2/gamersecret/maintainer.js +0 -3
 - package/lib/v2/gamersecret/radar.js +0 -31
 - package/lib/v2/gamersecret/router.js +0 -3
 - package/lib/v2/getdr/index.js +0 -47
 - package/lib/v2/getdr/maintainer.js +0 -3
 - package/lib/v2/getdr/radar.js +0 -13
 - package/lib/v2/getdr/router.js +0 -3
 - package/lib/v2/gf-cn/maintainer.js +0 -3
 - package/lib/v2/gf-cn/news.js +0 -50
 - package/lib/v2/gf-cn/radar.js +0 -13
 - package/lib/v2/gf-cn/router.js +0 -3
 - package/lib/v2/github/branches.js +0 -31
 - package/lib/v2/github/comments.js +0 -64
 - package/lib/v2/github/contributors.js +0 -96
 - package/lib/v2/github/file.js +0 -45
 - package/lib/v2/github/follower.js +0 -50
 - package/lib/v2/github/issue.js +0 -48
 - package/lib/v2/github/maintainer.js +0 -15
 - package/lib/v2/github/pulls.js +0 -43
 - package/lib/v2/github/radar.js +0 -79
 - package/lib/v2/github/repos.js +0 -34
 - package/lib/v2/github/router.js +0 -15
 - package/lib/v2/github/search.js +0 -41
 - package/lib/v2/github/star.js +0 -51
 - package/lib/v2/github/starred_repos.js +0 -63
 - package/lib/v2/github/topic.js +0 -25
 - package/lib/v2/github/trending.js +0 -43
 - package/lib/v2/gocn/maintainer.js +0 -3
 - package/lib/v2/gocn/radar.js +0 -13
 - package/lib/v2/gocn/router.js +0 -3
 - package/lib/v2/gocn/topics.js +0 -28
 - package/lib/v2/google/album.js +0 -36
 - package/lib/v2/google/citations.js +0 -45
 - package/lib/v2/google/doodles.js +0 -35
 - package/lib/v2/google/fonts.js +0 -43
 - package/lib/v2/google/maintainer.js +0 -8
 - package/lib/v2/google/news.js +0 -84
 - package/lib/v2/google/radar.js +0 -64
 - package/lib/v2/google/router.js +0 -8
 - package/lib/v2/google/scholar.js +0 -45
 - package/lib/v2/google/sites.js +0 -75
 - package/lib/v2/gov/beijing/kw/index.js +0 -44
 - package/lib/v2/gov/guangdong/tqyb/sncsyjxh.js +0 -37
 - package/lib/v2/gov/guangdong/tqyb/tfxtq.js +0 -30
 - package/lib/v2/gov/huizhou/zwgk/index.js +0 -58
 - package/lib/v2/gov/maintainer.js +0 -10
 - package/lib/v2/gov/radar.js +0 -379
 - package/lib/v2/gov/router.js +0 -11
 - package/lib/v2/gov/shanghai/rsj/ksxm.js +0 -39
 - package/lib/v2/gov/shanghai/wsjkw/yqtb/index.js +0 -33
 - package/lib/v2/gov/shenzhen/hrss/szksy/index.js +0 -41
 - package/lib/v2/gov/shenzhen/zzb/index.js +0 -40
 - package/lib/v2/gov/sichuan/deyang/govpulicinfo.js +0 -115
 - package/lib/v2/gov/sichuan/deyang/templates/govPublicInfo.art +0 -41
 - package/lib/v2/guduodata/daily.js +0 -63
 - package/lib/v2/guduodata/maintainer.js +0 -3
 - package/lib/v2/guduodata/radar.js +0 -13
 - package/lib/v2/guduodata/router.js +0 -3
 - package/lib/v2/hackernews/index.js +0 -103
 - package/lib/v2/hackernews/maintainer.js +0 -3
 - package/lib/v2/hackernews/radar.js +0 -13
 - package/lib/v2/hackernews/router.js +0 -3
 - package/lib/v2/hbr/maintainer.js +0 -3
 - package/lib/v2/hbr/radar.js +0 -13
 - package/lib/v2/hbr/router.js +0 -3
 - package/lib/v2/hbr/topic.js +0 -56
 - package/lib/v2/hdu/cs/index.js +0 -57
 - package/lib/v2/hdu/maintainer.js +0 -3
 - package/lib/v2/hdu/radar.js +0 -13
 - package/lib/v2/hdu/router.js +0 -4
 - package/lib/v2/hellobtc/information.js +0 -51
 - package/lib/v2/hellobtc/kepu.js +0 -64
 - package/lib/v2/hellobtc/maintainer.js +0 -6
 - package/lib/v2/hellobtc/news.js +0 -29
 - package/lib/v2/hellobtc/radar.js +0 -85
 - package/lib/v2/hellobtc/router.js +0 -6
 - package/lib/v2/hellobtc/topic.js +0 -43
 - package/lib/v2/heu/gx/card.js +0 -47
 - package/lib/v2/heu/gx/list.js +0 -73
 - package/lib/v2/heu/job/bigemploy.js +0 -42
 - package/lib/v2/heu/job/calendar.js +0 -54
 - package/lib/v2/heu/job/list.js +0 -70
 - package/lib/v2/heu/maintainer.js +0 -8
 - package/lib/v2/heu/radar.js +0 -73
 - package/lib/v2/heu/router.js +0 -9
 - package/lib/v2/heu/uae/list.js +0 -62
 - package/lib/v2/heu/yjsy/list.js +0 -65
 - package/lib/v2/hex-rays/index.js +0 -47
 - package/lib/v2/hex-rays/maintainer.js +0 -3
 - package/lib/v2/hex-rays/radar.js +0 -13
 - package/lib/v2/hex-rays/router.js +0 -3
 - package/lib/v2/hizu/index.js +0 -76
 - package/lib/v2/hizu/maintainer.js +0 -3
 - package/lib/v2/hizu/radar.js +0 -13
 - package/lib/v2/hizu/router.js +0 -3
 - package/lib/v2/hkej/index.js +0 -160
 - package/lib/v2/hkej/maintainer.js +0 -3
 - package/lib/v2/hkej/radar.js +0 -13
 - package/lib/v2/hkej/router.js +0 -3
 - package/lib/v2/hkepc/index.js +0 -198
 - package/lib/v2/hkepc/maintainer.js +0 -3
 - package/lib/v2/hkepc/radar.js +0 -19
 - package/lib/v2/hkepc/router.js +0 -3
 - package/lib/v2/hket/index.js +0 -114
 - package/lib/v2/hket/maintainer.js +0 -3
 - package/lib/v2/hket/radar.js +0 -45
 - package/lib/v2/hket/router.js +0 -3
 - package/lib/v2/hket/templates/description.art +0 -1
 - package/lib/v2/hket/templates/image.art +0 -1
 - package/lib/v2/hkjunkcall/index.js +0 -53
 - package/lib/v2/hkjunkcall/maintainer.js +0 -3
 - package/lib/v2/hkjunkcall/radar.js +0 -13
 - package/lib/v2/hkjunkcall/router.js +0 -3
 - package/lib/v2/hongkong/chp.js +0 -103
 - package/lib/v2/hongkong/dh.js +0 -53
 - package/lib/v2/hongkong/maintainer.js +0 -4
 - package/lib/v2/hongkong/radar.js +0 -19
 - package/lib/v2/hongkong/router.js +0 -4
 - package/lib/v2/hotchina/index.js +0 -55
 - package/lib/v2/hotchina/maintainer.js +0 -5
 - package/lib/v2/hotchina/radar.js +0 -25
 - package/lib/v2/hotchina/router.js +0 -3
 - package/lib/v2/hotukdeals/index.js +0 -34
 - package/lib/v2/hotukdeals/maintainer.js +0 -3
 - package/lib/v2/hotukdeals/radar.js +0 -31
 - package/lib/v2/hotukdeals/router.js +0 -3
 - package/lib/v2/houxu/index.js +0 -85
 - package/lib/v2/houxu/maintainer.js +0 -4
 - package/lib/v2/houxu/radar.js +0 -19
 - package/lib/v2/houxu/router.js +0 -3
 - package/lib/v2/houxu/templates/description.art +0 -9
 - package/lib/v2/icac/maintainer.js +0 -3
 - package/lib/v2/icac/news.js +0 -46
 - package/lib/v2/icac/radar.js +0 -13
 - package/lib/v2/icac/router.js +0 -3
 - package/lib/v2/icac/utils.js +0 -17
 - package/lib/v2/ieee/latestdate.js +0 -103
 - package/lib/v2/ieee/latestvol.js +0 -87
 - package/lib/v2/ieee/maintainer.js +0 -4
 - package/lib/v2/ieee/radar.js +0 -19
 - package/lib/v2/ieee/router.js +0 -4
 - package/lib/v2/ieee/templates/description.art +0 -9
 - package/lib/v2/ielts/index.js +0 -58
 - package/lib/v2/ielts/maintainer.js +0 -3
 - package/lib/v2/ielts/radar.js +0 -13
 - package/lib/v2/ielts/router.js +0 -3
 - package/lib/v2/independent/maintainer.js +0 -3
 - package/lib/v2/independent/ps5-stock-uk.js +0 -27
 - package/lib/v2/independent/radar.js +0 -13
 - package/lib/v2/independent/router.js +0 -3
 - package/lib/v2/informs/index.js +0 -74
 - package/lib/v2/informs/maintainer.js +0 -3
 - package/lib/v2/informs/radar.js +0 -109
 - package/lib/v2/informs/router.js +0 -3
 - package/lib/v2/iresearch/maintainer.js +0 -3
 - package/lib/v2/iresearch/radar.js +0 -13
 - package/lib/v2/iresearch/report.js +0 -60
 - package/lib/v2/iresearch/router.js +0 -3
 - package/lib/v2/ithome/index.js +0 -84
 - package/lib/v2/ithome/maintainer.js +0 -6
 - package/lib/v2/ithome/radar.js +0 -109
 - package/lib/v2/ithome/ranking.js +0 -69
 - package/lib/v2/ithome/router.js +0 -6
 - package/lib/v2/ithome/tag.js +0 -48
 - package/lib/v2/ithome/zt.js +0 -62
 - package/lib/v2/iwara/index.js +0 -42
 - package/lib/v2/iwara/maintainer.js +0 -3
 - package/lib/v2/iwara/radar.js +0 -19
 - package/lib/v2/iwara/router.js +0 -3
 - package/lib/v2/jandan/index.js +0 -65
 - package/lib/v2/jandan/maintainer.js +0 -4
 - package/lib/v2/jandan/radar.js +0 -19
 - package/lib/v2/jandan/router.js +0 -4
 - package/lib/v2/jandan/section.js +0 -49
 - package/lib/v2/jasa/latest.js +0 -70
 - package/lib/v2/jasa/maintainer.js +0 -4
 - package/lib/v2/jasa/radar.js +0 -19
 - package/lib/v2/jasa/router.js +0 -4
 - package/lib/v2/jasa/section.js +0 -95
 - package/lib/v2/jasa/templates/description.art +0 -9
 - package/lib/v2/javbus/genre.js +0 -7
 - package/lib/v2/javbus/home.js +0 -3
 - package/lib/v2/javbus/label.js +0 -7
 - package/lib/v2/javbus/maintainer.js +0 -16
 - package/lib/v2/javbus/radar.js +0 -99
 - package/lib/v2/javbus/router.js +0 -16
 - package/lib/v2/javbus/series.js +0 -7
 - package/lib/v2/javbus/star.js +0 -7
 - package/lib/v2/javbus/studio.js +0 -7
 - package/lib/v2/javbus/uncensored/genre.js +0 -6
 - package/lib/v2/javbus/uncensored/home.js +0 -3
 - package/lib/v2/javbus/uncensored/series.js +0 -7
 - package/lib/v2/javbus/uncensored/star.js +0 -7
 - package/lib/v2/javbus/util.js +0 -207
 - package/lib/v2/javbus/western/genre.js +0 -7
 - package/lib/v2/javbus/western/home.js +0 -3
 - package/lib/v2/javbus/western/series.js +0 -7
 - package/lib/v2/javbus/western/star.js +0 -7
 - package/lib/v2/javdb/actors.js +0 -20
 - package/lib/v2/javdb/index.js +0 -32
 - package/lib/v2/javdb/maintainer.js +0 -10
 - package/lib/v2/javdb/makers.js +0 -21
 - package/lib/v2/javdb/radar.js +0 -49
 - package/lib/v2/javdb/rankings.js +0 -12
 - package/lib/v2/javdb/router.js +0 -10
 - package/lib/v2/javdb/search.js +0 -26
 - package/lib/v2/javdb/series.js +0 -21
 - package/lib/v2/javdb/tags.js +0 -12
 - package/lib/v2/javdb/utils.js +0 -73
 - package/lib/v2/javlibrary/bestrated.js +0 -9
 - package/lib/v2/javlibrary/bestreviews.js +0 -9
 - package/lib/v2/javlibrary/genre.js +0 -10
 - package/lib/v2/javlibrary/maintainer.js +0 -11
 - package/lib/v2/javlibrary/mostwanted.js +0 -9
 - package/lib/v2/javlibrary/newentries.js +0 -8
 - package/lib/v2/javlibrary/newrelease.js +0 -9
 - package/lib/v2/javlibrary/radar.js +0 -79
 - package/lib/v2/javlibrary/router.js +0 -19
 - package/lib/v2/javlibrary/star.js +0 -10
 - package/lib/v2/javlibrary/update.js +0 -8
 - package/lib/v2/javlibrary/user.js +0 -10
 - package/lib/v2/javlibrary/utils.js +0 -98
 - package/lib/v2/jisilu/index.js +0 -90
 - package/lib/v2/jisilu/maintainer.js +0 -3
 - package/lib/v2/jisilu/radar.js +0 -25
 - package/lib/v2/jisilu/router.js +0 -3
 - package/lib/v2/jump/discount.js +0 -120
 - package/lib/v2/jump/maintainer.js +0 -3
 - package/lib/v2/jump/radar.js +0 -13
 - package/lib/v2/jump/router.js +0 -3
 - package/lib/v2/kbs/maintainer.js +0 -4
 - package/lib/v2/kbs/news.js +0 -67
 - package/lib/v2/kbs/radar.js +0 -19
 - package/lib/v2/kbs/router.js +0 -4
 - package/lib/v2/kbs/today.js +0 -56
 - package/lib/v2/kemono/index.js +0 -99
 - package/lib/v2/kemono/maintainer.js +0 -4
 - package/lib/v2/kemono/radar.js +0 -13
 - package/lib/v2/kemono/router.js +0 -3
 - package/lib/v2/knowmedia/index.js +0 -38
 - package/lib/v2/knowmedia/maintainer.js +0 -3
 - package/lib/v2/knowmedia/radar.js +0 -31
 - package/lib/v2/knowmedia/router.js +0 -3
 - package/lib/v2/knowmedia/templates/desc.art +0 -3
 - package/lib/v2/lanqiao/author.js +0 -61
 - package/lib/v2/lanqiao/courses.js +0 -62
 - package/lib/v2/lanqiao/maintainer.js +0 -5
 - package/lib/v2/lanqiao/questions.js +0 -52
 - package/lib/v2/lanqiao/radar.js +0 -25
 - package/lib/v2/lanqiao/router.js +0 -5
 - package/lib/v2/lanqiao/utils.js +0 -12
 - package/lib/v2/latepost/index.js +0 -62
 - package/lib/v2/latepost/maintainer.js +0 -3
 - package/lib/v2/latepost/radar.js +0 -13
 - package/lib/v2/latepost/router.js +0 -3
 - package/lib/v2/lativ/index.js +0 -42
 - package/lib/v2/lativ/maintainer.js +0 -3
 - package/lib/v2/lativ/radar.js +0 -13
 - package/lib/v2/lativ/router.js +0 -3
 - package/lib/v2/lativ/templates/detail.art +0 -9
 - package/lib/v2/learnku/maintainer.js +0 -3
 - package/lib/v2/learnku/radar.js +0 -13
 - package/lib/v2/learnku/router.js +0 -3
 - package/lib/v2/learnku/topic.js +0 -72
 - package/lib/v2/leiphone/index.js +0 -25
 - package/lib/v2/leiphone/maintainer.js +0 -5
 - package/lib/v2/leiphone/newsflash.js +0 -19
 - package/lib/v2/leiphone/radar.js +0 -25
 - package/lib/v2/leiphone/router.js +0 -4
 - package/lib/v2/leiphone/utils.js +0 -41
 - package/lib/v2/lfsyd/home.js +0 -42
 - package/lib/v2/lfsyd/maintainer.js +0 -7
 - package/lib/v2/lfsyd/old_home.js +0 -29
 - package/lib/v2/lfsyd/radar.js +0 -39
 - package/lib/v2/lfsyd/router.js +0 -6
 - package/lib/v2/lfsyd/tag.js +0 -64
 - package/lib/v2/lfsyd/user.js +0 -48
 - package/lib/v2/lfsyd/utils.js +0 -93
 - package/lib/v2/line/maintainer.js +0 -3
 - package/lib/v2/line/radar.js +0 -13
 - package/lib/v2/line/router.js +0 -3
 - package/lib/v2/line/today.js +0 -80
 - package/lib/v2/literotica/category.js +0 -55
 - package/lib/v2/literotica/maintainer.js +0 -4
 - package/lib/v2/literotica/new.js +0 -59
 - package/lib/v2/literotica/radar.js +0 -19
 - package/lib/v2/literotica/router.js +0 -4
 - package/lib/v2/lkong/forum.js +0 -54
 - package/lib/v2/lkong/maintainer.js +0 -4
 - package/lib/v2/lkong/query.js +0 -82
 - package/lib/v2/lkong/radar.js +0 -19
 - package/lib/v2/lkong/router.js +0 -4
 - package/lib/v2/lkong/thread.js +0 -57
 - package/lib/v2/lofter/maintainer.js +0 -4
 - package/lib/v2/lofter/radar.js +0 -17
 - package/lib/v2/lofter/router.js +0 -4
 - package/lib/v2/lofter/tag.js +0 -59
 - package/lib/v2/lofter/user.js +0 -52
 - package/lib/v2/logonews/index.js +0 -76
 - package/lib/v2/logonews/maintainer.js +0 -8
 - package/lib/v2/logonews/radar.js +0 -43
 - package/lib/v2/logonews/router.js +0 -5
 - package/lib/v2/lvv2/maintainer.js +0 -4
 - package/lib/v2/lvv2/news.js +0 -75
 - package/lib/v2/lvv2/radar.js +0 -79
 - package/lib/v2/lvv2/router.js +0 -4
 - package/lib/v2/lvv2/top.js +0 -77
 - package/lib/v2/medsci/index.js +0 -67
 - package/lib/v2/medsci/maintainer.js +0 -3
 - package/lib/v2/medsci/radar.js +0 -13
 - package/lib/v2/medsci/router.js +0 -3
 - package/lib/v2/mingpao/index.js +0 -94
 - package/lib/v2/mingpao/maintainer.js +0 -3
 - package/lib/v2/mingpao/radar.js +0 -36
 - package/lib/v2/mingpao/router.js +0 -3
 - package/lib/v2/mingpao/templates/description.art +0 -2
 - package/lib/v2/mingpao/templates/fancybox.art +0 -3
 - package/lib/v2/mohw/clarification.js +0 -50
 - package/lib/v2/mohw/maintainer.js +0 -3
 - package/lib/v2/mohw/radar.js +0 -13
 - package/lib/v2/mohw/router.js +0 -3
 - package/lib/v2/mox/index.js +0 -57
 - package/lib/v2/mox/maintainer.js +0 -3
 - package/lib/v2/mox/radar.js +0 -13
 - package/lib/v2/mox/router.js +0 -3
 - package/lib/v2/mvm/index.js +0 -58
 - package/lib/v2/mvm/maintainer.js +0 -3
 - package/lib/v2/mvm/radar.js +0 -13
 - package/lib/v2/mvm/router.js +0 -3
 - package/lib/v2/mydrivers/index.js +0 -110
 - package/lib/v2/mydrivers/maintainer.js +0 -3
 - package/lib/v2/mydrivers/radar.js +0 -13
 - package/lib/v2/mydrivers/router.js +0 -3
 - package/lib/v2/mygopen/index.js +0 -29
 - package/lib/v2/mygopen/maintainer.js +0 -3
 - package/lib/v2/mygopen/radar.js +0 -13
 - package/lib/v2/mygopen/router.js +0 -3
 - package/lib/v2/nbd/article.js +0 -50
 - package/lib/v2/nbd/index.js +0 -52
 - package/lib/v2/nbd/maintainer.js +0 -4
 - package/lib/v2/nbd/radar.js +0 -19
 - package/lib/v2/nbd/router.js +0 -4
 - package/lib/v2/neea/index.js +0 -110
 - package/lib/v2/neea/jlpt.js +0 -52
 - package/lib/v2/neea/maintainer.js +0 -4
 - package/lib/v2/neea/radar.js +0 -13
 - package/lib/v2/neea/router.js +0 -4
 - package/lib/v2/netease/maintainer.js +0 -5
 - package/lib/v2/netease/radar.js +0 -29
 - package/lib/v2/netease/rank.js +0 -154
 - package/lib/v2/netease/renjian.js +0 -74
 - package/lib/v2/netease/router.js +0 -5
 - package/lib/v2/netease/today.js +0 -55
 - package/lib/v2/news/maintainer.js +0 -3
 - package/lib/v2/news/radar.js +0 -13
 - package/lib/v2/news/router.js +0 -3
 - package/lib/v2/news/whxw.js +0 -67
 - package/lib/v2/newsmarket/index.js +0 -63
 - package/lib/v2/newsmarket/maintainer.js +0 -3
 - package/lib/v2/newsmarket/radar.js +0 -13
 - package/lib/v2/newsmarket/router.js +0 -3
 - package/lib/v2/ngocn2/index.js +0 -56
 - package/lib/v2/ngocn2/maintainer.js +0 -3
 - package/lib/v2/ngocn2/radar.js +0 -13
 - package/lib/v2/ngocn2/router.js +0 -3
 - package/lib/v2/nifd/maintainer.js +0 -3
 - package/lib/v2/nifd/radar.js +0 -117
 - package/lib/v2/nifd/research.js +0 -52
 - package/lib/v2/nifd/router.js +0 -3
 - package/lib/v2/nikkei-asia/index.js +0 -40
 - package/lib/v2/nikkei-asia/maintainer.js +0 -3
 - package/lib/v2/nikkei-asia/radar.js +0 -13
 - package/lib/v2/nikkei-asia/router.js +0 -3
 - package/lib/v2/nikkei-cn/index.js +0 -77
 - package/lib/v2/nikkei-cn/maintainer.js +0 -3
 - package/lib/v2/nikkei-cn/radar.js +0 -21
 - package/lib/v2/nikkei-cn/router.js +0 -3
 - package/lib/v2/nippon/index.js +0 -31
 - package/lib/v2/nippon/maintainer.js +0 -3
 - package/lib/v2/nippon/radar.js +0 -13
 - package/lib/v2/nippon/router.js +0 -3
 - package/lib/v2/njnu/ceai/ceai.js +0 -44
 - package/lib/v2/njnu/ceai/utils.js +0 -55
 - package/lib/v2/njnu/jwc/jwc.js +0 -43
 - package/lib/v2/njnu/jwc/utils.js +0 -59
 - package/lib/v2/njnu/maintainer.js +0 -4
 - package/lib/v2/njnu/radar.js +0 -21
 - package/lib/v2/njnu/router.js +0 -4
 - package/lib/v2/nju/gra.js +0 -31
 - package/lib/v2/nju/jw.js +0 -45
 - package/lib/v2/nju/maintainer.js +0 -8
 - package/lib/v2/nju/radar.js +0 -53
 - package/lib/v2/nju/rczp.js +0 -38
 - package/lib/v2/nju/router.js +0 -8
 - package/lib/v2/nju/scit.js +0 -36
 - package/lib/v2/nju/zbb.js +0 -81
 - package/lib/v2/nju/zcc.js +0 -48
 - package/lib/v2/nltimes/maintainer.js +0 -3
 - package/lib/v2/nltimes/news.js +0 -89
 - package/lib/v2/nltimes/radar.js +0 -19
 - package/lib/v2/nltimes/router.js +0 -3
 - package/lib/v2/nodejs/blog.js +0 -60
 - package/lib/v2/nodejs/maintainer.js +0 -3
 - package/lib/v2/nodejs/radar.js +0 -13
 - package/lib/v2/nodejs/router.js +0 -3
 - package/lib/v2/nogizaka46/blog.js +0 -29
 - package/lib/v2/nogizaka46/maintainer.js +0 -4
 - package/lib/v2/nogizaka46/news.js +0 -33
 - package/lib/v2/nogizaka46/radar.js +0 -21
 - package/lib/v2/nogizaka46/router.js +0 -4
 - package/lib/v2/now/maintainer.js +0 -3
 - package/lib/v2/now/news.js +0 -66
 - package/lib/v2/now/radar.js +0 -13
 - package/lib/v2/now/router.js +0 -3
 - package/lib/v2/nowcoder/discuss.js +0 -57
 - package/lib/v2/nowcoder/experience.js +0 -48
 - package/lib/v2/nowcoder/jobcenter.js +0 -57
 - package/lib/v2/nowcoder/maintainer.js +0 -7
 - package/lib/v2/nowcoder/radar.js +0 -40
 - package/lib/v2/nowcoder/recommend.js +0 -20
 - package/lib/v2/nowcoder/router.js +0 -7
 - package/lib/v2/nowcoder/schedule.js +0 -32
 - package/lib/v2/nsfc/maintainer.js +0 -3
 - package/lib/v2/nsfc/news.js +0 -92
 - package/lib/v2/nsfc/radar.js +0 -31
 - package/lib/v2/nsfc/router.js +0 -3
 - package/lib/v2/odaily/activity.js +0 -48
 - package/lib/v2/odaily/maintainer.js +0 -6
 - package/lib/v2/odaily/newsflash.js +0 -26
 - package/lib/v2/odaily/post.js +0 -68
 - package/lib/v2/odaily/radar.js +0 -60
 - package/lib/v2/odaily/router.js +0 -6
 - package/lib/v2/odaily/user.js +0 -54
 - package/lib/v2/odaily/utils.js +0 -3
 - package/lib/v2/oilchem/index.js +0 -67
 - package/lib/v2/oilchem/maintainer.js +0 -3
 - package/lib/v2/oilchem/radar.js +0 -11
 - package/lib/v2/oilchem/router.js +0 -3
 - package/lib/v2/oilchem/routes.js +0 -671
 - package/lib/v2/oncc/index.js +0 -83
 - package/lib/v2/oncc/maintainer.js +0 -3
 - package/lib/v2/oncc/radar.js +0 -37
 - package/lib/v2/oncc/router.js +0 -3
 - package/lib/v2/orcid/index.js +0 -54
 - package/lib/v2/orcid/maintainer.js +0 -3
 - package/lib/v2/orcid/radar.js +0 -13
 - package/lib/v2/orcid/router.js +0 -3
 - package/lib/v2/orcid/templates/description.art +0 -3
 - package/lib/v2/oup/index.js +0 -53
 - package/lib/v2/oup/maintainer.js +0 -3
 - package/lib/v2/oup/radar.js +0 -13
 - package/lib/v2/oup/router.js +0 -3
 - package/lib/v2/panewslab/column.js +0 -60
 - package/lib/v2/panewslab/index.js +0 -56
 - package/lib/v2/panewslab/maintainer.js +0 -6
 - package/lib/v2/panewslab/newsflash.js +0 -35
 - package/lib/v2/panewslab/radar.js +0 -31
 - package/lib/v2/panewslab/router.js +0 -6
 - package/lib/v2/panewslab/topic.js +0 -55
 - package/lib/v2/people/index.js +0 -83
 - package/lib/v2/people/liuyan.js +0 -54
 - package/lib/v2/people/maintainer.js +0 -6
 - package/lib/v2/people/radar.js +0 -21
 - package/lib/v2/people/router.js +0 -6
 - package/lib/v2/people/xjpjh.js +0 -68
 - package/lib/v2/picuki/maintainer.js +0 -3
 - package/lib/v2/picuki/profile.js +0 -167
 - package/lib/v2/picuki/radar.js +0 -13
 - package/lib/v2/picuki/router.js +0 -3
 - package/lib/v2/picuki/templates/post.art +0 -7
 - package/lib/v2/pku/hr.js +0 -54
 - package/lib/v2/pku/maintainer.js +0 -3
 - package/lib/v2/pku/radar.js +0 -13
 - package/lib/v2/pku/router.js +0 -3
 - package/lib/v2/polkaworld/home.js +0 -24
 - package/lib/v2/polkaworld/maintainer.js +0 -3
 - package/lib/v2/polkaworld/radar.js +0 -13
 - package/lib/v2/polkaworld/router.js +0 -3
 - package/lib/v2/producthunt/maintainer.js +0 -3
 - package/lib/v2/producthunt/radar.js +0 -13
 - package/lib/v2/producthunt/router.js +0 -3
 - package/lib/v2/producthunt/templates/descImg.art +0 -5
 - package/lib/v2/producthunt/today.js +0 -41
 - package/lib/v2/pts/dailynews.js +0 -52
 - package/lib/v2/pts/maintainer.js +0 -3
 - package/lib/v2/pts/radar.js +0 -13
 - package/lib/v2/pts/router.js +0 -3
 - package/lib/v2/qidiantu/index.js +0 -87
 - package/lib/v2/qidiantu/maintainer.js +0 -4
 - package/lib/v2/qidiantu/radar.js +0 -19
 - package/lib/v2/qidiantu/router.js +0 -3
 - package/lib/v2/qm120/maintainer.js +0 -3
 - package/lib/v2/qm120/news.js +0 -50
 - package/lib/v2/qm120/radar.js +0 -13
 - package/lib/v2/qm120/router.js +0 -3
 - package/lib/v2/qq/ac/comic.js +0 -43
 - package/lib/v2/qq/ac/rank.js +0 -20
 - package/lib/v2/qq/ac/utils.js +0 -71
 - package/lib/v2/qq/live.js +0 -36
 - package/lib/v2/qq/maintainer.js +0 -5
 - package/lib/v2/qq/radar.js +0 -27
 - package/lib/v2/qq/router.js +0 -5
 - package/lib/v2/qq88/index.js +0 -60
 - package/lib/v2/qq88/maintainer.js +0 -3
 - package/lib/v2/qq88/radar.js +0 -13
 - package/lib/v2/qq88/router.js +0 -3
 - package/lib/v2/radio-canada/latest.js +0 -43
 - package/lib/v2/radio-canada/maintainer.js +0 -3
 - package/lib/v2/radio-canada/radar.js +0 -13
 - package/lib/v2/radio-canada/router.js +0 -3
 - package/lib/v2/readhub/index.js +0 -106
 - package/lib/v2/readhub/maintainer.js +0 -3
 - package/lib/v2/readhub/radar.js +0 -13
 - package/lib/v2/readhub/router.js +0 -6
 - package/lib/v2/rfi/maintainer.js +0 -3
 - package/lib/v2/rfi/news.js +0 -49
 - package/lib/v2/rfi/radar.js +0 -13
 - package/lib/v2/rfi/router.js +0 -3
 - package/lib/v2/rsshub/maintainer.js +0 -4
 - package/lib/v2/rsshub/radar.js +0 -19
 - package/lib/v2/rsshub/router.js +0 -6
 - package/lib/v2/rsshub/routes.js +0 -69
 - package/lib/v2/rsshub/sponsors.js +0 -46
 - package/lib/v2/ruancan/index.js +0 -54
 - package/lib/v2/ruancan/maintainer.js +0 -6
 - package/lib/v2/ruancan/radar.js +0 -25
 - package/lib/v2/ruancan/router.js +0 -3
 - package/lib/v2/ruc/hr.js +0 -58
 - package/lib/v2/ruc/maintainer.js +0 -3
 - package/lib/v2/ruc/radar.js +0 -13
 - package/lib/v2/ruc/router.js +0 -3
 - package/lib/v2/sciencedirect/journal.js +0 -62
 - package/lib/v2/sciencedirect/maintainer.js +0 -3
 - package/lib/v2/sciencedirect/radar.js +0 -13
 - package/lib/v2/sciencedirect/router.js +0 -3
 - package/lib/v2/secnews/index.js +0 -27
 - package/lib/v2/secnews/maintainer.js +0 -3
 - package/lib/v2/secnews/radar.js +0 -13
 - package/lib/v2/secnews/router.js +0 -3
 - package/lib/v2/shmeea/index.js +0 -44
 - package/lib/v2/shmeea/maintainer.js +0 -4
 - package/lib/v2/shmeea/radar.js +0 -19
 - package/lib/v2/shmeea/router.js +0 -4
 - package/lib/v2/shmeea/self-study.js +0 -61
 - package/lib/v2/shopback/maintainer.js +0 -3
 - package/lib/v2/shopback/radar.js +0 -13
 - package/lib/v2/shopback/router.js +0 -3
 - package/lib/v2/shopback/store.js +0 -37
 - package/lib/v2/sicau/dky.js +0 -53
 - package/lib/v2/sicau/maintainer.js +0 -5
 - package/lib/v2/sicau/radar.js +0 -27
 - package/lib/v2/sicau/router.js +0 -5
 - package/lib/v2/sicau/yan.js +0 -53
 - package/lib/v2/sicau/zsjy.js +0 -53
 - package/lib/v2/solidot/_article.js +0 -50
 - package/lib/v2/solidot/main.js +0 -36
 - package/lib/v2/solidot/maintainer.js +0 -3
 - package/lib/v2/solidot/radar.js +0 -117
 - package/lib/v2/solidot/router.js +0 -3
 - package/lib/v2/spotify/artist.js +0 -41
 - package/lib/v2/spotify/maintainer.js +0 -7
 - package/lib/v2/spotify/playlist.js +0 -31
 - package/lib/v2/spotify/radar.js +0 -37
 - package/lib/v2/spotify/router.js +0 -7
 - package/lib/v2/spotify/saved.js +0 -30
 - package/lib/v2/spotify/top.js +0 -24
 - package/lib/v2/spotify/utils.js +0 -62
 - package/lib/v2/ssm/maintainer.js +0 -3
 - package/lib/v2/ssm/news.js +0 -38
 - package/lib/v2/ssm/radar.js +0 -13
 - package/lib/v2/ssm/router.js +0 -3
 - package/lib/v2/startuplatte/index.js +0 -56
 - package/lib/v2/startuplatte/maintainer.js +0 -3
 - package/lib/v2/startuplatte/radar.js +0 -13
 - package/lib/v2/startuplatte/router.js +0 -3
 - package/lib/v2/stcn/index.js +0 -71
 - package/lib/v2/stcn/maintainer.js +0 -6
 - package/lib/v2/stcn/radar.js +0 -31
 - package/lib/v2/stcn/router.js +0 -3
 - package/lib/v2/storm/index.js +0 -57
 - package/lib/v2/storm/maintainer.js +0 -3
 - package/lib/v2/storm/radar.js +0 -13
 - package/lib/v2/storm/router.js +0 -3
 - package/lib/v2/subhd/index.js +0 -79
 - package/lib/v2/subhd/maintainer.js +0 -4
 - package/lib/v2/subhd/radar.js +0 -19
 - package/lib/v2/subhd/router.js +0 -3
 - package/lib/v2/swissinfo/index.js +0 -73
 - package/lib/v2/swissinfo/maintainer.js +0 -3
 - package/lib/v2/swissinfo/radar.js +0 -13
 - package/lib/v2/swissinfo/router.js +0 -3
 - package/lib/v2/swpu/bgw.js +0 -58
 - package/lib/v2/swpu/dean.js +0 -59
 - package/lib/v2/swpu/dxy.js +0 -61
 - package/lib/v2/swpu/maintainer.js +0 -6
 - package/lib/v2/swpu/radar.js +0 -31
 - package/lib/v2/swpu/router.js +0 -6
 - package/lib/v2/swpu/scs.js +0 -58
 - package/lib/v2/swpu/utils.js +0 -22
 - package/lib/v2/sysu/cse.js +0 -103
 - package/lib/v2/sysu/maintainer.js +0 -3
 - package/lib/v2/sysu/radar.js +0 -13
 - package/lib/v2/sysu/router.js +0 -3
 - package/lib/v2/szse/maintainer.js +0 -3
 - package/lib/v2/szse/radar.js +0 -13
 - package/lib/v2/szse/router.js +0 -3
 - package/lib/v2/szse/rule.js +0 -51
 - package/lib/v2/taobao/maintainer.js +0 -3
 - package/lib/v2/taobao/radar.js +0 -117
 - package/lib/v2/taobao/router.js +0 -3
 - package/lib/v2/taobao/zhongchou.js +0 -46
 - package/lib/v2/telegram/blog.js +0 -35
 - package/lib/v2/telegram/channel.js +0 -565
 - package/lib/v2/telegram/maintainer.js +0 -5
 - package/lib/v2/telegram/radar.js +0 -35
 - package/lib/v2/telegram/router.js +0 -5
 - package/lib/v2/telegram/stickerpack.js +0 -26
 - package/lib/v2/tencent/maintainer.js +0 -3
 - package/lib/v2/tencent/qq/sdk/changelog.js +0 -56
 - package/lib/v2/tencent/radar.js +0 -56
 - package/lib/v2/tencent/router.js +0 -3
 - package/lib/v2/test/index.js +0 -184
 - package/lib/v2/test/maintainer.js +0 -3
 - package/lib/v2/test/router.js +0 -3
 - package/lib/v2/timednews/maintainer.js +0 -3
 - package/lib/v2/timednews/news.js +0 -106
 - package/lib/v2/timednews/radar.js +0 -57
 - package/lib/v2/timednews/router.js +0 -3
 - package/lib/v2/tisi/index.js +0 -38
 - package/lib/v2/tisi/maintainer.js +0 -3
 - package/lib/v2/tisi/radar.js +0 -17
 - package/lib/v2/tisi/router.js +0 -3
 - package/lib/v2/tokeninsight/blog.js +0 -52
 - package/lib/v2/tokeninsight/bulletin.js +0 -44
 - package/lib/v2/tokeninsight/maintainer.js +0 -5
 - package/lib/v2/tokeninsight/radar.js +0 -25
 - package/lib/v2/tokeninsight/report.js +0 -52
 - package/lib/v2/tokeninsight/router.js +0 -5
 - package/lib/v2/topys/index.js +0 -66
 - package/lib/v2/topys/maintainer.js +0 -3
 - package/lib/v2/topys/radar.js +0 -13
 - package/lib/v2/topys/router.js +0 -3
 - package/lib/v2/trow/maintainer.js +0 -3
 - package/lib/v2/trow/portal.js +0 -36
 - package/lib/v2/trow/radar.js +0 -13
 - package/lib/v2/trow/router.js +0 -3
 - package/lib/v2/txrjy/fornumtopic.js +0 -72
 - package/lib/v2/txrjy/maintainer.js +0 -3
 - package/lib/v2/txrjy/radar.js +0 -17
 - package/lib/v2/txrjy/router.js +0 -3
 - package/lib/v2/ucas/index.js +0 -59
 - package/lib/v2/ucas/maintainer.js +0 -3
 - package/lib/v2/ucas/rader.js +0 -47
 - package/lib/v2/ucas/router.js +0 -3
 - package/lib/v2/uibe/hr.js +0 -58
 - package/lib/v2/uibe/maintainer.js +0 -3
 - package/lib/v2/uibe/radar.js +0 -13
 - package/lib/v2/uibe/router.js +0 -3
 - package/lib/v2/ulapia/index.js +0 -47
 - package/lib/v2/ulapia/maintainer.js +0 -3
 - package/lib/v2/ulapia/radar.js +0 -55
 - package/lib/v2/ulapia/research.js +0 -38
 - package/lib/v2/ulapia/router.js +0 -4
 - package/lib/v2/ustb/maintainer.js +0 -24
 - package/lib/v2/ustb/radar.js +0 -13
 - package/lib/v2/ustb/router.js +0 -3
 - package/lib/v2/ustb/yjsy/news.js +0 -464
 - package/lib/v2/verfghbw/maintainer.js +0 -3
 - package/lib/v2/verfghbw/press.js +0 -60
 - package/lib/v2/verfghbw/radar.js +0 -13
 - package/lib/v2/verfghbw/router.js +0 -3
 - package/lib/v2/vimeo/category.js +0 -64
 - package/lib/v2/vimeo/channel.js +0 -72
 - package/lib/v2/vimeo/radar.js +0 -33
 - package/lib/v2/vimeo/router.js +0 -5
 - package/lib/v2/vimeo/templates/description.art +0 -4
 - package/lib/v2/vimeo/usr-videos.js +0 -76
 - package/lib/v2/wallhaven/index.js +0 -55
 - package/lib/v2/wallhaven/maintainer.js +0 -4
 - package/lib/v2/wallhaven/radar.js +0 -53
 - package/lib/v2/wallhaven/router.js +0 -4
 - package/lib/v2/wallstreetcn/live.js +0 -49
 - package/lib/v2/wallstreetcn/maintainer.js +0 -5
 - package/lib/v2/wallstreetcn/news.js +0 -61
 - package/lib/v2/wallstreetcn/radar.js +0 -19
 - package/lib/v2/wallstreetcn/router.js +0 -5
 - package/lib/v2/wangqiutiyu/anchor.js +0 -42
 - package/lib/v2/wangqiutiyu/maintainer.js +0 -3
 - package/lib/v2/wangqiutiyu/radar.js +0 -13
 - package/lib/v2/wangqiutiyu/router.js +0 -3
 - package/lib/v2/watchout/index.js +0 -51
 - package/lib/v2/watchout/maintainer.js +0 -3
 - package/lib/v2/watchout/radar.js +0 -13
 - package/lib/v2/watchout/router.js +0 -3
 - package/lib/v2/wechat/feeddd.js +0 -80
 - package/lib/v2/wechat/maintainer.js +0 -3
 - package/lib/v2/wechat/radar.js +0 -12
 - package/lib/v2/wechat/router.js +0 -3
 - package/lib/v2/wechat/templates/description.art +0 -1
 - package/lib/v2/wechat/templates/image.art +0 -1
 - package/lib/v2/wenku8/chapter.js +0 -35
 - package/lib/v2/wenku8/index.js +0 -52
 - package/lib/v2/wenku8/maintainer.js +0 -5
 - package/lib/v2/wenku8/radar.js +0 -85
 - package/lib/v2/wenku8/router.js +0 -5
 - package/lib/v2/wenku8/volume.js +0 -52
 - package/lib/v2/wfu/jwc.js +0 -54
 - package/lib/v2/wfu/maintainer.js +0 -4
 - package/lib/v2/wfu/news.js +0 -96
 - package/lib/v2/wfu/radar.js +0 -21
 - package/lib/v2/wfu/router.js +0 -4
 - package/lib/v2/whitehouse/briefing-room.js +0 -50
 - package/lib/v2/whitehouse/maintainer.js +0 -3
 - package/lib/v2/whitehouse/radar.js +0 -13
 - package/lib/v2/whitehouse/router.js +0 -3
 - package/lib/v2/who/maintainer.js +0 -5
 - package/lib/v2/who/news-room.js +0 -76
 - package/lib/v2/who/news.js +0 -43
 - package/lib/v2/who/radar.js +0 -25
 - package/lib/v2/who/router.js +0 -5
 - package/lib/v2/who/speeches.js +0 -45
 - package/lib/v2/whoscall/index.js +0 -55
 - package/lib/v2/whoscall/maintainer.js +0 -5
 - package/lib/v2/whoscall/radar.js +0 -25
 - package/lib/v2/whoscall/router.js +0 -3
 - package/lib/v2/wikinews/index.js +0 -43
 - package/lib/v2/wikinews/maintainer.js +0 -3
 - package/lib/v2/wikinews/radar.js +0 -13
 - package/lib/v2/wikinews/router.js +0 -4
 - package/lib/v2/wsj/index.js +0 -141
 - package/lib/v2/wsj/maintainer.js +0 -3
 - package/lib/v2/wsj/radar.js +0 -21
 - package/lib/v2/wsj/router.js +0 -3
 - package/lib/v2/wsyu/maintainer.js +0 -3
 - package/lib/v2/wsyu/news.js +0 -85
 - package/lib/v2/wsyu/radar.js +0 -25
 - package/lib/v2/wsyu/router.js +0 -3
 - package/lib/v2/wyzxwk/article.js +0 -65
 - package/lib/v2/wyzxwk/maintainer.js +0 -3
 - package/lib/v2/wyzxwk/radar.js +0 -13
 - package/lib/v2/wyzxwk/router.js +0 -3
 - package/lib/v2/wzu/maintainer.js +0 -3
 - package/lib/v2/wzu/news.js +0 -84
 - package/lib/v2/wzu/radar.js +0 -11
 - package/lib/v2/wzu/router.js +0 -3
 - package/lib/v2/xaut/index.js +0 -72
 - package/lib/v2/xaut/jwc.js +0 -65
 - package/lib/v2/xaut/maintainer.js +0 -5
 - package/lib/v2/xaut/radar.js +0 -23
 - package/lib/v2/xaut/router.js +0 -5
 - package/lib/v2/xaut/rsc.js +0 -67
 - package/lib/v2/xiaoyuzhou/maintainer.js +0 -4
 - package/lib/v2/xiaoyuzhou/pickup.js +0 -96
 - package/lib/v2/xiaoyuzhou/podcast.js +0 -36
 - package/lib/v2/xiaoyuzhou/radar.js +0 -19
 - package/lib/v2/xiaoyuzhou/router.js +0 -4
 - package/lib/v2/xmanhua/index.js +0 -74
 - package/lib/v2/xmanhua/radar.js +0 -13
 - package/lib/v2/xmanhua/router.js +0 -3
 - package/lib/v2/yaohuo/index.js +0 -30
 - package/lib/v2/yaohuo/maintainer.js +0 -3
 - package/lib/v2/yaohuo/radar.js +0 -13
 - package/lib/v2/yaohuo/router.js +0 -3
 - package/lib/v2/youku/channel.js +0 -56
 - package/lib/v2/youku/maintainer.js +0 -3
 - package/lib/v2/youku/radar.js +0 -13
 - package/lib/v2/youku/router.js +0 -3
 - package/lib/v2/youzhiyouxing/maintainer.js +0 -3
 - package/lib/v2/youzhiyouxing/materials.js +0 -46
 - package/lib/v2/youzhiyouxing/radar.js +0 -73
 - package/lib/v2/youzhiyouxing/router.js +0 -3
 - package/lib/v2/yxdzqb/index.js +0 -53
 - package/lib/v2/yxdzqb/maintainer.js +0 -3
 - package/lib/v2/yxdzqb/radar.js +0 -13
 - package/lib/v2/yxdzqb/router.js +0 -3
 - package/lib/v2/zaker/index.js +0 -65
 - package/lib/v2/zaker/maintainer.js +0 -3
 - package/lib/v2/zaker/radar.js +0 -19
 - package/lib/v2/zaker/router.js +0 -3
 - package/lib/v2/zaobao/index.js +0 -17
 - package/lib/v2/zaobao/interactive.js +0 -15
 - package/lib/v2/zaobao/maintainer.js +0 -6
 - package/lib/v2/zaobao/radar.js +0 -28
 - package/lib/v2/zaobao/realtime.js +0 -30
 - package/lib/v2/zaobao/router.js +0 -6
 - package/lib/v2/zaobao/util.js +0 -166
 - package/lib/v2/zaobao/znews.js +0 -32
 - package/lib/v2/zhibo8/forum.js +0 -47
 - package/lib/v2/zhibo8/maintainer.js +0 -5
 - package/lib/v2/zhibo8/more.js +0 -82
 - package/lib/v2/zhibo8/post.js +0 -39
 - package/lib/v2/zhibo8/radar.js +0 -27
 - package/lib/v2/zhibo8/router.js +0 -5
 - package/lib/v2/zhubai/index.js +0 -29
 - package/lib/v2/zhubai/maintainer.js +0 -3
 - package/lib/v2/zhubai/radar.js +0 -12
 - package/lib/v2/zhubai/router.js +0 -3
 - package/lib/v2/zjgtjy/index.js +0 -46
 - package/lib/v2/zjgtjy/maintainer.js +0 -3
 - package/lib/v2/zjgtjy/radar.js +0 -31
 - package/lib/v2/zjgtjy/router.js +0 -3
 - package/lib/v2router.js +0 -17
 - package/lib/views/atom.art +0 -72
 - package/lib/views/error.art +0 -60
 - package/lib/views/rss.art +0 -59
 - package/lib/views/welcome.art +0 -111
 - /package/lib/{favicon.png → assets/favicon.png} +0 -0
 - /package/lib/{v2 → routes}/12306/templates/train.art +0 -0
 - /package/lib/routes/{ncm/templates → 163/templates/music}/djradio-content.art +0 -0
 - /package/lib/{v2 → routes}/2048/templates/download.art +0 -0
 - /package/lib/{v2 → routes}/95mm/templates/description.art +0 -0
 - /package/lib/{v2/chaoxing → routes/aeaweb}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/bandcamp/templates/weekly.art +0 -0
 - /package/lib/{v2/hkepc/templates → routes/bangumi/templates/online}/image.art +0 -0
 - /package/lib/{v2 → routes}/baozimh/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/btzj/templates/torrents.art +0 -0
 - /package/lib/{v2/agirls → routes/caai}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/cahkms/templates/description.art +0 -0
 - /package/lib/{v2/eprice/templates → routes/ccf/templates/tfbd}/description.art +0 -0
 - /package/lib/{v2 → routes}/cebbank/templates/allDes.art +0 -0
 - /package/lib/{v2 → routes}/cebbank/templates/historyDes.art +0 -0
 - /package/lib/{v2 → routes}/changba/templates/work_description.art +0 -0
 - /package/lib/{v2 → routes}/cnki/templates/desc.art +0 -0
 - /package/lib/{v2 → routes}/cntv/templates/column.art +0 -0
 - /package/lib/{v2/2048/radar.js → routes/dnaindia/category.ts} +0 -0
 - /package/lib/{v2 → routes}/douban/templates/explore.art +0 -0
 - /package/lib/{v2 → routes}/dushu/fuzhou/templates/message.art +0 -0
 - /package/lib/{v2 → routes}/e-hentai/templates/images.art +0 -0
 - /package/lib/{v2/acm-ecnu → routes/ecnu}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/ff14/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/firefox/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/fisher-spb/templates/image.art +0 -0
 - /package/lib/{v2 → routes}/fisher-spb/templates/video.art +0 -0
 - /package/lib/{v2 → routes}/focustaiwan/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/furstar/templates/author.art +0 -0
 - /package/lib/{v2 → routes}/gameapps/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/github/templates/comments-description.art +0 -0
 - /package/lib/{v2 → routes}/google/templates/fonts.art +0 -0
 - /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/sncsyjxh.art +0 -0
 - /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/tfxtq.art +0 -0
 - /package/lib/{v2/gov/shanghai → routes/gov/sh}/rsj/templates/ksxm.art +0 -0
 - /package/lib/{v2 → routes}/guduodata/templates/daily.art +0 -0
 - /package/lib/{v2 → routes}/hkej/templates/articleImg.art +0 -0
 - /package/lib/{v2 → routes}/hkej/templates/description.art +0 -0
 - /package/lib/{v2/hkepc → routes/hrbust}/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/informs/templates/content.art +0 -0
 - /package/lib/{v2 → routes}/iresearch/templates/report.art +0 -0
 - /package/lib/{v2 → routes}/jandan/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/javlibrary/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/jump/templates/discount.art +0 -0
 - /package/lib/{v2 → routes}/lanqiao/templates/courseDesc.art +0 -0
 - /package/lib/{v2 → routes}/learnku/templates/topic.art +0 -0
 - /package/lib/{v2 → routes}/lfsyd/templates/card.art +0 -0
 - /package/lib/{v2 → routes}/lkong/templates/content.art +0 -0
 - /package/lib/{v2 → routes}/lkong/templates/quote.art +0 -0
 - /package/lib/{v2 → routes}/logonews/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/lvv2/templates/outlink.art +0 -0
 - /package/lib/{v2 → routes}/oncc/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/oup/templates/article.art +0 -0
 - /package/lib/{v2 → routes}/qq/ac/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/ssm/templates/news.art +0 -0
 - /package/lib/{v2 → routes}/taobao/templates/zhongchou.art +0 -0
 - /package/lib/{v2 → routes}/telegram/templates/video.art +0 -0
 - /package/lib/{v2 → routes}/txrjy/templates/fornumtopic.art +0 -0
 - /package/lib/{v2 → routes}/youku/templates/channel.art +0 -0
 - /package/lib/{v2 → routes}/yxdzqb/templates/description.art +0 -0
 - /package/lib/{v2 → routes}/zaobao/templates/zaobao.art +0 -0
 - /package/lib/{routes → routes-deprecated}/199it/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/aflcio/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/algocasts/all.js +0 -0
 - /package/lib/{routes → routes-deprecated}/allpoetry/order.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/fresh.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/top.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/updated.js +0 -0
 - /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/anime1/anime.js +0 -0
 - /package/lib/{routes → routes-deprecated}/anime1/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/anytxt/release-notes.js +0 -0
 - /package/lib/{routes → routes-deprecated}/aqicn/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/arxiv/query.js +0 -0
 - /package/lib/{routes → routes-deprecated}/asml/press-releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/av01/actor.js +0 -0
 - /package/lib/{routes → routes-deprecated}/av01/tag.js +0 -0
 - /package/lib/{routes → routes-deprecated}/bahamut/creation.js +0 -0
 - /package/lib/{routes → routes-deprecated}/banyuetan/byt.js +0 -0
 - /package/lib/{routes/blogs/jingwei_link.js → routes-deprecated/blogs/jingwei-link.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/blogs/leemeng.js +0 -0
 - /package/lib/{routes → routes-deprecated}/blogs/wang54.js +0 -0
 - /package/lib/{routes → routes-deprecated}/bookwalkertw/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/bsblog123/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/cbndata/information.js +0 -0
 - /package/lib/{routes → routes-deprecated}/centbrowser/history.js +0 -0
 - /package/lib/{routes → routes-deprecated}/checkra1n/releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chinadaily/english.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chinafile/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chouti/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chuapp/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/chuhaibiji/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/clb/commentary.js +0 -0
 - /package/lib/{routes → routes-deprecated}/cninfo/announcement.js +0 -0
 - /package/lib/{routes → routes-deprecated}/coolbuy/newest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/cowlevel/element.js +0 -0
 - /package/lib/{routes → routes-deprecated}/creaders/headline.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ctei/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ctfhub/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ctfhub/upcoming.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dailyart/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/daodu/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dbaplus/activity.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dbaplus/tab.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dcinside/board.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dekudeals/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/deloitte/industries.js +0 -0
 - /package/lib/{routes/dgtle/whale_rank.js → routes-deprecated/dgtle/whale-rank.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/dgtle/whale.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ditto/changes.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dw/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dykszx/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/dytt/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ebb/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/etoland/board.js +0 -0
 - /package/lib/{routes → routes-deprecated}/europapress/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/eztv/imdb.js +0 -0
 - /package/lib/{routes → routes-deprecated}/fanfou/trends.js +0 -0
 - /package/lib/{routes → routes-deprecated}/fgo/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/fnal/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/browse.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/commissions.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/favorites.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/gallery.js +0 -0
 - /package/lib/{routes/furaffinity/journal_comments.js → routes-deprecated/furaffinity/journal-comments.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/journals.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/scraps.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/shouts.js +0 -0
 - /package/lib/{routes/furaffinity/submission_comments.js → routes-deprecated/furaffinity/submission-comments.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/watchers.js +0 -0
 - /package/lib/{routes → routes-deprecated}/furaffinity/watching.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gab/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/game4399/forum.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gameres/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gameres/list.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gameres/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gamersky/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gaoqing/latest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/geekpark/breakingnews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/geektime/column.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gnn/gnn.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/caict/bps.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/caict/caictgd.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/caict/qwsj.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/chongqing/ljxq/dwgk.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/city/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/province/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/shanxi/rst.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/shuju/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gov/statecouncil/briefing.js +0 -0
 - /package/lib/{routes → routes-deprecated}/grandchallenge/challenges.js +0 -0
 - /package/lib/{routes → routes-deprecated}/grandchallenge/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/guardian/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/gushiwen/recommend.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hainanu/ssszs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hanime/video.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hatena/anonymous_diary/archive.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hentai-cosplays/porn-images-xxx.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hko/weather.js +0 -0
 - /package/lib/{routes → routes-deprecated}/hudongba/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ichunqiu/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/iciba/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/icity/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ieee/author.js +0 -0
 - /package/lib/{routes/interesting-sky/astronomical_events.js → routes-deprecated/interesting-sky/astronomical-events.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/interesting-sky/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/interesting-sky/recent-interesting.js +0 -0
 - /package/lib/{routes → routes-deprecated}/invisionapp/inside-design.js +0 -0
 - /package/lib/{routes → routes-deprecated}/itslaw/judgements.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kaoyan/kaoyan.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kchuhai/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kenshin/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/keyakizaka46/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/keyakizaka46/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kingarthur/index.js +0 -0
 - /package/lib/{routes/konachan/post_popular_recent.js → routes-deprecated/konachan/post-popular-recent.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/kongfz/people.js +0 -0
 - /package/lib/{routes → routes-deprecated}/kotaku/story.js +0 -0
 - /package/lib/{routes → routes-deprecated}/lagou/jobs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/laosiji/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/latexstudio/home.js +0 -0
 - /package/lib/{routes → routes-deprecated}/letterboxd/followingdiary.js +0 -0
 - /package/lib/{routes → routes-deprecated}/letterboxd/userdiary.js +0 -0
 - /package/lib/{routes → routes-deprecated}/lolapp/recommend.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ltaaa/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mafengwo/ziyouxing.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mamibuy/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/manhuadb/comics.js +0 -0
 - /package/lib/{routes → routes-deprecated}/manictime/releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/maoyan/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/maoyan/upcoming.js +0 -0
 - /package/lib/{routes → routes-deprecated}/marginnote/tag.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mathpix/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mathunion/fields-medal.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mcbbs/forum.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mcbbs/post.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mcbbs/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/meipai/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/meipai/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/melon/chart.js +0 -0
 - /package/lib/{routes → routes-deprecated}/micmicidol/latest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/micmicidol/parse.js +0 -0
 - /package/lib/{routes → routes-deprecated}/micmicidol/search.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mofish/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mofish/templates/description.art +0 -0
 - /package/lib/{routes → routes-deprecated}/monotype/article.js +0 -0
 - /package/lib/{routes → routes-deprecated}/mubu/explore.js +0 -0
 - /package/lib/{routes → routes-deprecated}/muchong/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nace/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/navisec/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nosetime/comment.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nosetime/home.js +0 -0
 - /package/lib/{routes → routes-deprecated}/now/rank.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nvidia/webdriverupdate.js +0 -0
 - /package/lib/{routes → routes-deprecated}/nwpu/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ofweek/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/onejav/one.js +0 -0
 - /package/lib/{routes → routes-deprecated}/onenotegem/release.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ornl/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/paidai/bbs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/paidai/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/paidai/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/parcel/hermesuk.js +0 -0
 - /package/lib/{routes → routes-deprecated}/patchwork.kernel.org/cache.js +0 -0
 - /package/lib/{routes → routes-deprecated}/phrack/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/polimi/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/proletar/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/psnine/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/psnine/node.js +0 -0
 - /package/lib/{routes → routes-deprecated}/qnap/release-notes.js +0 -0
 - /package/lib/{routes → routes-deprecated}/qttabbar/change-log.js +0 -0
 - /package/lib/{routes → routes-deprecated}/queshu/book.js +0 -0
 - /package/lib/{routes → routes-deprecated}/queshu/sale.js +0 -0
 - /package/lib/{routes → routes-deprecated}/qzcea/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/rf/article.js +0 -0
 - /package/lib/{routes → routes-deprecated}/rmlt/idea.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/constants.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/jobs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/topics.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ruby-china/utils.js +0 -0
 - /package/lib/{routes → routes-deprecated}/samsungmembers/latest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/secshi/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/security/pulses.js +0 -0
 - /package/lib/{routes → routes-deprecated}/semiconductors/latest-news.js +0 -0
 - /package/lib/{routes/sesame/release_notes.js → routes-deprecated/sesame/release-notes.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/simonsfoundation/recommend.js +0 -0
 - /package/lib/{routes → routes-deprecated}/simpread/notice.js +0 -0
 - /package/lib/{routes → routes-deprecated}/siren/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/sketch/beta.js +0 -0
 - /package/lib/{routes → routes-deprecated}/soul/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/soundcloud/tracks.js +0 -0
 - /package/lib/{routes → routes-deprecated}/souyun/today.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ssydt/article.js +0 -0
 - /package/lib/{routes → routes-deprecated}/steam/steamgifts/discussions.js +0 -0
 - /package/lib/{routes → routes-deprecated}/sznews/press.js +0 -0
 - /package/lib/{routes → routes-deprecated}/sznews/ranking.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tanchinese/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/technologyreview/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/qcloud/mlvb/changelog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/announce.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/question.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/pay/announce.js +0 -0
 - /package/lib/{routes → routes-deprecated}/testerhome/newest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/thebrain/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/thunderbird/release.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tingdiantz/nanjing.js +0 -0
 - /package/lib/{routes → routes-deprecated}/tingshen/tingshen.js +0 -0
 - /package/lib/{routes → routes-deprecated}/titsguru/category.js +0 -0
 - /package/lib/{routes → routes-deprecated}/titsguru/daily.js +0 -0
 - /package/lib/{routes → routes-deprecated}/titsguru/home.js +0 -0
 - /package/lib/{routes → routes-deprecated}/topbook/overview.js +0 -0
 - /package/lib/{routes → routes-deprecated}/topbook/today.js +0 -0
 - /package/lib/{routes → routes-deprecated}/trakt/collection.js +0 -0
 - /package/lib/{routes → routes-deprecated}/ui-cn/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/uisdc/hangye.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/csnews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/ecenews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/eceseminar.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/ipoevents.js +0 -0
 - /package/lib/{routes → routes-deprecated}/umass/amherst/ipostories.js +0 -0
 - /package/lib/{routes → routes-deprecated}/un/scveto.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ahau/cs_news/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ahau/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ahau/main/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/bwu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cczu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cczu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqu/news/jzyg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqust/jw.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqust/lib.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-libnews.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cug/graduate.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cug/undergraduate.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/cug/xgxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dgut/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dgut/xsc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dlmu/grs/zsgz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dpu/jiaowu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/dpu/wlfw/news.js +0 -0
 - /package/lib/{routes/universities/fzu/news_min.js → routes-deprecated/universities/fzu/news-min.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/fzu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/gdou/jwc/jwtz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/gzmtu/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/gzmtu/tsg/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hbut/cs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hbut/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/henu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hfut/tzgg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/art/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/chem/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/computer/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hnust/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/hubu/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jgsu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlbtc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlbtc/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlbtc/kyc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jlu/oa.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/jnu/xysx/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ju/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/lyu/news/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/mit/csail/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/mit/ocw-top.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/nchu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/nku/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/context.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/context.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/scu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/scu/xg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/csggxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/jwc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/kjxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/tyyjkxy.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/tzgg.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/slu/xsc.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/thu/career.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/wzbc/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/xmu/aero.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/xynu/zkb/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/grs/qttz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/grs/zytz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/home/main.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/ynu/jwc/zytz.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zjgsu/gsgg/scripts.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zjgsu/tzgg/scripts.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zjgsu/xszq/scripts.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zzuli/campus/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/universities/zzuli/yjsc/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/us/cia/foia-annual-report.js +0 -0
 - /package/lib/{routes → routes-deprecated}/us/treasury/press-releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/us/ustr/press-releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vgn/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vocus/user.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vscode/marketplace.js +0 -0
 - /package/lib/{routes → routes-deprecated}/vulture/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wainao/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wegene/newest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/bbs.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/hot.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wenxuecity/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/wikipedia/mainland.js +0 -0
 - /package/lib/{routes → routes-deprecated}/worldhappiness/archive.js +0 -0
 - /package/lib/{routes → routes-deprecated}/worldhappiness/blog.js +0 -0
 - /package/lib/{routes → routes-deprecated}/x410/news.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xclient/app.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiachufang/popular.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiachufang/user/cooked.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiachufang/user/created.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xiaomieu/releases.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xinwenlianbo/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/xmind/mindmap.js +0 -0
 - /package/lib/{routes/xuetangx/course_info.js → routes-deprecated/xuetangx/course-info.js} +0 -0
 - /package/lib/{routes → routes-deprecated}/yahoo-author/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yidoutang/case.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yidoutang/guide.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yidoutang/mtest.js +0 -0
 - /package/lib/{routes → routes-deprecated}/youzan/goods.js +0 -0
 - /package/lib/{routes → routes-deprecated}/yuanliao/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/zhimap/index.js +0 -0
 - /package/lib/{routes → routes-deprecated}/zongheng/chapter.js +0 -0
 
    
        package/lib/radar-rules.js
    DELETED
    
    | 
         @@ -1,2518 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            module.exports = {
         
     | 
| 
       2 
     | 
    
         
            -
                'weibo.com': {
         
     | 
| 
       3 
     | 
    
         
            -
                    _name: '微博',
         
     | 
| 
       4 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       5 
     | 
    
         
            -
                        {
         
     | 
| 
       6 
     | 
    
         
            -
                            title: '博主',
         
     | 
| 
       7 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
         
     | 
| 
       8 
     | 
    
         
            -
                            source: ['/u/:id', '/:id'],
         
     | 
| 
       9 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       10 
     | 
    
         
            -
                                let uid = document?.documentElement.innerHTML.match(/\$CONFIG\['oid']='(\d+)'/)?.[1];
         
     | 
| 
       11 
     | 
    
         
            -
                                if (!uid && !isNaN(params.id)) {
         
     | 
| 
       12 
     | 
    
         
            -
                                    uid = params.id;
         
     | 
| 
       13 
     | 
    
         
            -
                                }
         
     | 
| 
       14 
     | 
    
         
            -
                                return uid ? `/weibo/user/${uid}` : '';
         
     | 
| 
       15 
     | 
    
         
            -
                            },
         
     | 
| 
       16 
     | 
    
         
            -
                        },
         
     | 
| 
       17 
     | 
    
         
            -
                        {
         
     | 
| 
       18 
     | 
    
         
            -
                            title: '关键词',
         
     | 
| 
       19 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
         
     | 
| 
       20 
     | 
    
         
            -
                        },
         
     | 
| 
       21 
     | 
    
         
            -
                        {
         
     | 
| 
       22 
     | 
    
         
            -
                            title: '超话',
         
     | 
| 
       23 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
         
     | 
| 
       24 
     | 
    
         
            -
                            source: '/p/:id/super_index',
         
     | 
| 
       25 
     | 
    
         
            -
                            target: '/weibo/super_index/:id',
         
     | 
| 
       26 
     | 
    
         
            -
                        },
         
     | 
| 
       27 
     | 
    
         
            -
                    ],
         
     | 
| 
       28 
     | 
    
         
            -
                    s: [
         
     | 
| 
       29 
     | 
    
         
            -
                        {
         
     | 
| 
       30 
     | 
    
         
            -
                            title: '热搜榜',
         
     | 
| 
       31 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
         
     | 
| 
       32 
     | 
    
         
            -
                            source: '/top/summary',
         
     | 
| 
       33 
     | 
    
         
            -
                            target: '/weibo/search/hot',
         
     | 
| 
       34 
     | 
    
         
            -
                        },
         
     | 
| 
       35 
     | 
    
         
            -
                    ],
         
     | 
| 
       36 
     | 
    
         
            -
                },
         
     | 
| 
       37 
     | 
    
         
            -
                'weibo.cn': {
         
     | 
| 
       38 
     | 
    
         
            -
                    _name: '微博',
         
     | 
| 
       39 
     | 
    
         
            -
                    m: [
         
     | 
| 
       40 
     | 
    
         
            -
                        {
         
     | 
| 
       41 
     | 
    
         
            -
                            title: '博主',
         
     | 
| 
       42 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#wei-bo',
         
     | 
| 
       43 
     | 
    
         
            -
                            source: ['/u/:uid', '/profile/:uid'],
         
     | 
| 
       44 
     | 
    
         
            -
                            target: '/weibo/user/:uid',
         
     | 
| 
       45 
     | 
    
         
            -
                        },
         
     | 
| 
       46 
     | 
    
         
            -
                    ],
         
     | 
| 
       47 
     | 
    
         
            -
                },
         
     | 
| 
       48 
     | 
    
         
            -
                'pixiv.net': {
         
     | 
| 
       49 
     | 
    
         
            -
                    _name: 'Pixiv',
         
     | 
| 
       50 
     | 
    
         
            -
                    www: [
         
     | 
| 
       51 
     | 
    
         
            -
                        {
         
     | 
| 
       52 
     | 
    
         
            -
                            title: '用户收藏',
         
     | 
| 
       53 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#pixiv',
         
     | 
| 
       54 
     | 
    
         
            -
                            source: '/users/:id/bookmarks/artworks',
         
     | 
| 
       55 
     | 
    
         
            -
                            target: '/pixiv/user/bookmarks/:id',
         
     | 
| 
       56 
     | 
    
         
            -
                        },
         
     | 
| 
       57 
     | 
    
         
            -
                        {
         
     | 
| 
       58 
     | 
    
         
            -
                            title: '用户动态',
         
     | 
| 
       59 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#pixiv',
         
     | 
| 
       60 
     | 
    
         
            -
                            source: '/users/:id',
         
     | 
| 
       61 
     | 
    
         
            -
                            target: '/pixiv/user/:id',
         
     | 
| 
       62 
     | 
    
         
            -
                        },
         
     | 
| 
       63 
     | 
    
         
            -
                        {
         
     | 
| 
       64 
     | 
    
         
            -
                            title: '排行榜',
         
     | 
| 
       65 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#pixiv',
         
     | 
| 
       66 
     | 
    
         
            -
                            source: '/ranking.php',
         
     | 
| 
       67 
     | 
    
         
            -
                            target: (params, url) => `/pixiv/ranking/${new URL(url).searchParams.get('mode') || 'daily'}`,
         
     | 
| 
       68 
     | 
    
         
            -
                        },
         
     | 
| 
       69 
     | 
    
         
            -
                        {
         
     | 
| 
       70 
     | 
    
         
            -
                            title: '关键词',
         
     | 
| 
       71 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#pixiv',
         
     | 
| 
       72 
     | 
    
         
            -
                            source: ['/tags/:keyword', '/tags/:keyword/:type?'],
         
     | 
| 
       73 
     | 
    
         
            -
                            target: (params, url) => `/pixiv/search/:keyword/${new URL(url).searchParams.get('order')}/${new URL(url).searchParams.get('mode')}`,
         
     | 
| 
       74 
     | 
    
         
            -
                        },
         
     | 
| 
       75 
     | 
    
         
            -
                        {
         
     | 
| 
       76 
     | 
    
         
            -
                            title: '关注的新作品',
         
     | 
| 
       77 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#pixiv',
         
     | 
| 
       78 
     | 
    
         
            -
                            source: '/bookmark_new_illust.php',
         
     | 
| 
       79 
     | 
    
         
            -
                            target: '/pixiv/user/illustfollows',
         
     | 
| 
       80 
     | 
    
         
            -
                        },
         
     | 
| 
       81 
     | 
    
         
            -
                    ],
         
     | 
| 
       82 
     | 
    
         
            -
                },
         
     | 
| 
       83 
     | 
    
         
            -
                'twitter.com': {
         
     | 
| 
       84 
     | 
    
         
            -
                    _name: 'Twitter',
         
     | 
| 
       85 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       86 
     | 
    
         
            -
                        {
         
     | 
| 
       87 
     | 
    
         
            -
                            title: '用户时间线',
         
     | 
| 
       88 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#twitter',
         
     | 
| 
       89 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       90 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       91 
     | 
    
         
            -
                                if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
         
     | 
| 
       92 
     | 
    
         
            -
                                    return '/twitter/user/:id';
         
     | 
| 
       93 
     | 
    
         
            -
                                }
         
     | 
| 
       94 
     | 
    
         
            -
                            },
         
     | 
| 
       95 
     | 
    
         
            -
                        },
         
     | 
| 
       96 
     | 
    
         
            -
                        {
         
     | 
| 
       97 
     | 
    
         
            -
                            title: '用户关注时间线',
         
     | 
| 
       98 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#twitter',
         
     | 
| 
       99 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       100 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       101 
     | 
    
         
            -
                                if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
         
     | 
| 
       102 
     | 
    
         
            -
                                    return '/twitter/followings/:id';
         
     | 
| 
       103 
     | 
    
         
            -
                                }
         
     | 
| 
       104 
     | 
    
         
            -
                            },
         
     | 
| 
       105 
     | 
    
         
            -
                        },
         
     | 
| 
       106 
     | 
    
         
            -
                        {
         
     | 
| 
       107 
     | 
    
         
            -
                            title: '用户喜欢列表',
         
     | 
| 
       108 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#twitter',
         
     | 
| 
       109 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       110 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       111 
     | 
    
         
            -
                                if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
         
     | 
| 
       112 
     | 
    
         
            -
                                    return '/twitter/likes/:id';
         
     | 
| 
       113 
     | 
    
         
            -
                                }
         
     | 
| 
       114 
     | 
    
         
            -
                            },
         
     | 
| 
       115 
     | 
    
         
            -
                        },
         
     | 
| 
       116 
     | 
    
         
            -
                        {
         
     | 
| 
       117 
     | 
    
         
            -
                            title: '列表时间线',
         
     | 
| 
       118 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#twitter',
         
     | 
| 
       119 
     | 
    
         
            -
                            source: '/:id/lists/:name',
         
     | 
| 
       120 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       121 
     | 
    
         
            -
                                if (params.id !== 'home' && params.id !== 'explore' && params.id !== 'notifications' && params.id !== 'messages' && params.id !== 'explore' && params.id !== 'search') {
         
     | 
| 
       122 
     | 
    
         
            -
                                    return '/twitter/list/:id/:name';
         
     | 
| 
       123 
     | 
    
         
            -
                                }
         
     | 
| 
       124 
     | 
    
         
            -
                            },
         
     | 
| 
       125 
     | 
    
         
            -
                        },
         
     | 
| 
       126 
     | 
    
         
            -
                        {
         
     | 
| 
       127 
     | 
    
         
            -
                            title: '关键词',
         
     | 
| 
       128 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#twitter',
         
     | 
| 
       129 
     | 
    
         
            -
                            source: '/search',
         
     | 
| 
       130 
     | 
    
         
            -
                            target: (params, url) => `/twitter/keyword/${new URL(url).searchParams.get('q')}`,
         
     | 
| 
       131 
     | 
    
         
            -
                        },
         
     | 
| 
       132 
     | 
    
         
            -
                    ],
         
     | 
| 
       133 
     | 
    
         
            -
                },
         
     | 
| 
       134 
     | 
    
         
            -
                'youtube.com': {
         
     | 
| 
       135 
     | 
    
         
            -
                    _name: 'YouTube',
         
     | 
| 
       136 
     | 
    
         
            -
                    www: [
         
     | 
| 
       137 
     | 
    
         
            -
                        {
         
     | 
| 
       138 
     | 
    
         
            -
                            title: '用户',
         
     | 
| 
       139 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#youtube',
         
     | 
| 
       140 
     | 
    
         
            -
                            source: '/user/:username',
         
     | 
| 
       141 
     | 
    
         
            -
                            target: '/youtube/user/:username',
         
     | 
| 
       142 
     | 
    
         
            -
                        },
         
     | 
| 
       143 
     | 
    
         
            -
                        {
         
     | 
| 
       144 
     | 
    
         
            -
                            title: '频道',
         
     | 
| 
       145 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#youtube',
         
     | 
| 
       146 
     | 
    
         
            -
                            source: '/channel/:id',
         
     | 
| 
       147 
     | 
    
         
            -
                            target: '/youtube/channel/:id',
         
     | 
| 
       148 
     | 
    
         
            -
                        },
         
     | 
| 
       149 
     | 
    
         
            -
                        {
         
     | 
| 
       150 
     | 
    
         
            -
                            title: '播放列表',
         
     | 
| 
       151 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#youtube',
         
     | 
| 
       152 
     | 
    
         
            -
                            source: '/playlist',
         
     | 
| 
       153 
     | 
    
         
            -
                            target: (params, url) => `/youtube/playlist/${new URL(url).searchParams.get('list')}`,
         
     | 
| 
       154 
     | 
    
         
            -
                        },
         
     | 
| 
       155 
     | 
    
         
            -
                    ],
         
     | 
| 
       156 
     | 
    
         
            -
                },
         
     | 
| 
       157 
     | 
    
         
            -
                'zhihu.com': {
         
     | 
| 
       158 
     | 
    
         
            -
                    _name: '知乎',
         
     | 
| 
       159 
     | 
    
         
            -
                    www: [
         
     | 
| 
       160 
     | 
    
         
            -
                        {
         
     | 
| 
       161 
     | 
    
         
            -
                            title: '收藏夹',
         
     | 
| 
       162 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       163 
     | 
    
         
            -
                            source: '/collection/:id',
         
     | 
| 
       164 
     | 
    
         
            -
                            target: '/zhihu/collection/:id',
         
     | 
| 
       165 
     | 
    
         
            -
                        },
         
     | 
| 
       166 
     | 
    
         
            -
                        {
         
     | 
| 
       167 
     | 
    
         
            -
                            title: '用户动态',
         
     | 
| 
       168 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       169 
     | 
    
         
            -
                            source: '/people/:id',
         
     | 
| 
       170 
     | 
    
         
            -
                            target: '/zhihu/people/activities/:id',
         
     | 
| 
       171 
     | 
    
         
            -
                        },
         
     | 
| 
       172 
     | 
    
         
            -
                        {
         
     | 
| 
       173 
     | 
    
         
            -
                            title: '用户回答',
         
     | 
| 
       174 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       175 
     | 
    
         
            -
                            source: '/people/:id/answers',
         
     | 
| 
       176 
     | 
    
         
            -
                            target: '/zhihu/people/answers/:id',
         
     | 
| 
       177 
     | 
    
         
            -
                        },
         
     | 
| 
       178 
     | 
    
         
            -
                        {
         
     | 
| 
       179 
     | 
    
         
            -
                            title: '用户想法',
         
     | 
| 
       180 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       181 
     | 
    
         
            -
                            source: '/people/:id/pins',
         
     | 
| 
       182 
     | 
    
         
            -
                            target: '/zhihu/people/pins/:id',
         
     | 
| 
       183 
     | 
    
         
            -
                        },
         
     | 
| 
       184 
     | 
    
         
            -
                        {
         
     | 
| 
       185 
     | 
    
         
            -
                            title: '用户文章',
         
     | 
| 
       186 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       187 
     | 
    
         
            -
                            source: '/:usertype/:id/posts',
         
     | 
| 
       188 
     | 
    
         
            -
                            target: '/zhihu/posts/:usertype/:id',
         
     | 
| 
       189 
     | 
    
         
            -
                        },
         
     | 
| 
       190 
     | 
    
         
            -
             
     | 
| 
       191 
     | 
    
         
            -
                        {
         
     | 
| 
       192 
     | 
    
         
            -
                            title: '热榜',
         
     | 
| 
       193 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       194 
     | 
    
         
            -
                            source: '/hot',
         
     | 
| 
       195 
     | 
    
         
            -
                            target: '/zhihu/hotlist',
         
     | 
| 
       196 
     | 
    
         
            -
                        },
         
     | 
| 
       197 
     | 
    
         
            -
                        {
         
     | 
| 
       198 
     | 
    
         
            -
                            title: '想法热榜',
         
     | 
| 
       199 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       200 
     | 
    
         
            -
                            target: '/zhihu/pin/hotlist',
         
     | 
| 
       201 
     | 
    
         
            -
                        },
         
     | 
| 
       202 
     | 
    
         
            -
                        {
         
     | 
| 
       203 
     | 
    
         
            -
                            title: '问题',
         
     | 
| 
       204 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       205 
     | 
    
         
            -
                            source: '/question/:questionId',
         
     | 
| 
       206 
     | 
    
         
            -
                            target: '/zhihu/question/:questionId',
         
     | 
| 
       207 
     | 
    
         
            -
                        },
         
     | 
| 
       208 
     | 
    
         
            -
                        {
         
     | 
| 
       209 
     | 
    
         
            -
                            title: '话题',
         
     | 
| 
       210 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       211 
     | 
    
         
            -
                            source: '/topic/:topicId/:type',
         
     | 
| 
       212 
     | 
    
         
            -
                            target: '/zhihu/topic/:topicId',
         
     | 
| 
       213 
     | 
    
         
            -
                        },
         
     | 
| 
       214 
     | 
    
         
            -
                        {
         
     | 
| 
       215 
     | 
    
         
            -
                            title: '新书',
         
     | 
| 
       216 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       217 
     | 
    
         
            -
                            source: '/zhihu/bookstore/newest',
         
     | 
| 
       218 
     | 
    
         
            -
                            target: '/zhihu/pin/hotlist',
         
     | 
| 
       219 
     | 
    
         
            -
                        },
         
     | 
| 
       220 
     | 
    
         
            -
                        {
         
     | 
| 
       221 
     | 
    
         
            -
                            title: '想法-24 小时新闻汇总',
         
     | 
| 
       222 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       223 
     | 
    
         
            -
                            source: '/pin/special/972884951192113152',
         
     | 
| 
       224 
     | 
    
         
            -
                            target: '/zhihu/pin/daily',
         
     | 
| 
       225 
     | 
    
         
            -
                        },
         
     | 
| 
       226 
     | 
    
         
            -
                        {
         
     | 
| 
       227 
     | 
    
         
            -
                            title: '书店-周刊',
         
     | 
| 
       228 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       229 
     | 
    
         
            -
                            source: '/pub/weekly',
         
     | 
| 
       230 
     | 
    
         
            -
                            target: '/zhihu/weekly',
         
     | 
| 
       231 
     | 
    
         
            -
                        },
         
     | 
| 
       232 
     | 
    
         
            -
                        {
         
     | 
| 
       233 
     | 
    
         
            -
                            title: '专栏',
         
     | 
| 
       234 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       235 
     | 
    
         
            -
                            source: '/column/:id',
         
     | 
| 
       236 
     | 
    
         
            -
                            target: '/zhihu/zhuanlan/:id',
         
     | 
| 
       237 
     | 
    
         
            -
                        },
         
     | 
| 
       238 
     | 
    
         
            -
                    ],
         
     | 
| 
       239 
     | 
    
         
            -
                    zhuanlan: [
         
     | 
| 
       240 
     | 
    
         
            -
                        {
         
     | 
| 
       241 
     | 
    
         
            -
                            title: '专栏',
         
     | 
| 
       242 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       243 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       244 
     | 
    
         
            -
                            target: '/zhihu/zhuanlan/:id',
         
     | 
| 
       245 
     | 
    
         
            -
                        },
         
     | 
| 
       246 
     | 
    
         
            -
                    ],
         
     | 
| 
       247 
     | 
    
         
            -
                    daily: [
         
     | 
| 
       248 
     | 
    
         
            -
                        {
         
     | 
| 
       249 
     | 
    
         
            -
                            title: '日报',
         
     | 
| 
       250 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       251 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       252 
     | 
    
         
            -
                            target: '/zhihu/daily',
         
     | 
| 
       253 
     | 
    
         
            -
                        },
         
     | 
| 
       254 
     | 
    
         
            -
                        {
         
     | 
| 
       255 
     | 
    
         
            -
                            title: '日报',
         
     | 
| 
       256 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#zhi-hu',
         
     | 
| 
       257 
     | 
    
         
            -
                            source: '/*tpath',
         
     | 
| 
       258 
     | 
    
         
            -
                            target: '/zhihu/daily',
         
     | 
| 
       259 
     | 
    
         
            -
                        },
         
     | 
| 
       260 
     | 
    
         
            -
                    ],
         
     | 
| 
       261 
     | 
    
         
            -
                },
         
     | 
| 
       262 
     | 
    
         
            -
                'smzdm.com': {
         
     | 
| 
       263 
     | 
    
         
            -
                    _name: '什么值得买',
         
     | 
| 
       264 
     | 
    
         
            -
                    www: [
         
     | 
| 
       265 
     | 
    
         
            -
                        {
         
     | 
| 
       266 
     | 
    
         
            -
                            title: '排行榜',
         
     | 
| 
       267 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/shopping.html#shen-me-zhi-de-mai',
         
     | 
| 
       268 
     | 
    
         
            -
                            source: '/top',
         
     | 
| 
       269 
     | 
    
         
            -
                        },
         
     | 
| 
       270 
     | 
    
         
            -
                    ],
         
     | 
| 
       271 
     | 
    
         
            -
                    search: [
         
     | 
| 
       272 
     | 
    
         
            -
                        {
         
     | 
| 
       273 
     | 
    
         
            -
                            title: '关键词',
         
     | 
| 
       274 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/shopping.html#shen-me-zhi-de-mai',
         
     | 
| 
       275 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       276 
     | 
    
         
            -
                            target: (params, url) => `/smzdm/keyword/${new URL(url).searchParams.get('s')}`,
         
     | 
| 
       277 
     | 
    
         
            -
                        },
         
     | 
| 
       278 
     | 
    
         
            -
                    ],
         
     | 
| 
       279 
     | 
    
         
            -
                },
         
     | 
| 
       280 
     | 
    
         
            -
                'ximalaya.com': {
         
     | 
| 
       281 
     | 
    
         
            -
                    _name: '喜马拉雅',
         
     | 
| 
       282 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       283 
     | 
    
         
            -
                        {
         
     | 
| 
       284 
     | 
    
         
            -
                            title: '专辑',
         
     | 
| 
       285 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#xi-ma-la-ya',
         
     | 
| 
       286 
     | 
    
         
            -
                            source: '/:type/:id',
         
     | 
| 
       287 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       288 
     | 
    
         
            -
                                if (parseInt(params.id) + '' === params.id) {
         
     | 
| 
       289 
     | 
    
         
            -
                                    return '/ximalaya/:type/:id/';
         
     | 
| 
       290 
     | 
    
         
            -
                                }
         
     | 
| 
       291 
     | 
    
         
            -
                            },
         
     | 
| 
       292 
     | 
    
         
            -
                        },
         
     | 
| 
       293 
     | 
    
         
            -
                    ],
         
     | 
| 
       294 
     | 
    
         
            -
                },
         
     | 
| 
       295 
     | 
    
         
            -
                'algocasts.io': {
         
     | 
| 
       296 
     | 
    
         
            -
                    _name: 'AlgoCasts',
         
     | 
| 
       297 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       298 
     | 
    
         
            -
                        {
         
     | 
| 
       299 
     | 
    
         
            -
                            title: '视频更新',
         
     | 
| 
       300 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#algocasts',
         
     | 
| 
       301 
     | 
    
         
            -
                            source: '/episodes',
         
     | 
| 
       302 
     | 
    
         
            -
                            target: '/algocasts',
         
     | 
| 
       303 
     | 
    
         
            -
                        },
         
     | 
| 
       304 
     | 
    
         
            -
                    ],
         
     | 
| 
       305 
     | 
    
         
            -
                },
         
     | 
| 
       306 
     | 
    
         
            -
                'soulapp.cn': {
         
     | 
| 
       307 
     | 
    
         
            -
                    _name: 'Soul',
         
     | 
| 
       308 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       309 
     | 
    
         
            -
                        {
         
     | 
| 
       310 
     | 
    
         
            -
                            title: '瞬间更新',
         
     | 
| 
       311 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#soul',
         
     | 
| 
       312 
     | 
    
         
            -
                        },
         
     | 
| 
       313 
     | 
    
         
            -
                    ],
         
     | 
| 
       314 
     | 
    
         
            -
                },
         
     | 
| 
       315 
     | 
    
         
            -
                'juejin.cn': {
         
     | 
| 
       316 
     | 
    
         
            -
                    _name: '掘金',
         
     | 
| 
       317 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       318 
     | 
    
         
            -
                        {
         
     | 
| 
       319 
     | 
    
         
            -
                            title: '标签',
         
     | 
| 
       320 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#jue-jin-biao-qian',
         
     | 
| 
       321 
     | 
    
         
            -
                            source: '/tag/:tag',
         
     | 
| 
       322 
     | 
    
         
            -
                            target: '/juejin/tag/:tag',
         
     | 
| 
       323 
     | 
    
         
            -
                        },
         
     | 
| 
       324 
     | 
    
         
            -
                        {
         
     | 
| 
       325 
     | 
    
         
            -
                            title: '小册',
         
     | 
| 
       326 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#jue-jin-xiao-ce',
         
     | 
| 
       327 
     | 
    
         
            -
                            source: '/books',
         
     | 
| 
       328 
     | 
    
         
            -
                            target: '/juejin/books',
         
     | 
| 
       329 
     | 
    
         
            -
                        },
         
     | 
| 
       330 
     | 
    
         
            -
                        {
         
     | 
| 
       331 
     | 
    
         
            -
                            title: '沸点',
         
     | 
| 
       332 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#jue-jin-fei-dian',
         
     | 
| 
       333 
     | 
    
         
            -
                            source: ['/pins/:type', '/pins/topic/:type'],
         
     | 
| 
       334 
     | 
    
         
            -
                            target: (params) => (params.type !== 'recommended' ? '/juejin/pins/:type' : '/juejin/pins'),
         
     | 
| 
       335 
     | 
    
         
            -
                        },
         
     | 
| 
       336 
     | 
    
         
            -
                        {
         
     | 
| 
       337 
     | 
    
         
            -
                            title: '专栏',
         
     | 
| 
       338 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#jue-jin-zhuan-lan',
         
     | 
| 
       339 
     | 
    
         
            -
                            source: ['/user/:id', '/user/:id/posts'],
         
     | 
| 
       340 
     | 
    
         
            -
                            target: '/juejin/posts/:id',
         
     | 
| 
       341 
     | 
    
         
            -
                        },
         
     | 
| 
       342 
     | 
    
         
            -
                        {
         
     | 
| 
       343 
     | 
    
         
            -
                            title: '收藏集',
         
     | 
| 
       344 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#jue-jin-shou-cang-ji',
         
     | 
| 
       345 
     | 
    
         
            -
                            source: ['/user/:id', '/user/:id/collections'],
         
     | 
| 
       346 
     | 
    
         
            -
                            target: '/juejin/collections/:id',
         
     | 
| 
       347 
     | 
    
         
            -
                        },
         
     | 
| 
       348 
     | 
    
         
            -
                        {
         
     | 
| 
       349 
     | 
    
         
            -
                            title: '单个收藏夹',
         
     | 
| 
       350 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#jue-jin-dan-ge-shou-cang-jia',
         
     | 
| 
       351 
     | 
    
         
            -
                            source: '/collection/:collectionId',
         
     | 
| 
       352 
     | 
    
         
            -
                            target: '/juejin/collection/:collectionId',
         
     | 
| 
       353 
     | 
    
         
            -
                        },
         
     | 
| 
       354 
     | 
    
         
            -
                    ],
         
     | 
| 
       355 
     | 
    
         
            -
                },
         
     | 
| 
       356 
     | 
    
         
            -
                'anime1.me': {
         
     | 
| 
       357 
     | 
    
         
            -
                    _name: 'Anime1',
         
     | 
| 
       358 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       359 
     | 
    
         
            -
                        {
         
     | 
| 
       360 
     | 
    
         
            -
                            title: '動畫',
         
     | 
| 
       361 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#anime1',
         
     | 
| 
       362 
     | 
    
         
            -
                            source: '/category/:time/:name',
         
     | 
| 
       363 
     | 
    
         
            -
                            target: '/anime1/anime/:time/:name',
         
     | 
| 
       364 
     | 
    
         
            -
                        },
         
     | 
| 
       365 
     | 
    
         
            -
                        {
         
     | 
| 
       366 
     | 
    
         
            -
                            title: '搜尋',
         
     | 
| 
       367 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#anime1',
         
     | 
| 
       368 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       369 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       370 
     | 
    
         
            -
                                const keyword = new URL(url).searchParams.get('s');
         
     | 
| 
       371 
     | 
    
         
            -
                                return keyword ? `/anime1/search/${keyword}` : '';
         
     | 
| 
       372 
     | 
    
         
            -
                            },
         
     | 
| 
       373 
     | 
    
         
            -
                        },
         
     | 
| 
       374 
     | 
    
         
            -
                    ],
         
     | 
| 
       375 
     | 
    
         
            -
                },
         
     | 
| 
       376 
     | 
    
         
            -
                'swufe.edu.cn': {
         
     | 
| 
       377 
     | 
    
         
            -
                    _name: '西南财经大学',
         
     | 
| 
       378 
     | 
    
         
            -
                    it: [
         
     | 
| 
       379 
     | 
    
         
            -
                        {
         
     | 
| 
       380 
     | 
    
         
            -
                            title: '经济信息工程学院 - 通知公告',
         
     | 
| 
       381 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#xi-nan-cai-jing-da-xue',
         
     | 
| 
       382 
     | 
    
         
            -
                            source: '/index/tzgg.htm',
         
     | 
| 
       383 
     | 
    
         
            -
                            target: '/swufe/seie/tzgg',
         
     | 
| 
       384 
     | 
    
         
            -
                        },
         
     | 
| 
       385 
     | 
    
         
            -
                        {
         
     | 
| 
       386 
     | 
    
         
            -
                            title: '经济信息工程学院 - 学院新闻',
         
     | 
| 
       387 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#xi-nan-cai-jing-da-xue',
         
     | 
| 
       388 
     | 
    
         
            -
                            source: '/index/xyxw.htm',
         
     | 
| 
       389 
     | 
    
         
            -
                            target: '/swufe/seie/xyxw',
         
     | 
| 
       390 
     | 
    
         
            -
                        },
         
     | 
| 
       391 
     | 
    
         
            -
                    ],
         
     | 
| 
       392 
     | 
    
         
            -
                },
         
     | 
| 
       393 
     | 
    
         
            -
                'ishuhui.com': {
         
     | 
| 
       394 
     | 
    
         
            -
                    _name: '鼠绘漫画',
         
     | 
| 
       395 
     | 
    
         
            -
                    www: [
         
     | 
| 
       396 
     | 
    
         
            -
                        {
         
     | 
| 
       397 
     | 
    
         
            -
                            title: '鼠绘漫画',
         
     | 
| 
       398 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#shu-hui-man-hua',
         
     | 
| 
       399 
     | 
    
         
            -
                            source: '/comics/anime/:id',
         
     | 
| 
       400 
     | 
    
         
            -
                            target: '/shuhui/comics/:id',
         
     | 
| 
       401 
     | 
    
         
            -
                        },
         
     | 
| 
       402 
     | 
    
         
            -
                    ],
         
     | 
| 
       403 
     | 
    
         
            -
                },
         
     | 
| 
       404 
     | 
    
         
            -
                'www.chicagotribune.com': {
         
     | 
| 
       405 
     | 
    
         
            -
                    _name: 'Chicago Tribune',
         
     | 
| 
       406 
     | 
    
         
            -
                    www: [
         
     | 
| 
       407 
     | 
    
         
            -
                        {
         
     | 
| 
       408 
     | 
    
         
            -
                            title: 'Chicago Tribune',
         
     | 
| 
       409 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional_media.html#chicago-tribune',
         
     | 
| 
       410 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       411 
     | 
    
         
            -
                        },
         
     | 
| 
       412 
     | 
    
         
            -
                    ],
         
     | 
| 
       413 
     | 
    
         
            -
                },
         
     | 
| 
       414 
     | 
    
         
            -
                'haimaoba.com': {
         
     | 
| 
       415 
     | 
    
         
            -
                    _name: '海猫吧',
         
     | 
| 
       416 
     | 
    
         
            -
                    www: [
         
     | 
| 
       417 
     | 
    
         
            -
                        {
         
     | 
| 
       418 
     | 
    
         
            -
                            title: '漫画更新',
         
     | 
| 
       419 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#hai-mao-ba',
         
     | 
| 
       420 
     | 
    
         
            -
                            source: '/catalog/:id',
         
     | 
| 
       421 
     | 
    
         
            -
                            target: '/haimaoba/:id',
         
     | 
| 
       422 
     | 
    
         
            -
                        },
         
     | 
| 
       423 
     | 
    
         
            -
                    ],
         
     | 
| 
       424 
     | 
    
         
            -
                },
         
     | 
| 
       425 
     | 
    
         
            -
                'manhuagui.com': {
         
     | 
| 
       426 
     | 
    
         
            -
                    _name: '漫画柜',
         
     | 
| 
       427 
     | 
    
         
            -
                    www: [
         
     | 
| 
       428 
     | 
    
         
            -
                        {
         
     | 
| 
       429 
     | 
    
         
            -
                            title: '漫画更新',
         
     | 
| 
       430 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#kan-man-hua',
         
     | 
| 
       431 
     | 
    
         
            -
                            source: '/comic/:id/',
         
     | 
| 
       432 
     | 
    
         
            -
                            target: '/manhuagui/comic/:id',
         
     | 
| 
       433 
     | 
    
         
            -
                        },
         
     | 
| 
       434 
     | 
    
         
            -
                    ],
         
     | 
| 
       435 
     | 
    
         
            -
                },
         
     | 
| 
       436 
     | 
    
         
            -
                'mhgui.com': {
         
     | 
| 
       437 
     | 
    
         
            -
                    _name: '漫画柜镜像站',
         
     | 
| 
       438 
     | 
    
         
            -
                    www: [
         
     | 
| 
       439 
     | 
    
         
            -
                        {
         
     | 
| 
       440 
     | 
    
         
            -
                            title: '漫画更新',
         
     | 
| 
       441 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#kan-man-hua-jing-xiang-zhan',
         
     | 
| 
       442 
     | 
    
         
            -
                            source: '/comic/:id/',
         
     | 
| 
       443 
     | 
    
         
            -
                            target: '/mhgui/comic/:id',
         
     | 
| 
       444 
     | 
    
         
            -
                        },
         
     | 
| 
       445 
     | 
    
         
            -
                    ],
         
     | 
| 
       446 
     | 
    
         
            -
                },
         
     | 
| 
       447 
     | 
    
         
            -
                'tw.manhuagui.com': {
         
     | 
| 
       448 
     | 
    
         
            -
                    _name: '漫画柜台湾',
         
     | 
| 
       449 
     | 
    
         
            -
                    www: [
         
     | 
| 
       450 
     | 
    
         
            -
                        {
         
     | 
| 
       451 
     | 
    
         
            -
                            title: '漫画更新',
         
     | 
| 
       452 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#kan-man-hua-tai-wan',
         
     | 
| 
       453 
     | 
    
         
            -
                            source: '/comic/:id/',
         
     | 
| 
       454 
     | 
    
         
            -
                            target: '/twmanhuagui/comic/:id',
         
     | 
| 
       455 
     | 
    
         
            -
                        },
         
     | 
| 
       456 
     | 
    
         
            -
                    ],
         
     | 
| 
       457 
     | 
    
         
            -
                },
         
     | 
| 
       458 
     | 
    
         
            -
                'pgyer.com': {
         
     | 
| 
       459 
     | 
    
         
            -
                    _name: '蒲公英应用分发',
         
     | 
| 
       460 
     | 
    
         
            -
                    www: [
         
     | 
| 
       461 
     | 
    
         
            -
                        {
         
     | 
| 
       462 
     | 
    
         
            -
                            title: 'app更新',
         
     | 
| 
       463 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#pu-gong-ying-ying-yong-fen-fa',
         
     | 
| 
       464 
     | 
    
         
            -
                            source: '/:app',
         
     | 
| 
       465 
     | 
    
         
            -
                            target: '/pgyer/:app',
         
     | 
| 
       466 
     | 
    
         
            -
                        },
         
     | 
| 
       467 
     | 
    
         
            -
                    ],
         
     | 
| 
       468 
     | 
    
         
            -
                },
         
     | 
| 
       469 
     | 
    
         
            -
                'pianyuan.la': {
         
     | 
| 
       470 
     | 
    
         
            -
                    _name: '片源网',
         
     | 
| 
       471 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       472 
     | 
    
         
            -
                        {
         
     | 
| 
       473 
     | 
    
         
            -
                            title: '电影和剧集',
         
     | 
| 
       474 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#pian-yuan',
         
     | 
| 
       475 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       476 
     | 
    
         
            -
                        },
         
     | 
| 
       477 
     | 
    
         
            -
                    ],
         
     | 
| 
       478 
     | 
    
         
            -
                },
         
     | 
| 
       479 
     | 
    
         
            -
                'sspai.com': {
         
     | 
| 
       480 
     | 
    
         
            -
                    _name: '少数派',
         
     | 
| 
       481 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       482 
     | 
    
         
            -
                        {
         
     | 
| 
       483 
     | 
    
         
            -
                            title: '最新上架付费专栏',
         
     | 
| 
       484 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       485 
     | 
    
         
            -
                            source: '/series',
         
     | 
| 
       486 
     | 
    
         
            -
                            target: '/sspai/series',
         
     | 
| 
       487 
     | 
    
         
            -
                        },
         
     | 
| 
       488 
     | 
    
         
            -
                        {
         
     | 
| 
       489 
     | 
    
         
            -
                            title: 'Matrix',
         
     | 
| 
       490 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       491 
     | 
    
         
            -
                            source: '/matrix',
         
     | 
| 
       492 
     | 
    
         
            -
                            target: '/sspai/matrix',
         
     | 
| 
       493 
     | 
    
         
            -
                        },
         
     | 
| 
       494 
     | 
    
         
            -
                        {
         
     | 
| 
       495 
     | 
    
         
            -
                            title: '专栏',
         
     | 
| 
       496 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       497 
     | 
    
         
            -
                            source: '/column/:id',
         
     | 
| 
       498 
     | 
    
         
            -
                            target: '/sspai/column/:id',
         
     | 
| 
       499 
     | 
    
         
            -
                        },
         
     | 
| 
       500 
     | 
    
         
            -
                        {
         
     | 
| 
       501 
     | 
    
         
            -
                            title: '作者动态',
         
     | 
| 
       502 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       503 
     | 
    
         
            -
                            source: '/u/:id/updates',
         
     | 
| 
       504 
     | 
    
         
            -
                            target: '/sspai/activity/:id',
         
     | 
| 
       505 
     | 
    
         
            -
                        },
         
     | 
| 
       506 
     | 
    
         
            -
                        {
         
     | 
| 
       507 
     | 
    
         
            -
                            title: '作者已发布文章',
         
     | 
| 
       508 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       509 
     | 
    
         
            -
                            source: '/u/:id/posts',
         
     | 
| 
       510 
     | 
    
         
            -
                            target: '/sspai/author/:id',
         
     | 
| 
       511 
     | 
    
         
            -
                        },
         
     | 
| 
       512 
     | 
    
         
            -
                        {
         
     | 
| 
       513 
     | 
    
         
            -
                            title: '专题',
         
     | 
| 
       514 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       515 
     | 
    
         
            -
                            source: '/topics',
         
     | 
| 
       516 
     | 
    
         
            -
                            target: '/sspai/topics',
         
     | 
| 
       517 
     | 
    
         
            -
                        },
         
     | 
| 
       518 
     | 
    
         
            -
                        {
         
     | 
| 
       519 
     | 
    
         
            -
                            title: '专题内文章更新',
         
     | 
| 
       520 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       521 
     | 
    
         
            -
                            source: '/topic/:id',
         
     | 
| 
       522 
     | 
    
         
            -
                            target: '/sspai/topic/:id',
         
     | 
| 
       523 
     | 
    
         
            -
                        },
         
     | 
| 
       524 
     | 
    
         
            -
                        {
         
     | 
| 
       525 
     | 
    
         
            -
                            title: '标签订阅',
         
     | 
| 
       526 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       527 
     | 
    
         
            -
                            source: '/tag/:keyword',
         
     | 
| 
       528 
     | 
    
         
            -
                            target: '/sspai/tag/:keyword',
         
     | 
| 
       529 
     | 
    
         
            -
                        },
         
     | 
| 
       530 
     | 
    
         
            -
                    ],
         
     | 
| 
       531 
     | 
    
         
            -
                    shortcuts: [
         
     | 
| 
       532 
     | 
    
         
            -
                        {
         
     | 
| 
       533 
     | 
    
         
            -
                            title: 'Shortcuts Gallery',
         
     | 
| 
       534 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#shao-shu-pai-sspai',
         
     | 
| 
       535 
     | 
    
         
            -
                            source: ['', '/*tpath'],
         
     | 
| 
       536 
     | 
    
         
            -
                            target: '/sspai/shortcuts',
         
     | 
| 
       537 
     | 
    
         
            -
                        },
         
     | 
| 
       538 
     | 
    
         
            -
                    ],
         
     | 
| 
       539 
     | 
    
         
            -
                },
         
     | 
| 
       540 
     | 
    
         
            -
                'baidu.com': {
         
     | 
| 
       541 
     | 
    
         
            -
                    _name: '贴吧',
         
     | 
| 
       542 
     | 
    
         
            -
                    tieba: [
         
     | 
| 
       543 
     | 
    
         
            -
                        {
         
     | 
| 
       544 
     | 
    
         
            -
                            title: '帖子列表',
         
     | 
| 
       545 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
         
     | 
| 
       546 
     | 
    
         
            -
                            source: 'f',
         
     | 
| 
       547 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       548 
     | 
    
         
            -
                                const type = new URL(url).searchParams.get('tab');
         
     | 
| 
       549 
     | 
    
         
            -
                                if (!type || type === 'main') {
         
     | 
| 
       550 
     | 
    
         
            -
                                    return `/tieba/forum/${new URL(url).searchParams.get('kw')}`;
         
     | 
| 
       551 
     | 
    
         
            -
                                }
         
     | 
| 
       552 
     | 
    
         
            -
                            },
         
     | 
| 
       553 
     | 
    
         
            -
                        },
         
     | 
| 
       554 
     | 
    
         
            -
                        {
         
     | 
| 
       555 
     | 
    
         
            -
                            title: '精品帖子',
         
     | 
| 
       556 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
         
     | 
| 
       557 
     | 
    
         
            -
                            source: 'f',
         
     | 
| 
       558 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       559 
     | 
    
         
            -
                                const type = new URL(url).searchParams.get('tab');
         
     | 
| 
       560 
     | 
    
         
            -
                                if (type === 'good') {
         
     | 
| 
       561 
     | 
    
         
            -
                                    return `/tieba/forum/good/${new URL(url).searchParams.get('kw')}`;
         
     | 
| 
       562 
     | 
    
         
            -
                                }
         
     | 
| 
       563 
     | 
    
         
            -
                            },
         
     | 
| 
       564 
     | 
    
         
            -
                        },
         
     | 
| 
       565 
     | 
    
         
            -
                        {
         
     | 
| 
       566 
     | 
    
         
            -
                            title: '帖子动态',
         
     | 
| 
       567 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
         
     | 
| 
       568 
     | 
    
         
            -
                            source: '/p/:id',
         
     | 
| 
       569 
     | 
    
         
            -
                            target: '/tieba/post/:id',
         
     | 
| 
       570 
     | 
    
         
            -
                        },
         
     | 
| 
       571 
     | 
    
         
            -
                        {
         
     | 
| 
       572 
     | 
    
         
            -
                            title: '只看楼主',
         
     | 
| 
       573 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
         
     | 
| 
       574 
     | 
    
         
            -
                            source: '/p/:id',
         
     | 
| 
       575 
     | 
    
         
            -
                            target: '/tieba/post/lz/:id',
         
     | 
| 
       576 
     | 
    
         
            -
                        },
         
     | 
| 
       577 
     | 
    
         
            -
                        {
         
     | 
| 
       578 
     | 
    
         
            -
                            title: '用户帖子',
         
     | 
| 
       579 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#tie-ba',
         
     | 
| 
       580 
     | 
    
         
            -
                            source: '/home/main',
         
     | 
| 
       581 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       582 
     | 
    
         
            -
                                const uid = new URL(url).searchParams.get('un');
         
     | 
| 
       583 
     | 
    
         
            -
                                if (uid) {
         
     | 
| 
       584 
     | 
    
         
            -
                                    return `/tieba/user/${uid}`;
         
     | 
| 
       585 
     | 
    
         
            -
                                }
         
     | 
| 
       586 
     | 
    
         
            -
                            },
         
     | 
| 
       587 
     | 
    
         
            -
                        },
         
     | 
| 
       588 
     | 
    
         
            -
                    ],
         
     | 
| 
       589 
     | 
    
         
            -
                },
         
     | 
| 
       590 
     | 
    
         
            -
                'wineyun.com': {
         
     | 
| 
       591 
     | 
    
         
            -
                    _name: '酒云网',
         
     | 
| 
       592 
     | 
    
         
            -
                    www: [
         
     | 
| 
       593 
     | 
    
         
            -
                        {
         
     | 
| 
       594 
     | 
    
         
            -
                            title: '最新商品',
         
     | 
| 
       595 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#jiu-yun-wang',
         
     | 
| 
       596 
     | 
    
         
            -
                            source: ['/:category'],
         
     | 
| 
       597 
     | 
    
         
            -
                            target: '/wineyun/:category',
         
     | 
| 
       598 
     | 
    
         
            -
                        },
         
     | 
| 
       599 
     | 
    
         
            -
                    ],
         
     | 
| 
       600 
     | 
    
         
            -
                },
         
     | 
| 
       601 
     | 
    
         
            -
                'epicgames.com': {
         
     | 
| 
       602 
     | 
    
         
            -
                    _name: 'Epic Games',
         
     | 
| 
       603 
     | 
    
         
            -
                    www: [
         
     | 
| 
       604 
     | 
    
         
            -
                        {
         
     | 
| 
       605 
     | 
    
         
            -
                            title: '每周免费游戏',
         
     | 
| 
       606 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#epicgames-freegame',
         
     | 
| 
       607 
     | 
    
         
            -
                            source: '/store/zh-CN/free-games',
         
     | 
| 
       608 
     | 
    
         
            -
                            target: '/epicgames/freegames',
         
     | 
| 
       609 
     | 
    
         
            -
                        },
         
     | 
| 
       610 
     | 
    
         
            -
                    ],
         
     | 
| 
       611 
     | 
    
         
            -
                },
         
     | 
| 
       612 
     | 
    
         
            -
                'nga.cn': {
         
     | 
| 
       613 
     | 
    
         
            -
                    _name: 'NGA',
         
     | 
| 
       614 
     | 
    
         
            -
                    bbs: [
         
     | 
| 
       615 
     | 
    
         
            -
                        {
         
     | 
| 
       616 
     | 
    
         
            -
                            title: '分区帖子',
         
     | 
| 
       617 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#nga',
         
     | 
| 
       618 
     | 
    
         
            -
                            source: '/thread.php',
         
     | 
| 
       619 
     | 
    
         
            -
                            target: (params, url) => new URL(url).searchParams.get('fid') && `/nga/forum/${new URL(url).searchParams.get('fid')}`,
         
     | 
| 
       620 
     | 
    
         
            -
                        },
         
     | 
| 
       621 
     | 
    
         
            -
                        {
         
     | 
| 
       622 
     | 
    
         
            -
                            title: '帖子',
         
     | 
| 
       623 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#nga',
         
     | 
| 
       624 
     | 
    
         
            -
                            source: '/read.php',
         
     | 
| 
       625 
     | 
    
         
            -
                            target: (params, url) => new URL(url).searchParams.get('tid') && `/nga/post/${new URL(url).searchParams.get('tid')}`,
         
     | 
| 
       626 
     | 
    
         
            -
                        },
         
     | 
| 
       627 
     | 
    
         
            -
                    ],
         
     | 
| 
       628 
     | 
    
         
            -
                },
         
     | 
| 
       629 
     | 
    
         
            -
                'playstation.com': {
         
     | 
| 
       630 
     | 
    
         
            -
                    _name: 'PlayStation',
         
     | 
| 
       631 
     | 
    
         
            -
                    store: [
         
     | 
| 
       632 
     | 
    
         
            -
                        {
         
     | 
| 
       633 
     | 
    
         
            -
                            title: '游戏列表',
         
     | 
| 
       634 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#playstation',
         
     | 
| 
       635 
     | 
    
         
            -
                            source: '/zh-hans-hk/grid/:id/:page',
         
     | 
| 
       636 
     | 
    
         
            -
                            target: '/ps/list/:id',
         
     | 
| 
       637 
     | 
    
         
            -
                        },
         
     | 
| 
       638 
     | 
    
         
            -
                        {
         
     | 
| 
       639 
     | 
    
         
            -
                            title: '折扣|价格',
         
     | 
| 
       640 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#playstation',
         
     | 
| 
       641 
     | 
    
         
            -
                            source: ['/:lang/product/:gridName'],
         
     | 
| 
       642 
     | 
    
         
            -
                            target: '/ps/:lang/product/:gridName',
         
     | 
| 
       643 
     | 
    
         
            -
                        },
         
     | 
| 
       644 
     | 
    
         
            -
                    ],
         
     | 
| 
       645 
     | 
    
         
            -
                    www: [
         
     | 
| 
       646 
     | 
    
         
            -
                        {
         
     | 
| 
       647 
     | 
    
         
            -
                            title: '用户奖杯',
         
     | 
| 
       648 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#playstation',
         
     | 
| 
       649 
     | 
    
         
            -
                        },
         
     | 
| 
       650 
     | 
    
         
            -
                        {
         
     | 
| 
       651 
     | 
    
         
            -
                            title: '系统更新纪录',
         
     | 
| 
       652 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#playstation',
         
     | 
| 
       653 
     | 
    
         
            -
                        },
         
     | 
| 
       654 
     | 
    
         
            -
                    ],
         
     | 
| 
       655 
     | 
    
         
            -
                },
         
     | 
| 
       656 
     | 
    
         
            -
                'monsterhunter.com': {
         
     | 
| 
       657 
     | 
    
         
            -
                    _name: '怪物猎人世界',
         
     | 
| 
       658 
     | 
    
         
            -
                    www: [
         
     | 
| 
       659 
     | 
    
         
            -
                        {
         
     | 
| 
       660 
     | 
    
         
            -
                            title: '更新情报',
         
     | 
| 
       661 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#guai-wu-lie-ren-shi-jie',
         
     | 
| 
       662 
     | 
    
         
            -
                            source: ['', '/*tpath'],
         
     | 
| 
       663 
     | 
    
         
            -
                            target: '/mhw/update',
         
     | 
| 
       664 
     | 
    
         
            -
                        },
         
     | 
| 
       665 
     | 
    
         
            -
                        {
         
     | 
| 
       666 
     | 
    
         
            -
                            title: '最新消息',
         
     | 
| 
       667 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#guai-wu-lie-ren-shi-jie',
         
     | 
| 
       668 
     | 
    
         
            -
                            source: ['', '/*tpath'],
         
     | 
| 
       669 
     | 
    
         
            -
                            target: '/mhw/news',
         
     | 
| 
       670 
     | 
    
         
            -
                        },
         
     | 
| 
       671 
     | 
    
         
            -
                    ],
         
     | 
| 
       672 
     | 
    
         
            -
                },
         
     | 
| 
       673 
     | 
    
         
            -
                'vgtime.com': {
         
     | 
| 
       674 
     | 
    
         
            -
                    _name: '游戏时光',
         
     | 
| 
       675 
     | 
    
         
            -
                    www: [
         
     | 
| 
       676 
     | 
    
         
            -
                        {
         
     | 
| 
       677 
     | 
    
         
            -
                            title: '新闻',
         
     | 
| 
       678 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#you-xi-shi-guang',
         
     | 
| 
       679 
     | 
    
         
            -
                            source: '/topic/index.jhtml',
         
     | 
| 
       680 
     | 
    
         
            -
                            target: '/vgtime/news',
         
     | 
| 
       681 
     | 
    
         
            -
                        },
         
     | 
| 
       682 
     | 
    
         
            -
                        {
         
     | 
| 
       683 
     | 
    
         
            -
                            title: '游戏发售表',
         
     | 
| 
       684 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#you-xi-shi-guang',
         
     | 
| 
       685 
     | 
    
         
            -
                            source: '/game/release.jhtml',
         
     | 
| 
       686 
     | 
    
         
            -
                            target: '/vgtime/release',
         
     | 
| 
       687 
     | 
    
         
            -
                        },
         
     | 
| 
       688 
     | 
    
         
            -
                        {
         
     | 
| 
       689 
     | 
    
         
            -
                            title: '关键词资讯',
         
     | 
| 
       690 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#you-xi-shi-guang',
         
     | 
| 
       691 
     | 
    
         
            -
                            source: '/search/list.jhtml',
         
     | 
| 
       692 
     | 
    
         
            -
                            target: (params, url) => `/vgtime/keyword/${new URL(url).searchParams.get('keyword')}`,
         
     | 
| 
       693 
     | 
    
         
            -
                        },
         
     | 
| 
       694 
     | 
    
         
            -
                    ],
         
     | 
| 
       695 
     | 
    
         
            -
                },
         
     | 
| 
       696 
     | 
    
         
            -
                'bing.com': {
         
     | 
| 
       697 
     | 
    
         
            -
                    _name: 'Bing',
         
     | 
| 
       698 
     | 
    
         
            -
                    www: [
         
     | 
| 
       699 
     | 
    
         
            -
                        {
         
     | 
| 
       700 
     | 
    
         
            -
                            title: '每日壁纸',
         
     | 
| 
       701 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/picture.html#bing-bi-zhi',
         
     | 
| 
       702 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       703 
     | 
    
         
            -
                            target: '/bing',
         
     | 
| 
       704 
     | 
    
         
            -
                        },
         
     | 
| 
       705 
     | 
    
         
            -
                    ],
         
     | 
| 
       706 
     | 
    
         
            -
                },
         
     | 
| 
       707 
     | 
    
         
            -
                'dcard.tw': {
         
     | 
| 
       708 
     | 
    
         
            -
                    _name: 'Dcard',
         
     | 
| 
       709 
     | 
    
         
            -
                    www: [
         
     | 
| 
       710 
     | 
    
         
            -
                        {
         
     | 
| 
       711 
     | 
    
         
            -
                            title: '首頁帖子-最新',
         
     | 
| 
       712 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#dcard',
         
     | 
| 
       713 
     | 
    
         
            -
                            source: '/f',
         
     | 
| 
       714 
     | 
    
         
            -
                            target: '/dcard/posts/latest',
         
     | 
| 
       715 
     | 
    
         
            -
                        },
         
     | 
| 
       716 
     | 
    
         
            -
                        {
         
     | 
| 
       717 
     | 
    
         
            -
                            title: '首頁帖子-熱門',
         
     | 
| 
       718 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#dcard',
         
     | 
| 
       719 
     | 
    
         
            -
                            source: '/f',
         
     | 
| 
       720 
     | 
    
         
            -
                            target: '/dcard/posts/popular',
         
     | 
| 
       721 
     | 
    
         
            -
                        },
         
     | 
| 
       722 
     | 
    
         
            -
                        {
         
     | 
| 
       723 
     | 
    
         
            -
                            title: '板塊帖子-最新',
         
     | 
| 
       724 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#dcard',
         
     | 
| 
       725 
     | 
    
         
            -
                            source: '/f/:section',
         
     | 
| 
       726 
     | 
    
         
            -
                            target: '/dcard/:section/latest',
         
     | 
| 
       727 
     | 
    
         
            -
                        },
         
     | 
| 
       728 
     | 
    
         
            -
                        {
         
     | 
| 
       729 
     | 
    
         
            -
                            title: '板塊帖子-熱門',
         
     | 
| 
       730 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#dcard',
         
     | 
| 
       731 
     | 
    
         
            -
                            source: '/f/:section',
         
     | 
| 
       732 
     | 
    
         
            -
                            target: '/dcard/:section/popular',
         
     | 
| 
       733 
     | 
    
         
            -
                        },
         
     | 
| 
       734 
     | 
    
         
            -
                    ],
         
     | 
| 
       735 
     | 
    
         
            -
                },
         
     | 
| 
       736 
     | 
    
         
            -
                'wegene.com': {
         
     | 
| 
       737 
     | 
    
         
            -
                    _name: 'WeGene',
         
     | 
| 
       738 
     | 
    
         
            -
                    www: [
         
     | 
| 
       739 
     | 
    
         
            -
                        {
         
     | 
| 
       740 
     | 
    
         
            -
                            title: '最近更新',
         
     | 
| 
       741 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#wegene',
         
     | 
| 
       742 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       743 
     | 
    
         
            -
                            target: '/wegene/newest',
         
     | 
| 
       744 
     | 
    
         
            -
                        },
         
     | 
| 
       745 
     | 
    
         
            -
                        {
         
     | 
| 
       746 
     | 
    
         
            -
                            title: '栏目',
         
     | 
| 
       747 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#wegene',
         
     | 
| 
       748 
     | 
    
         
            -
                            source: '/crowdsourcing',
         
     | 
| 
       749 
     | 
    
         
            -
                            target: '/wegene/column/all/all',
         
     | 
| 
       750 
     | 
    
         
            -
                        },
         
     | 
| 
       751 
     | 
    
         
            -
                    ],
         
     | 
| 
       752 
     | 
    
         
            -
                },
         
     | 
| 
       753 
     | 
    
         
            -
                'qdaily.com': {
         
     | 
| 
       754 
     | 
    
         
            -
                    _name: '好奇心日报',
         
     | 
| 
       755 
     | 
    
         
            -
                    www: [
         
     | 
| 
       756 
     | 
    
         
            -
                        {
         
     | 
| 
       757 
     | 
    
         
            -
                            title: '标签',
         
     | 
| 
       758 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#hao-qi-xin-ri-bao',
         
     | 
| 
       759 
     | 
    
         
            -
                            source: '/tags/:idd',
         
     | 
| 
       760 
     | 
    
         
            -
                            target: (params) => `/qdaily/tag/${params.idd.replace('.html', '')}`,
         
     | 
| 
       761 
     | 
    
         
            -
                        },
         
     | 
| 
       762 
     | 
    
         
            -
                        {
         
     | 
| 
       763 
     | 
    
         
            -
                            title: '栏目',
         
     | 
| 
       764 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#hao-qi-xin-ri-bao',
         
     | 
| 
       765 
     | 
    
         
            -
                            source: '/special_columns/:idd',
         
     | 
| 
       766 
     | 
    
         
            -
                            target: (params) => `/qdaily/column/${params.idd.replace('.html', '')}`,
         
     | 
| 
       767 
     | 
    
         
            -
                        },
         
     | 
| 
       768 
     | 
    
         
            -
                        {
         
     | 
| 
       769 
     | 
    
         
            -
                            title: '分类',
         
     | 
| 
       770 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#hao-qi-xin-ri-bao',
         
     | 
| 
       771 
     | 
    
         
            -
                            source: '/categories/:idd',
         
     | 
| 
       772 
     | 
    
         
            -
                            target: (params) => `/qdaily/category/${params.idd.replace('.html', '')}`,
         
     | 
| 
       773 
     | 
    
         
            -
                        },
         
     | 
| 
       774 
     | 
    
         
            -
                    ],
         
     | 
| 
       775 
     | 
    
         
            -
                },
         
     | 
| 
       776 
     | 
    
         
            -
             
     | 
| 
       777 
     | 
    
         
            -
                '3ycy.com': {
         
     | 
| 
       778 
     | 
    
         
            -
                    _name: '三界异次元',
         
     | 
| 
       779 
     | 
    
         
            -
                    www: [
         
     | 
| 
       780 
     | 
    
         
            -
                        {
         
     | 
| 
       781 
     | 
    
         
            -
                            title: '最近更新',
         
     | 
| 
       782 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#san-jie-yi-ci-yuan',
         
     | 
| 
       783 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       784 
     | 
    
         
            -
                            target: '/3ycy/home',
         
     | 
| 
       785 
     | 
    
         
            -
                        },
         
     | 
| 
       786 
     | 
    
         
            -
                    ],
         
     | 
| 
       787 
     | 
    
         
            -
                },
         
     | 
| 
       788 
     | 
    
         
            -
             
     | 
| 
       789 
     | 
    
         
            -
                'emi-nitta.net': {
         
     | 
| 
       790 
     | 
    
         
            -
                    _name: 'Emi Nitta',
         
     | 
| 
       791 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       792 
     | 
    
         
            -
                        {
         
     | 
| 
       793 
     | 
    
         
            -
                            title: '最近更新',
         
     | 
| 
       794 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#xin-tian-hui-hai-guan-fang-wang-zhan',
         
     | 
| 
       795 
     | 
    
         
            -
                            source: '/updates',
         
     | 
| 
       796 
     | 
    
         
            -
                            target: '/emi-nitta/updates',
         
     | 
| 
       797 
     | 
    
         
            -
                        },
         
     | 
| 
       798 
     | 
    
         
            -
                        {
         
     | 
| 
       799 
     | 
    
         
            -
                            title: '新闻',
         
     | 
| 
       800 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#xin-tian-hui-hai-guan-fang-wang-zhan',
         
     | 
| 
       801 
     | 
    
         
            -
                            source: '/contents/news',
         
     | 
| 
       802 
     | 
    
         
            -
                            target: '/emi-nitta/news',
         
     | 
| 
       803 
     | 
    
         
            -
                        },
         
     | 
| 
       804 
     | 
    
         
            -
                    ],
         
     | 
| 
       805 
     | 
    
         
            -
                },
         
     | 
| 
       806 
     | 
    
         
            -
             
     | 
| 
       807 
     | 
    
         
            -
                'alter-shanghai.cn': {
         
     | 
| 
       808 
     | 
    
         
            -
                    _name: 'Alter',
         
     | 
| 
       809 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       810 
     | 
    
         
            -
                        {
         
     | 
| 
       811 
     | 
    
         
            -
                            title: '新闻',
         
     | 
| 
       812 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/shopping.html#alter-zhong-guo',
         
     | 
| 
       813 
     | 
    
         
            -
                            source: '/cn/news.html',
         
     | 
| 
       814 
     | 
    
         
            -
                            target: '/alter-cn/news',
         
     | 
| 
       815 
     | 
    
         
            -
                        },
         
     | 
| 
       816 
     | 
    
         
            -
                    ],
         
     | 
| 
       817 
     | 
    
         
            -
                },
         
     | 
| 
       818 
     | 
    
         
            -
             
     | 
| 
       819 
     | 
    
         
            -
                'itslide.com': {
         
     | 
| 
       820 
     | 
    
         
            -
                    _name: 'ITSlide',
         
     | 
| 
       821 
     | 
    
         
            -
                    www: [
         
     | 
| 
       822 
     | 
    
         
            -
                        {
         
     | 
| 
       823 
     | 
    
         
            -
                            title: '最新',
         
     | 
| 
       824 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/programming.html#itslide',
         
     | 
| 
       825 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       826 
     | 
    
         
            -
                            target: '/itslide/new',
         
     | 
| 
       827 
     | 
    
         
            -
                        },
         
     | 
| 
       828 
     | 
    
         
            -
                    ],
         
     | 
| 
       829 
     | 
    
         
            -
                },
         
     | 
| 
       830 
     | 
    
         
            -
             
     | 
| 
       831 
     | 
    
         
            -
                'leboncoin.fr': {
         
     | 
| 
       832 
     | 
    
         
            -
                    _name: 'leboncoin',
         
     | 
| 
       833 
     | 
    
         
            -
                    www: [
         
     | 
| 
       834 
     | 
    
         
            -
                        {
         
     | 
| 
       835 
     | 
    
         
            -
                            title: 'ads',
         
     | 
| 
       836 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/en/shopping.html#leboncoin',
         
     | 
| 
       837 
     | 
    
         
            -
                            source: '/recherche',
         
     | 
| 
       838 
     | 
    
         
            -
                            target: (params, url) => '/leboncoin/ad/' + url.split('?')[1],
         
     | 
| 
       839 
     | 
    
         
            -
                        },
         
     | 
| 
       840 
     | 
    
         
            -
                    ],
         
     | 
| 
       841 
     | 
    
         
            -
                },
         
     | 
| 
       842 
     | 
    
         
            -
             
     | 
| 
       843 
     | 
    
         
            -
                'yuancheng.work': {
         
     | 
| 
       844 
     | 
    
         
            -
                    _name: '远程.work',
         
     | 
| 
       845 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       846 
     | 
    
         
            -
                        {
         
     | 
| 
       847 
     | 
    
         
            -
                            title: '招聘信息',
         
     | 
| 
       848 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#yuan-cheng-work',
         
     | 
| 
       849 
     | 
    
         
            -
                            source: '/:caty',
         
     | 
| 
       850 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       851 
     | 
    
         
            -
                                if (!url) {
         
     | 
| 
       852 
     | 
    
         
            -
                                    return '/remote-work';
         
     | 
| 
       853 
     | 
    
         
            -
                                }
         
     | 
| 
       854 
     | 
    
         
            -
                                return '/remote-work/' + /\w+-(\w+)-\w+/.exec(url)[1];
         
     | 
| 
       855 
     | 
    
         
            -
                            },
         
     | 
| 
       856 
     | 
    
         
            -
                        },
         
     | 
| 
       857 
     | 
    
         
            -
                    ],
         
     | 
| 
       858 
     | 
    
         
            -
                },
         
     | 
| 
       859 
     | 
    
         
            -
             
     | 
| 
       860 
     | 
    
         
            -
                'chinatimes.com': {
         
     | 
| 
       861 
     | 
    
         
            -
                    _name: '中時電子報',
         
     | 
| 
       862 
     | 
    
         
            -
                    www: [
         
     | 
| 
       863 
     | 
    
         
            -
                        {
         
     | 
| 
       864 
     | 
    
         
            -
                            title: '新聞',
         
     | 
| 
       865 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#zhong-shi-dian-zi-bao',
         
     | 
| 
       866 
     | 
    
         
            -
                            source: '/:caty',
         
     | 
| 
       867 
     | 
    
         
            -
                            target: (params) => '/chinatimes/' + params.caty,
         
     | 
| 
       868 
     | 
    
         
            -
                        },
         
     | 
| 
       869 
     | 
    
         
            -
                    ],
         
     | 
| 
       870 
     | 
    
         
            -
                },
         
     | 
| 
       871 
     | 
    
         
            -
             
     | 
| 
       872 
     | 
    
         
            -
                'govopendata.com': {
         
     | 
| 
       873 
     | 
    
         
            -
                    _name: '新闻联播文字版',
         
     | 
| 
       874 
     | 
    
         
            -
                    cn: [
         
     | 
| 
       875 
     | 
    
         
            -
                        {
         
     | 
| 
       876 
     | 
    
         
            -
                            title: '新闻联播文字版',
         
     | 
| 
       877 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#xin-wen-lian-bo-wen-zi-ban',
         
     | 
| 
       878 
     | 
    
         
            -
                            source: '/xinwenlianbo',
         
     | 
| 
       879 
     | 
    
         
            -
                            target: '/xinwenlianbo/index',
         
     | 
| 
       880 
     | 
    
         
            -
                        },
         
     | 
| 
       881 
     | 
    
         
            -
                    ],
         
     | 
| 
       882 
     | 
    
         
            -
                },
         
     | 
| 
       883 
     | 
    
         
            -
             
     | 
| 
       884 
     | 
    
         
            -
                'steampowered.com': {
         
     | 
| 
       885 
     | 
    
         
            -
                    _name: 'Steam',
         
     | 
| 
       886 
     | 
    
         
            -
                    store: [
         
     | 
| 
       887 
     | 
    
         
            -
                        {
         
     | 
| 
       888 
     | 
    
         
            -
                            title: 'search',
         
     | 
| 
       889 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#steam',
         
     | 
| 
       890 
     | 
    
         
            -
                            source: '/search/',
         
     | 
| 
       891 
     | 
    
         
            -
                            target: (params, url) => `/steam/search/${new URL(url).searchParams}`,
         
     | 
| 
       892 
     | 
    
         
            -
                        },
         
     | 
| 
       893 
     | 
    
         
            -
                    ],
         
     | 
| 
       894 
     | 
    
         
            -
                },
         
     | 
| 
       895 
     | 
    
         
            -
                'baijingapp.com': {
         
     | 
| 
       896 
     | 
    
         
            -
                    _name: '白鲸出海',
         
     | 
| 
       897 
     | 
    
         
            -
                    www: [
         
     | 
| 
       898 
     | 
    
         
            -
                        {
         
     | 
| 
       899 
     | 
    
         
            -
                            title: '文章',
         
     | 
| 
       900 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#bai-jing-chu-hai',
         
     | 
| 
       901 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       902 
     | 
    
         
            -
                            target: '/baijing',
         
     | 
| 
       903 
     | 
    
         
            -
                        },
         
     | 
| 
       904 
     | 
    
         
            -
                    ],
         
     | 
| 
       905 
     | 
    
         
            -
                },
         
     | 
| 
       906 
     | 
    
         
            -
                'xiaomi.cn': {
         
     | 
| 
       907 
     | 
    
         
            -
                    _name: '小米社区',
         
     | 
| 
       908 
     | 
    
         
            -
                    www: [
         
     | 
| 
       909 
     | 
    
         
            -
                        {
         
     | 
| 
       910 
     | 
    
         
            -
                            title: '圈子',
         
     | 
| 
       911 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#xiao-mi-she-qu',
         
     | 
| 
       912 
     | 
    
         
            -
                            source: '/board/:boardId',
         
     | 
| 
       913 
     | 
    
         
            -
                            target: '/mi/bbs/board/:boardId',
         
     | 
| 
       914 
     | 
    
         
            -
                        },
         
     | 
| 
       915 
     | 
    
         
            -
                    ],
         
     | 
| 
       916 
     | 
    
         
            -
                },
         
     | 
| 
       917 
     | 
    
         
            -
                '163.com': {
         
     | 
| 
       918 
     | 
    
         
            -
                    _name: '网易',
         
     | 
| 
       919 
     | 
    
         
            -
                    ds: [
         
     | 
| 
       920 
     | 
    
         
            -
                        {
         
     | 
| 
       921 
     | 
    
         
            -
                            title: '大神',
         
     | 
| 
       922 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#wang-yi-da-shen',
         
     | 
| 
       923 
     | 
    
         
            -
                            source: '/user/:id',
         
     | 
| 
       924 
     | 
    
         
            -
                            target: '/netease/ds/:id',
         
     | 
| 
       925 
     | 
    
         
            -
                        },
         
     | 
| 
       926 
     | 
    
         
            -
                    ],
         
     | 
| 
       927 
     | 
    
         
            -
                    open: [
         
     | 
| 
       928 
     | 
    
         
            -
                        {
         
     | 
| 
       929 
     | 
    
         
            -
                            title: '公开课 - 精品课程',
         
     | 
| 
       930 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/study.html#wang-yi-gong-kai-ke',
         
     | 
| 
       931 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       932 
     | 
    
         
            -
                            target: '/open163/vip',
         
     | 
| 
       933 
     | 
    
         
            -
                        },
         
     | 
| 
       934 
     | 
    
         
            -
                        {
         
     | 
| 
       935 
     | 
    
         
            -
                            title: '公开课 - 最新课程',
         
     | 
| 
       936 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/study.html#wang-yi-gong-kai-ke',
         
     | 
| 
       937 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       938 
     | 
    
         
            -
                            target: '/open163/latest',
         
     | 
| 
       939 
     | 
    
         
            -
                        },
         
     | 
| 
       940 
     | 
    
         
            -
                    ],
         
     | 
| 
       941 
     | 
    
         
            -
                    music: [
         
     | 
| 
       942 
     | 
    
         
            -
                        {
         
     | 
| 
       943 
     | 
    
         
            -
                            title: '云音乐 - 用户歌单',
         
     | 
| 
       944 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       945 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       946 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       947 
     | 
    
         
            -
                                const id = new URL(url).hash.match(/home\?id=(.*)/)[1];
         
     | 
| 
       948 
     | 
    
         
            -
                                return id ? `/ncm/user/playlist/${id}` : '';
         
     | 
| 
       949 
     | 
    
         
            -
                            },
         
     | 
| 
       950 
     | 
    
         
            -
                        },
         
     | 
| 
       951 
     | 
    
         
            -
                        {
         
     | 
| 
       952 
     | 
    
         
            -
                            title: '云音乐 - 歌单歌曲',
         
     | 
| 
       953 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       954 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       955 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       956 
     | 
    
         
            -
                                const id = new URL(url).hash.match(/playlist\?id=(.*)/)[1];
         
     | 
| 
       957 
     | 
    
         
            -
                                return id ? `/ncm/playlist/${id}` : '';
         
     | 
| 
       958 
     | 
    
         
            -
                            },
         
     | 
| 
       959 
     | 
    
         
            -
                        },
         
     | 
| 
       960 
     | 
    
         
            -
                        {
         
     | 
| 
       961 
     | 
    
         
            -
                            title: '云音乐 - 歌手专辑',
         
     | 
| 
       962 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       963 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       964 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       965 
     | 
    
         
            -
                                const id = new URL(url).hash.match(/album\?id=(.*)/)[1];
         
     | 
| 
       966 
     | 
    
         
            -
                                return id ? `/ncm/artist/${id}` : '';
         
     | 
| 
       967 
     | 
    
         
            -
                            },
         
     | 
| 
       968 
     | 
    
         
            -
                        },
         
     | 
| 
       969 
     | 
    
         
            -
                        {
         
     | 
| 
       970 
     | 
    
         
            -
                            title: '云音乐 - 电台节目',
         
     | 
| 
       971 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       972 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       973 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       974 
     | 
    
         
            -
                                const id = new URL(url).hash.match(/djradio\?id=(.*)/)[1];
         
     | 
| 
       975 
     | 
    
         
            -
                                return id ? `/ncm/djradio/${id}` : '';
         
     | 
| 
       976 
     | 
    
         
            -
                            },
         
     | 
| 
       977 
     | 
    
         
            -
                        },
         
     | 
| 
       978 
     | 
    
         
            -
                    ],
         
     | 
| 
       979 
     | 
    
         
            -
                    'y.music': [
         
     | 
| 
       980 
     | 
    
         
            -
                        {
         
     | 
| 
       981 
     | 
    
         
            -
                            title: '云音乐 - 用户歌单',
         
     | 
| 
       982 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       983 
     | 
    
         
            -
                            source: '/m/user',
         
     | 
| 
       984 
     | 
    
         
            -
                            target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
         
     | 
| 
       985 
     | 
    
         
            -
                        },
         
     | 
| 
       986 
     | 
    
         
            -
                        {
         
     | 
| 
       987 
     | 
    
         
            -
                            title: '云音乐 - 歌单歌曲',
         
     | 
| 
       988 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       989 
     | 
    
         
            -
                            source: '/m/playlist',
         
     | 
| 
       990 
     | 
    
         
            -
                            target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
         
     | 
| 
       991 
     | 
    
         
            -
                        },
         
     | 
| 
       992 
     | 
    
         
            -
                        {
         
     | 
| 
       993 
     | 
    
         
            -
                            title: '云音乐 - 歌手专辑',
         
     | 
| 
       994 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       995 
     | 
    
         
            -
                            source: '/m/album',
         
     | 
| 
       996 
     | 
    
         
            -
                            target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
         
     | 
| 
       997 
     | 
    
         
            -
                        },
         
     | 
| 
       998 
     | 
    
         
            -
                        {
         
     | 
| 
       999 
     | 
    
         
            -
                            title: '云音乐 - 播单声音',
         
     | 
| 
       1000 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#wang-yi-yun-yin-yue',
         
     | 
| 
       1001 
     | 
    
         
            -
                            source: ['/m/radio', '/m/djradio'],
         
     | 
| 
       1002 
     | 
    
         
            -
                            target: (params, url) => `/ncm/playlist/${new URL(url).searchParams.get('id')}`,
         
     | 
| 
       1003 
     | 
    
         
            -
                        },
         
     | 
| 
       1004 
     | 
    
         
            -
                    ],
         
     | 
| 
       1005 
     | 
    
         
            -
                },
         
     | 
| 
       1006 
     | 
    
         
            -
                'suzhou.gov.cn': {
         
     | 
| 
       1007 
     | 
    
         
            -
                    _name: '苏州市政府',
         
     | 
| 
       1008 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1009 
     | 
    
         
            -
                        {
         
     | 
| 
       1010 
     | 
    
         
            -
                            title: '政府新闻',
         
     | 
| 
       1011 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/government.html#su-zhou-shi-ren-min-zheng-fu',
         
     | 
| 
       1012 
     | 
    
         
            -
                            source: '/szsrmzf/:uid/nav_list.shtml',
         
     | 
| 
       1013 
     | 
    
         
            -
                            target: '/gov/suzhou/news/:uid',
         
     | 
| 
       1014 
     | 
    
         
            -
                        },
         
     | 
| 
       1015 
     | 
    
         
            -
                    ],
         
     | 
| 
       1016 
     | 
    
         
            -
                },
         
     | 
| 
       1017 
     | 
    
         
            -
                'mqube.net': {
         
     | 
| 
       1018 
     | 
    
         
            -
                    _name: 'MQube',
         
     | 
| 
       1019 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1020 
     | 
    
         
            -
                        {
         
     | 
| 
       1021 
     | 
    
         
            -
                            title: '全站最近更新',
         
     | 
| 
       1022 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#mqube',
         
     | 
| 
       1023 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1024 
     | 
    
         
            -
                            target: '/mqube/latest',
         
     | 
| 
       1025 
     | 
    
         
            -
                        },
         
     | 
| 
       1026 
     | 
    
         
            -
                        {
         
     | 
| 
       1027 
     | 
    
         
            -
                            title: '全站每日排行',
         
     | 
| 
       1028 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#mqube',
         
     | 
| 
       1029 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1030 
     | 
    
         
            -
                            target: '/mqube/top',
         
     | 
| 
       1031 
     | 
    
         
            -
                        },
         
     | 
| 
       1032 
     | 
    
         
            -
                        {
         
     | 
| 
       1033 
     | 
    
         
            -
                            title: '个人最近更新',
         
     | 
| 
       1034 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#mqube',
         
     | 
| 
       1035 
     | 
    
         
            -
                            source: '/user/:user',
         
     | 
| 
       1036 
     | 
    
         
            -
                            target: '/mqube/user/:user',
         
     | 
| 
       1037 
     | 
    
         
            -
                        },
         
     | 
| 
       1038 
     | 
    
         
            -
                        {
         
     | 
| 
       1039 
     | 
    
         
            -
                            title: '标签最近更新',
         
     | 
| 
       1040 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#mqube',
         
     | 
| 
       1041 
     | 
    
         
            -
                            source: '/search/tag/:tag',
         
     | 
| 
       1042 
     | 
    
         
            -
                            target: '/mqube/tag/:tag',
         
     | 
| 
       1043 
     | 
    
         
            -
                        },
         
     | 
| 
       1044 
     | 
    
         
            -
                    ],
         
     | 
| 
       1045 
     | 
    
         
            -
                },
         
     | 
| 
       1046 
     | 
    
         
            -
                'nikkei.com': {
         
     | 
| 
       1047 
     | 
    
         
            -
                    _name: '日本経済新聞',
         
     | 
| 
       1048 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1049 
     | 
    
         
            -
                        {
         
     | 
| 
       1050 
     | 
    
         
            -
                            title: 'ホームページ',
         
     | 
| 
       1051 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#ri-ben-jing-ji-xin-wen',
         
     | 
| 
       1052 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1053 
     | 
    
         
            -
                            target: '/nikkei/index',
         
     | 
| 
       1054 
     | 
    
         
            -
                        },
         
     | 
| 
       1055 
     | 
    
         
            -
                    ],
         
     | 
| 
       1056 
     | 
    
         
            -
                },
         
     | 
| 
       1057 
     | 
    
         
            -
                'last.fm': {
         
     | 
| 
       1058 
     | 
    
         
            -
                    _name: 'Last.fm',
         
     | 
| 
       1059 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1060 
     | 
    
         
            -
                        {
         
     | 
| 
       1061 
     | 
    
         
            -
                            title: '用户播放记录',
         
     | 
| 
       1062 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#last-fm',
         
     | 
| 
       1063 
     | 
    
         
            -
                            source: ['/user/:user', '/user/:user/*'],
         
     | 
| 
       1064 
     | 
    
         
            -
                            target: '/lastfm/recent/:user',
         
     | 
| 
       1065 
     | 
    
         
            -
                        },
         
     | 
| 
       1066 
     | 
    
         
            -
                        {
         
     | 
| 
       1067 
     | 
    
         
            -
                            title: '用户 Love 记录',
         
     | 
| 
       1068 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#last-fm',
         
     | 
| 
       1069 
     | 
    
         
            -
                            source: ['/user/:user', '/user/:user/*'],
         
     | 
| 
       1070 
     | 
    
         
            -
                            target: '/lastfm/loved/:user',
         
     | 
| 
       1071 
     | 
    
         
            -
                        },
         
     | 
| 
       1072 
     | 
    
         
            -
                        {
         
     | 
| 
       1073 
     | 
    
         
            -
                            title: '站内 Top 榜单',
         
     | 
| 
       1074 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#last-fm',
         
     | 
| 
       1075 
     | 
    
         
            -
                            source: '/charts',
         
     | 
| 
       1076 
     | 
    
         
            -
                            target: '/lastfm/top',
         
     | 
| 
       1077 
     | 
    
         
            -
                        },
         
     | 
| 
       1078 
     | 
    
         
            -
                    ],
         
     | 
| 
       1079 
     | 
    
         
            -
                },
         
     | 
| 
       1080 
     | 
    
         
            -
                'ddrk.me': {
         
     | 
| 
       1081 
     | 
    
         
            -
                    _name: '低端影视',
         
     | 
| 
       1082 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1083 
     | 
    
         
            -
                        {
         
     | 
| 
       1084 
     | 
    
         
            -
                            title: '首页',
         
     | 
| 
       1085 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
         
     | 
| 
       1086 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1087 
     | 
    
         
            -
                            target: '/ddrk/index',
         
     | 
| 
       1088 
     | 
    
         
            -
                        },
         
     | 
| 
       1089 
     | 
    
         
            -
                        {
         
     | 
| 
       1090 
     | 
    
         
            -
                            title: '标签',
         
     | 
| 
       1091 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
         
     | 
| 
       1092 
     | 
    
         
            -
                            source: '/tag/:tag',
         
     | 
| 
       1093 
     | 
    
         
            -
                            target: '/ddrk/tag/:tag',
         
     | 
| 
       1094 
     | 
    
         
            -
                        },
         
     | 
| 
       1095 
     | 
    
         
            -
                        {
         
     | 
| 
       1096 
     | 
    
         
            -
                            title: '分类',
         
     | 
| 
       1097 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
         
     | 
| 
       1098 
     | 
    
         
            -
                            source: ['/category/:category', '/category/:uplevel/:category'],
         
     | 
| 
       1099 
     | 
    
         
            -
                            target: '/ddrk/category/:category',
         
     | 
| 
       1100 
     | 
    
         
            -
                        },
         
     | 
| 
       1101 
     | 
    
         
            -
                        {
         
     | 
| 
       1102 
     | 
    
         
            -
                            title: '影视剧集更新',
         
     | 
| 
       1103 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#di-duan-ying-shi',
         
     | 
| 
       1104 
     | 
    
         
            -
                            source: ['/:name', '/:name/:season'],
         
     | 
| 
       1105 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       1106 
     | 
    
         
            -
                                if (params.name !== 'category' && params.name !== 'tag' && params.name !== 'ddrklogin' && params.name !== 'about' && params.name !== 'deleted') {
         
     | 
| 
       1107 
     | 
    
         
            -
                                    return `/ddrk/update/${params.name}${params.season ? '/' + params.season : ''}`;
         
     | 
| 
       1108 
     | 
    
         
            -
                                }
         
     | 
| 
       1109 
     | 
    
         
            -
                            },
         
     | 
| 
       1110 
     | 
    
         
            -
                        },
         
     | 
| 
       1111 
     | 
    
         
            -
                    ],
         
     | 
| 
       1112 
     | 
    
         
            -
                },
         
     | 
| 
       1113 
     | 
    
         
            -
                'google.com': {
         
     | 
| 
       1114 
     | 
    
         
            -
                    _name: '谷歌',
         
     | 
| 
       1115 
     | 
    
         
            -
                    chrome: [
         
     | 
| 
       1116 
     | 
    
         
            -
                        {
         
     | 
| 
       1117 
     | 
    
         
            -
                            title: '插件更新',
         
     | 
| 
       1118 
     | 
    
         
            -
                            source: '/webstore/detail/:name/:id',
         
     | 
| 
       1119 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#chrome-wang-shang-ying-yong-dian',
         
     | 
| 
       1120 
     | 
    
         
            -
                            target: '/chrome/webstore/extensions/:id',
         
     | 
| 
       1121 
     | 
    
         
            -
                        },
         
     | 
| 
       1122 
     | 
    
         
            -
                    ],
         
     | 
| 
       1123 
     | 
    
         
            -
                    photos: [
         
     | 
| 
       1124 
     | 
    
         
            -
                        {
         
     | 
| 
       1125 
     | 
    
         
            -
                            title: '相册',
         
     | 
| 
       1126 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/picture.html#google-xiang-ce',
         
     | 
| 
       1127 
     | 
    
         
            -
                            source: '/share/*',
         
     | 
| 
       1128 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1129 
     | 
    
         
            -
                                const id = document && document.querySelector('html').innerHTML.match(/photos.app.goo.gl\/(.*?)"/)[1];
         
     | 
| 
       1130 
     | 
    
         
            -
                                return id ? `/google/album/${id}` : '';
         
     | 
| 
       1131 
     | 
    
         
            -
                            },
         
     | 
| 
       1132 
     | 
    
         
            -
                        },
         
     | 
| 
       1133 
     | 
    
         
            -
                    ],
         
     | 
| 
       1134 
     | 
    
         
            -
                    sites: [
         
     | 
| 
       1135 
     | 
    
         
            -
                        {
         
     | 
| 
       1136 
     | 
    
         
            -
                            title: 'Sites',
         
     | 
| 
       1137 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/blog.html#google-sites',
         
     | 
| 
       1138 
     | 
    
         
            -
                            source: ['/site/:id/*', '/site/:id'],
         
     | 
| 
       1139 
     | 
    
         
            -
                            target: '/google/sites/:id',
         
     | 
| 
       1140 
     | 
    
         
            -
                        },
         
     | 
| 
       1141 
     | 
    
         
            -
                    ],
         
     | 
| 
       1142 
     | 
    
         
            -
                },
         
     | 
| 
       1143 
     | 
    
         
            -
                'qidian.com': {
         
     | 
| 
       1144 
     | 
    
         
            -
                    _name: '起点',
         
     | 
| 
       1145 
     | 
    
         
            -
                    book: [
         
     | 
| 
       1146 
     | 
    
         
            -
                        {
         
     | 
| 
       1147 
     | 
    
         
            -
                            title: '章节',
         
     | 
| 
       1148 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/reading.html#qi-dian',
         
     | 
| 
       1149 
     | 
    
         
            -
                            source: '/info/:id',
         
     | 
| 
       1150 
     | 
    
         
            -
                            target: '/qidian/chapter/:id',
         
     | 
| 
       1151 
     | 
    
         
            -
                        },
         
     | 
| 
       1152 
     | 
    
         
            -
                        {
         
     | 
| 
       1153 
     | 
    
         
            -
                            title: '讨论区',
         
     | 
| 
       1154 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/reading.html#qi-dian',
         
     | 
| 
       1155 
     | 
    
         
            -
                            source: '/info/:id',
         
     | 
| 
       1156 
     | 
    
         
            -
                            target: '/qidian/forum/:id',
         
     | 
| 
       1157 
     | 
    
         
            -
                        },
         
     | 
| 
       1158 
     | 
    
         
            -
                    ],
         
     | 
| 
       1159 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1160 
     | 
    
         
            -
                        {
         
     | 
| 
       1161 
     | 
    
         
            -
                            title: '限免',
         
     | 
| 
       1162 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/reading.html#qi-dian',
         
     | 
| 
       1163 
     | 
    
         
            -
                            source: '/free',
         
     | 
| 
       1164 
     | 
    
         
            -
                            target: '/qidian/free',
         
     | 
| 
       1165 
     | 
    
         
            -
                        },
         
     | 
| 
       1166 
     | 
    
         
            -
                        {
         
     | 
| 
       1167 
     | 
    
         
            -
                            title: '女生限免',
         
     | 
| 
       1168 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/reading.html#qi-dian',
         
     | 
| 
       1169 
     | 
    
         
            -
                            source: '/mm/free',
         
     | 
| 
       1170 
     | 
    
         
            -
                            target: '/qidian/free/mm',
         
     | 
| 
       1171 
     | 
    
         
            -
                        },
         
     | 
| 
       1172 
     | 
    
         
            -
                    ],
         
     | 
| 
       1173 
     | 
    
         
            -
                },
         
     | 
| 
       1174 
     | 
    
         
            -
                'hackerone.com': {
         
     | 
| 
       1175 
     | 
    
         
            -
                    _name: 'HackerOne',
         
     | 
| 
       1176 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1177 
     | 
    
         
            -
                        {
         
     | 
| 
       1178 
     | 
    
         
            -
                            title: 'HackerOne Hacker Activity',
         
     | 
| 
       1179 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#hackerone-hacker-activity',
         
     | 
| 
       1180 
     | 
    
         
            -
                            source: '/hacktivity',
         
     | 
| 
       1181 
     | 
    
         
            -
                            target: '/hackerone/hacktivity',
         
     | 
| 
       1182 
     | 
    
         
            -
                        },
         
     | 
| 
       1183 
     | 
    
         
            -
                    ],
         
     | 
| 
       1184 
     | 
    
         
            -
                },
         
     | 
| 
       1185 
     | 
    
         
            -
                'cowlevel.net': {
         
     | 
| 
       1186 
     | 
    
         
            -
                    _name: '奶牛关',
         
     | 
| 
       1187 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1188 
     | 
    
         
            -
                        {
         
     | 
| 
       1189 
     | 
    
         
            -
                            title: '元素文章',
         
     | 
| 
       1190 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#nai-niu-guan',
         
     | 
| 
       1191 
     | 
    
         
            -
                            source: ['/element/:id', '/element/:id/article'],
         
     | 
| 
       1192 
     | 
    
         
            -
                            target: '/cowlevel/element/:id',
         
     | 
| 
       1193 
     | 
    
         
            -
                        },
         
     | 
| 
       1194 
     | 
    
         
            -
                    ],
         
     | 
| 
       1195 
     | 
    
         
            -
                },
         
     | 
| 
       1196 
     | 
    
         
            -
                'ynu.edu.cn': {
         
     | 
| 
       1197 
     | 
    
         
            -
                    _name: '云南大学',
         
     | 
| 
       1198 
     | 
    
         
            -
                    home: [
         
     | 
| 
       1199 
     | 
    
         
            -
                        {
         
     | 
| 
       1200 
     | 
    
         
            -
                            title: '官网消息通告',
         
     | 
| 
       1201 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
         
     | 
| 
       1202 
     | 
    
         
            -
                            source: '/tzgg.htm',
         
     | 
| 
       1203 
     | 
    
         
            -
                            target: '/ynu/home',
         
     | 
| 
       1204 
     | 
    
         
            -
                        },
         
     | 
| 
       1205 
     | 
    
         
            -
                    ],
         
     | 
| 
       1206 
     | 
    
         
            -
                    jwc: [
         
     | 
| 
       1207 
     | 
    
         
            -
                        {
         
     | 
| 
       1208 
     | 
    
         
            -
                            title: '教务处教务科通知',
         
     | 
| 
       1209 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
         
     | 
| 
       1210 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1211 
     | 
    
         
            -
                            target: '/jwc/1',
         
     | 
| 
       1212 
     | 
    
         
            -
                        },
         
     | 
| 
       1213 
     | 
    
         
            -
                        {
         
     | 
| 
       1214 
     | 
    
         
            -
                            title: '教务处学籍科通知',
         
     | 
| 
       1215 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
         
     | 
| 
       1216 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1217 
     | 
    
         
            -
                            target: '/jwc/2',
         
     | 
| 
       1218 
     | 
    
         
            -
                        },
         
     | 
| 
       1219 
     | 
    
         
            -
                        {
         
     | 
| 
       1220 
     | 
    
         
            -
                            title: '教务处教学研究科通知',
         
     | 
| 
       1221 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
         
     | 
| 
       1222 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1223 
     | 
    
         
            -
                            target: '/jwc/3',
         
     | 
| 
       1224 
     | 
    
         
            -
                        },
         
     | 
| 
       1225 
     | 
    
         
            -
                        {
         
     | 
| 
       1226 
     | 
    
         
            -
                            title: '教务处实践科学科通知',
         
     | 
| 
       1227 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
         
     | 
| 
       1228 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1229 
     | 
    
         
            -
                            target: '/jwc/4',
         
     | 
| 
       1230 
     | 
    
         
            -
                        },
         
     | 
| 
       1231 
     | 
    
         
            -
                    ],
         
     | 
| 
       1232 
     | 
    
         
            -
                    grs: [
         
     | 
| 
       1233 
     | 
    
         
            -
                        {
         
     | 
| 
       1234 
     | 
    
         
            -
                            title: '研究生院通知',
         
     | 
| 
       1235 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#yun-nan-da-xue',
         
     | 
| 
       1236 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1237 
     | 
    
         
            -
                            target: '',
         
     | 
| 
       1238 
     | 
    
         
            -
                        },
         
     | 
| 
       1239 
     | 
    
         
            -
                    ],
         
     | 
| 
       1240 
     | 
    
         
            -
                },
         
     | 
| 
       1241 
     | 
    
         
            -
                'zju.edu.cn': {
         
     | 
| 
       1242 
     | 
    
         
            -
                    _name: '浙江大学',
         
     | 
| 
       1243 
     | 
    
         
            -
                    cst: [
         
     | 
| 
       1244 
     | 
    
         
            -
                        {
         
     | 
| 
       1245 
     | 
    
         
            -
                            title: '软件学院 - 全部通知',
         
     | 
| 
       1246 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1247 
     | 
    
         
            -
                            source: ['', '/*tpath'],
         
     | 
| 
       1248 
     | 
    
         
            -
                            target: '/zju/cst/0',
         
     | 
| 
       1249 
     | 
    
         
            -
                        },
         
     | 
| 
       1250 
     | 
    
         
            -
                        {
         
     | 
| 
       1251 
     | 
    
         
            -
                            title: '软件学院 - 招生信息',
         
     | 
| 
       1252 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1253 
     | 
    
         
            -
                            source: '/32178/list.htm',
         
     | 
| 
       1254 
     | 
    
         
            -
                            target: '/zju/cst/1',
         
     | 
| 
       1255 
     | 
    
         
            -
                        },
         
     | 
| 
       1256 
     | 
    
         
            -
                        {
         
     | 
| 
       1257 
     | 
    
         
            -
                            title: '软件学院 - 教务管理',
         
     | 
| 
       1258 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1259 
     | 
    
         
            -
                            source: '/36216/list.htm',
         
     | 
| 
       1260 
     | 
    
         
            -
                            target: '/zju/cst/2',
         
     | 
| 
       1261 
     | 
    
         
            -
                        },
         
     | 
| 
       1262 
     | 
    
         
            -
                        {
         
     | 
| 
       1263 
     | 
    
         
            -
                            title: '软件学院 - 论文管理',
         
     | 
| 
       1264 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1265 
     | 
    
         
            -
                            source: '/36217/list.htm',
         
     | 
| 
       1266 
     | 
    
         
            -
                            target: '/zju/cst/3',
         
     | 
| 
       1267 
     | 
    
         
            -
                        },
         
     | 
| 
       1268 
     | 
    
         
            -
                        {
         
     | 
| 
       1269 
     | 
    
         
            -
                            title: '软件学院 - 思政工作',
         
     | 
| 
       1270 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1271 
     | 
    
         
            -
                            source: '/36192/list.htm',
         
     | 
| 
       1272 
     | 
    
         
            -
                            target: '/zju/cst/4',
         
     | 
| 
       1273 
     | 
    
         
            -
                        },
         
     | 
| 
       1274 
     | 
    
         
            -
                        {
         
     | 
| 
       1275 
     | 
    
         
            -
                            title: '软件学院 - 评奖评优',
         
     | 
| 
       1276 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1277 
     | 
    
         
            -
                            source: '/36228/list.htm',
         
     | 
| 
       1278 
     | 
    
         
            -
                            target: '/zju/cst/5',
         
     | 
| 
       1279 
     | 
    
         
            -
                        },
         
     | 
| 
       1280 
     | 
    
         
            -
                        {
         
     | 
| 
       1281 
     | 
    
         
            -
                            title: '软件学院 - 实习就业',
         
     | 
| 
       1282 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1283 
     | 
    
         
            -
                            source: '/36193/list.htm',
         
     | 
| 
       1284 
     | 
    
         
            -
                            target: '/zju/cst/6',
         
     | 
| 
       1285 
     | 
    
         
            -
                        },
         
     | 
| 
       1286 
     | 
    
         
            -
                        {
         
     | 
| 
       1287 
     | 
    
         
            -
                            title: '软件学院 - 国际实习',
         
     | 
| 
       1288 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1289 
     | 
    
         
            -
                            source: '/36235/list.htm',
         
     | 
| 
       1290 
     | 
    
         
            -
                            target: '/zju/cst/7',
         
     | 
| 
       1291 
     | 
    
         
            -
                        },
         
     | 
| 
       1292 
     | 
    
         
            -
                        {
         
     | 
| 
       1293 
     | 
    
         
            -
                            title: '软件学院 - 国内合作科研',
         
     | 
| 
       1294 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1295 
     | 
    
         
            -
                            source: '/36194/list.htm',
         
     | 
| 
       1296 
     | 
    
         
            -
                            target: '/zju/cst/8',
         
     | 
| 
       1297 
     | 
    
         
            -
                        },
         
     | 
| 
       1298 
     | 
    
         
            -
                        {
         
     | 
| 
       1299 
     | 
    
         
            -
                            title: '软件学院 - 国际合作科研',
         
     | 
| 
       1300 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#zhe-jiang-da-xue',
         
     | 
| 
       1301 
     | 
    
         
            -
                            source: '/36246/list.htm',
         
     | 
| 
       1302 
     | 
    
         
            -
                            target: '/zju/cst/9',
         
     | 
| 
       1303 
     | 
    
         
            -
                        },
         
     | 
| 
       1304 
     | 
    
         
            -
                    ],
         
     | 
| 
       1305 
     | 
    
         
            -
                },
         
     | 
| 
       1306 
     | 
    
         
            -
                'kuaidi100.com': {
         
     | 
| 
       1307 
     | 
    
         
            -
                    _name: '快递100',
         
     | 
| 
       1308 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1309 
     | 
    
         
            -
                        {
         
     | 
| 
       1310 
     | 
    
         
            -
                            title: '快递追踪',
         
     | 
| 
       1311 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#kuai-di-100',
         
     | 
| 
       1312 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1313 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1314 
     | 
    
         
            -
                                const postid = document && document.querySelector('#postid').value;
         
     | 
| 
       1315 
     | 
    
         
            -
                                const com = document && document.querySelector('#selectComBtn').childNodes[1].attributes[1].value;
         
     | 
| 
       1316 
     | 
    
         
            -
                                if (com && com !== 'default' && postid) {
         
     | 
| 
       1317 
     | 
    
         
            -
                                    return `/kuaidi100/track/${com}/${postid}`;
         
     | 
| 
       1318 
     | 
    
         
            -
                                }
         
     | 
| 
       1319 
     | 
    
         
            -
                            },
         
     | 
| 
       1320 
     | 
    
         
            -
                        },
         
     | 
| 
       1321 
     | 
    
         
            -
                        {
         
     | 
| 
       1322 
     | 
    
         
            -
                            title: '支持的快递公司列表',
         
     | 
| 
       1323 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#kuai-di-100',
         
     | 
| 
       1324 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1325 
     | 
    
         
            -
                            target: '/kuaidi100/company',
         
     | 
| 
       1326 
     | 
    
         
            -
                        },
         
     | 
| 
       1327 
     | 
    
         
            -
                    ],
         
     | 
| 
       1328 
     | 
    
         
            -
                },
         
     | 
| 
       1329 
     | 
    
         
            -
                'hrbeu.edu.cn': {
         
     | 
| 
       1330 
     | 
    
         
            -
                    _name: '哈尔滨工程大学',
         
     | 
| 
       1331 
     | 
    
         
            -
                    yjsy: [
         
     | 
| 
       1332 
     | 
    
         
            -
                        {
         
     | 
| 
       1333 
     | 
    
         
            -
                            title: '研究生院 - 通知公告',
         
     | 
| 
       1334 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1335 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1336 
     | 
    
         
            -
                            target: '/heu/yjsy/announcement',
         
     | 
| 
       1337 
     | 
    
         
            -
                        },
         
     | 
| 
       1338 
     | 
    
         
            -
                        {
         
     | 
| 
       1339 
     | 
    
         
            -
                            title: '研究生院 - 新闻动态',
         
     | 
| 
       1340 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1341 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1342 
     | 
    
         
            -
                            target: '/heu/yjsy/news',
         
     | 
| 
       1343 
     | 
    
         
            -
                        },
         
     | 
| 
       1344 
     | 
    
         
            -
                        {
         
     | 
| 
       1345 
     | 
    
         
            -
                            title: '研究生院 - 国家公派项目',
         
     | 
| 
       1346 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1347 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1348 
     | 
    
         
            -
                            target: '/heu/yjsy/gjgp',
         
     | 
| 
       1349 
     | 
    
         
            -
                        },
         
     | 
| 
       1350 
     | 
    
         
            -
                        {
         
     | 
| 
       1351 
     | 
    
         
            -
                            title: '研究生院 - 国际合作与交流项目',
         
     | 
| 
       1352 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1353 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1354 
     | 
    
         
            -
                            target: '/heu/yjsy/gjhz',
         
     | 
| 
       1355 
     | 
    
         
            -
                        },
         
     | 
| 
       1356 
     | 
    
         
            -
                    ],
         
     | 
| 
       1357 
     | 
    
         
            -
                    job: [
         
     | 
| 
       1358 
     | 
    
         
            -
                        {
         
     | 
| 
       1359 
     | 
    
         
            -
                            title: '就业服务平台 - 通知公告',
         
     | 
| 
       1360 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1361 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1362 
     | 
    
         
            -
                            target: '/heu/job/tzgg',
         
     | 
| 
       1363 
     | 
    
         
            -
                        },
         
     | 
| 
       1364 
     | 
    
         
            -
                    ],
         
     | 
| 
       1365 
     | 
    
         
            -
                    uae: [
         
     | 
| 
       1366 
     | 
    
         
            -
                        {
         
     | 
| 
       1367 
     | 
    
         
            -
                            title: '水声学院 - 新闻动态',
         
     | 
| 
       1368 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1369 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1370 
     | 
    
         
            -
                            target: '/heu/shuisheng/xwdt',
         
     | 
| 
       1371 
     | 
    
         
            -
                        },
         
     | 
| 
       1372 
     | 
    
         
            -
                        {
         
     | 
| 
       1373 
     | 
    
         
            -
                            title: '研究生院 - 通知公告',
         
     | 
| 
       1374 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1375 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1376 
     | 
    
         
            -
                            target: '/heu/shuisheng/tzgg',
         
     | 
| 
       1377 
     | 
    
         
            -
                        },
         
     | 
| 
       1378 
     | 
    
         
            -
                    ],
         
     | 
| 
       1379 
     | 
    
         
            -
                },
         
     | 
| 
       1380 
     | 
    
         
            -
                'gongxue.cn': {
         
     | 
| 
       1381 
     | 
    
         
            -
                    _name: '工学网',
         
     | 
| 
       1382 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1383 
     | 
    
         
            -
                        {
         
     | 
| 
       1384 
     | 
    
         
            -
                            title: '要闻',
         
     | 
| 
       1385 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1386 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1387 
     | 
    
         
            -
                            target: '/heu/gongxue/yw',
         
     | 
| 
       1388 
     | 
    
         
            -
                        },
         
     | 
| 
       1389 
     | 
    
         
            -
                        {
         
     | 
| 
       1390 
     | 
    
         
            -
                            title: '时讯',
         
     | 
| 
       1391 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#ha-er-bin-gong-cheng-da-xue',
         
     | 
| 
       1392 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1393 
     | 
    
         
            -
                            target: '/heu/gongxue/sx',
         
     | 
| 
       1394 
     | 
    
         
            -
                        },
         
     | 
| 
       1395 
     | 
    
         
            -
                    ],
         
     | 
| 
       1396 
     | 
    
         
            -
                },
         
     | 
| 
       1397 
     | 
    
         
            -
                'nsfc.gov.cn': {
         
     | 
| 
       1398 
     | 
    
         
            -
                    _name: '国家自然科学基金委员会',
         
     | 
| 
       1399 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1400 
     | 
    
         
            -
                        {
         
     | 
| 
       1401 
     | 
    
         
            -
                            title: '基金要闻',
         
     | 
| 
       1402 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
         
     | 
| 
       1403 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1404 
     | 
    
         
            -
                            target: '/nsfc/news/jjyw',
         
     | 
| 
       1405 
     | 
    
         
            -
                        },
         
     | 
| 
       1406 
     | 
    
         
            -
                        {
         
     | 
| 
       1407 
     | 
    
         
            -
                            title: '通知公告',
         
     | 
| 
       1408 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
         
     | 
| 
       1409 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1410 
     | 
    
         
            -
                            target: '/nsfc/news/tzgg',
         
     | 
| 
       1411 
     | 
    
         
            -
                        },
         
     | 
| 
       1412 
     | 
    
         
            -
                        {
         
     | 
| 
       1413 
     | 
    
         
            -
                            title: '资助成果',
         
     | 
| 
       1414 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
         
     | 
| 
       1415 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1416 
     | 
    
         
            -
                            target: '/nsfc/news/zzcg',
         
     | 
| 
       1417 
     | 
    
         
            -
                        },
         
     | 
| 
       1418 
     | 
    
         
            -
                        {
         
     | 
| 
       1419 
     | 
    
         
            -
                            title: '科普快讯',
         
     | 
| 
       1420 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-zi-ran-ke-xue-ji-jin-wei-yuan-hui',
         
     | 
| 
       1421 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1422 
     | 
    
         
            -
                            target: '/nsfc/news/kpkx',
         
     | 
| 
       1423 
     | 
    
         
            -
                        },
         
     | 
| 
       1424 
     | 
    
         
            -
                    ],
         
     | 
| 
       1425 
     | 
    
         
            -
                },
         
     | 
| 
       1426 
     | 
    
         
            -
                'japanpost.jp': {
         
     | 
| 
       1427 
     | 
    
         
            -
                    _name: '日本郵便',
         
     | 
| 
       1428 
     | 
    
         
            -
                    'trackings.post': [
         
     | 
| 
       1429 
     | 
    
         
            -
                        {
         
     | 
| 
       1430 
     | 
    
         
            -
                            title: '郵便・荷物の追跡',
         
     | 
| 
       1431 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#ri-ben-you-bian-you-bian-zhui-ji-サービス',
         
     | 
| 
       1432 
     | 
    
         
            -
                            source: '/services/srv/search/direct',
         
     | 
| 
       1433 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       1434 
     | 
    
         
            -
                                const reqCode = new URL(url).searchParams.get('reqCodeNo1').toUpperCase();
         
     | 
| 
       1435 
     | 
    
         
            -
                                const locale = new URL(url).searchParams.get('locale').toLowerCase();
         
     | 
| 
       1436 
     | 
    
         
            -
                                if ((reqCode.search(/^(?:\d{11,12}|[A-Z]{2}\d{9}[A-Z]{2})$/) === 0 && locale === 'ja') || locale === 'en') {
         
     | 
| 
       1437 
     | 
    
         
            -
                                    return `/japanpost/track/${reqCode}/${locale}`;
         
     | 
| 
       1438 
     | 
    
         
            -
                                }
         
     | 
| 
       1439 
     | 
    
         
            -
                            },
         
     | 
| 
       1440 
     | 
    
         
            -
                        },
         
     | 
| 
       1441 
     | 
    
         
            -
                    ],
         
     | 
| 
       1442 
     | 
    
         
            -
                },
         
     | 
| 
       1443 
     | 
    
         
            -
                'apnews.com': {
         
     | 
| 
       1444 
     | 
    
         
            -
                    _name: 'AP News',
         
     | 
| 
       1445 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1446 
     | 
    
         
            -
                        {
         
     | 
| 
       1447 
     | 
    
         
            -
                            title: '话题',
         
     | 
| 
       1448 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#ap-news',
         
     | 
| 
       1449 
     | 
    
         
            -
                            source: '/:topic',
         
     | 
| 
       1450 
     | 
    
         
            -
                            target: '/apnews/topics/:topic',
         
     | 
| 
       1451 
     | 
    
         
            -
                        },
         
     | 
| 
       1452 
     | 
    
         
            -
                    ],
         
     | 
| 
       1453 
     | 
    
         
            -
                },
         
     | 
| 
       1454 
     | 
    
         
            -
                'csc.edu.cn': {
         
     | 
| 
       1455 
     | 
    
         
            -
                    _name: '国家留学网',
         
     | 
| 
       1456 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1457 
     | 
    
         
            -
                        {
         
     | 
| 
       1458 
     | 
    
         
            -
                            title: '遴选通知',
         
     | 
| 
       1459 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
         
     | 
| 
       1460 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1461 
     | 
    
         
            -
                            target: '/csc/notice/lxtz',
         
     | 
| 
       1462 
     | 
    
         
            -
                        },
         
     | 
| 
       1463 
     | 
    
         
            -
                        {
         
     | 
| 
       1464 
     | 
    
         
            -
                            title: '综合项目专栏',
         
     | 
| 
       1465 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
         
     | 
| 
       1466 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1467 
     | 
    
         
            -
                            target: '/csc/notice/xmzl',
         
     | 
| 
       1468 
     | 
    
         
            -
                        },
         
     | 
| 
       1469 
     | 
    
         
            -
                        {
         
     | 
| 
       1470 
     | 
    
         
            -
                            title: '常见问题解答',
         
     | 
| 
       1471 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
         
     | 
| 
       1472 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1473 
     | 
    
         
            -
                            target: '/csc/notice/wtjd',
         
     | 
| 
       1474 
     | 
    
         
            -
                        },
         
     | 
| 
       1475 
     | 
    
         
            -
                        {
         
     | 
| 
       1476 
     | 
    
         
            -
                            title: '录取公告',
         
     | 
| 
       1477 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/other.html#guo-jia-liu-xue-wang',
         
     | 
| 
       1478 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       1479 
     | 
    
         
            -
                            target: '/csc/notice/lqgg',
         
     | 
| 
       1480 
     | 
    
         
            -
                        },
         
     | 
| 
       1481 
     | 
    
         
            -
                    ],
         
     | 
| 
       1482 
     | 
    
         
            -
                },
         
     | 
| 
       1483 
     | 
    
         
            -
                'biquge5200.com': {
         
     | 
| 
       1484 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1485 
     | 
    
         
            -
                        {
         
     | 
| 
       1486 
     | 
    
         
            -
                            title: 'biquge5200.com',
         
     | 
| 
       1487 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/reading.html#bi-qu-ge-biquge5200-com',
         
     | 
| 
       1488 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       1489 
     | 
    
         
            -
                            target: '/novel/biquge/:id',
         
     | 
| 
       1490 
     | 
    
         
            -
                        },
         
     | 
| 
       1491 
     | 
    
         
            -
                    ],
         
     | 
| 
       1492 
     | 
    
         
            -
                },
         
     | 
| 
       1493 
     | 
    
         
            -
                'biquge.info': {
         
     | 
| 
       1494 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1495 
     | 
    
         
            -
                        {
         
     | 
| 
       1496 
     | 
    
         
            -
                            title: 'biquge.info',
         
     | 
| 
       1497 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/reading.html#bi-qu-ge-biquge-info',
         
     | 
| 
       1498 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       1499 
     | 
    
         
            -
                            target: '/novel/biqugeinfo/:id',
         
     | 
| 
       1500 
     | 
    
         
            -
                        },
         
     | 
| 
       1501 
     | 
    
         
            -
                    ],
         
     | 
| 
       1502 
     | 
    
         
            -
                },
         
     | 
| 
       1503 
     | 
    
         
            -
                'matters.news': {
         
     | 
| 
       1504 
     | 
    
         
            -
                    _name: 'Matters',
         
     | 
| 
       1505 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1506 
     | 
    
         
            -
                        {
         
     | 
| 
       1507 
     | 
    
         
            -
                            title: '最新排序',
         
     | 
| 
       1508 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matters',
         
     | 
| 
       1509 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1510 
     | 
    
         
            -
                            target: '/matters/latest',
         
     | 
| 
       1511 
     | 
    
         
            -
                        },
         
     | 
| 
       1512 
     | 
    
         
            -
                        {
         
     | 
| 
       1513 
     | 
    
         
            -
                            title: '标签',
         
     | 
| 
       1514 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matters',
         
     | 
| 
       1515 
     | 
    
         
            -
                            source: '/tags/:tid',
         
     | 
| 
       1516 
     | 
    
         
            -
                            target: '/matters/tags/:tid',
         
     | 
| 
       1517 
     | 
    
         
            -
                        },
         
     | 
| 
       1518 
     | 
    
         
            -
                        {
         
     | 
| 
       1519 
     | 
    
         
            -
                            title: '作者',
         
     | 
| 
       1520 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matters',
         
     | 
| 
       1521 
     | 
    
         
            -
                            source: ['/:id', '/:id/comments'],
         
     | 
| 
       1522 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       1523 
     | 
    
         
            -
                                const uid = params.id.replace('@', '');
         
     | 
| 
       1524 
     | 
    
         
            -
                                return uid ? `/matters/author/${uid}` : '';
         
     | 
| 
       1525 
     | 
    
         
            -
                            },
         
     | 
| 
       1526 
     | 
    
         
            -
                        },
         
     | 
| 
       1527 
     | 
    
         
            -
                    ],
         
     | 
| 
       1528 
     | 
    
         
            -
                },
         
     | 
| 
       1529 
     | 
    
         
            -
                'zhaishuyuan.com': {
         
     | 
| 
       1530 
     | 
    
         
            -
                    _name: '斋书苑',
         
     | 
| 
       1531 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1532 
     | 
    
         
            -
                        {
         
     | 
| 
       1533 
     | 
    
         
            -
                            title: '最新章节',
         
     | 
| 
       1534 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/reading.html#zhai-shu-yuan',
         
     | 
| 
       1535 
     | 
    
         
            -
                            source: ['/book/:id', '/read/:id'],
         
     | 
| 
       1536 
     | 
    
         
            -
                            target: '/novel/zhaishuyuan/:id',
         
     | 
| 
       1537 
     | 
    
         
            -
                        },
         
     | 
| 
       1538 
     | 
    
         
            -
                    ],
         
     | 
| 
       1539 
     | 
    
         
            -
                },
         
     | 
| 
       1540 
     | 
    
         
            -
                'hbut.edu.cn': {
         
     | 
| 
       1541 
     | 
    
         
            -
                    _name: '湖北工业大学',
         
     | 
| 
       1542 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1543 
     | 
    
         
            -
                        {
         
     | 
| 
       1544 
     | 
    
         
            -
                            title: '新闻中心',
         
     | 
| 
       1545 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
         
     | 
| 
       1546 
     | 
    
         
            -
                            source: '/xwzx/:name',
         
     | 
| 
       1547 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       1548 
     | 
    
         
            -
                                const type = params.name.replace('.htm', '');
         
     | 
| 
       1549 
     | 
    
         
            -
                                return type ? `/hbut/news/${type}` : '/hbut/news/tzgg';
         
     | 
| 
       1550 
     | 
    
         
            -
                            },
         
     | 
| 
       1551 
     | 
    
         
            -
                        },
         
     | 
| 
       1552 
     | 
    
         
            -
                    ],
         
     | 
| 
       1553 
     | 
    
         
            -
                    jsjxy: [
         
     | 
| 
       1554 
     | 
    
         
            -
                        {
         
     | 
| 
       1555 
     | 
    
         
            -
                            title: '新闻动态',
         
     | 
| 
       1556 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
         
     | 
| 
       1557 
     | 
    
         
            -
                            source: '/index/xwdt.htm',
         
     | 
| 
       1558 
     | 
    
         
            -
                            target: '/hbut/cs/xwdt',
         
     | 
| 
       1559 
     | 
    
         
            -
                        },
         
     | 
| 
       1560 
     | 
    
         
            -
                        {
         
     | 
| 
       1561 
     | 
    
         
            -
                            title: '通知公告',
         
     | 
| 
       1562 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
         
     | 
| 
       1563 
     | 
    
         
            -
                            source: '/index/tzgg.htm',
         
     | 
| 
       1564 
     | 
    
         
            -
                            target: '/hbut/cs/tzgg',
         
     | 
| 
       1565 
     | 
    
         
            -
                        },
         
     | 
| 
       1566 
     | 
    
         
            -
                        {
         
     | 
| 
       1567 
     | 
    
         
            -
                            title: '教学信息',
         
     | 
| 
       1568 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
         
     | 
| 
       1569 
     | 
    
         
            -
                            source: '/jxxx.htm',
         
     | 
| 
       1570 
     | 
    
         
            -
                            target: '/hbut/cs/jxxx',
         
     | 
| 
       1571 
     | 
    
         
            -
                        },
         
     | 
| 
       1572 
     | 
    
         
            -
                        {
         
     | 
| 
       1573 
     | 
    
         
            -
                            title: '科研动态',
         
     | 
| 
       1574 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
         
     | 
| 
       1575 
     | 
    
         
            -
                            source: '/kxyj/kydt.htm',
         
     | 
| 
       1576 
     | 
    
         
            -
                            target: '/hbut/cs/kydt',
         
     | 
| 
       1577 
     | 
    
         
            -
                        },
         
     | 
| 
       1578 
     | 
    
         
            -
                        {
         
     | 
| 
       1579 
     | 
    
         
            -
                            title: '党建活动',
         
     | 
| 
       1580 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/university.html#hu-bei-gong-ye-da-xue',
         
     | 
| 
       1581 
     | 
    
         
            -
                            source: '/djhd/djhd.htm',
         
     | 
| 
       1582 
     | 
    
         
            -
                            target: '/hbut/cs/djhd',
         
     | 
| 
       1583 
     | 
    
         
            -
                        },
         
     | 
| 
       1584 
     | 
    
         
            -
                    ],
         
     | 
| 
       1585 
     | 
    
         
            -
                },
         
     | 
| 
       1586 
     | 
    
         
            -
                'zcool.com.cn': {
         
     | 
| 
       1587 
     | 
    
         
            -
                    _name: '站酷',
         
     | 
| 
       1588 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1589 
     | 
    
         
            -
                        {
         
     | 
| 
       1590 
     | 
    
         
            -
                            title: '发现',
         
     | 
| 
       1591 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1592 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1593 
     | 
    
         
            -
                            target: '/zcool/discover',
         
     | 
| 
       1594 
     | 
    
         
            -
                        },
         
     | 
| 
       1595 
     | 
    
         
            -
                        {
         
     | 
| 
       1596 
     | 
    
         
            -
                            title: '发现 - 精选 - 全部推荐',
         
     | 
| 
       1597 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1598 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1599 
     | 
    
         
            -
                            target: '/zcool/discover/all',
         
     | 
| 
       1600 
     | 
    
         
            -
                        },
         
     | 
| 
       1601 
     | 
    
         
            -
                        {
         
     | 
| 
       1602 
     | 
    
         
            -
                            title: '发现 - 精选 - 首页推荐',
         
     | 
| 
       1603 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1604 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1605 
     | 
    
         
            -
                            target: '/zcool/discover/home',
         
     | 
| 
       1606 
     | 
    
         
            -
                        },
         
     | 
| 
       1607 
     | 
    
         
            -
                        {
         
     | 
| 
       1608 
     | 
    
         
            -
                            title: '发现 - 精选 - 编辑精选',
         
     | 
| 
       1609 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1610 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1611 
     | 
    
         
            -
                            target: '/zcool/discover/home',
         
     | 
| 
       1612 
     | 
    
         
            -
                        },
         
     | 
| 
       1613 
     | 
    
         
            -
                        {
         
     | 
| 
       1614 
     | 
    
         
            -
                            title: '发现 - 精选 - 文章 - 编辑精选',
         
     | 
| 
       1615 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1616 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1617 
     | 
    
         
            -
                            target: '/zcool/discover/article',
         
     | 
| 
       1618 
     | 
    
         
            -
                        },
         
     | 
| 
       1619 
     | 
    
         
            -
                        {
         
     | 
| 
       1620 
     | 
    
         
            -
                            title: '作品榜单',
         
     | 
| 
       1621 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1622 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1623 
     | 
    
         
            -
                            target: '/zcool/top/design',
         
     | 
| 
       1624 
     | 
    
         
            -
                        },
         
     | 
| 
       1625 
     | 
    
         
            -
                        {
         
     | 
| 
       1626 
     | 
    
         
            -
                            title: '文章榜单',
         
     | 
| 
       1627 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1628 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       1629 
     | 
    
         
            -
                            target: '/zcool/top/article',
         
     | 
| 
       1630 
     | 
    
         
            -
                        },
         
     | 
| 
       1631 
     | 
    
         
            -
                        {
         
     | 
| 
       1632 
     | 
    
         
            -
                            title: '用户作品',
         
     | 
| 
       1633 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#zhan-ku',
         
     | 
| 
       1634 
     | 
    
         
            -
                            source: ['/u/:id'],
         
     | 
| 
       1635 
     | 
    
         
            -
                            target: `/zcool/user/:id`,
         
     | 
| 
       1636 
     | 
    
         
            -
                        },
         
     | 
| 
       1637 
     | 
    
         
            -
                    ],
         
     | 
| 
       1638 
     | 
    
         
            -
                },
         
     | 
| 
       1639 
     | 
    
         
            -
                'zhuixinfan.com': {
         
     | 
| 
       1640 
     | 
    
         
            -
                    _name: '追新番日剧站',
         
     | 
| 
       1641 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1642 
     | 
    
         
            -
                        {
         
     | 
| 
       1643 
     | 
    
         
            -
                            title: '更新列表',
         
     | 
| 
       1644 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#zhui-xin-fan-ri-ju-zhan',
         
     | 
| 
       1645 
     | 
    
         
            -
                            source: ['/main.php'],
         
     | 
| 
       1646 
     | 
    
         
            -
                            target: '/zhuixinfan/list',
         
     | 
| 
       1647 
     | 
    
         
            -
                        },
         
     | 
| 
       1648 
     | 
    
         
            -
                    ],
         
     | 
| 
       1649 
     | 
    
         
            -
                },
         
     | 
| 
       1650 
     | 
    
         
            -
                'etoland.co.kr': {
         
     | 
| 
       1651 
     | 
    
         
            -
                    _name: 'eTOLAND',
         
     | 
| 
       1652 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1653 
     | 
    
         
            -
                        {
         
     | 
| 
       1654 
     | 
    
         
            -
                            title: '主题贴',
         
     | 
| 
       1655 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#etoland',
         
     | 
| 
       1656 
     | 
    
         
            -
                            source: ['/bbs/board.php', '/plugin/mobile/board.php'],
         
     | 
| 
       1657 
     | 
    
         
            -
                            target: (params, url) => `/etoland/${new URL(url).searchParams.get('bo_table')}`,
         
     | 
| 
       1658 
     | 
    
         
            -
                        },
         
     | 
| 
       1659 
     | 
    
         
            -
                    ],
         
     | 
| 
       1660 
     | 
    
         
            -
                },
         
     | 
| 
       1661 
     | 
    
         
            -
                'onejav.com': {
         
     | 
| 
       1662 
     | 
    
         
            -
                    _name: 'OneJAV BT',
         
     | 
| 
       1663 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1664 
     | 
    
         
            -
                        {
         
     | 
| 
       1665 
     | 
    
         
            -
                            title: '今日种子',
         
     | 
| 
       1666 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#onejav',
         
     | 
| 
       1667 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1668 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1669 
     | 
    
         
            -
                                const today = document.querySelector('div.card.mb-1.card-overview').getAttribute('data-date').replace(/-/g, '');
         
     | 
| 
       1670 
     | 
    
         
            -
                                return `/onejav/day/${today}`;
         
     | 
| 
       1671 
     | 
    
         
            -
                            },
         
     | 
| 
       1672 
     | 
    
         
            -
                        },
         
     | 
| 
       1673 
     | 
    
         
            -
                        {
         
     | 
| 
       1674 
     | 
    
         
            -
                            title: '今日演员',
         
     | 
| 
       1675 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#onejav',
         
     | 
| 
       1676 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1677 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1678 
     | 
    
         
            -
                                const star = document.querySelector('div.card-content > div > a').getAttribute('href');
         
     | 
| 
       1679 
     | 
    
         
            -
                                return `/onejav${star}`;
         
     | 
| 
       1680 
     | 
    
         
            -
                            },
         
     | 
| 
       1681 
     | 
    
         
            -
                        },
         
     | 
| 
       1682 
     | 
    
         
            -
                        {
         
     | 
| 
       1683 
     | 
    
         
            -
                            title: '页面种子',
         
     | 
| 
       1684 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#onejav',
         
     | 
| 
       1685 
     | 
    
         
            -
                            source: ['/:type', '/:type/:key', '/:type/:key/:morekey'],
         
     | 
| 
       1686 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1687 
     | 
    
         
            -
                                const itype = params.morekey === undefined ? params.type : params.type === 'tag' ? 'tag' : 'day';
         
     | 
| 
       1688 
     | 
    
         
            -
                                let ikey = `${itype === 'day' ? params.type : ''}${params.key || ''}${itype === 'tag' && params.morekey !== undefined ? '%2F' : ''}${params.morekey || ''}`;
         
     | 
| 
       1689 
     | 
    
         
            -
                                if (ikey === '' && itype === 'tag') {
         
     | 
| 
       1690 
     | 
    
         
            -
                                    ikey = document.querySelector('div.thumbnail.is-inline > a').getAttribute('href').replace('/tag/', '').replace('/', '%2F');
         
     | 
| 
       1691 
     | 
    
         
            -
                                } else if (ikey === '' && itype === 'actress') {
         
     | 
| 
       1692 
     | 
    
         
            -
                                    ikey = document.querySelector('div.card > a').getAttribute('href').replace('/actress/', '');
         
     | 
| 
       1693 
     | 
    
         
            -
                                }
         
     | 
| 
       1694 
     | 
    
         
            -
                                return `/onejav/${itype}/${ikey}`;
         
     | 
| 
       1695 
     | 
    
         
            -
                            },
         
     | 
| 
       1696 
     | 
    
         
            -
                        },
         
     | 
| 
       1697 
     | 
    
         
            -
                    ],
         
     | 
| 
       1698 
     | 
    
         
            -
                },
         
     | 
| 
       1699 
     | 
    
         
            -
                '141jav.com': {
         
     | 
| 
       1700 
     | 
    
         
            -
                    _name: '141JAV BT',
         
     | 
| 
       1701 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1702 
     | 
    
         
            -
                        {
         
     | 
| 
       1703 
     | 
    
         
            -
                            title: '今日种子',
         
     | 
| 
       1704 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#141jav',
         
     | 
| 
       1705 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1706 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1707 
     | 
    
         
            -
                                const today = document.querySelector('div.card.mb-1.card-overview').getAttribute('data-date').replace(/-/g, '');
         
     | 
| 
       1708 
     | 
    
         
            -
                                return `/141jav/day/${today}`;
         
     | 
| 
       1709 
     | 
    
         
            -
                            },
         
     | 
| 
       1710 
     | 
    
         
            -
                        },
         
     | 
| 
       1711 
     | 
    
         
            -
                        {
         
     | 
| 
       1712 
     | 
    
         
            -
                            title: '今日演员',
         
     | 
| 
       1713 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#141jav',
         
     | 
| 
       1714 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1715 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1716 
     | 
    
         
            -
                                const star = document.querySelector('div.card-content > div > a').getAttribute('href');
         
     | 
| 
       1717 
     | 
    
         
            -
                                return `/141jav${star}`;
         
     | 
| 
       1718 
     | 
    
         
            -
                            },
         
     | 
| 
       1719 
     | 
    
         
            -
                        },
         
     | 
| 
       1720 
     | 
    
         
            -
                        {
         
     | 
| 
       1721 
     | 
    
         
            -
                            title: '页面种子',
         
     | 
| 
       1722 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#141jav',
         
     | 
| 
       1723 
     | 
    
         
            -
                            source: ['/:type', '/:type/:key', '/:type/:key/:morekey'],
         
     | 
| 
       1724 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1725 
     | 
    
         
            -
                                const itype = params.morekey === undefined ? params.type : params.type === 'tag' ? 'tag' : 'day';
         
     | 
| 
       1726 
     | 
    
         
            -
                                let ikey = `${itype === 'day' ? params.type : ''}${params.key || ''}${itype === 'tag' && params.morekey !== undefined ? '%2F' : ''}${params.morekey || ''}`;
         
     | 
| 
       1727 
     | 
    
         
            -
                                if (ikey === '' && itype === 'tag') {
         
     | 
| 
       1728 
     | 
    
         
            -
                                    ikey = document.querySelector('div.thumbnail.is-inline > a').getAttribute('href').replace('/tag/', '').replace('/', '%2F');
         
     | 
| 
       1729 
     | 
    
         
            -
                                } else if (ikey === '' && itype === 'actress') {
         
     | 
| 
       1730 
     | 
    
         
            -
                                    ikey = document.querySelector('div.card > a').getAttribute('href').replace('/actress/', '');
         
     | 
| 
       1731 
     | 
    
         
            -
                                }
         
     | 
| 
       1732 
     | 
    
         
            -
                                return `/141jav/${itype}/${ikey}`;
         
     | 
| 
       1733 
     | 
    
         
            -
                            },
         
     | 
| 
       1734 
     | 
    
         
            -
                        },
         
     | 
| 
       1735 
     | 
    
         
            -
                    ],
         
     | 
| 
       1736 
     | 
    
         
            -
                },
         
     | 
| 
       1737 
     | 
    
         
            -
                '141ppv.com': {
         
     | 
| 
       1738 
     | 
    
         
            -
                    _name: '141ppv BT',
         
     | 
| 
       1739 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1740 
     | 
    
         
            -
                        {
         
     | 
| 
       1741 
     | 
    
         
            -
                            title: '今日种子',
         
     | 
| 
       1742 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#141pvp',
         
     | 
| 
       1743 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1744 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1745 
     | 
    
         
            -
                                const today = document.querySelector('div.card.mb-1.card-overview').getAttribute('data-date').replace(/-/g, '');
         
     | 
| 
       1746 
     | 
    
         
            -
                                return `/141ppv/day/${today}`;
         
     | 
| 
       1747 
     | 
    
         
            -
                            },
         
     | 
| 
       1748 
     | 
    
         
            -
                        },
         
     | 
| 
       1749 
     | 
    
         
            -
                        {
         
     | 
| 
       1750 
     | 
    
         
            -
                            title: '今日演员',
         
     | 
| 
       1751 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#141ppv',
         
     | 
| 
       1752 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       1753 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1754 
     | 
    
         
            -
                                const star = document.querySelector('div.card-content > div > a').getAttribute('href');
         
     | 
| 
       1755 
     | 
    
         
            -
                                return `/141ppv${star}`;
         
     | 
| 
       1756 
     | 
    
         
            -
                            },
         
     | 
| 
       1757 
     | 
    
         
            -
                        },
         
     | 
| 
       1758 
     | 
    
         
            -
                        {
         
     | 
| 
       1759 
     | 
    
         
            -
                            title: '页面种子',
         
     | 
| 
       1760 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#141ppv',
         
     | 
| 
       1761 
     | 
    
         
            -
                            source: ['/:type', '/:type/:key', '/:type/:key/:morekey'],
         
     | 
| 
       1762 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1763 
     | 
    
         
            -
                                const itype = params.morekey === undefined ? params.type : params.type === 'tag' ? 'tag' : 'day';
         
     | 
| 
       1764 
     | 
    
         
            -
                                let ikey = `${itype === 'day' ? params.type : ''}${params.key || ''}${itype === 'tag' && params.morekey !== undefined ? '%2F' : ''}${params.morekey || ''}`;
         
     | 
| 
       1765 
     | 
    
         
            -
                                if (ikey === '' && itype === 'tag') {
         
     | 
| 
       1766 
     | 
    
         
            -
                                    ikey = document.querySelector('div.thumbnail.is-inline > a').getAttribute('href').replace('/tag/', '').replace('/', '%2F');
         
     | 
| 
       1767 
     | 
    
         
            -
                                } else if (ikey === '' && itype === 'actress') {
         
     | 
| 
       1768 
     | 
    
         
            -
                                    ikey = document.querySelector('div.card > a').getAttribute('href').replace('/actress/', '');
         
     | 
| 
       1769 
     | 
    
         
            -
                                }
         
     | 
| 
       1770 
     | 
    
         
            -
                                return `/141ppv/${itype}/${ikey}`;
         
     | 
| 
       1771 
     | 
    
         
            -
                            },
         
     | 
| 
       1772 
     | 
    
         
            -
                        },
         
     | 
| 
       1773 
     | 
    
         
            -
                    ],
         
     | 
| 
       1774 
     | 
    
         
            -
                },
         
     | 
| 
       1775 
     | 
    
         
            -
                'sexinsex.net': {
         
     | 
| 
       1776 
     | 
    
         
            -
                    _name: 'sexinsex',
         
     | 
| 
       1777 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       1778 
     | 
    
         
            -
                        {
         
     | 
| 
       1779 
     | 
    
         
            -
                            title: '分区帖子',
         
     | 
| 
       1780 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#sexinsex',
         
     | 
| 
       1781 
     | 
    
         
            -
                            source: '/bbs/:path',
         
     | 
| 
       1782 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       1783 
     | 
    
         
            -
                                let pid, typeid;
         
     | 
| 
       1784 
     | 
    
         
            -
                                const static_matched = params.path.match(/forum-(\d+)-\d+.html/);
         
     | 
| 
       1785 
     | 
    
         
            -
                                if (static_matched) {
         
     | 
| 
       1786 
     | 
    
         
            -
                                    pid = static_matched[1];
         
     | 
| 
       1787 
     | 
    
         
            -
                                } else if (params.path === 'forumdisplay.php') {
         
     | 
| 
       1788 
     | 
    
         
            -
                                    pid = new URL(url).searchParams.get('fid');
         
     | 
| 
       1789 
     | 
    
         
            -
                                    typeid = new URL(url).searchParams.get('typeid');
         
     | 
| 
       1790 
     | 
    
         
            -
                                } else {
         
     | 
| 
       1791 
     | 
    
         
            -
                                    return false;
         
     | 
| 
       1792 
     | 
    
         
            -
                                }
         
     | 
| 
       1793 
     | 
    
         
            -
                                return `/sexinsex/${pid}/${typeid ? typeid : ''}`;
         
     | 
| 
       1794 
     | 
    
         
            -
                            },
         
     | 
| 
       1795 
     | 
    
         
            -
                        },
         
     | 
| 
       1796 
     | 
    
         
            -
                    ],
         
     | 
| 
       1797 
     | 
    
         
            -
                },
         
     | 
| 
       1798 
     | 
    
         
            -
                't66y.com': {
         
     | 
| 
       1799 
     | 
    
         
            -
                    _name: '草榴社区',
         
     | 
| 
       1800 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1801 
     | 
    
         
            -
                        {
         
     | 
| 
       1802 
     | 
    
         
            -
                            title: '分区帖子',
         
     | 
| 
       1803 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#cao-liu-she-qu',
         
     | 
| 
       1804 
     | 
    
         
            -
                            source: '/thread0806.php',
         
     | 
| 
       1805 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       1806 
     | 
    
         
            -
                                const id = new URL(url).searchParams.get('fid');
         
     | 
| 
       1807 
     | 
    
         
            -
                                const type = new URL(url).searchParams.get('type');
         
     | 
| 
       1808 
     | 
    
         
            -
                                return `/t66y/${id}/${type ? type : ''}`;
         
     | 
| 
       1809 
     | 
    
         
            -
                            },
         
     | 
| 
       1810 
     | 
    
         
            -
                        },
         
     | 
| 
       1811 
     | 
    
         
            -
                    ],
         
     | 
| 
       1812 
     | 
    
         
            -
                },
         
     | 
| 
       1813 
     | 
    
         
            -
                'umass.edu': {
         
     | 
| 
       1814 
     | 
    
         
            -
                    _name: 'UMASS Amherst',
         
     | 
| 
       1815 
     | 
    
         
            -
                    ece: [
         
     | 
| 
       1816 
     | 
    
         
            -
                        {
         
     | 
| 
       1817 
     | 
    
         
            -
                            title: 'ECE News',
         
     | 
| 
       1818 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
         
     | 
| 
       1819 
     | 
    
         
            -
                            source: '/news',
         
     | 
| 
       1820 
     | 
    
         
            -
                            target: '/umass/amherst/ecenews',
         
     | 
| 
       1821 
     | 
    
         
            -
                        },
         
     | 
| 
       1822 
     | 
    
         
            -
                        {
         
     | 
| 
       1823 
     | 
    
         
            -
                            title: 'ECE Seminar',
         
     | 
| 
       1824 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
         
     | 
| 
       1825 
     | 
    
         
            -
                            source: '/seminars',
         
     | 
| 
       1826 
     | 
    
         
            -
                            target: '/umass/amherst/eceseminar',
         
     | 
| 
       1827 
     | 
    
         
            -
                        },
         
     | 
| 
       1828 
     | 
    
         
            -
                    ],
         
     | 
| 
       1829 
     | 
    
         
            -
                    'www.cics': [
         
     | 
| 
       1830 
     | 
    
         
            -
                        {
         
     | 
| 
       1831 
     | 
    
         
            -
                            title: 'CICS News',
         
     | 
| 
       1832 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
         
     | 
| 
       1833 
     | 
    
         
            -
                            source: '/news',
         
     | 
| 
       1834 
     | 
    
         
            -
                            target: '/umass/amherst/csnews',
         
     | 
| 
       1835 
     | 
    
         
            -
                        },
         
     | 
| 
       1836 
     | 
    
         
            -
                    ],
         
     | 
| 
       1837 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1838 
     | 
    
         
            -
                        {
         
     | 
| 
       1839 
     | 
    
         
            -
                            title: 'IPO Events',
         
     | 
| 
       1840 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
         
     | 
| 
       1841 
     | 
    
         
            -
                            source: '/ipo/iss/events',
         
     | 
| 
       1842 
     | 
    
         
            -
                            target: '/umass/amherst/ipoevents',
         
     | 
| 
       1843 
     | 
    
         
            -
                        },
         
     | 
| 
       1844 
     | 
    
         
            -
                        {
         
     | 
| 
       1845 
     | 
    
         
            -
                            title: 'IPO Featured Stories',
         
     | 
| 
       1846 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/en/university.html#umass-amherst',
         
     | 
| 
       1847 
     | 
    
         
            -
                            source: '/ipo/iss/featured-stories',
         
     | 
| 
       1848 
     | 
    
         
            -
                            target: '/umass/amherst/ipostories',
         
     | 
| 
       1849 
     | 
    
         
            -
                        },
         
     | 
| 
       1850 
     | 
    
         
            -
                    ],
         
     | 
| 
       1851 
     | 
    
         
            -
                },
         
     | 
| 
       1852 
     | 
    
         
            -
                'yuque.com': {
         
     | 
| 
       1853 
     | 
    
         
            -
                    _name: '语雀',
         
     | 
| 
       1854 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1855 
     | 
    
         
            -
                        {
         
     | 
| 
       1856 
     | 
    
         
            -
                            title: '知识库',
         
     | 
| 
       1857 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/study.html#yu-que',
         
     | 
| 
       1858 
     | 
    
         
            -
                            source: ['/:space/:book'],
         
     | 
| 
       1859 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1860 
     | 
    
         
            -
                                const match = document.documentElement.innerHTML.match(/JSON\.parse\(decodeURIComponent\("(.*)"\)/);
         
     | 
| 
       1861 
     | 
    
         
            -
                                if (match && match[1]) {
         
     | 
| 
       1862 
     | 
    
         
            -
                                    const dataStr = match[1];
         
     | 
| 
       1863 
     | 
    
         
            -
                                    try {
         
     | 
| 
       1864 
     | 
    
         
            -
                                        const appData = JSON.parse(decodeURIComponent(dataStr));
         
     | 
| 
       1865 
     | 
    
         
            -
                                        return `/yuque/doc/${appData.book.id}`;
         
     | 
| 
       1866 
     | 
    
         
            -
                                    } catch (e) {
         
     | 
| 
       1867 
     | 
    
         
            -
                                        // pass
         
     | 
| 
       1868 
     | 
    
         
            -
                                    }
         
     | 
| 
       1869 
     | 
    
         
            -
                                }
         
     | 
| 
       1870 
     | 
    
         
            -
                            },
         
     | 
| 
       1871 
     | 
    
         
            -
                        },
         
     | 
| 
       1872 
     | 
    
         
            -
                    ],
         
     | 
| 
       1873 
     | 
    
         
            -
                },
         
     | 
| 
       1874 
     | 
    
         
            -
                'bjeea.com': {
         
     | 
| 
       1875 
     | 
    
         
            -
                    _name: '北京考试院',
         
     | 
| 
       1876 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1877 
     | 
    
         
            -
                        {
         
     | 
| 
       1878 
     | 
    
         
            -
                            title: '首页 / 通知公告',
         
     | 
| 
       1879 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
         
     | 
| 
       1880 
     | 
    
         
            -
                            source: ['/html/bjeeagg'],
         
     | 
| 
       1881 
     | 
    
         
            -
                            target: '/gov/beijing/bjeea/bjeeagg',
         
     | 
| 
       1882 
     | 
    
         
            -
                        },
         
     | 
| 
       1883 
     | 
    
         
            -
                        {
         
     | 
| 
       1884 
     | 
    
         
            -
                            title: '首页 / 招考政策',
         
     | 
| 
       1885 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
         
     | 
| 
       1886 
     | 
    
         
            -
                            source: ['/html/zkzc'],
         
     | 
| 
       1887 
     | 
    
         
            -
                            target: '/gov/beijing/bjeea/zkzc',
         
     | 
| 
       1888 
     | 
    
         
            -
                        },
         
     | 
| 
       1889 
     | 
    
         
            -
                        {
         
     | 
| 
       1890 
     | 
    
         
            -
                            title: '首页 / 自考快递',
         
     | 
| 
       1891 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/government.html#bei-jing-jiao-yu-kao-shi-yuan',
         
     | 
| 
       1892 
     | 
    
         
            -
                            source: ['/html/zkkd'],
         
     | 
| 
       1893 
     | 
    
         
            -
                            target: '/gov/beijing/bjeea/zkkd',
         
     | 
| 
       1894 
     | 
    
         
            -
                        },
         
     | 
| 
       1895 
     | 
    
         
            -
                    ],
         
     | 
| 
       1896 
     | 
    
         
            -
                },
         
     | 
| 
       1897 
     | 
    
         
            -
                'hk01.com': {
         
     | 
| 
       1898 
     | 
    
         
            -
                    _name: '香港01',
         
     | 
| 
       1899 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1900 
     | 
    
         
            -
                        {
         
     | 
| 
       1901 
     | 
    
         
            -
                            title: '最 Hit',
         
     | 
| 
       1902 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
         
     | 
| 
       1903 
     | 
    
         
            -
                            source: ['/hot', '/'],
         
     | 
| 
       1904 
     | 
    
         
            -
                            target: '/hk01/hot',
         
     | 
| 
       1905 
     | 
    
         
            -
                        },
         
     | 
| 
       1906 
     | 
    
         
            -
                        {
         
     | 
| 
       1907 
     | 
    
         
            -
                            title: 'zone',
         
     | 
| 
       1908 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
         
     | 
| 
       1909 
     | 
    
         
            -
                            source: '/zone/:id/:title',
         
     | 
| 
       1910 
     | 
    
         
            -
                            target: '/hk01/zone/:id',
         
     | 
| 
       1911 
     | 
    
         
            -
                        },
         
     | 
| 
       1912 
     | 
    
         
            -
                        {
         
     | 
| 
       1913 
     | 
    
         
            -
                            title: 'channel',
         
     | 
| 
       1914 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
         
     | 
| 
       1915 
     | 
    
         
            -
                            source: '/channel/:id/:title',
         
     | 
| 
       1916 
     | 
    
         
            -
                            target: '/hk01/channel/:id',
         
     | 
| 
       1917 
     | 
    
         
            -
                        },
         
     | 
| 
       1918 
     | 
    
         
            -
                        {
         
     | 
| 
       1919 
     | 
    
         
            -
                            title: 'issue',
         
     | 
| 
       1920 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
         
     | 
| 
       1921 
     | 
    
         
            -
                            source: '/issue/:id/:title',
         
     | 
| 
       1922 
     | 
    
         
            -
                            target: '/hk01/issue/:id',
         
     | 
| 
       1923 
     | 
    
         
            -
                        },
         
     | 
| 
       1924 
     | 
    
         
            -
                        {
         
     | 
| 
       1925 
     | 
    
         
            -
                            title: 'tag',
         
     | 
| 
       1926 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/traditional-media.html#xiang-gang-01',
         
     | 
| 
       1927 
     | 
    
         
            -
                            source: '/tag/:id/:title',
         
     | 
| 
       1928 
     | 
    
         
            -
                            target: '/hk01/tag/:id',
         
     | 
| 
       1929 
     | 
    
         
            -
                        },
         
     | 
| 
       1930 
     | 
    
         
            -
                    ],
         
     | 
| 
       1931 
     | 
    
         
            -
                },
         
     | 
| 
       1932 
     | 
    
         
            -
                'okjike.com': {
         
     | 
| 
       1933 
     | 
    
         
            -
                    _name: '即刻',
         
     | 
| 
       1934 
     | 
    
         
            -
                    m: [
         
     | 
| 
       1935 
     | 
    
         
            -
                        {
         
     | 
| 
       1936 
     | 
    
         
            -
                            title: '用户动态',
         
     | 
| 
       1937 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#ji-ke-yong-hu-dong-tai',
         
     | 
| 
       1938 
     | 
    
         
            -
                            source: '/reposts/:repostId',
         
     | 
| 
       1939 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       1940 
     | 
    
         
            -
                                const uid = document.querySelector('.avatar').getAttribute('href').replace('/users/', '');
         
     | 
| 
       1941 
     | 
    
         
            -
                                return uid ? `/jike/user/${uid}` : '';
         
     | 
| 
       1942 
     | 
    
         
            -
                            },
         
     | 
| 
       1943 
     | 
    
         
            -
                        },
         
     | 
| 
       1944 
     | 
    
         
            -
                        {
         
     | 
| 
       1945 
     | 
    
         
            -
                            title: '圈子',
         
     | 
| 
       1946 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#ji-ke-quan-zi',
         
     | 
| 
       1947 
     | 
    
         
            -
                            source: '/topics/:id',
         
     | 
| 
       1948 
     | 
    
         
            -
                            target: '/jike/topic/:id',
         
     | 
| 
       1949 
     | 
    
         
            -
                        },
         
     | 
| 
       1950 
     | 
    
         
            -
                        {
         
     | 
| 
       1951 
     | 
    
         
            -
                            title: '圈子 - 纯文字',
         
     | 
| 
       1952 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#ji-ke-quan-zi-chun-wen-zi',
         
     | 
| 
       1953 
     | 
    
         
            -
                            source: '/topics/:id',
         
     | 
| 
       1954 
     | 
    
         
            -
                            target: '/jike/topic/text/:id',
         
     | 
| 
       1955 
     | 
    
         
            -
                        },
         
     | 
| 
       1956 
     | 
    
         
            -
                    ],
         
     | 
| 
       1957 
     | 
    
         
            -
                },
         
     | 
| 
       1958 
     | 
    
         
            -
                'popiapp.cn': {
         
     | 
| 
       1959 
     | 
    
         
            -
                    _name: 'Popi 提问箱',
         
     | 
| 
       1960 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1961 
     | 
    
         
            -
                        {
         
     | 
| 
       1962 
     | 
    
         
            -
                            title: '提问箱新回答',
         
     | 
| 
       1963 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#popi-ti-wen-xiang',
         
     | 
| 
       1964 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       1965 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       1966 
     | 
    
         
            -
                                if (params.id) {
         
     | 
| 
       1967 
     | 
    
         
            -
                                    return '/popiask/:id';
         
     | 
| 
       1968 
     | 
    
         
            -
                                }
         
     | 
| 
       1969 
     | 
    
         
            -
                            },
         
     | 
| 
       1970 
     | 
    
         
            -
                        },
         
     | 
| 
       1971 
     | 
    
         
            -
                    ],
         
     | 
| 
       1972 
     | 
    
         
            -
                },
         
     | 
| 
       1973 
     | 
    
         
            -
                'nppa.gov.cn': {
         
     | 
| 
       1974 
     | 
    
         
            -
                    _name: '国家新闻出版署',
         
     | 
| 
       1975 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1976 
     | 
    
         
            -
                        {
         
     | 
| 
       1977 
     | 
    
         
            -
                            title: '栏目',
         
     | 
| 
       1978 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/government.html#guo-jia-xin-wen-chu-ban-shu',
         
     | 
| 
       1979 
     | 
    
         
            -
                            source: '/nppa/channels/:channel',
         
     | 
| 
       1980 
     | 
    
         
            -
                            target: (params, url) => `/gov/nppa/${/nppa\/channels\/(\d+)\.shtml/.exec(url)[1]}`,
         
     | 
| 
       1981 
     | 
    
         
            -
                        },
         
     | 
| 
       1982 
     | 
    
         
            -
                        {
         
     | 
| 
       1983 
     | 
    
         
            -
                            title: '内容',
         
     | 
| 
       1984 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/government.html#guo-jia-xin-wen-chu-ban-shu',
         
     | 
| 
       1985 
     | 
    
         
            -
                            source: '/nppa/contents/:channel/:content',
         
     | 
| 
       1986 
     | 
    
         
            -
                            target: (params, url) => `/gov/nppa/${/nppa\/contents\/(\d+\/\d+)\.shtml/.exec(url)[1]}`,
         
     | 
| 
       1987 
     | 
    
         
            -
                        },
         
     | 
| 
       1988 
     | 
    
         
            -
                    ],
         
     | 
| 
       1989 
     | 
    
         
            -
                },
         
     | 
| 
       1990 
     | 
    
         
            -
                'acfun.cn': {
         
     | 
| 
       1991 
     | 
    
         
            -
                    _name: 'AcFun',
         
     | 
| 
       1992 
     | 
    
         
            -
                    www: [
         
     | 
| 
       1993 
     | 
    
         
            -
                        {
         
     | 
| 
       1994 
     | 
    
         
            -
                            tilte: '番剧',
         
     | 
| 
       1995 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#acfun-fan-ju',
         
     | 
| 
       1996 
     | 
    
         
            -
                            source: '/bangumi/:id',
         
     | 
| 
       1997 
     | 
    
         
            -
                            target: (params) => `/acfun/bangumi/${params.id.replace('aa', '')}`,
         
     | 
| 
       1998 
     | 
    
         
            -
                        },
         
     | 
| 
       1999 
     | 
    
         
            -
                        {
         
     | 
| 
       2000 
     | 
    
         
            -
                            title: '用户投稿',
         
     | 
| 
       2001 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#acfun-yong-hu-tou-gao',
         
     | 
| 
       2002 
     | 
    
         
            -
                            source: '/u/:id',
         
     | 
| 
       2003 
     | 
    
         
            -
                            target: '/acfun/user/video/:id',
         
     | 
| 
       2004 
     | 
    
         
            -
                        },
         
     | 
| 
       2005 
     | 
    
         
            -
                    ],
         
     | 
| 
       2006 
     | 
    
         
            -
                },
         
     | 
| 
       2007 
     | 
    
         
            -
                'behance.net': {
         
     | 
| 
       2008 
     | 
    
         
            -
                    _name: 'Behance',
         
     | 
| 
       2009 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2010 
     | 
    
         
            -
                        {
         
     | 
| 
       2011 
     | 
    
         
            -
                            title: 'User',
         
     | 
| 
       2012 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/design.html#behance-user-works',
         
     | 
| 
       2013 
     | 
    
         
            -
                            source: ['/:user'],
         
     | 
| 
       2014 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       2015 
     | 
    
         
            -
                                const uid1 = document && document.querySelector('html').innerHTML.match(/([^/]+)\/insights/)[1];
         
     | 
| 
       2016 
     | 
    
         
            -
                                return `/behance/${uid1}`;
         
     | 
| 
       2017 
     | 
    
         
            -
                            },
         
     | 
| 
       2018 
     | 
    
         
            -
                        },
         
     | 
| 
       2019 
     | 
    
         
            -
                    ],
         
     | 
| 
       2020 
     | 
    
         
            -
                },
         
     | 
| 
       2021 
     | 
    
         
            -
                'jjmhw.cc': {
         
     | 
| 
       2022 
     | 
    
         
            -
                    _name: '漫小肆',
         
     | 
| 
       2023 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2024 
     | 
    
         
            -
                        {
         
     | 
| 
       2025 
     | 
    
         
            -
                            title: '漫画更新',
         
     | 
| 
       2026 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#man-xiao-si',
         
     | 
| 
       2027 
     | 
    
         
            -
                            source: '/book/:id',
         
     | 
| 
       2028 
     | 
    
         
            -
                            target: '/manxiaosi/book/:id',
         
     | 
| 
       2029 
     | 
    
         
            -
                        },
         
     | 
| 
       2030 
     | 
    
         
            -
                    ],
         
     | 
| 
       2031 
     | 
    
         
            -
                },
         
     | 
| 
       2032 
     | 
    
         
            -
                'wenxuecity.com': {
         
     | 
| 
       2033 
     | 
    
         
            -
                    _name: '文学城',
         
     | 
| 
       2034 
     | 
    
         
            -
                    blog: [
         
     | 
| 
       2035 
     | 
    
         
            -
                        {
         
     | 
| 
       2036 
     | 
    
         
            -
                            title: '博客',
         
     | 
| 
       2037 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-bo-ke',
         
     | 
| 
       2038 
     | 
    
         
            -
                            source: '/myblog/:id',
         
     | 
| 
       2039 
     | 
    
         
            -
                            target: '/wenxuecity/blog/:id',
         
     | 
| 
       2040 
     | 
    
         
            -
                        },
         
     | 
| 
       2041 
     | 
    
         
            -
                        {
         
     | 
| 
       2042 
     | 
    
         
            -
                            title: '博客',
         
     | 
| 
       2043 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-bo-ke',
         
     | 
| 
       2044 
     | 
    
         
            -
                            source: '/myoverview/:id',
         
     | 
| 
       2045 
     | 
    
         
            -
                            target: '/wenxuecity/blog/:id',
         
     | 
| 
       2046 
     | 
    
         
            -
                        },
         
     | 
| 
       2047 
     | 
    
         
            -
                    ],
         
     | 
| 
       2048 
     | 
    
         
            -
                    bbs: [
         
     | 
| 
       2049 
     | 
    
         
            -
                        {
         
     | 
| 
       2050 
     | 
    
         
            -
                            title: '最新主题',
         
     | 
| 
       2051 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-zui-xin-zhu-ti',
         
     | 
| 
       2052 
     | 
    
         
            -
                            source: '/:cat',
         
     | 
| 
       2053 
     | 
    
         
            -
                            target: '/wenxuecity/bbs/:cat',
         
     | 
| 
       2054 
     | 
    
         
            -
                        },
         
     | 
| 
       2055 
     | 
    
         
            -
                        {
         
     | 
| 
       2056 
     | 
    
         
            -
                            title: '最新主题 - 精华区',
         
     | 
| 
       2057 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-zui-xin-zhu-ti',
         
     | 
| 
       2058 
     | 
    
         
            -
                            source: '/:cat',
         
     | 
| 
       2059 
     | 
    
         
            -
                            target: '/wenxuecity/bbs/:cat/1',
         
     | 
| 
       2060 
     | 
    
         
            -
                        },
         
     | 
| 
       2061 
     | 
    
         
            -
                        {
         
     | 
| 
       2062 
     | 
    
         
            -
                            title: '最热主题',
         
     | 
| 
       2063 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#wen-xue-cheng-zui-re-zhu-ti',
         
     | 
| 
       2064 
     | 
    
         
            -
                            source: '/?cid=*',
         
     | 
| 
       2065 
     | 
    
         
            -
                            target: (params, url, document) => {
         
     | 
| 
       2066 
     | 
    
         
            -
                                const cid = document && new URL(document.location).searchParams.get('cid');
         
     | 
| 
       2067 
     | 
    
         
            -
                                return `/wenxuecity/hot/${cid}`;
         
     | 
| 
       2068 
     | 
    
         
            -
                            },
         
     | 
| 
       2069 
     | 
    
         
            -
                        },
         
     | 
| 
       2070 
     | 
    
         
            -
                    ],
         
     | 
| 
       2071 
     | 
    
         
            -
                },
         
     | 
| 
       2072 
     | 
    
         
            -
                'buaq.net': {
         
     | 
| 
       2073 
     | 
    
         
            -
                    _name: '不安全资讯',
         
     | 
| 
       2074 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2075 
     | 
    
         
            -
                        {
         
     | 
| 
       2076 
     | 
    
         
            -
                            title: '不安全资讯',
         
     | 
| 
       2077 
     | 
    
         
            -
                            docs: 'http://docs.rsshub.app/new-media.html#bu-an-quan',
         
     | 
| 
       2078 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       2079 
     | 
    
         
            -
                            target: '/buaq',
         
     | 
| 
       2080 
     | 
    
         
            -
                        },
         
     | 
| 
       2081 
     | 
    
         
            -
                    ],
         
     | 
| 
       2082 
     | 
    
         
            -
                },
         
     | 
| 
       2083 
     | 
    
         
            -
                'jian-ning.com': {
         
     | 
| 
       2084 
     | 
    
         
            -
                    _name: '建宁闲谈',
         
     | 
| 
       2085 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2086 
     | 
    
         
            -
                        {
         
     | 
| 
       2087 
     | 
    
         
            -
                            title: '文章',
         
     | 
| 
       2088 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/blog.html#jian-ning-xian-tan',
         
     | 
| 
       2089 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       2090 
     | 
    
         
            -
                            target: '/blogs/jianning',
         
     | 
| 
       2091 
     | 
    
         
            -
                        },
         
     | 
| 
       2092 
     | 
    
         
            -
                    ],
         
     | 
| 
       2093 
     | 
    
         
            -
                },
         
     | 
| 
       2094 
     | 
    
         
            -
                'matataki.io': {
         
     | 
| 
       2095 
     | 
    
         
            -
                    _name: 'matataki',
         
     | 
| 
       2096 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2097 
     | 
    
         
            -
                        {
         
     | 
| 
       2098 
     | 
    
         
            -
                            title: '最热作品',
         
     | 
| 
       2099 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matataki',
         
     | 
| 
       2100 
     | 
    
         
            -
                            source: '/article/',
         
     | 
| 
       2101 
     | 
    
         
            -
                            target: '/matataki/posts/hot',
         
     | 
| 
       2102 
     | 
    
         
            -
                        },
         
     | 
| 
       2103 
     | 
    
         
            -
                        {
         
     | 
| 
       2104 
     | 
    
         
            -
                            title: '最新作品',
         
     | 
| 
       2105 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matataki',
         
     | 
| 
       2106 
     | 
    
         
            -
                            source: '/article/latest',
         
     | 
| 
       2107 
     | 
    
         
            -
                            target: '/matataki/posts/latest',
         
     | 
| 
       2108 
     | 
    
         
            -
                        },
         
     | 
| 
       2109 
     | 
    
         
            -
                        {
         
     | 
| 
       2110 
     | 
    
         
            -
                            title: '作者创作',
         
     | 
| 
       2111 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matataki',
         
     | 
| 
       2112 
     | 
    
         
            -
                            source: '/user/:uid',
         
     | 
| 
       2113 
     | 
    
         
            -
                            target: (params) => `/matataki/users/${params.uid}/posts`,
         
     | 
| 
       2114 
     | 
    
         
            -
                        },
         
     | 
| 
       2115 
     | 
    
         
            -
                        {
         
     | 
| 
       2116 
     | 
    
         
            -
                            title: 'Fan票关联作品',
         
     | 
| 
       2117 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matataki',
         
     | 
| 
       2118 
     | 
    
         
            -
                            source: ['/token/:tokenId', '/token/:tokenId/circle'],
         
     | 
| 
       2119 
     | 
    
         
            -
                            target: (params) => `/matataki/tokens/${params.tokenId}/posts`,
         
     | 
| 
       2120 
     | 
    
         
            -
                        },
         
     | 
| 
       2121 
     | 
    
         
            -
                        {
         
     | 
| 
       2122 
     | 
    
         
            -
                            title: '标签关联作品',
         
     | 
| 
       2123 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matataki',
         
     | 
| 
       2124 
     | 
    
         
            -
                            source: ['/tag/:tagId'],
         
     | 
| 
       2125 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       2126 
     | 
    
         
            -
                                const tagName = new URL(url).searchParams.get('name');
         
     | 
| 
       2127 
     | 
    
         
            -
                                return `/matataki/tags/${params.tagId}/${tagName}/posts`;
         
     | 
| 
       2128 
     | 
    
         
            -
                            },
         
     | 
| 
       2129 
     | 
    
         
            -
                        },
         
     | 
| 
       2130 
     | 
    
         
            -
                        {
         
     | 
| 
       2131 
     | 
    
         
            -
                            title: '收藏夹',
         
     | 
| 
       2132 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/new-media.html#matataki',
         
     | 
| 
       2133 
     | 
    
         
            -
                            source: '/user/:uid/favlist/:fid',
         
     | 
| 
       2134 
     | 
    
         
            -
                            target: (params) => `/matataki/users/${params.uid}/favorites/${params.fid}/posts`,
         
     | 
| 
       2135 
     | 
    
         
            -
                        },
         
     | 
| 
       2136 
     | 
    
         
            -
                    ],
         
     | 
| 
       2137 
     | 
    
         
            -
                },
         
     | 
| 
       2138 
     | 
    
         
            -
                'instagram.com': {
         
     | 
| 
       2139 
     | 
    
         
            -
                    _name: 'Instagram',
         
     | 
| 
       2140 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2141 
     | 
    
         
            -
                        {
         
     | 
| 
       2142 
     | 
    
         
            -
                            title: '用户',
         
     | 
| 
       2143 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#instagram',
         
     | 
| 
       2144 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       2145 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       2146 
     | 
    
         
            -
                                if (params.id !== 'explore' && params.id !== 'developer') {
         
     | 
| 
       2147 
     | 
    
         
            -
                                    return '/instagram/user/:id';
         
     | 
| 
       2148 
     | 
    
         
            -
                                }
         
     | 
| 
       2149 
     | 
    
         
            -
                            },
         
     | 
| 
       2150 
     | 
    
         
            -
                        },
         
     | 
| 
       2151 
     | 
    
         
            -
                    ],
         
     | 
| 
       2152 
     | 
    
         
            -
                },
         
     | 
| 
       2153 
     | 
    
         
            -
                'huya.com': {
         
     | 
| 
       2154 
     | 
    
         
            -
                    _name: '虎牙直播',
         
     | 
| 
       2155 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2156 
     | 
    
         
            -
                        {
         
     | 
| 
       2157 
     | 
    
         
            -
                            title: '直播间开播',
         
     | 
| 
       2158 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/live.html#hu-ya-zhi-bo-zhi-bo-jian-kai-bo',
         
     | 
| 
       2159 
     | 
    
         
            -
                            source: '/:id',
         
     | 
| 
       2160 
     | 
    
         
            -
                            target: '/huya/live/:id',
         
     | 
| 
       2161 
     | 
    
         
            -
                        },
         
     | 
| 
       2162 
     | 
    
         
            -
                    ],
         
     | 
| 
       2163 
     | 
    
         
            -
                },
         
     | 
| 
       2164 
     | 
    
         
            -
                'craigslist.org': {
         
     | 
| 
       2165 
     | 
    
         
            -
                    _name: 'Craigslist',
         
     | 
| 
       2166 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2167 
     | 
    
         
            -
                        {
         
     | 
| 
       2168 
     | 
    
         
            -
                            title: '商品搜索列表',
         
     | 
| 
       2169 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/shopping.html#craigslist',
         
     | 
| 
       2170 
     | 
    
         
            -
                        },
         
     | 
| 
       2171 
     | 
    
         
            -
                    ],
         
     | 
| 
       2172 
     | 
    
         
            -
                },
         
     | 
| 
       2173 
     | 
    
         
            -
                'saraba1st.com': {
         
     | 
| 
       2174 
     | 
    
         
            -
                    _name: 'Saraba1st',
         
     | 
| 
       2175 
     | 
    
         
            -
                    bbs: [
         
     | 
| 
       2176 
     | 
    
         
            -
                        {
         
     | 
| 
       2177 
     | 
    
         
            -
                            title: '帖子',
         
     | 
| 
       2178 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#saraba1st',
         
     | 
| 
       2179 
     | 
    
         
            -
                            source: '/2b/:id',
         
     | 
| 
       2180 
     | 
    
         
            -
                            target: (params) => {
         
     | 
| 
       2181 
     | 
    
         
            -
                                const id = params.id.includes('thread') ? params.id.split('-')[1] : '';
         
     | 
| 
       2182 
     | 
    
         
            -
                                return id ? `/saraba1st/thread/${id}` : '';
         
     | 
| 
       2183 
     | 
    
         
            -
                            },
         
     | 
| 
       2184 
     | 
    
         
            -
                        },
         
     | 
| 
       2185 
     | 
    
         
            -
                    ],
         
     | 
| 
       2186 
     | 
    
         
            -
                },
         
     | 
| 
       2187 
     | 
    
         
            -
                'scboy.com': {
         
     | 
| 
       2188 
     | 
    
         
            -
                    _name: 'scboy 论坛',
         
     | 
| 
       2189 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2190 
     | 
    
         
            -
                        {
         
     | 
| 
       2191 
     | 
    
         
            -
                            title: '帖子',
         
     | 
| 
       2192 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/bbs.html#scboy',
         
     | 
| 
       2193 
     | 
    
         
            -
                            source: '',
         
     | 
| 
       2194 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       2195 
     | 
    
         
            -
                                const id = url.includes('thread') ? url.split('-')[1].split('.')[0] : '';
         
     | 
| 
       2196 
     | 
    
         
            -
                                return id ? `/scboy/thread/${id}` : '';
         
     | 
| 
       2197 
     | 
    
         
            -
                            },
         
     | 
| 
       2198 
     | 
    
         
            -
                        },
         
     | 
| 
       2199 
     | 
    
         
            -
                    ],
         
     | 
| 
       2200 
     | 
    
         
            -
                },
         
     | 
| 
       2201 
     | 
    
         
            -
                'cqut.edu.cn': {
         
     | 
| 
       2202 
     | 
    
         
            -
                    _name: '重庆理工大学',
         
     | 
| 
       2203 
     | 
    
         
            -
                    tz: [
         
     | 
| 
       2204 
     | 
    
         
            -
                        {
         
     | 
| 
       2205 
     | 
    
         
            -
                            title: '通知',
         
     | 
| 
       2206 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#chong-qing-li-gong-da-xue',
         
     | 
| 
       2207 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       2208 
     | 
    
         
            -
                        },
         
     | 
| 
       2209 
     | 
    
         
            -
                    ],
         
     | 
| 
       2210 
     | 
    
         
            -
                    lib: [
         
     | 
| 
       2211 
     | 
    
         
            -
                        {
         
     | 
| 
       2212 
     | 
    
         
            -
                            title: '图书馆通知',
         
     | 
| 
       2213 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/university.html#chong-qing-li-gong-da-xue',
         
     | 
| 
       2214 
     | 
    
         
            -
                            source: '/*',
         
     | 
| 
       2215 
     | 
    
         
            -
                        },
         
     | 
| 
       2216 
     | 
    
         
            -
                    ],
         
     | 
| 
       2217 
     | 
    
         
            -
                },
         
     | 
| 
       2218 
     | 
    
         
            -
                'trakt.tv': {
         
     | 
| 
       2219 
     | 
    
         
            -
                    _name: 'Trakt.tv',
         
     | 
| 
       2220 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2221 
     | 
    
         
            -
                        {
         
     | 
| 
       2222 
     | 
    
         
            -
                            title: '用户收藏',
         
     | 
| 
       2223 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/multimedia.html#trakt-tv-yong-hu-shou-cang',
         
     | 
| 
       2224 
     | 
    
         
            -
                            source: ['/users/:username/collection/:type/added', '/users/:username/collection'],
         
     | 
| 
       2225 
     | 
    
         
            -
                            target: (params) => `/trakt/collection/${params.username}/${params.type || 'all'}`,
         
     | 
| 
       2226 
     | 
    
         
            -
                        },
         
     | 
| 
       2227 
     | 
    
         
            -
                    ],
         
     | 
| 
       2228 
     | 
    
         
            -
                },
         
     | 
| 
       2229 
     | 
    
         
            -
                'eagle.cool': {
         
     | 
| 
       2230 
     | 
    
         
            -
                    _name: 'Eagle',
         
     | 
| 
       2231 
     | 
    
         
            -
                    cn: [
         
     | 
| 
       2232 
     | 
    
         
            -
                        {
         
     | 
| 
       2233 
     | 
    
         
            -
                            title: '更新日志',
         
     | 
| 
       2234 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#eagle',
         
     | 
| 
       2235 
     | 
    
         
            -
                            source: '/changelog',
         
     | 
| 
       2236 
     | 
    
         
            -
                            target: '/eagle/changelog/cn',
         
     | 
| 
       2237 
     | 
    
         
            -
                        },
         
     | 
| 
       2238 
     | 
    
         
            -
                    ],
         
     | 
| 
       2239 
     | 
    
         
            -
                    tw: [
         
     | 
| 
       2240 
     | 
    
         
            -
                        {
         
     | 
| 
       2241 
     | 
    
         
            -
                            title: '更新日誌',
         
     | 
| 
       2242 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#eagle',
         
     | 
| 
       2243 
     | 
    
         
            -
                            source: '/changelog',
         
     | 
| 
       2244 
     | 
    
         
            -
                            target: '/eagle/changelog/tw',
         
     | 
| 
       2245 
     | 
    
         
            -
                        },
         
     | 
| 
       2246 
     | 
    
         
            -
                    ],
         
     | 
| 
       2247 
     | 
    
         
            -
                    en: [
         
     | 
| 
       2248 
     | 
    
         
            -
                        {
         
     | 
| 
       2249 
     | 
    
         
            -
                            title: 'Release Notes',
         
     | 
| 
       2250 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#eagle',
         
     | 
| 
       2251 
     | 
    
         
            -
                            source: '/changelog',
         
     | 
| 
       2252 
     | 
    
         
            -
                            target: '/eagle/changelog/en',
         
     | 
| 
       2253 
     | 
    
         
            -
                        },
         
     | 
| 
       2254 
     | 
    
         
            -
                    ],
         
     | 
| 
       2255 
     | 
    
         
            -
                },
         
     | 
| 
       2256 
     | 
    
         
            -
                'furaffinity.net': {
         
     | 
| 
       2257 
     | 
    
         
            -
                    _name: 'Fur Affinity',
         
     | 
| 
       2258 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2259 
     | 
    
         
            -
                        {
         
     | 
| 
       2260 
     | 
    
         
            -
                            title: '主页',
         
     | 
| 
       2261 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2262 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       2263 
     | 
    
         
            -
                            target: '/furaffinity/home',
         
     | 
| 
       2264 
     | 
    
         
            -
                        },
         
     | 
| 
       2265 
     | 
    
         
            -
                        {
         
     | 
| 
       2266 
     | 
    
         
            -
                            title: '浏览',
         
     | 
| 
       2267 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2268 
     | 
    
         
            -
                            source: '/browse/',
         
     | 
| 
       2269 
     | 
    
         
            -
                            target: '/furaffinity/browse',
         
     | 
| 
       2270 
     | 
    
         
            -
                        },
         
     | 
| 
       2271 
     | 
    
         
            -
                        {
         
     | 
| 
       2272 
     | 
    
         
            -
                            title: '站点状态',
         
     | 
| 
       2273 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2274 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       2275 
     | 
    
         
            -
                            target: '/furaffinity/status',
         
     | 
| 
       2276 
     | 
    
         
            -
                        },
         
     | 
| 
       2277 
     | 
    
         
            -
                        {
         
     | 
| 
       2278 
     | 
    
         
            -
                            title: '搜索',
         
     | 
| 
       2279 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2280 
     | 
    
         
            -
                            source: '/search/',
         
     | 
| 
       2281 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       2282 
     | 
    
         
            -
                                const keyword = new URL(url).searchParams.get('q');
         
     | 
| 
       2283 
     | 
    
         
            -
                                if (keyword) {
         
     | 
| 
       2284 
     | 
    
         
            -
                                    return `/furaffinity/search/${keyword}`;
         
     | 
| 
       2285 
     | 
    
         
            -
                                }
         
     | 
| 
       2286 
     | 
    
         
            -
                            },
         
     | 
| 
       2287 
     | 
    
         
            -
                        },
         
     | 
| 
       2288 
     | 
    
         
            -
                        {
         
     | 
| 
       2289 
     | 
    
         
            -
                            title: '用户主页简介',
         
     | 
| 
       2290 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2291 
     | 
    
         
            -
                            source: '/user/:username/',
         
     | 
| 
       2292 
     | 
    
         
            -
                            target: '/furaffinity/user/:username',
         
     | 
| 
       2293 
     | 
    
         
            -
                        },
         
     | 
| 
       2294 
     | 
    
         
            -
                        {
         
     | 
| 
       2295 
     | 
    
         
            -
                            title: '用户关注列表',
         
     | 
| 
       2296 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2297 
     | 
    
         
            -
                            source: '/watchlist/by/:username/',
         
     | 
| 
       2298 
     | 
    
         
            -
                            target: '/furaffinity/watching/:username',
         
     | 
| 
       2299 
     | 
    
         
            -
                        },
         
     | 
| 
       2300 
     | 
    
         
            -
                        {
         
     | 
| 
       2301 
     | 
    
         
            -
                            title: '用户被关注列表',
         
     | 
| 
       2302 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2303 
     | 
    
         
            -
                            source: '/watchlist/to/:username/',
         
     | 
| 
       2304 
     | 
    
         
            -
                            target: '/furaffinity/watchers/:username',
         
     | 
| 
       2305 
     | 
    
         
            -
                        },
         
     | 
| 
       2306 
     | 
    
         
            -
                        {
         
     | 
| 
       2307 
     | 
    
         
            -
                            title: '用户接受委托信息',
         
     | 
| 
       2308 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2309 
     | 
    
         
            -
                            source: '/commissions/:username/',
         
     | 
| 
       2310 
     | 
    
         
            -
                            target: '/furaffinity/commissions/:username',
         
     | 
| 
       2311 
     | 
    
         
            -
                        },
         
     | 
| 
       2312 
     | 
    
         
            -
                        {
         
     | 
| 
       2313 
     | 
    
         
            -
                            title: '用户的 Shouts 留言',
         
     | 
| 
       2314 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2315 
     | 
    
         
            -
                            source: '/user/:username/',
         
     | 
| 
       2316 
     | 
    
         
            -
                            target: '/furaffinity/shouts/:username',
         
     | 
| 
       2317 
     | 
    
         
            -
                        },
         
     | 
| 
       2318 
     | 
    
         
            -
                        {
         
     | 
| 
       2319 
     | 
    
         
            -
                            title: '用户的日记',
         
     | 
| 
       2320 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2321 
     | 
    
         
            -
                            source: '/journals/:username/',
         
     | 
| 
       2322 
     | 
    
         
            -
                            target: '/furaffinity/journals/:username',
         
     | 
| 
       2323 
     | 
    
         
            -
                        },
         
     | 
| 
       2324 
     | 
    
         
            -
                        {
         
     | 
| 
       2325 
     | 
    
         
            -
                            title: '用户的创作画廊',
         
     | 
| 
       2326 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2327 
     | 
    
         
            -
                            source: '/gallery/:username/',
         
     | 
| 
       2328 
     | 
    
         
            -
                            target: '/furaffinity/gallery/:username',
         
     | 
| 
       2329 
     | 
    
         
            -
                        },
         
     | 
| 
       2330 
     | 
    
         
            -
                        {
         
     | 
| 
       2331 
     | 
    
         
            -
                            title: '用户非正式作品',
         
     | 
| 
       2332 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2333 
     | 
    
         
            -
                            source: '/scraps/:username/',
         
     | 
| 
       2334 
     | 
    
         
            -
                            target: '/furaffinity/scraps/:username',
         
     | 
| 
       2335 
     | 
    
         
            -
                        },
         
     | 
| 
       2336 
     | 
    
         
            -
                        {
         
     | 
| 
       2337 
     | 
    
         
            -
                            title: '用户的喜爱列表',
         
     | 
| 
       2338 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2339 
     | 
    
         
            -
                            source: '/favorites/:username/',
         
     | 
| 
       2340 
     | 
    
         
            -
                            target: '/furaffinity/favorites/:username',
         
     | 
| 
       2341 
     | 
    
         
            -
                        },
         
     | 
| 
       2342 
     | 
    
         
            -
                        {
         
     | 
| 
       2343 
     | 
    
         
            -
                            title: '作品评论区',
         
     | 
| 
       2344 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2345 
     | 
    
         
            -
                            source: '/view/:id/',
         
     | 
| 
       2346 
     | 
    
         
            -
                            target: '/furaffinity/submission_comments/:id',
         
     | 
| 
       2347 
     | 
    
         
            -
                        },
         
     | 
| 
       2348 
     | 
    
         
            -
                        {
         
     | 
| 
       2349 
     | 
    
         
            -
                            title: '日记评论区',
         
     | 
| 
       2350 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/social-media.html#fur-affinity',
         
     | 
| 
       2351 
     | 
    
         
            -
                            source: '/journal/:id/',
         
     | 
| 
       2352 
     | 
    
         
            -
                            target: '/furaffinity/journal_comments/:id',
         
     | 
| 
       2353 
     | 
    
         
            -
                        },
         
     | 
| 
       2354 
     | 
    
         
            -
                    ],
         
     | 
| 
       2355 
     | 
    
         
            -
                },
         
     | 
| 
       2356 
     | 
    
         
            -
                'gcores.com': {
         
     | 
| 
       2357 
     | 
    
         
            -
                    _name: '机核网',
         
     | 
| 
       2358 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2359 
     | 
    
         
            -
                        {
         
     | 
| 
       2360 
     | 
    
         
            -
                            title: '资讯',
         
     | 
| 
       2361 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#eagle',
         
     | 
| 
       2362 
     | 
    
         
            -
                            source: '/news',
         
     | 
| 
       2363 
     | 
    
         
            -
                            target: '/gcores/category/news',
         
     | 
| 
       2364 
     | 
    
         
            -
                        },
         
     | 
| 
       2365 
     | 
    
         
            -
                        {
         
     | 
| 
       2366 
     | 
    
         
            -
                            title: '视频',
         
     | 
| 
       2367 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#eagle',
         
     | 
| 
       2368 
     | 
    
         
            -
                            source: '/videos',
         
     | 
| 
       2369 
     | 
    
         
            -
                            target: '/gcores/category/videos',
         
     | 
| 
       2370 
     | 
    
         
            -
                        },
         
     | 
| 
       2371 
     | 
    
         
            -
                        {
         
     | 
| 
       2372 
     | 
    
         
            -
                            title: '电台',
         
     | 
| 
       2373 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#eagle',
         
     | 
| 
       2374 
     | 
    
         
            -
                            source: '/radios',
         
     | 
| 
       2375 
     | 
    
         
            -
                            target: '/gcores/category/radios',
         
     | 
| 
       2376 
     | 
    
         
            -
                        },
         
     | 
| 
       2377 
     | 
    
         
            -
                        {
         
     | 
| 
       2378 
     | 
    
         
            -
                            title: '文章',
         
     | 
| 
       2379 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#eagle',
         
     | 
| 
       2380 
     | 
    
         
            -
                            source: '/articles',
         
     | 
| 
       2381 
     | 
    
         
            -
                            target: '/gcores/category/articles',
         
     | 
| 
       2382 
     | 
    
         
            -
                        },
         
     | 
| 
       2383 
     | 
    
         
            -
                    ],
         
     | 
| 
       2384 
     | 
    
         
            -
                },
         
     | 
| 
       2385 
     | 
    
         
            -
                'bgm.tv': {
         
     | 
| 
       2386 
     | 
    
         
            -
                    _name: 'Bangumi',
         
     | 
| 
       2387 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2388 
     | 
    
         
            -
                        {
         
     | 
| 
       2389 
     | 
    
         
            -
                            title: '小组话题',
         
     | 
| 
       2390 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2391 
     | 
    
         
            -
                            source: '/group/:id',
         
     | 
| 
       2392 
     | 
    
         
            -
                            target: '/bangumi/group/:id',
         
     | 
| 
       2393 
     | 
    
         
            -
                        },
         
     | 
| 
       2394 
     | 
    
         
            -
                        {
         
     | 
| 
       2395 
     | 
    
         
            -
                            title: '小组话题的新回复',
         
     | 
| 
       2396 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2397 
     | 
    
         
            -
                            source: '/group/topic/:id',
         
     | 
| 
       2398 
     | 
    
         
            -
                            target: '/bangumi/topic/:id',
         
     | 
| 
       2399 
     | 
    
         
            -
                        },
         
     | 
| 
       2400 
     | 
    
         
            -
                        {
         
     | 
| 
       2401 
     | 
    
         
            -
                            title: '现实人物的新作品',
         
     | 
| 
       2402 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2403 
     | 
    
         
            -
                            source: '/person/:id',
         
     | 
| 
       2404 
     | 
    
         
            -
                            target: '/bangumi/person/:id',
         
     | 
| 
       2405 
     | 
    
         
            -
                        },
         
     | 
| 
       2406 
     | 
    
         
            -
                        {
         
     | 
| 
       2407 
     | 
    
         
            -
                            title: '用户日志',
         
     | 
| 
       2408 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2409 
     | 
    
         
            -
                            source: '/user/:id',
         
     | 
| 
       2410 
     | 
    
         
            -
                            target: '/bangumi/user/blog/:id',
         
     | 
| 
       2411 
     | 
    
         
            -
                        },
         
     | 
| 
       2412 
     | 
    
         
            -
                        {
         
     | 
| 
       2413 
     | 
    
         
            -
                            title: '条目的讨论',
         
     | 
| 
       2414 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2415 
     | 
    
         
            -
                            source: '/subject/:id',
         
     | 
| 
       2416 
     | 
    
         
            -
                            target: '/bangumi/subject/:id/topics',
         
     | 
| 
       2417 
     | 
    
         
            -
                        },
         
     | 
| 
       2418 
     | 
    
         
            -
                        {
         
     | 
| 
       2419 
     | 
    
         
            -
                            title: '条目的评论',
         
     | 
| 
       2420 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2421 
     | 
    
         
            -
                            source: '/subject/:id',
         
     | 
| 
       2422 
     | 
    
         
            -
                            target: '/bangumi/subject/:id/blogs',
         
     | 
| 
       2423 
     | 
    
         
            -
                        },
         
     | 
| 
       2424 
     | 
    
         
            -
                        {
         
     | 
| 
       2425 
     | 
    
         
            -
                            title: '条目的章节',
         
     | 
| 
       2426 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2427 
     | 
    
         
            -
                            source: '/subject/:id',
         
     | 
| 
       2428 
     | 
    
         
            -
                            target: '/bangumi/subject/:id',
         
     | 
| 
       2429 
     | 
    
         
            -
                        },
         
     | 
| 
       2430 
     | 
    
         
            -
                        {
         
     | 
| 
       2431 
     | 
    
         
            -
                            title: '条目的吐槽箱',
         
     | 
| 
       2432 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2433 
     | 
    
         
            -
                            source: '/subject/:id',
         
     | 
| 
       2434 
     | 
    
         
            -
                            target: '/bangumi/subject/:id/comments',
         
     | 
| 
       2435 
     | 
    
         
            -
                        },
         
     | 
| 
       2436 
     | 
    
         
            -
                        {
         
     | 
| 
       2437 
     | 
    
         
            -
                            title: '放送列表',
         
     | 
| 
       2438 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/anime.html#bangumi',
         
     | 
| 
       2439 
     | 
    
         
            -
                            source: '/calendar',
         
     | 
| 
       2440 
     | 
    
         
            -
                            target: '/bangumi/calendar/today',
         
     | 
| 
       2441 
     | 
    
         
            -
                        },
         
     | 
| 
       2442 
     | 
    
         
            -
                    ],
         
     | 
| 
       2443 
     | 
    
         
            -
                },
         
     | 
| 
       2444 
     | 
    
         
            -
                'e-hentai.org/': {
         
     | 
| 
       2445 
     | 
    
         
            -
                    _name: 'E-Hentai',
         
     | 
| 
       2446 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2447 
     | 
    
         
            -
                        {
         
     | 
| 
       2448 
     | 
    
         
            -
                            title: '收藏',
         
     | 
| 
       2449 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/picture.html#ehentai',
         
     | 
| 
       2450 
     | 
    
         
            -
                            source: '/favorites.php',
         
     | 
| 
       2451 
     | 
    
         
            -
                            target: '/ehentai/favorites',
         
     | 
| 
       2452 
     | 
    
         
            -
                        },
         
     | 
| 
       2453 
     | 
    
         
            -
                        {
         
     | 
| 
       2454 
     | 
    
         
            -
                            title: '标签',
         
     | 
| 
       2455 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/picture.html#ehentai',
         
     | 
| 
       2456 
     | 
    
         
            -
                            source: '/tag/:tag',
         
     | 
| 
       2457 
     | 
    
         
            -
                            target: '/ehentai/tag/:tag',
         
     | 
| 
       2458 
     | 
    
         
            -
                        },
         
     | 
| 
       2459 
     | 
    
         
            -
                        {
         
     | 
| 
       2460 
     | 
    
         
            -
                            title: '搜索',
         
     | 
| 
       2461 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/picture.html#ehentai',
         
     | 
| 
       2462 
     | 
    
         
            -
                            source: '/',
         
     | 
| 
       2463 
     | 
    
         
            -
                            target: (params, url) => {
         
     | 
| 
       2464 
     | 
    
         
            -
                                const keyword = new URL(url).searchParams.toString();
         
     | 
| 
       2465 
     | 
    
         
            -
                                if (keyword) {
         
     | 
| 
       2466 
     | 
    
         
            -
                                    return `/ehentai/search/${keyword}`;
         
     | 
| 
       2467 
     | 
    
         
            -
                                }
         
     | 
| 
       2468 
     | 
    
         
            -
                            },
         
     | 
| 
       2469 
     | 
    
         
            -
                        },
         
     | 
| 
       2470 
     | 
    
         
            -
                    ],
         
     | 
| 
       2471 
     | 
    
         
            -
                },
         
     | 
| 
       2472 
     | 
    
         
            -
                'iyingdi.com': {
         
     | 
| 
       2473 
     | 
    
         
            -
                    _name: '旅法师营地',
         
     | 
| 
       2474 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2475 
     | 
    
         
            -
                        {
         
     | 
| 
       2476 
     | 
    
         
            -
                            title: '分区',
         
     | 
| 
       2477 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
         
     | 
| 
       2478 
     | 
    
         
            -
                            source: '/tz/tag/:tag',
         
     | 
| 
       2479 
     | 
    
         
            -
                            target: '/lfsyd/tag/:tag',
         
     | 
| 
       2480 
     | 
    
         
            -
                        },
         
     | 
| 
       2481 
     | 
    
         
            -
                        {
         
     | 
| 
       2482 
     | 
    
         
            -
                            title: '用户发帖',
         
     | 
| 
       2483 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
         
     | 
| 
       2484 
     | 
    
         
            -
                            source: ['/tz/people/:id', '/tz/people/:id/*'],
         
     | 
| 
       2485 
     | 
    
         
            -
                            target: '/lfsyd/user/:id',
         
     | 
| 
       2486 
     | 
    
         
            -
                        },
         
     | 
| 
       2487 
     | 
    
         
            -
                    ],
         
     | 
| 
       2488 
     | 
    
         
            -
                    mob: [
         
     | 
| 
       2489 
     | 
    
         
            -
                        {
         
     | 
| 
       2490 
     | 
    
         
            -
                            title: '分区',
         
     | 
| 
       2491 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
         
     | 
| 
       2492 
     | 
    
         
            -
                            source: '/fine/:tag',
         
     | 
| 
       2493 
     | 
    
         
            -
                            target: '/lfsyd/tag/:tag',
         
     | 
| 
       2494 
     | 
    
         
            -
                        },
         
     | 
| 
       2495 
     | 
    
         
            -
                    ],
         
     | 
| 
       2496 
     | 
    
         
            -
                },
         
     | 
| 
       2497 
     | 
    
         
            -
                'macwk.com': {
         
     | 
| 
       2498 
     | 
    
         
            -
                    _name: 'MacWk',
         
     | 
| 
       2499 
     | 
    
         
            -
                    '.': [
         
     | 
| 
       2500 
     | 
    
         
            -
                        {
         
     | 
| 
       2501 
     | 
    
         
            -
                            title: '应用更新',
         
     | 
| 
       2502 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/program-update.html#macwk',
         
     | 
| 
       2503 
     | 
    
         
            -
                            source: '/soft/:name',
         
     | 
| 
       2504 
     | 
    
         
            -
                            target: '/macwk/soft/:name',
         
     | 
| 
       2505 
     | 
    
         
            -
                        },
         
     | 
| 
       2506 
     | 
    
         
            -
                    ],
         
     | 
| 
       2507 
     | 
    
         
            -
                },
         
     | 
| 
       2508 
     | 
    
         
            -
                'zyshow.net': {
         
     | 
| 
       2509 
     | 
    
         
            -
                    www: [
         
     | 
| 
       2510 
     | 
    
         
            -
                        {
         
     | 
| 
       2511 
     | 
    
         
            -
                            title: '',
         
     | 
| 
       2512 
     | 
    
         
            -
                            docs: 'https://docs.rsshub.app/game.html#lv-fa-shi-ying-di',
         
     | 
| 
       2513 
     | 
    
         
            -
                            source: '/:name/',
         
     | 
| 
       2514 
     | 
    
         
            -
                            target: '/zyshow/:name',
         
     | 
| 
       2515 
     | 
    
         
            -
                        },
         
     | 
| 
       2516 
     | 
    
         
            -
                    ],
         
     | 
| 
       2517 
     | 
    
         
            -
                },
         
     | 
| 
       2518 
     | 
    
         
            -
            };
         
     |